reality hive keeps deleting my weapon creates

piff

Well-Known Member
I am using reality hive on 1.8.0.3

for some reason, about 15-30 minutes into the game, something deletes my weapon creates I put in through the base.

is there anyway to fix this?
 
it's your server_cleanup.fsm

find the lines "Check for hackers" and delete them or comment them out. Should be 6-10 lines total.
 
it's your server_cleanup.fsm

find the lines "Check for hackers" and delete them or comment them out. Should be 6-10 lines total.
this is what i found

"//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
""// \n

is this what i need to do?
 
ok i will try it. but I am commenting out stuff about vehicles?

the other fix commented out something else

"//Check for Ammobox" \n
"// {" \n
"//if(!(_x isKindOf ""WeaponHolder"")) then {" \n
"//diag_log (""CLEANUP: DELETING AN AMMOBOX "" + (typeOf _x));" \n
"//deleteVehicle _x;" \n
"//};" \n
"//} forEach allMissionObjects ""ReammoBox"";" \n
"//*/" \n
""// \n
 
Back
Top