Here the Packet
the mode like
The Red Numbers == Monster Mech
277 = NightDevil
And The Timer Packet
the mode like
Code:
[COLOR="Red"]277[/COLOR]0011004
277 = NightDevil
Code:
public static byte[] Disguise(int charid, Int64 mode, int maxhp, int hp)
{
return new byte[] { 0x3c, 0x00, 0xf9, 0x03, ((byte)(charid)), ((byte)(charid >> 8)), ((byte)(charid >> 16)), ((byte)(charid >> 24)), 0x03, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, ((byte)(mode)), ((byte)(mode >> 8)), ((byte)(mode >> 16)), ((byte)(mode >> 24)), 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, ((byte)(maxhp)), ((byte)(maxhp >> 8)), ((byte)(maxhp >> 16)), ((byte)(maxhp >> 24)), 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, ((byte)(hp)), ((byte)(hp >> 8)), ((byte)(hp >> 16)), ((byte)(hp >> 24)), 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
}
And The Timer Packet
Code:
public static byte[] ShowDisguiseTime(int charid)
{
return new byte[] { 0x2c, 0x00, 0x51, 0x04, ((byte)(charid)), ((byte)(charid >> 8)), ((byte)(charid >> 16)), ((byte)(charid >> 24)), ((byte)(charid)), ((byte)(charid >> 8)), ((byte)(charid >> 16)), ((byte)(charid >> 24)), 0x00, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, ((byte)(charid)), ((byte)(charid >> 8)), ((byte)(charid >> 16)), ((byte)(charid >> 24)), 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
}