Hi there, in order to improve my scrpting "skills", i want that all the codes i make use the most officient way to work. I have juste an easy question today, what is the more efficient way to set armor to player ? By efficient, i mean the method that "increases" performance of the server. Like that i can understand a lot of things on these questions :
PHP Code:
give_item( id, "item_assaultsuit" );
or
PHP Code:
set_user_armor( id, 100 );
or
PHP Code:
cs_set_user_armor( id, 100, CS_ARMOR_VESTHELM );
Is this only a question about includes used ? Or is there really "the best way" to do ?
Thanks in advance for any answer