TorturedChunk
Valued Member!
I had two options when I forgot to start fresh from the OP. Start with your fresh working mission and go from there. this should clear it up.
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.
Are we suppose to have the original init code along with yours? When I leave out the original one and just have yours when I press "Open chute" I instantly die.I had two options when I forgot to start fresh from the OP. Start with your fresh working mission and go from there. this should clear it up.
Strange... I did edit for the hacker script before and it still happens... I'll look into it more! I'll post back resultsI edited my post. Let me know if you have any more issues.
I did the ArmA 2 OA one.re you using to ARMA 2 OA Halo or the one the OP uploaded?
"Check for hackers" \n
" {" \n
" if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != ""ParachuteWest"") then {" \n
" diag_log (""CLEANUP: KILLING A HACKER "" + (name _x) + "" "" + str(_x) + "" IN "" + (typeOf vehicle _x));" \n
" (vehicle _x) setDamage 1;" \n
" _x setDamage 1;" \n
" };" \n
" } forEach allUnits;" \n
" if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != (""ParachuteWest"") then {" \n
" if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != (""ParachuteWest"" or ""ParachuteEast"" or ""ParachuteG"" or ""ParachuteC"" )) then {" \n
That worked! Thank you so muchCode:"Check for hackers" \n " {" \n " if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != ""ParachuteWest"") then {" \n " diag_log (""CLEANUP: KILLING A HACKER "" + (name _x) + "" "" + str(_x) + "" IN "" + (typeOf vehicle _x));" \n " (vehicle _x) setDamage 1;" \n " _x setDamage 1;" \n " };" \n " } forEach allUnits;" \n
Forgot, You can either comment this entire section out of dayz_server.pbo>>system>>server_cleanup.fsm or change this:
Code:" if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != (""ParachuteWest"") then {" \n
To This:
Code:" if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != (""ParachuteWest"" or ""ParachuteEast"" or ""ParachuteG"" or ""ParachuteC"" )) then {" \n
If you are or have Active Admins, then just comment out the whole section.
Not a problem. Always willing to help![]()
Yes it is. I tried with helicopters, trucks, etcHmm. Now that's interesting. I watch my HiveLog while I debug and can see the saving of their world space and gear. I have had reports (HALO Spawn not implemented yet) that the HMMV and The little-birds aren't saving regardless.
Is it all vehicles?
Okay! Thank you againInteresting. I will test this further and let you know.
I decided to delete my server pbo and mission file and do this script first. I added the halo jump and vehicles saved but when you open chute it closes around 5 seconds later. I will try it again when I am able to access my computer. Again thanks for your help!Interesting. I will test this further and let you know.
I decided to delete my server pbo and mission file and do this script first. I added the halo jump and vehicles saved but when you open chute it closes around 5 seconds later. I will try it again when I am able to access my computer. Again thanks for your help!
if (!_parachuteWest) then {
if (_objectID == "0" && _uid == "0") then
{
_object_position = getPosATL _object;
diag_log(format["Deleting object %1 with invalid ID at pos [%2,%3,%4]",
typeOf _object,
_object_position select 0,
_object_position select 1,
_object_position select 2]);
_isNotOk = true;
};
};
/*
if (!_parachuteWest) then {
if (_objectID == "0" && _uid == "0") then
{
_object_position = getPosATL _object;
diag_log(format["Deleting object %1 with invalid ID at pos [%2,%3,%4]",
typeOf _object,
_object_position select 0,
_object_position select 1,
_object_position select 2]);
_isNotOk = true;
};
};
*/