Our forum is going offline at the end of July. We suggest moving all discussions to Discord. Exile will stay on Steam. Thanks for a great time!
Jump to content
Question
2 answers to this question
Create an account or sign in to comment
You need to be a member in order to leave a comment
Sign in
Already have an account? Sign in here.
Sign In Now
What is wrong with this section of code? I is in one of the ExileZ files ( post_init.sqf ). It is causing my server not to unlock.
if (UseTriggers) then { { _useThisTrigger = _x select 0; _triggerPositions = _x select 1; if (_useThisTrigger) then { //Weight Zombie Group _currentTrigger = _x; _zgroup = _currentTrigger select 13; if (Debug) then { Diag_log Format["ExileZ 2.0: Compounding Zombie Group Weight, Selected Group Trigger Index : %1",_forEachIndex]; }; _count = 0; { _count = _count + (_x select 1); if (Debug) then { Diag_log Format["ExileZ 2.0: Zombie Type Index : %1 Weight : %2 Compound Weight Value : %3",_forEachIndex,_x select 1,_count]; }; (_zgroup select _forEachIndex) set [1,_count]; }foreach (_zgroup); //Create triggers {nul = [_x,_CurrentTrigger] spawn CreateTriggers; sleep 0.01; }foreach (_triggerPositions); }; }foreach Triggers; };
It is causing the Following Error.
Share this post
Link to post
Share on other sites