01.07.2012, 08:51
Hello i was wondering if anyone knew how to change
Into of sending it to all of the admins to just the level 7 admins? does anyone know how to do this?
pawn Код:
CMD:o(playerid,params[]) {
#pragma unused params
if(PlayerInfo[playerid][Level] >= 7) {
new string[128]; format(string, sizeof(string), "[OWNER] %s: %s", PlayerName2(playerid), params[0] );
MessageToAdmins(green,string);
} else return SendClientMessage(playerid,red,"ERROR: You need to be owner to use this command");
return 1;
}