BluePhoenix175
Valued Member!
sorry for going AWOL. i had some family problems to deal with and i finally got them all sorted out. i am getting back to work fixing the bugs in the tools. thank you all for your patience.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Not if you update your hotkeys file with the code above.
sorry for going AWOL. i had some family problems to deal with and i finally got them all sorted out. i am getting back to work fixing the bugs in the tools. thank you all for your patience.
make sure you have set the correct instance # in init.sqfI tried installing this just now but me and all the players on the server got stuck on the 'Loading Character Data. Please Wait.' screen
Looked through the thread but no one else has mentioned it as far as I can see, but I do have this installed on my server: http://opendayz.net/threads/1-7-6-1-new-antihack-script.8552/
So I guess it could be that that's causing it? Any suggestions much appreciated![]()
what restriction #, upload your scripts.txtI get script restriction for teleporting. I have it set to 1 in scripts.txt, any help? (Probably a dupe question but there are 18 pages...)
should be fixedHas the lagg stopped yet on this?
the only language i know is English sorry, if someone wants to translate it for me i will post itIt becomes possible to publish a German manual for the admintool,
I can very little english. many times already, thanks
greetings Daniel
Did you fix the lag on chernarus?So no more freezing in place and having to relog?![]()
should be fixed
time - dayz_lastCheckBit > 10
time - dayz_lastCheckBit > 0.05
//Player only
if (!isDedicated) then {
hotkey_hitme = 0;
hotkey_tools = 0;
dayz_spaceInterrupt = {
private ["_dikCode", "_handled"];
_dikCode = _this select 1;
_handled = false;
if (_dikCode in actionKeys "User20" and hotkey_hitme == 0 and (time - dayz_lastCheckBit > 0.05)) then {
dayz_lastCheckBit = time; hotkey_hitme = 1;
execVM "debug\playerstats.sqf";
};
if (_dikCode in actionKeys "User20" and hotkey_hitme == 1 and (time - dayz_lastCheckBit > 0.05)) then {
dayz_lastCheckBit = time; hintSilent ""; hotkey_hitme = 0;
};
if (_dikCode in actionKeys "User19" and hotkey_tools == 0 and (time - dayz_lastCheckBit > 0.05)) then {
dayz_lastCheckBit = time; hotkey_tools = 1;
execVM "admintools\AdminToolsMain.sqf";
};
if (_dikCode in actionKeys "User19" and hotkey_tools == 1 and (time - dayz_lastCheckBit > 0.05)) then {
dayz_lastCheckBit = time; hintSilent ""; hotkey_tools = 0;
};
if ((_dikCode == 0x3E or _dikCode == 0x0F or _dikCode == 0xD3) and (time - dayz_lastCheckBit > 0.05)) then {
dayz_lastCheckBit = time;
};
_handled
};
};
I want to know alsoWhat changed that fixed the lag issues?