07.10.2013, 12:30
Hay guys, i need some help in this /announce CMD
The command works but it shows me this style with this colour
But i need to get it with white colour
Help please in it
Code:
dcmd_ann(playerid,params[]) { #pragma unused params new string[128], message[128]; if(PlayerInfo[playerid][Level] < 3) return SendClientMessage(playerid,COLOR_WHITE,"{FF0000}[ERROR] {FFFFFF}You don't have an appropriate administration level to use this command."); if(sscanf(params, "u", message)) return SendClientMessage(playerid,COLOR_WHITE,""COL_ORANGE"[USAGE] {FFFFFF}/ann(ounce) [MESSAGE]"); { for(new i = 0; i < MAX_PLAYERS; i++) { format(string,sizeof(string),"%s",message); GameTextForPlayer(playerid,params,4000,4); } } return 1; }
But i need to get it with white colour
Help please in it