29.09.2012, 19:41
I think it is the
line. You forgot to add a ! in front of the IsPlayerConnected function. What it does now is when the given player IS online, it stops the function. You can fix it by using
If you want to know more about the IF statement, you can check out the information on the wiki.
pawn Код:
if(IsPlayerConnected(jugadorid)) return 1;
pawn Код:
if(!IsPlayerConnected(jugadorid)) return 1;