Posts: 517
Threads: 112
Joined: Oct 2013
Sup guys i want when someone use [GC] Tag in his name the tag colour Change to Red
Posts: 676
Threads: 36
Joined: Jun 2015
Reputation:
0
I think in maxio give it:
public OnPlayerText(playerid, text[]){
new Cells[144],name[MAX_PLAYER_NAME];
if(strfind(name, "[GC]", true) != -1){
format(Cells, sizeof (Cells), "{ff0000}%s: %s", name, text);
SendPlayerMessageToAll(playerid, Cells);
}else{
format(Cells, sizeof (Cells), "%s: %s", name, text);
SendPlayerMessageToAll(playerid, Cells);
}
return 0;
}