Aparently the package is never send from the client in the first place.
Tested with client 5.02g, with uoexpasion 'AOS'
Did I miss something, or sis I hook the packet wrong?
Code: Select all
Packet 0xD9
{
Length variable
ReceiveFunction clientinfo:HandleClientInfo
}
Code: Select all
use uo;
program ClientInfo()
Print("PacketHooks - Client Info" );
return 1;
endprogram
exported function HandleClientInfo(who, byref packet)
who := who;
packet := packet;
Print("who: " + who.name );
Print("packet: " + packet );
// Return 0, to let POL process the packet too.
return 0;
endfunction