SA-MP Forums Archive
id next to nick - 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)
+--- Thread: id next to nick (/showthread.php?tid=424318)



id next to nick - toi - 21.03.2013

How do I get the id of the player next to his nick? example [TRR] Dark (id: 0)
Tanks


Re: id next to nick - Ironboy - 21.03.2013

Under OnPlayerText callback

pawn Код:
new  msg[128],tPlayerName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, tPlayerName, MAX_PLAYER_NAME);
    format(msg, sizeof(msg), "%s: (%d) {FFFFFF}%s", tPlayerName, playerid, text);



Re: id next to nick - toi - 21.03.2013

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
Under OnPlayerText callback

pawn Код:
new  msg[128],tPlayerName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, tPlayerName, MAX_PLAYER_NAME);
    format(msg, sizeof(msg), "%s: (%d) {FFFFFF}%s", tPlayerName, playerid, text);
Do not I get the id