27.03.2012, 05:38
pawn Код:
if(!IsPlayerAdmin(playerid)) == 0)
and fail it checks if player is not logged as rcon administrator.
you could just do
pawn Код:
if(!IsPlayerAdmin(playerid))
plus bad indentation


EDIT:
also this one is fail
pawn Код:
if(playerid == id)
this is the correct one
pawn Код:
if(id == playerid)
you could just do
pawn Код:
if(id == INVALID_PLAYER_ID)