27.01.2013, 22:42
Hi,it don't show the names,if i go do /adminduty it show it how to make it show with out /adminduty?
Код:
CMD:admins(playerid,params[]) // Admins command { SendClientMessage(playerid,-1,"Admin Online"); for(new i = 0; i <MAX_PLAYERS; i++) { if(IsOnAdminDuty[i] == true) { new aname[24],astring[124]; GetPlayerName(playerid,aname,sizeof(aname)); format(astring,sizeof(astring),"%s (Duty)%s",aname); SendClientMessage(playerid,-1,astring); } } return 1; }