Ligh113 Posted August 14, 2020 Report Share Posted August 14, 2020 Salut , as avea nevoie de putin ajutor pentru a edita comanda /admins . As vrea ca cand dai /admins sa iti raspunda pe chat in felul urmator : { admin level } {username} - grad-ul ce il detine pe server. ( admin 7 scripter ; admin 8 fondator etc ) Cine poate sa ma ajute va rog un reply sau mesaj in privat. Quote Link to comment Share on other sites More sharing options...
RaulDume Posted August 15, 2020 Report Share Posted August 15, 2020 Faci 2 stock-uri mai jos de comanda '/admins'. Citat stock GetAdminRank(playerid) { new string[180]; switch(PlayerInfo[playerid][pAdmin]) { case 1: string = "Admin 1"; case 2: string = "Admin 2"; case 3: string = "Admin 3"; case 4: string = "Co-Owner"; case 5: string = "Owner"; case 6: string = "Fondator"; case 7: string = "{FF0000}Fondator / Scripter"; } return string; } stock GetAdminRank2(admid) { new string[180]; switch(admid) { case 1: string = "Admin 1"; case 2: string = "Admin 2"; case 3: string = "Admin 3"; case 4: string = "Co-Owner"; case 5: string = "Owner"; case 6: string = "Fondator"; case 7: string = "{FF0000}Fondator / Scripter"; } return string; } Bun , aici poti sa-ti modifici tu gradele. Acum mergi la comanda /admin , faci un loop in felul urmator : Citat Creezi 2 variablile : new string[128], count; Citat foreach(Player,i) { if(PlayerInfo[pAdmin] == j && GetPVarInt(i, "Cover") == 0) { format(string, sizeof(string), "%s %s (%d)", GetAdminRank(i), GetName(i),i); SendClientMessage(playerid, COLOR_WHITE, string); count++; } Cam asa ar trebui sa arate. Sper ca ti-am fost de ajutor. 1 Quote Link to comment Share on other sites More sharing options...
Ligh113 Posted August 15, 2020 Author Report Share Posted August 15, 2020 Multumesc foarte mult . Quote Link to comment Share on other sites More sharing options...
Ligh113 Posted August 15, 2020 Author Report Share Posted August 15, 2020 +1 rep Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.