Page 1 of 1

UpdateskillWindow( character, attribute )

Posted: Fri Mar 06, 2009 6:48 am
by Tomi
UpdateSkillWindow() function..... same as UpdateStatus but works for single attributes

something like this

function UpdateSkillWindow( character, attribute_id )
var packet := CreatePacket( 0x3A, 0xD );
packet.SetInt16( 1, 13 );
packet.SetInt8( 3, 223 );
packet.SetInt16( 4, CInt( attribute_id - 1 ) );
packet.SendPacket( character );
endfunction