Hey guy's im new in scripting with amxmodx plugins. My Question is easy, i want to restrict an item to the best player in a tream, but it dint work.
There are at the player start not realy a "best" player so i think thers the bug and so can more than one player run with this item.
How i can restrict it to "one" item only per team and then also for the last player wich is alife?!
Work it with:
Code:
if( g_iCurrentRound == 0 )
return ITEM_DISABLED;
if i turn it to:
Code:
if( g_iCurrentRound == 1 )
return ITEM_DISABLED;
Or means iCurrentRound the first round in the game?!
By the way thanks for help!
__________________