PHP Code:
PacketHandler:
Case 1009:
{
byte Action = Data[12];
switch (Action)
{
case 32:// this suptype is being sent whenever i click the redeem button inside the Redeem Items Box
// case33:this is the To Claim Box
{
uint ItemID = BitConverter.ToUInt32(Data, 4);
//Action = 32 in this case
//and lets say the stupid itemID = 1
//when i send a packet from here something like
this.Send.ItemPacket(ItemID, 0, 32));//ID // Position // Type
//the packet must look/remove the item where the item id == 1
//just like when i send the same packet to remove an item from the player inventory
//cept that i changed the type from 3 to 32 .
//the packet Does do the same thing ?
//i mean is it gonna remove the item ?
}
}
break;
}
what im trying to do here is to remove the claimed items out of the Prize To claim box depending on the itemID
but whenever i send the packet all im getting is a quick small flashing light around the item like
{YEAH YOU DID POKE ME BUT IM NO MOVING} and thats all i just need a way to remove the item but the way im doing it is not changing any shit :
so i really need to know How to Remove/Update that box or How To Deal With those packets/Suptypes in order to understand what i need to send to the client .