SA-MP Forums Archive
Tag before 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)
+--- Thread: Tag before my Name (/showthread.php?tid=377272)



Tag before my Name - Blackazur - 13.09.2012

How can i make that when i connect, and i write what in the Chat, that before my Name a [OW] Tag here a Example:

Blacky without Tag, [OW]Blacky with the Tag.

How can i add this?


AW: Tag before my Name - BiosMarcel - 13.09.2012

OnPlayerConnect.......
{
new string[120];
new name[MAX_PLAYER_NAME];
format(string,sizeof(string),"[OW]%s",GetPlayerName(playerid,name,sizeof(name)));
SetPlayerName(playerid,string);
}