25.06.2012, 06:31
Hey guys. When I type /o and the message for example, "/o Hello world" it will display the message like normal but it will display a coloured user_name such as blue for cops and red for admins. How do I remove this?
Код:
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0) // By CuervO_NegrO { if(IsPlayerConnected(playerid)) { if(gPlayerLogged[playerid] == 0) { SendClientMessage(playerid, COLOR_GREY, "** You havent logged in yet !"); return 1; } if ((noooc) && PlayerInfo[playerid][pAdmin] < 1) { SendClientMessage(playerid, COLOR_GRAD2, "** The OOC channel has been disabled by an Admin !"); return 1; } if(PlayerInfo[playerid][pMuted] == 1) { SendClientMessage(playerid, TEAM_CYAN_COLOR, "You cannot speak, you have been silenced"); return 1; } new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[128]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/o)oc [OOC chat]"); return 1; } if(PlayerInfo[playerid][pAdmin] == 0) { format(string, sizeof(string), "(( %s ))", (result)); } else { format(string, sizeof(string), "[[ %s ]]", (result)); } SendPlayerMessageToAll(playerid, string); new year,month,day; getdate(year, month, day); new hour, minute, second; gettime(hour,minute,second); format(string, sizeof(string), "(%d/%d/%d)[%d:%d:%d] %s (OOC): (%s)",day,month,year,hour,minute,second, sendername, result); PublicLog(string); } return 1; }