11.01.2011, 23:07
Why would you loop 500 times to kick 1 random guy?
Suddenly there will be an error because it tries to kick id 2 but ID 2 doesn't exist... now we have a problem don't we?
So now, you look up ****** his foreach function, figure your way out on that one and you have a kick command that kicks a random dude =)
https://sampforum.blast.hk/showthread.php?tid=92679
pawn Код:
new r = random(CURRENT_PLAYERS);
Kick(r);
So now, you look up ****** his foreach function, figure your way out on that one and you have a kick command that kicks a random dude =)
https://sampforum.blast.hk/showthread.php?tid=92679

