Jump to content

Recommended Posts

Have you checked the Activate.sqf?

 

What´s the point with "SuperAdmins"? I don´t see any difference from regular "AdminList" or am I wrong?

However on our server we use Adminlist and ModList and it works like a charm. When I come to think

of it we don´t even have an option for SuperAdmin. Put your ID in AdminList and I think it will work.

Link to comment
Share on other sites

  On 4/3/2014 at 6:59 PM, S3M4J said:

 

anyone any idea why my admin menu don't show up for me?

  Reveal hidden contents

 

AdminToolsMain

AdminList

 

I actually just realized why I wasn't able to figure out it wasn't working. Go into Activate.sqf and replace the very first line that has that if statement on it with this:

if ((getPlayerUID player) in AdminList || (getPlayerUID player) in ModList || (getPlayerUID player) in SAdminList) then { 
Link to comment
Share on other sites

Evening all, I have followed the installation instructions perfectly as far as I can tell. When I or anyone else try to load into my server we get stuck at waiting for server to start authentication. I have googled around and people say to try restarting the server, roll back to previous update, re install dayz and epoch. I have done all of these and nothing has worked.  I have also had a look at the rpt file but cannot see what in there is the cause of the problem. Could anyone please advise? *also did not post in rpt file as it is massive*

Link to comment
Share on other sites

  On 4/3/2014 at 9:14 PM, ProdigalSpoon said:

Evening all, I have followed the installation instructions perfectly as far as I can tell. When I or anyone else try to load into my server we get stuck at waiting for server to start authentication. I have googled around and people say to try restarting the server, roll back to previous update, re install dayz and epoch. I have done all of these and nothing has worked.  I have also had a look at the rpt file but cannot see what in there is the cause of the problem. Could anyone please advise? *also did not post in rpt file as it is massive*

 

Open your server's RPT file and delete all the content inside it, then save it and rerun your server. If it's too big for that, create a new text file on your desktop with the exact same name as your server's RPT file and then upload that file into your server directory where the original, large RPT file is located, overwriting the old big one with the new empty one.

 

Then, re-run the server. Log in and try to get the Admin Tools to show up. After a few seconds of this, re-open your server's RPT file and it will be a lot smaller with all relevant errors easily found.

 

Then, copy/paste its contents into Pastebin (http://pastebin.com/) and paste the resulting link here.

Link to comment
Share on other sites

  On 4/3/2014 at 9:26 PM, Gregarious said:

Open your server's RPT file and delete all the content inside it, then save it and rerun your server. If it's too big for that, create a new text file on your desktop with the exact same name as your server's RPT file and then upload that file into your server directory where the original, large RPT file is located, overwriting the old big one with the new empty one.

 

Then, re-run the server. Log in and try to get the Admin Tools to show up. After a few seconds of this, re-open your server's RPT file and it will be a lot smaller with all relevant errors easily found.

 

Then, copy/paste its contents into Pastebin (http://pastebin.com/) and paste the resulting link here.

 

You can actually just delete the .rpt. It will recreate itself with the new logs.

 

Simply delete the server rpt, run your server, try to log in and after a minute or so of being stuck at the screen close down the server and report the log using pastebin as stated above.

Link to comment
Share on other sites

  On 4/3/2014 at 9:32 PM, CommanderWolf said:

hey nox im having issues with the admin tool. it would say admin menu loading and nothing shows up.

 

You mean you have the scroll option for admin tools, but when you select it nothing happens? If so then something is wrong inside the code for the admintoolsmain.sqf

Link to comment
Share on other sites

  On 4/3/2014 at 10:45 PM, ProdigalSpoon said:

Would having the wrong PID stop everyone from loading the server?

 

Oops, disregard. I thought you were the guy whose menu wasn't showing up in-game.

 

Which server host do you use? If you're not getting any errors and your server isn't loading, I'd point my finger at the server host itself. You could also try removing the tools to see if the server responds. That'll help troubleshoot where the fault lies.

Link to comment
Share on other sites

Try only using this in the init..sqf:

[] execVM "admintools\Activate.sqf";
[] execVM "admintools\AdminList.sqf";

and remove all the other Epoch Admin Tools-specific stuff, like the antihack change.

 

I wonder if DayZ.st uses a specific antihack that kills the server startup if it isn't being used.

Link to comment
Share on other sites

well ill post my sqfs 

 

Admin list:

 

// Epoch Admin Tools
//Replace 111111111 with your ID. 
AdminList = [
"6694592", // <Your In-Game Name here>
"230905158", // <Your In-Game Name here>
"92315206", // <Your In-Game Name here>
"114012294" // <Admin In-Game Name>
];
ModList = [
"109766726", // <Moderator In-Game Name>
"999999999" // <Moderator In-Game Name>
];
 
tempList = []; //DO NOT MODIFY THIS VARIABLE
 
Activate:
 
if ((getPlayerUID player) in AdminList || (getPlayerUID player) in ModList then {
 
if (isnil "tracker") then {tracker = 0;};
 
if (tracker == 0) then
{
 
[]spawn
{
private["_veh", "_idx"];
_idx = -1;
 
while {true} do
{
if (_idx == -1) then
{
_idx = (vehicle player) addaction [("<t color="#585858"">" + ("Admin Menu") +"</t>"),"admintools\Eexcute.sqf","",0,false,true,"","];
_veh = vehicle player;
};
 
if (_veh != vehicle player) then
{
_veh removeAction _idx;
_idx = -1;      
};
Sleep 1;
};
};
tracker = 1;
};
 
waituntil {!alive player ; sleep 1;};
tracker = 0;
};
Link to comment
Share on other sites

  On 4/3/2014 at 11:08 PM, ProdigalSpoon said:

Antihack changed back, still stuck at waiting for server to start authentication

 

Do me a favor and remove Epoch Admin Tools from your mission piece by piece until you identify at what point the server starts working again, then let me know which line it was that was affecting you.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...