How To Remove ID On Chat - 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: How To Remove ID On Chat (
/showthread.php?tid=596811)
How To Remove ID On Chat -
CrunchxNoy - 22.12.2015
Hello Guys , I Need Help You Here . How- To soften Player Chat ID Player Such Omitted.
And If You Need Something For You See , Reply My Post
*Sory For My Bad English
Re: How To Remove ID On Chat -
TwinkiDaBoss - 22.12.2015
PHP код:
public OnPlayerText(playerid, text[])
{
new
msg[128],
pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(msg, sizeof(msg), "[%s] %s", pName, text);
SendClientMessageToAll(COLOR_RED, msg);
return 0;
}
If I understood correctly. This will remove their ID from the char or w/e u want.
Re: How To Remove ID On Chat -
CrunchxNoy - 22.12.2015
Quote:
Originally Posted by TwinkiDaBoss
PHP код:
public OnPlayerText(playerid, text[])
{
new
msg[128],
pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(msg, sizeof(msg), "[%s] %s", pName, text);
SendClientMessageToAll(COLOR_RED, msg);
return 0;
}
If I understood correctly. This will remove their ID from the char or w/e u want.
|
When I Try Compile . Namely there is an error Error 017 : undefined symbol " COLOR_RED How to Fix It ?
Re: How To Remove ID On Chat -
SupperRobin6394 - 22.12.2015
Quote:
Originally Posted by CrunchxNoy
When I Try Compile . Namely there is an error Error 017 : undefined symbol " COLOR_RED How to Fix It ?
|
OMG....
Define it!
Re: How To Remove ID On Chat -
TwinkiDaBoss - 22.12.2015
Quote:
Originally Posted by CrunchxNoy
When I Try Compile . Namely there is an error Error 017 : undefined symbol " COLOR_RED How to Fix It ?
|
Top of the script add
PHP код:
#define COLOR_RED 0xAA3333AA
Re: How To Remove ID On Chat -
CrunchxNoy - 22.12.2015
Quote:
Originally Posted by TwinkiDaBoss
Top of the script add
PHP код:
#define COLOR_RED 0xAA3333AA
|
Thanks For You Help !
Re: How To Remove ID On Chat -
E7mad - 23.12.2015
NOTE: The default chat is without ID AFAIK.
Re: How To Remove ID On Chat -
CrunchxNoy - 23.12.2015
Quote:
Originally Posted by E7mad
NOTE: The default chat is without ID AFAIK.
|
Thanks For You Info