[SUPPORT] - Sheeps Epoch Repack

think i found it
Code:
            if(BurnTentsScript)then{
                if(("ItemJerrycan" in _magazinesPlayer) && _hasMatches) then {
                    if (s_player_packtent < 0) then {
                        s_player_packtent = player addAction [localize "STR_EPOCH_ACTIONS_DESTROYTENT", "scripts\BurnTents\burn_tent.sqf",_cursorTarget, 1, true, true, "", ""];
                };
            };
        }
also
Code:
        if (_isMan && !_isZombie && !_isAnimal) then {
            _player_studybody = true;
        }

both missing ;

testing now
 
ok Its probably worth mentioning that 1.63 now runs differently. The action now needs to be defined and then actioned: So example this
Code:
        player removeAction s_player_fuelauto;
        s_player_fuelauto = -1;
now needs to be this
Code:
        s_player_fuelauto = -1;
        player removeAction s_player_fuelauto;
This then reduces the number of client side RPT logs and ultimatly does also reduce lag possibly increases FPS.
 
ok Its probably worth mentioning that 1.63 now runs differently. The action now needs to be defined and then actioned: So example this
Code:
        player removeAction s_player_fuelauto;
        s_player_fuelauto = -1;
now needs to be this
Code:
        s_player_fuelauto = -1;
        player removeAction s_player_fuelauto;
This then reduces the number of client side RPT logs and ultimatly does also reduce lag possibly increases FPS.
ill get one to changing it now
 
ok narrowed down the problem to a script if i set all custpm scripts to false in script control trader menu works....now to find the culprit...i think it may be the trade from vehicles/backpack :(
 
ok Its probably worth mentioning that 1.63 now runs differently. The action now needs to be defined and then actioned: So example this
Code:
        player removeAction s_player_fuelauto;
        s_player_fuelauto = -1;
now needs to be this
Code:
        s_player_fuelauto = -1;
        player removeAction s_player_fuelauto;
This then reduces the number of client side RPT logs and ultimatly does also reduce lag possibly increases FPS.
made the changes to all the refferences and wow not a single RPT error... you the man brave :p
 
ok so if i disable the following scripts trader menus work :)


still not sure which script is causing the issue will have to go thru them and turn em on 1 by 1 until i find the culprit :(

//deploy Bike
DeployBikeScript = false;
//Burn Tents
BurnTentsScript = false;
//Sirens
SirenScript = false;
//Animate MV22 wings
AnimateMV22script = false;
//Animate SUV Hatch
AnimateSUVscript = false;
//Nitro
NOSScript = false;
//Drink Water
DrinkWaterScript = false;
//Tent Sleep Healing
TentHealScript = false;
//Arrest
ArrestScript = false;
//Anti Zombie Emitter
AntiZombieEmitterScript = false;
//Zombie bait
ZombieBaitScript = false;
//Zombie bomb bait
ZombieBombScript = false;
//DZAI CLient
DZAIClientScript = false;
//Take Clothes
TakeClothesScript = false;
//Bury Body
BuryHumanScript = false;
//Cannibalism
CannibalismScript = false;
 
FOUND IT!!!

99% sure its this
//Sirens
SirenScript = false;

may also be this!!
//Animate MV22 wings
AnimateMV22script = false;
//Animate SUV Hatch
AnimateSUVscript = false;

setting these to true causes big issues (and some RPT errors...so time to fix em :) )
 
So looking at your last.
change the mv22 and suv to this
Code:
if (_inVehicle && (_vehicle isKindOf "MV22")) then {
   if (isEngineOn _vehicle) then {[_vehicle,0] call mv22_pack;};
   if (mv22_fold < 0) then {
     themv22 = _vehicle;
     if !(isEngineOn themv22) then {
       mv22_fold = themv22 addAction ["Fold","scripts\animate\mv22_fold.sqf","",5,false,true];
       mv22_unfold = themv22 addAction ["UnFold","scripts\animate\mv22_unfold.sqf","",5,false,true];
       mv22_open = themv22 addAction ["Open Ramp","scripts\animate\mv22_open.sqf","",5,false,true];
       mv22_close = themv22 addAction ["Close Ramp","scripts\animate\mv22_close.sqf","",5,false,true];
     };
   };
   if (isEngineOn themv22) then {
     themv22 removeAction mv22_fold;
     mv22_fold = -1;
     themv22 removeAction mv22_unfold;
     mv22_unfold = -1;
     themv22 removeAction mv22_open;
     mv22_open = -1;
     themv22 removeAction mv22_close;
     mv22_close = -1;
   };
} else {
    if (!isNil "themv22") then {
       themv22 removeAction mv22_fold;
       mv22_fold = -1;
       themv22 removeAction mv22_unfold;
       mv22_unfold = -1;
       themv22 removeAction mv22_open;
       mv22_open = -1;
       themv22 removeAction mv22_close;
       mv22_close = -1;
   };
};
 
Last edited:
OMG dont i feel like a dick.... i had added

dayz_addsirens = [];
themv22 = [];
thesuv = [];

to my variables to stop RPT spam and that was causing all the trouble :(

anyway heres the RPT errors that i now get


CLIENT RPT
Code:
Error in expression <FindDisplay 106) };
};
};
if ( _skip && _if ) then {
if ( AGN_safeZoneMessages )>
  Error position: <_if ) then {
if ( AGN_safeZoneMessages )>
  Error Undefined variable in expression: _if
File mpmissions\__CUR_MP.Chernarus\scripts\CAGN\agn_SafeZoneCommander.sqf, line 196
Error in expression <rens_on = -1;
s_player_sirens_off = -1;
dayz_addsirens removeAction s_player_sir>
  Error position: <dayz_addsirens removeAction s_player_sir>
  Error Undefined variable in expression: dayz_addsirens
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 59
Error in expression < = -1;
mv22_open = -1;
mv22_close = -1;
themv22 removeAction mv22_fold;
themv22 >
  Error position: <themv22 removeAction mv22_fold;
themv22 >
  Error Undefined variable in expression: themv22
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 142
Error in expression <} else {
suv_open = -1;
suv_close = -1;
thesuv removeAction suv_close;
thesuv re>
  Error position: <thesuv removeAction suv_close;
thesuv re>
  Error Undefined variable in expression: thesuv
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 165
"_iClass isNil, exiting loot spawn!"
Error in expression < find _type;
_weights = dayz_CBLChances select _index;
_cntWeights = count _weig>
  Error position: <select _index;
_cntWeights = count _weig>
  Error Zero divisor
File z\addons\dayz_code\compile\building_spawnLoot.sqf, line 64
"Admin Tools: FunctionKeys.sqf Loaded"
"Admin Tools: NumberKeys.sqf Loaded"
Error in expression <omb;
};
};
if(NOSScript)then{
_isaCar = _cursorTarget isKindOf "Car";
if (("Item>
  Error position: <_cursorTarget isKindOf "Car";
if (("Item>
  Error Undefined variable in expression: _cursortarget
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 1311
Error in expression <rens_on = -1;
s_player_sirens_off = -1;
dayz_addsirens removeAction s_player_sir>
  Error position: <dayz_addsirens removeAction s_player_sir>
  Error Undefined variable in expression: dayz_addsirens
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 59
Error in expression < = -1;
mv22_open = -1;
mv22_close = -1;
themv22 removeAction mv22_fold;
themv22 >
  Error position: <themv22 removeAction mv22_fold;
themv22 >
  Error Undefined variable in expression: themv22
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 142
Error in expression <} else {
suv_open = -1;
suv_close = -1;
thesuv removeAction suv_close;
thesuv re>
  Error position: <thesuv removeAction suv_close;
thesuv re>
  Error Undefined variable in expression: thesuv
File mpmissions\__CUR_MP.Chernarus\fixes\fn_selfActions.sqf, line 165
Error in expression <s,_x];
_targetDis set [count _targetDis,_dis];



};
} count _objects;
};


if (>
  Error position: <_dis];



};
} count _objects;
};


if (>
  Error Undefined variable in expression: _dis
File mpmissions\__CUR_MP.Chernarus\fixes\zombie_findTargetAgent.sqf, line 47


SERVER RPT
Code:
14:13:19 Error in expression <ServerTcache_493;>
14:13:19   Error position: <ServerTcache_493;>
14:13:19   Error Undefined variable in expression: servertcache_493
14:13:20 Error in expression <ServerTcache_562;>
14:13:20   Error position: <ServerTcache_562;>
14:13:20   Error Undefined variable in expression: servertcache_562
14:13:20 Error in expression <ServerTcache_479;>
14:13:20   Error position: <ServerTcache_479;>
14:13:20   Error Undefined variable in expression: servertcache_479
14:13:20 Error in expression <ServerTcache_477;>
14:13:20   Error position: <ServerTcache_477;>
14:13:20   Error Undefined variable in expression: servertcache_477
14:13:21 Error in expression <ServerTcache_480;>
14:13:21   Error position: <ServerTcache_480;>
14:13:21   Error Undefined variable in expression: servertcache_480
14:13:21 Error in expression <ServerTcache_481;>
14:13:21   Error position: <ServerTcache_481;>
14:13:21   Error Undefined variable in expression: servertcache_481
14:13:21 Error in expression <ServerTcache_484;>
14:13:21   Error position: <ServerTcache_484;>
14:13:21   Error Undefined variable in expression: servertcache_484
14:13:21 Error in expression <ServerTcache_573;>
14:13:21   Error position: <ServerTcache_573;>
14:13:21   Error Undefined variable in expression: servertcache_573
14:13:22 Error in expression <ServerTcache_482;>
14:13:22   Error position: <ServerTcache_482;>
14:13:22   Error Undefined variable in expression: servertcache_482
14:13:22 Error in expression <ServerTcache_483;>
14:13:22   Error position: <ServerTcache_483;>
14:13:22   Error Undefined variable in expression: servertcache_483
14:13:22 Error in expression <ServerTcache_485;>
14:13:22   Error position: <ServerTcache_485;>
14:13:22   Error Undefined variable in expression: servertcache_485
14:13:22 Error in expression <ServerTcache_486;>
14:13:22   Error position: <ServerTcache_486;>
14:13:22   Error Undefined variable in expression: servertcache_486
14:13:23 Error in expression <ServerTcache_489;>
14:13:23   Error position: <ServerTcache_489;>
14:13:23   Error Undefined variable in expression: servertcache_489
14:13:23 Error in expression <ServerTcache_574;>
14:13:23   Error position: <ServerTcache_574;>
14:13:23   Error Undefined variable in expression: servertcache_574
14:13:23 Error in expression <ServerTcache_487;>
14:13:23   Error position: <ServerTcache_487;>
14:13:23   Error Undefined variable in expression: servertcache_487
14:13:23 Error in expression <ServerTcache_488;>
14:13:23   Error position: <ServerTcache_488;>
14:13:23   Error Undefined variable in expression: servertcache_488
14:13:24 Error in expression <ServerTcache_608;>
14:13:24   Error position: <ServerTcache_608;>
14:13:24   Error Undefined variable in expression: servertcache_608
[code]
 
Sheep make the changes I have posted. Had the same thing and these fixed them. 1.63 runs the code slightly differently. It will remove the client RPT issues. Are you running the fn_self actions i pm'd to you this was all fixed?
 
NB those serverRPT are issues with the hive and the traders? Odd as this implies that your trader menus are trying to get to the hive and not the client side traders. I would look at the init?
 
Sheep make the changes I have posted. Had the same thing and these fixed them. 1.63 runs the code slightly differently. It will remove the client RPT issues. Are you running the fn_self actions i pm'd to you this was all fixed?
i wasnt running your fn self actions as i had to rebuild it for 0.15 as some thing moved around and it was easier to start clean

ill check the differences and make the changes
 
ok all good now!

all i got left is this in the Client RPT

and the stupid ServerTcache thing but that happens once on load up and thats it

i cut the top off as its just the usual Strange convex component crap :)

Code:
"AC_functions version 1.03"
"Elevator script initialized"
"[AGN] Starting Trader City Safezone Commander!"
"PLAYER RESULT: true"
"PLOGIN: Login loop completed!"
"Res3tting B!S effects..."
"\z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target
"Admin Tools: FunctionKeys.sqf Loaded"
"Admin Tools: NumberKeys.sqf Loaded"
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target
Error in expression <hen {
_losCheck = 0;
_cantSee = [_agent,_target] call dayz_losCheck;
};
>
  Error position: <_target] call dayz_losCheck;
};
>
  Error Undefined variable in expression: _target
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target
Error in expression <hen {
_losCheck = 0;
_cantSee = [_agent,_target] call dayz_losCheck;
};
>
  Error position: <_target] call dayz_losCheck;
};
>
  Error Undefined variable in expression: _target
Error in expression < = alive _agent;
_targetPos = getPosATL _target;



_agent moveTo _targetPos;
_a>
  Error position: <_target;



_agent moveTo _targetPos;
_a>
  Error Undefined variable in expression: _target

althought the trader menu is a bit slow to load up now and stays on screen for a few seconds after moving from trader
 
lol spoke to soon

server RPT
Code:
16:29:06 Error in expression <
_itemType = _itemTypes select _index;
[_itemType select 0, _itemType select 1, >
16:29:06   Error position: <_itemType select 0, _itemType select 1, >
16:29:06   Error Undefined variable in expression: _itemtype
16:29:06 File z\addons\dayz_server\compile\server_spawnAN2CrashSite.sqf, line 236
16:29:06 Error in expression <es: '%4', config: '%5'", str(_num), str(_index), str(_weights), str(_cntItems), >
16:29:06   Error position: <_index), str(_weights), str(_cntItems), >
16:29:06   Error Undefined variable in expression: _index
16:29:06 File z\addons\dayz_server\compile\server_spawnAN2CrashSite.sqf, line 230


16:30:51 Error in expression <
_itemType = _itemTypes select _index;
[_itemType select 0, _itemType select 1, >
16:30:51   Error position: <_itemType select 0, _itemType select 1, >
16:30:51   Error Undefined variable in expression: _itemtype
16:30:51 File z\addons\dayz_server\compile\server_spawnC130CrashSite.sqf, line 236
16:30:51 Error in expression <es: '%4', config: '%5'", str(_num), str(_index), str(_weights), str(_cntItems), >
16:30:51   Error position: <_index), str(_weights), str(_cntItems), >
16:30:51   Error Undefined variable in expression: _index
16:30:51 File z\addons\dayz_server\compile\server_spawnC130CrashSite.sqf, line 230

should be easy fixes they both the animated crashs and undefiend vars
 
lol spoke to soon

server RPT
Code:
16:29:06 Error in expression <
_itemType = _itemTypes select _index;
[_itemType select 0, _itemType select 1, >
16:29:06   Error position: <_itemType select 0, _itemType select 1, >
16:29:06   Error Undefined variable in expression: _itemtype
16:29:06 File z\addons\dayz_server\compile\server_spawnAN2CrashSite.sqf, line 236
16:29:06 Error in expression <es: '%4', config: '%5'", str(_num), str(_index), str(_weights), str(_cntItems), >
16:29:06   Error position: <_index), str(_weights), str(_cntItems), >
16:29:06   Error Undefined variable in expression: _index
16:29:06 File z\addons\dayz_server\compile\server_spawnAN2CrashSite.sqf, line 230


16:30:51 Error in expression <
_itemType = _itemTypes select _index;
[_itemType select 0, _itemType select 1, >
16:30:51   Error position: <_itemType select 0, _itemType select 1, >
16:30:51   Error Undefined variable in expression: _itemtype
16:30:51 File z\addons\dayz_server\compile\server_spawnC130CrashSite.sqf, line 236
16:30:51 Error in expression <es: '%4', config: '%5'", str(_num), str(_index), str(_weights), str(_cntItems), >
16:30:51   Error position: <_index), str(_weights), str(_cntItems), >
16:30:51   Error Undefined variable in expression: _index
16:30:51 File z\addons\dayz_server\compile\server_spawnC130CrashSite.sqf, line 230

should be easy fixes they both the animated crashs and undefiend vars

I gave up on these and removed them lol. I think it is something to do with _index possibly being defined somewhere else.
I think the other one is sarge/dzai ai finding the targeting, is your dynamic ai on?
 
I gave up on these and removed them lol. I think it is something to do with _index possibly being defined somewhere else.
I think the other one is sarge/dzai ai finding the targeting, is your dynamic ai on?
yer it is ill try turning it off and see what happens

ill just rename the _index variable if needs be :)
 
Back
Top