@xSunSet don't use SargeAI.. I personally forgot that... I know that there is a bug (search on dayzepoch forums) that you can't enter a vehicle because of SargeAI.. Otherwise, post your init.sqf, server_functions and server_UpdateObject and I will give it a look.
I'm sorry but the Rubies tutorial is perfectly working.. And btw, please, if you do have a question for EPOCH, please come on dayzepoch forums. They will be able to help you quicker.
Look your .rpt.. If on top of you RPT there are "file xxx.sqf not found" where xxx is server_functions.sqf, server_monitor.sqf, etc (all files located in dayz_server.pbo) then you need to:
- Open your dayz_server.pbo with PBO Manager,
- Click on the blue little wheel on top of PBO Manager's...
if ((getPlayerUID player) in ["addUIDsHERE"]) then {
{
//[] execVM "\z\addons\dayz_code\system\antihack.sqf";
} else {
[] execVM "\z\addons\dayz_code\system\antihack.sqf";
};
Add your UID, it will 99% sure work
Change
//anti Hack
if (not admin) then {
[] execVM "\z\addons\dayz_code\system\antihack.sqf";
};
to
AdminsExList = [
"343243", //PUT A ADMIN UID HERE.
"343434", //PUT A ADMIN UID HERE.
"etc" //PUT A ADMIN UID HERE.
];
if ( !(getPlayerUID in AdminsExList) ) then {
[] execVM...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.