Adding NPC Vehicle patrol

J3T

Valued Member!
Hey there,
i just wanted to create a NPC Vehicle patrol around an NPC Base. It works fine if i start it as an arma 2 mission but everytime i try to implement it on my server it every vehicle got destroyed. Same for static anti air cannons (zu -23 ).
Anyone know how to get it working?

cheers J3T
 
Sorry couldn't during the week.

Look in your server_cleanup.fsm in your server.pbo and comment out these lines:
Code:
   "//Check for hackers" \n
       "// {" \n
       "//  if(vehicle _x != _x && (vehicle _x getVariable [""Sarge"",0] != 1) && !(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
Obliviously this is my code and they are already commented out.

cheers J3T
 
Back
Top