SA-MP Forums Archive
Help please, Chat range - 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: Help please, Chat range (/showthread.php?tid=490424)



Help please, Chat range - Le3aT - 26.01.2014

Hey, I want to change the chat to range one like RP

And i want to remove the markers.

Can you help me please ?

Oh last request..

I want to make all with color white the names


Re: Help please, Chat range - [TMS]Legena - 26.01.2014

Код:
public OnPlayerText(playerid, text[])
{
    new textv2[128], name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof (name));
    format(textv2, sizeof (textv2), "{FFFFFF}%s: %s", name, text);
    SendPlayerMessageToAll(playerid, textv2);
    return 0;
}