29.08.2009, 17:50
Well add a check then to see if you've already picked up the PickUp, because it's called constantly while standing on it.
pawn Код:
new PickedUp[MAX_PLAYERS] = 0;
// When he picks it up
PickedUp[playerid] = 1;
//And before doing the pickup code
if(PickedUp[playerid] == 0)
{
//Do the code
}

