How would I go about getting the Item ID of the equipment a user is wearing? And if possible weather it is a wepon necklace/coro/hat/helmet sheild boots or anything elese thanks.
How would I go about getting the Item ID of the equipment a user is wearing? And if possible weather it is a wepon necklace/coro/hat/helmet sheild boots or anything elese thanks.
You could look in a decrypted itemtype.dat for the specific items that they are wearing. Not sure about getting them with packets, not that experienced.
foreach (int[] Equip in Char.Equipment)
{
Equip[0] // ItemUID
Equip[1] // ItemID
}
Thats the main code... the numbers inside Equip[] depend on the coding of the server....
Char.Equipment - Its a value set in Character.cs...... it might be Char.Equips... or whatever