05.09.2013, 05:58
hey I have a new problem, only level 4 admins can see the report and /helpme. in order to see reports, they must do /reports. how to make it all admin levels can see it right away?
How to make it level 1 and up can see it?
also I have /helpme command it has messagetotwice but i dont know how to add the playerplaysound
How to make it level 1 and up can see it?
also I have /helpme command it has messagetotwice but i dont know how to add the playerplaysound
Код:
CMD:helpme(playerid, params[]) { new str[128], Name1[MAX_PLAYER_NAME]; if(sscanf(params,"s[128]", str)) { SendClientMessage(playerid, red,"CORRECT USAGE: /helpme [text]"); return 1; } GetPlayerName(playerid, Name1, sizeof(Name1)); format(str, sizeof(str),"{B80000}**New help request** {00FFF0}from - %s[%i]:{FFFF00} %s",Name1,playerid,str); MessageToTwice(red, str); SendClientMessage(playerid, yellow,"Your help request has been sent to online administrators, please be patient."); return 1; }