Quote:
Originally Posted by #HB
Thanks but sorry another question.. 0x704c so where's the scroll's skillid or itemid something like that!
Well, later I found this :
Can you give me more of this PotionID , HP and MP only won't help me at all 
|
Code:
Packet potion = new Packet(0x704C, true);
potion.WriteByte(slot);
if (type <= byte.MaxValue)
potion.WriteByte(type);
else
potion.WriteUShort(type);
potion.WriteByte((byte)potionType);
true for encrypted
1- slot
1~2- type
1- PotionType (read enums)
Code:
public enum PotionType : byte
{
HP = 8,
MP = 16,
Pills = 49,
Vigor = 24
}
NOTE: this was used for SSN's autopotion (ecsro files) not sure if it's the same for vsro