UpdateskillWindow( character, attribute )

Archive of the older Feature Request Forum Posts

Moderator: POL Developer

Locked
Tomi
POL Developer
Posts: 478
Joined: Tue Feb 21, 2006 5:08 pm

UpdateskillWindow( character, attribute )

Post 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
Locked