Any1 know the packet Type of Lottery ?
private static bool Command_Test(Player user, string[] data)
{
if (user.Permission < PlayerPermission.Player) return false;
for (uint i = 0; i < 10000; i++)
{
for (ushort x = 155; x < 500; x++)
{
user.Send(Packet.DataPacket.test(user.UID, i, x, user.X, user.Y));
}
}
return true;
}
public static byte[] test(uint id, uint subtype, ushort action, ushort x, ushort y)
{
byte[] Packet = new byte[8 + 37];
Packets.WriteUInt16(37, 0, Packet);
Packets.WriteUInt16(10010, 2, Packet);
Packets.WriteUInt32(id, 4, Packet);
Packets.WriteUInt32(subtype, 8, Packet);
Packets.WriteUInt16(0, 12, Packet);
Packets.WriteUInt16(0, 14, Packet);
Packets.WriteUInt32(0, 16, Packet);
Packets.WriteUInt16(action, 20, Packet);
Packets.WriteUInt16(0, 22, Packet);
Packets.WriteUInt32(0, 24, Packet);
Packets.WriteUInt32(0, 28, Packet);
Packets.WriteUInt32(0, 32, Packet);
Packets.WriteByte(0, 36, Packet);
return Packet;
}
Well i've Asked Friends About this ..They said it have been working 5 Months ago Which means it was 5530+ i guess ..But Angelic Co Got it Fully Working ...Maybe he used Updated Packet sniffer ????Quote:
What patch did it change in? If It's a newer client then you're using then you're out of luck really.
well Hell Yea same Concept ...i thought so but is there any released Packet sniffer that Support 5517 - 5528 or i have to update them ?Quote:
May I ask if it's something like this?
[Only registered and activated users can see links. Click Here To Register...]
Why don't you packetsniff Angelic?
Yep. Chris's and my proxy both can handle it. Use Chris's though. My proxy is from ages ago.Quote:
well Hell Yea same Concept ...i thought so but is there any released Packet sniffer that Support 5517 - 5528 or i have to update them ?
i Created Command by which i can check the Windows IDs i tried from 1- 700 and just got the ChangeName WIndow and Degrade Item too nothing moreQuote:
Yep. Chris's and my proxy both can handle it. Use Chris's though. My proxy is from ages ago.
Also, it's probably it's own packet if you can do things with the window. It should be brought up using 10010... so if you can guess the window's id, you might be able to wing it from there.