[WORKING] Admin Tool 1.7.7.1

jasonpointer

Valued Member!
Hello all,

After many frustrating months and editing I think i got this to work since the original developers "BluePhoenix175" and "itsyuka" from Here have taken some time away. Thought i start helping out with people since the new update 1.7.7.1 came out and a lot don't know what to do so i did copy and updated their script for it to work with the new update,

Since there is too much to post here i have made a guide on my website at Doom56.com including updated files

Please let me know if you run into any problems or need help out what i can do

LINK: http://doom56.com/dayz/admin-tool-1-7-7-1

PLEASE LEAVE ME FEEDBACK
(and a cheeky like lol)

NOTE!!!!
Im getting a large amount of reports that the admin tools does not work very well when running Epoch.

I am looking for a fix but if you have a work around then please let me know.

For other assistance go to the fourm HERE

If you need further assistance and want to contact me then please go to www.doom56.com/contact and i will help as much as i can within 48 hours.
 
Too add UID's

simply open admintools\Activate.sqf
Basically in line 2 just edit in btween the brackets add this in
Code:
,"PLAYERID"
E.g
if ((getPlayerUID player) in ["11111111"]) then {
to
if ((getPlayerUID player) in ["11111111","22222222"]) then {

Code:
waituntil {!alive player ; !isnull (finddisplay 46)};
if ((getPlayerUID player) in ["111111","222222"]) then {
    sleep 30;
    player addaction [("<t color=""#0074E8"">" + ("Tools Menu") +"</t>"),"admintools\Eexcute.sqf","",5,false,true,"",""];
};


Also Edit admintools\AdminToolsMain.sqf

Add all UID's like you did above in this line
Line12 if ((getPlayerUID player) in ["111111","222222","333333","444444","555555"]) then { //all admins

Any lines you dont want to allocate anyone then just edit so its like this
LineXX if ((getPlayerUID player) in [""]) then

For basic sub admin, Add in their UiD's here. If not then leave it like above ""
Line13 if ((getPlayerUID player) in ["111111"]) then { //mods

For sub admins, Add their UiD's here. If not blank it like above ""
line23 if ((getPlayerUID player) in ["222222","333333"]) then { //admins

For full admin powers, Add their UiD's. If not blank it like above ""
line33 if ((getPlayerUID player) in ["444444","555555"]) then { // super admins

Hope this is clear enough.
 
Back
Top