05.11.2010, 15:17
Quote:
Or
pawn Code:
|
Don't you mean
pawn Code:
if(IsPlayerAdmin(playerid)){
//code
}else return 0;
pawn Code:
if(!IsPlayerAdmin(playerid)) return 0;
Or
pawn Code:
|
if(IsPlayerAdmin(playerid)){
//code
}else return 0;
if(!IsPlayerAdmin(playerid)) return 0;