08.05.2010, 19:51
I have a big (noobish) problem.
I want the playerid to appear next to the playername in the chatbox, like: Razor[MM] (0): textdsfsgsgfdgh
I tried this:
I want the playerid to appear next to the playername in the chatbox, like: Razor[MM] (0): textdsfsgsgfdgh
I tried this:
Код:
new string[255]; new playername[MAX_PLAYER_NAME]; GetPlayerName(playerid, playername, sizeof(playername)); format(string, sizeof(string), "%s [%d]: %s", playername, playerid, text); SendClientMessageToAll(GetPlayerColor(playerid),string);