Quote:
Originally Posted by CalvinC
That wont work, these will be invalid:
pawn Код:
if (userid == INVALID_PLAYER_ID) return SendErrorMessage(playerid, "You have specified an invalid player.");
if(PlayerData[userid][pAdmin] < 1) return SendErrorMessage(playerid, "This player is not an administrator.");
And again:
It should be like this:
pawn Код:
CMD:admintitle(playerid, params[]) { static atitle[32], userid;
if(PlayerData[playerid][pAdmin] < 6) return SendErrorMessage(playerid, "You don't have permission to use this command.");
if(sscanf(params, "us[32]", userid, atitle)) return SendSyntaxMessage(playerid, "/admintitle [ID/Name] [Title]");
if (userid == INVALID_PLAYER_ID) return SendErrorMessage(playerid, "You have specified an invalid player.");
if(PlayerData[userid][pAdmin] < 1) return SendErrorMessage(playerid, "This player is not an administrator.");
format(PlayerData[userid][pAdminTitle], 32, atitle);
return 1; }
|
I see what you mean now, I will give it a try