14.04.2011, 21:14
Time ago I saw a stock.. but I can't find it now, anyone has it?
Thanks.
Thanks.
Time ago I saw a stock.. but I can't find it now, anyone has it?
Thanks. |
stock SetPlayerNameWithCountry(playerid, country[])
{
new string[128], playername[16];
GetPlayerName(playerid, playername, 16);
format(string, 128, "[%s]%s", country, playername);
SetPlayerName(playerid, string);
return 1;
}
//Example of use:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp("/im-hungarian", cmdtext, true)) return SetPlayerNameWithCountry(playerid, "HUN");
return 0;
}