SA-MP Forums Archive
Little line in the middle - 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: Little line in the middle (/showthread.php?tid=210518)



Little line in the middle - remyguys - 13.01.2011

Is it possible to remove this little line ingame chat and above peoples head. Normally on a RP server itslike: Name_Name but now i see a lot of Name Name. Without the little stripe.

Anyway to remove it?

Thanks in Advance


Re: Little line in the middle - JamesC - 13.01.2011

Search


Re: Little line in the middle - yarrum3 - 13.01.2011

use something like this
Код:
stock GetPlayerNameEx(playerid)
{
   new string[MAX_PLAYER_NAME];
   GetPlayerName(playerid, string, sizeof(string));
   for(new i; i < MAX_PLAYER_NAME; i++) if (string[i] == '_') string[i] = ' ';
   return string;
}
And when your doing your format for like a /me command put in GetPlayerNameEx on it

EDIT : dam i posted to late oh well