24.02.2013, 03:05
By the way, this is redundant...
You only need to check if the response was 0/false, there's no reason to check if it was 1/true. So, just do this:
pawn Код:
if(!response) return Kick(playerid);
if(response)
pawn Код:
if(!response)
return Kick(playerid);