name help :D - 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: name help :D (
/showthread.php?tid=153130)
name help :D -
iJumbo - 07.06.2010
how i can put (ITA) or (ENG) under a name like
(ITA)[ZDM]jumbo : bla bla bla
Re: name help :D -
[XST]O_x - 07.06.2010
pawn Код:
new name[21],str[21];
GetPlayerName(playerid,name,sizeof(name));
format(str,sizeof(str),"(ITA)%s",name); // Or (ENG)
SetPlayerName(playerid,str);