How to make ID infront of My 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 ID infront of My name?!! (
/showthread.php?tid=95069)
How to make ID infront of My name?!! -
Headyheadster - 02.09.2009
Hello to all! How to make ID infront of My name in chat ?!!
Re: How to make ID infront of My name?!! -
Correlli - 02.09.2009
This was also asked and answered many times, try to search.
Re: How to make ID infront of My name?!! -
MenaceX^ - 02.09.2009
pawn Код:
format(string,sizeof string,"I am ID %d.",playerid);
SendClientMessageToAll(color,string);
Re: How to make ID infront of My name?!! -
pyrodave - 02.09.2009
pawn Код:
public OnPlayerText(playerid,text[])
{
new string[134];
format(string, sizeof(string), "(%i) %s", playerid, text);
SendPlayerMessageToAll(playerid, string);
return 0;
}
Re: How to make ID infront of My name?!! -
Headyheadster - 02.09.2009
Thanks alot