14.06.2014, 01:11
What did I do wrong here
pawn Код:
CMD:test(playerid,params[])
{
new string[128];
format(string, sizeof(string), "%s used /test command", GetName(playerid));
SendClientMessage(playerid, COLOR_YELLOW, string);
return true;
}
stock GetName(playerid)
{
new string[MAX_PLAYER_NAME];
GetPlayerName(playerid,string,sizeof(string));
return string;
}