SA-MP Forums Archive
How to make player ID near players name??? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How to make player ID near players name??? (/showthread.php?tid=245845)



How to make player ID near players name??? - Dozikas - 02.04.2011

How to make player ID near player name
example:
"Dozikas(1): Hello all."



Re: How to make player ID near players name??? - xir - 02.04.2011

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[128], name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, sizeof(string), "%s(%d): %s",name,playerid, text);
    SendClientMessageToAll(-1, string);
    return 0;
}
Here, try this