No AI Choppers (edited server_cleanup.fsm)

Be4st

New Member
I started to play with SARGE AI today and I love it, however I cannot seem to get the AI Choppers running.

I keep getting this showing in my rpt log:

Code:
 1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-A:1 IN UH1H_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-A:2 IN UH1H_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-A:3 IN UH1H_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-B:2 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-B:3 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-C:1 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-C:2 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-C:3 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-D:1 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-D:2 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-D:3 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-E:1 IN Mi17_DZ"
1:53:03 "CLEANUP: KILLING A HACKER Rincewind R 1-1-E:2 IN Mi17_DZ"
1:53:04 "CLEANUP: KILLING A HACKER Rincewind R 1-1-E:3 IN Mi17_DZ"
1:53:04 "CLEANUP: KILLING A HACKER Rincewind R 1-1-F:2 IN UH1H_DZ"
1:53:04 "CLEANUP: KILLING A HACKER Rincewind R 1-1-F:3 IN UH1H_DZ"
1:53:05 Warning: z\addons\dayz_communityassets\models\razor.p3d:0 Error while trying to generate ST for points: 214, 349, 208
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:05 WARNING: Function 'name' - Rincewind is dead
1:53:10 WARNING: Function 'name' - Rincewind is dead
1:53:43 "CLEANUP: KILLING A HACKER Rincewind R 1-1-H:2 IN Mi17_DZ"
1:53:43 WARNING: Function 'name' - Rincewind is dead


I have changed the server_cleanup.fsm file as per the readme file but I am still getting this error.

ORIGINAL:

Code:
"    if (vehicle _x != _x) then {" \n
            "        if  (!(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

CHANGED TO:

Code:
"    if (vehicle _x != _x) then {" \n
            "        if  (!(vehicle _x in _safety) && ((typeOf vehicle _x) != ""ParachuteWest"") && (vehicle _x getVariable [""Sarge"",0] != 1) ) 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

That looks correct to me and it still doesn't work. My tired brain may be missing something and if I am, let me know.


*EDIT*

Version of SAR_AI : 1.1.0
Version of Dayz : 1.7.6.1

Serverpackage
Type : Crosire's Control Center
Version : 5.9.2.0

Installed mods : rMod only

Enabled debug modes: none that I know of
 
Yup. Just extracted the server.pbo now and it is updated with the required data and I just started again with a fresh pbo to see if I screwed something up previously and I am still getting the error
 
impossible .-)

comment the lines out and see what happens, i would bet any amount on the fact that you are somehow either using the wrong fsm, or the changes are not in.

Sarge
 
What do you mean by comment the lines out? I can upload the server.pbo and anything else if required
 
ooo... I haven't changed a thing and i got no error in the rpt log. Be back in a bit to tell you if the spawns crashed or not.

**EDIT**

Yup. They died. When my buddy was trying to connect to the server, it said:

Code:
17:29:51 "SAR_AI: Area & Trigger definition finalized"
17:29:51 "SAR_AI: Static Spawning for Helicopter patrols started"
17:29:52 "SAR_AI: Static Spawning for Helicopter patrols finished"
17:29:52 "SAR_AI: Static Spawning for infantry and heli patrols finished"

and I had no crashes. Not sure if its just coincidence but my buddy got kicked for script restriction #20 4 times and the rpt log said spawns were successful and when he could finally connect without #20 kicking him, the patrols started dying again. I just fixed the #20 issue and spawns still die.
 
Back
Top