easy
[pawn]else if (strcmp(cmd, "ann", true) == 0) {
tmp = strtok(cmdtext, idx);
if (IsPlayerAdmin(playerid) == 0) SendClientMessage(playerid,COLOR_GREEN,"You Need To Be Rcon-Admin");
else if (!strlen(tmp)) { SendClientMessage(playerid,COLOR_GREEN, "Usage: /c ann [Message]"); }
else {
new string[256];
format(string,256,"%s",cmdtext[3]);
GameTextForAll(string);
}
return 1;
}[/pawn]
there