20.04.2011, 17:54
i will try but how to make command to add these ...
and what should i make if i have 6 level
Level 6 is Owner
but odhers what i full add there ?
EDIT: it wont work ....
and what should i make if i have 6 level
Level 6 is Owner
but odhers what i full add there ?
EDIT: it wont work ....
Код:
smog.pwn(8167) : warning 219: local variable "name" shadows a variable at a preceding level smog.pwn(8168) : error 035: argument type mismatch (argument 2) smog.pwn(8167) : warning 204: symbol is assigned a value that is never used: "name"
PHP код:
if(PlayerInfo[playerid][Level] < 6) // change 5 to whatever the highest number is
{
new name[MAX_PLAYER_NAME], newname[128], tag[32];
GetPlayerName (playerid, name, MAX_PLAYER_NAME);
format (newname, sizeof(newname), "[OWNER]%s", tag, name);
SetPlayerName(playerid, newname);
}
PHP код:
8167 = new name[MAX_PLAYER_NAME], newname[128], tag[32];
8168= GetPlayerName (playerid, name, MAX_PLAYER_NAME);