0x21 Packet
Posted: Mon Feb 21, 2011 10:35 am
i wanna hook move rejection packet 0x21
if character cmdlevel > 1 - little freewalk system for staff
but i don't know how i can disable this packet. if character = staffmember - server should not send 0x21
isn't work for me
if character cmdlevel > 1 - little freewalk system for staff
but i don't know how i can disable this packet. if character = staffmember - server should not send 0x21
Code: Select all
Packet 0x21
{
Length 8
SendFunction movehook:movehook
}
Code: Select all
exported function movehook(who, byref pkt)
if (who.cmdlevel > 1)
return 1;
else
return 0;
endif
endfunction