Jump to content
  • 0

Cant get admin panel to work.


AOCgames

Question

20 answers to this question

Recommended Posts

  • 0

If you're not getting any errors and nothing happens, try logging out to the lobby, then re-joining the server. I've noticed that the Admin Tools don't always enable themselves after logging in the first time, but relogging fixes it.

 

If this still doesn't work, you may want to post some more info - which tools you're using, your init.sqf, and anything else that might help.

Link to comment
Share on other sites

  • 0

have also seen the admin tools not load first time. is usually when you are first to join the server..

epoch has some catches to stop the black screen that you would get otherwise.. still means a relog.

seems like you had it workung. go to your instance_ folder and read through the .rpt file for some clues at errors. or add -showscripterrors to your client startup parameters..

Link to comment
Share on other sites

  • 0

have also seen the admin tools not load first time. is usually when you are first to join the server..

epoch has some catches to stop the black screen that you would get otherwise.. still means a relog.

seems like you had it workung. go to your instance_ folder and read through the .rpt file for some clues at errors. or add -showscripterrors to your client startup parameters..

Well, relogged and nothing happen. Tried twice. Where is this Instance folder. Not sure how to do the Showscripterrors. My friend did the install then handed it over to me when it didnt work. 

Link to comment
Share on other sites

  • 0

Well did all that and nothing happened. Only thing i couldn't do is the DZE_teleport = [99999,99999,99999,99999,99999]; and the  "    if(vehicle _x != _x && (vehicle _x getVariable [""Sarge"",0] != 1) && !(vehicle _x in _safety) && (isPlayer _x) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {" \n. Couldn't find where to put them 

Link to comment
Share on other sites

  • 0

It's possible you might not be using the right default PBO file from your host providers. Usually in the server_pbo in the init folder then in server_functions.sqf there is a line that looks like this somewhere

#include "\Antihack\Antihack.sqf"

or something like that is what will trigger it.

 

At one point every time that I reset my server this one provider would have to manually add in the line for me so see if you can get the line and to make sure they have added it in themselves.

Link to comment
Share on other sites

  • 0

-1 download all the bluephoenix tool folder from here : https://github.com/BluePhoenix175/DayZ-Admin-Tools-

 

-2 merge your mission.pbo ( i assume you ll use chernarus map for epoch )

 

-3 Put in your mission.pbo merged the admintools folder

 

-4 open you mission.pbo/init files and llok at the begining of the init the // DayZ Epoch Config...

 

Right after the line: dayz_maxLocalZombies = 30; // Default = 30 add this:

DZE_teleport = [99999,99999,99999,99999,99999];//Admin menus

Save your init.sqf

 

-5 open your mission.pbo/admintools/Activate.sqf

add the admin UID you wanted to get the admin menu allowed in this line:

if ((getPlayerUID player) in ["xxxxxx","xxxxxxx"]) then {

( replace the xxxxxxx by your admin UID, you can put as many as you wanted )

 

-6 open your mission.pbo/admintools/AdmintoolsdMain.sqf

add your UID again on this line :

if ((getPlayerUID player) in ["xxxxxxxxxx","xxxxxxxxxx"]) then {

 

After this you have to add UID on the // super admin commented line

 if ((getPlayerUID player) in ["xxxxxxxx","xxxxxxxxxx"]) then { // super admins

 

about the // admins  and //mods commented line you have to leave it like this:

 if ((getPlayerUID player) in [""]) then { //mods

 if ((getPlayerUID player) in [""]) then { //admins

 

-7 Save your files and repack your misson.pbo

Install the new mission.pbo on your server and all will goes correctly.

 

About weapon, vehicles, skins, healing, teleporting,  etc you have to edit your battleyes restrictions to allow it to spawn things, teleporting etc or you ll be kicked once you ll use it

You may launch Bluephoneix like that, try to use it and see what BE restriction is coming, then go in your BE server folder, the right one and modify it ( by changing the 5 by 1 in the list)

 

About the vehicles dont let you entering in, you have to modify the server_function.sqf by changing the killing hacker line...

Merge your DayZserver.pbo

In the dZserver/init/serverfunction.sqf, around he end of the file, found this line:

 

if(vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {

 

And change it with this one:

if (vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x) && (vehicle _x getVariable ["Sarge",0] != 1) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {

Save it and repack your DZserver.pbo

install it in your server

 

And everything will normaly goes right.

Link to comment
Share on other sites

  • 0

-1 download all the bluephoenix tool folder from here : https://github.com/BluePhoenix175/DayZ- ... master.zip

 

-2 Unpack your mission.pbo ( i assume you ll use chernarus map for epoch )

 

-3 Put in your mission.pbo the admintools folder

 

-4 open you mission.pbo/init files and look at the begining of the init the // DayZ Epoch Config...

 

Right after the line: dayz_maxLocalZombies = 30; // Default = 30 add this:

DZE_teleport = [99999,99999,99999,99999,99999];//Admin menus

Save your init.sqf

 

-5 open your mission.pbo/admintools/Activate.sqf

add the admin UID you wanted to get the admin menu allowed in this line:

if ((getPlayerUID player) in ["xxxxxx","xxxxxxx"]) then {

( replace the xxxxxxx by your admin UID, you can put as many as you wanted )

 

-6 open your mission.pbo/admintools/AdmintoolsdMain.sqf

add your UID again on this line :

if ((getPlayerUID player) in ["xxxxxxxxxx","xxxxxxxxxx"]) then {

 

After this you have to add UID on the // super admin commented line

 if ((getPlayerUID player) in ["xxxxxxxx","xxxxxxxxxx"]) then { // super admins

 

about the // admins  and //mods commented line you have to leave it like this:

 if ((getPlayerUID player) in [""]) then { //mods

 if ((getPlayerUID player) in [""]) then { //admins

 

-7 Save your files and repack your misson.pbo

Install the new mission.pbo on your server and all will goes correctly.

 

About weapon, vehicles, skins, healing, teleporting,  etc you have to edit your battleyes restrictions to allow it to spawn things, teleporting etc or you ll be kicked once you ll use it

You may launch Bluephoneix like that, try to use it and see what BE restriction is coming, then go in your BE server folder, the right one and modify it ( by changing the 5 by 1 in the list)

 

About the vehicles dont let you entering in, you have to modify the server_function.sqf by changing the killing hacker line...

Unpack your DayZserver.pbo

In the dZserver/init/serverfunction.sqf, around he end of the file, found this line:

 

if(vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {

 

And change it with this one:

if (vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x) && (vehicle _x getVariable ["Sarge",0] != 1) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {

Save it and repack your DZserver.pbo

install it in your server

 

And everything will normaly goes right.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...