Deeplînk Posted January 17, 2014 Report Share Posted January 17, 2014 Ive tried it with a vodnic, mi17 and 1uh1y. Link to comment Share on other sites More sharing options...
Geryon Posted January 18, 2014 Report Share Posted January 18, 2014 hmmm very strange. Here is the full WAI folder I used. I've made changes mind you from the original. With mine you can apply facing to static pieces. This way you can place MG bunkers correctly. If this doesn't work not sure how I can help you. https://drive.google.com/folderview?id=0B9svef6jQxfZMzludHd5NEtITzQ&usp=sharing My custom static spawn at Balota. Hopefully this will give the players a donkey punch well at least until they figure it out. // GROUP № 1 BOLOTA 4 GRU Special Force unit [[4947.4302,2492.6147,0],2,1,3,3,"","CZ_Soldier_Sniper_EP1_DZ","Random"] call spawn_group; [[4928.0239,2531.5696,0],3,1,2,3,"","CZ_Special_Forces_GL_DES_EP1_DZ","Random"] call spawn_group; [[5150.5107, 2346.7832,0],3,1,2,3,"","CZ_Soldier_Sniper_EP1_DZ","Random"] call spawn_group; [[4895.9258,2408.6536,0],[0,0,0],500,"UH1H_DZ",10,1,"Random",4,"","CZ_Special_Forces_GL_DES_EP1_DZ","Random",True] spawn heli_para; [[[4817.25,2539.47,0.001]],"USMC_WarfareBMGNest_M240",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random",False,227] call spawn_static; [[[4570.22,2545.47,0.002]],"USMC_WarfareBMGNest_M240",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random",False,123] call spawn_static; [[[4812.45,2380.41,0.001]],"USMC_WarfareBMGNest_M240",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random",False,30] call spawn_static; [[[4720.37,2599.56,12.907]],"Stinger_Pod_US_EP1",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random",False,238] call spawn_static; [[[4705.24,2965.86,0.002]],"Stinger_Pod_US_EP1",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random",False,191] call spawn_static; [[[4719.75,2595.07,12.928]],"M2StaticMG",0,"CZ_Special_Forces_GL_DES_EP1_DZ",1,2,"","Random"] call spawn_static; [[4795.29,2514.91,0.001],[4795.29,2514.91,0.001],200,10,"ArmoredSUV_PMC",1] spawn vehicle_patrol; Link to comment Share on other sites More sharing options...
Trainmanoz Posted January 18, 2014 Report Share Posted January 18, 2014 thanks for the update about the RPG issue. made the changes and it works great. Link to comment Share on other sites More sharing options...
Semezky Posted January 18, 2014 Report Share Posted January 18, 2014 Actually my bots are using PRG's without any modding. I just gave it to them, and they started shooting. On clean WAI. Link to comment Share on other sites More sharing options...
Turtle Posted January 18, 2014 Report Share Posted January 18, 2014 How can I disable the Mounted Gunner spawn in the missions, they are fucking annoying. Link to comment Share on other sites More sharing options...
Semezky Posted January 18, 2014 Report Share Posted January 18, 2014 (edited) How can I disable the Mounted Gunner spawn in the missions, they are fucking annoying. Hey, Turtle. In the folder "WAI\missions\missions" there are files of all the missions. You just need to find some code like [[[(_position select 0), (_position select 1) + 10, 0]], //position(s) (can be multiple). "M2StaticMG", //Classname of turret 0.5, //Skill level 0-1. Has no effect if using custom skills "Bandit2_DZ", //Skin "" for random or classname here. 1, //Primary gun set number. "Random" for random weapon set. (not needed if ai_static_useweapon = False) 2, //Number of magazines. (not needed if ai_static_useweapon = False) "", //Backpack "" for random or classname here. (not needed if ai_static_useweapon = False) "Random", //Gearset number. "Random" for random gear set. (not needed if ai_static_useweapon = False) true ] call spawn_static; And delete it in EVERY mission file. Or you can change you mounted gun type to ZU_23 - let your player to feel the power of the bots ;) Delete "[ ] call spawn_static", not "[ ] call spawn_group"! Edited January 18, 2014 by Semezky Link to comment Share on other sites More sharing options...
BetterDeadThanZed Posted January 18, 2014 Report Share Posted January 18, 2014 You can use the custom spawns file to make custom para drops and such. As for crates you can do that with a different simple script. If you need a walk through throw me an email! I know about the custom spawns. I have those set up. What I was wondering is if I can just set ai_mission_sysyem = false; and still have those custom ammo crate spawns and the paradrops still work. Currently I have it set to true but I commented out the names of the missions that can run so none of them run. I'm only using WAI for those two items. Otherwise I use DZAI and EMS. Link to comment Share on other sites More sharing options...
Vordavoss Posted January 18, 2014 Report Share Posted January 18, 2014 Hi, First thanks for a very nice mission system, implemented it on my server, and its much appreciated. However, is there anyway for me as admin to start a mission, lets say using a command or by using the fn_selfActions.sqf thanks, Patric Link to comment Share on other sites More sharing options...
Turtle Posted January 18, 2014 Report Share Posted January 18, 2014 Hey, Turtle. In the folder "WAI\missions\missions" there are files of all the missions. You just need to find some code like [[[(_position select 0), (_position select 1) + 10, 0]], //position(s) (can be multiple). "M2StaticMG", //Classname of turret 0.5, //Skill level 0-1. Has no effect if using custom skills "Bandit2_DZ", //Skin "" for random or classname here. 1, //Primary gun set number. "Random" for random weapon set. (not needed if ai_static_useweapon = False) 2, //Number of magazines. (not needed if ai_static_useweapon = False) "", //Backpack "" for random or classname here. (not needed if ai_static_useweapon = False) "Random", //Gearset number. "Random" for random gear set. (not needed if ai_static_useweapon = False) true ] call spawn_static; And delete it in EVERY mission file. Or you can change you mounted gun type to ZU_23 - let your player to feel the power of the bots ;) Delete "[ ] call spawn_static", not "[ ] call spawn_group"! ok so just do this then? Here is the line [[[(_position select 0), (_position select 1) + 10, 0]], //position(s) (can be multiple). "M2StaticMG", //Classname of turret 0.5, //Skill level 0-1. Has no effect if using custom skills "Bandit2_DZ", //Skin "" for random or classname here. 1, //Primary gun set number. "Random" for random weapon set. (not needed if ai_static_useweapon = False) 2, //Number of magazines. (not needed if ai_static_useweapon = False) "", //Backpack "" for random or classname here. (not needed if ai_static_useweapon = False) "Random", //Gearset number. "Random" for random gear set. (not needed if ai_static_useweapon = False) true ] call spawn_static; now just make it this? [[[(_position select 0), (_position select 1) + 10, 0]], //position(s) (can be multiple). "M2StaticMG", //Classname of turret 0.5, //Skill level 0-1. Has no effect if using custom skills "Bandit2_DZ", //Skin "" for random or classname here. 1, //Primary gun set number. "Random" for random weapon set. (not needed if ai_static_useweapon = False) 2, //Number of magazines. (not needed if ai_static_useweapon = False) "", //Backpack "" for random or classname here. (not needed if ai_static_useweapon = False) "Random", //Gearset number. "Random" for random gear set. (not needed if ai_static_useweapon = False) true or just totally delete the whole section? Link to comment Share on other sites More sharing options...
SupremeHorse Posted January 18, 2014 Report Share Posted January 18, 2014 Any plans to make the Wicked AI spawn dynamically in player areas? Similiar to DZAI Link to comment Share on other sites More sharing options...
RickAKASpud Posted January 18, 2014 Report Share Posted January 18, 2014 For some reason my AI missions work but.. Patrols don't.. Any ideas guys? Link to comment Share on other sites More sharing options...
Jobbedeluxe Posted January 19, 2014 Report Share Posted January 19, 2014 i would like to change the gear set. i add some NV and other stuff. but then the WIA wouldn't start. i set the gear set to 4 instead of "Random" that right? [[39.394,918.902,0.001],5,1,"Random",4,"","Bandit2_DZ",4] call spawn_group; after al nothig happens. only when i cange back to default all will spawn normal. i add my config: AIconfig.zip Link to comment Share on other sites More sharing options...
Semezky Posted January 19, 2014 Report Share Posted January 19, 2014 (edited) ok so just do this then? or just totally delete the whole section? Just totally delete the whole section. Edited January 19, 2014 by Semezky Link to comment Share on other sites More sharing options...
kramarz Posted January 19, 2014 Report Share Posted January 19, 2014 Hey peeps, I was wondering how do i remove a weapon from the missions, There is a weapon that is spawning, which is KSVK, and i do not want it to spawn neither on the bots or ammo boxes. I've removed the entry from MissionCFG.sqf that contained the KSVK line, BUT somehow my players are still getting the weapon from somewhere, and i cant find where from exactly. Any ideas? Link to comment Share on other sites More sharing options...
Sh1zn3t Posted January 19, 2014 Report Share Posted January 19, 2014 I cant for some reason get this to work. Im placing the WAI folder in my server_pbo. And put the correct line into the server_monitor.sqf, above allowConnection = true; Why wont this work for me? I'm getting no message recieved. How can I get these two simple steps wrong? Could this one be interfering with one of my other scripts? I have : Indestructible Bases, Infistars AH, Vehicle Service points Self bloodbag Safezoned traders Link to comment Share on other sites More sharing options...
Dodgy Posted January 20, 2014 Report Share Posted January 20, 2014 Does anyone know how to edit it so it displays the missions in the same way maccas safe zone announces your entering safezone etc. by this I mean announcing each mission in the debug area of the screen rather than the centre Link to comment Share on other sites More sharing options...
Semezky Posted January 20, 2014 Report Share Posted January 20, 2014 Does anyone know how to edit it so it displays the missions in the same way maccas safe zone announces your entering safezone etc. by this I mean announcing each mission in the debug area of the screen rather than the centre You should try this: http://epochmod.com/forum/index.php?/topic/1026-server-side-hintglobalchat-fix-deathmsg-fix/?hl=+custom%20+remote Link to comment Share on other sites More sharing options...
Dodgy Posted January 20, 2014 Report Share Posted January 20, 2014 Thnx I will give it a try but I have maccas safe zone script installed and didn't install anything else and it displays the type of message I would like to appear when a mission is activated was just wondering how this is done. Link to comment Share on other sites More sharing options...
kramarz Posted January 20, 2014 Report Share Posted January 20, 2014 Hey guys, having a problem here... my RPT log got spammed with: 15:03:07 "WAI: AI Config File Loaded" 15:03:07 "WAI: AI Monitor Started" 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 "WAI: Spawned a group of 3 Bandits at [4774.04,2507.76]" 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 "WAI: Spawned a group of 3 Bandits at [6970.98,2640.33]" 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:07 Error position: <createUnit [_aiskin, [(_position select > 15:03:07 Error Type Any, expected Number 15:03:07 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:07 "WAI: Spawned a group of 3 Bandits at [6566.51,2412.97]" 15:03:07 "WAI: Spawned a group of 3 Bandits at [10186.4,1936.04,3.44049]" 15:03:07 "WAI: Spawned a group of 3 Bandits at [10476.1,2412.23,9.6632]" 15:03:08 "WAI: Spawned a group of 3 Bandits at [953.237,4486.48,0.001]" 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 "WAI: Spawned a group of 3 Bandits at [9164.43,3832.18]" 15:03:08 "WAI: Spawned a group of 3 Bandits at [12855,4457.42,0]" 15:03:08 "WAI: Spawned a group of 3 Bandits at [11299,5460.6,2.91008]" 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 "WAI: Spawned a group of 3 Bandits at [13332.2,6258.89]" 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 "WAI: Spawned a group of 3 Bandits at [13074.1,6975.22]" 15:03:08 "WAI: Spawned a group of 3 Bandits at [12161.3,7288.54,-0.000610352]" 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:08 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:08 Error position: <createUnit [_aiskin, [(_position select > 15:03:08 Error Type Any, expected Number 15:03:08 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 "WAI: Spawned a group of 3 Bandits at [12877.6,8081.6]" 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 "WAI: Spawned a group of 3 Bandits at [11938.8,9118.7]" 15:03:09 "WAI: Spawned a group of 3 Bandits at [12734.7,9571.31,-2.67029e-005]" 15:03:09 "WAI: Spawned a group of 3 Bandits at [12871,10060.4,11.1378]" 15:03:09 "WAI: Spawned a group of 3 Bandits at [11130,12335.7,9.50177]" 15:03:09 "WAI: Spawned a group of 3 Bandits at [8710.19,11791,-3.05176e-005]" 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 "WAI: Spawned a group of 3 Bandits at [6003.65,10296.4]" 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:09 Error position: <createUnit [_aiskin, [(_position select > 15:03:09 Error Type Any, expected Number 15:03:09 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:09 "WAI: Spawned a group of 3 Bandits at [2743.15,9997.41]" 15:03:10 "WAI: Spawned a group of 3 Bandits at [3826.78,8926.02,8.62714]" 15:03:10 "WAI: Spawned a group of 3 Bandits at [5366.35,8591.85,0]" 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 "WAI: Spawned a group of 3 Bandits at [7038.36,7669.39]" 15:03:10 "WAI: Spawned a group of 3 Bandits at [10121.8,5479.5,0]" 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 "WAI: Spawned a group of 3 Bandits at [4464.23,4616.37]" 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 "WAI: Spawned a group of 3 Bandits at [5848.88,4707.17]" 15:03:10 "WAI: Spawned a group of 3 Bandits at [4930.34,5613.78,0]" 15:03:10 "WAI: Spawned a group of 3 Bandits at [4486.5,6420.53,0]" 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:10 Error position: <createUnit [_aiskin, [(_position select > 15:03:10 Error Type Any, expected Number 15:03:10 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:10 "WAI: Spawned a group of 3 Bandits at [4781.41,6797.93]" 15:03:11 "WAI: Spawned a group of 3 Bandits at [3066.65,7942.9,0]" 15:03:11 "WAI: Spawned a group of 3 Bandits at [1986.58,7351.69,0]" 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 "WAI: Spawned a group of 3 Bandits at [2529.23,6347.82]" 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 "WAI: Spawned a group of 3 Bandits at [2744.52,5288.1]" 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:11 Error position: <createUnit [_aiskin, [(_position select > 15:03:11 Error Type Any, expected Number 15:03:11 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:11 "WAI: Spawned a group of 3 Bandits at [2344.53,5388.1]" 15:03:11 "WAI: Spawned a group of 3 Bandits at [3336.45,3921.71,0]" 15:03:11 "WAI: Spawned a group of 3 Bandits at [3411.43,4930.87,0]" 15:03:11 "WAI: Spawned a group of 3 Bandits at [3734.57,5990.05,0]" 15:03:11 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [9572.35,8847.86]" 15:03:12 "WAI: Spawned a group of 3 Bandits at [10420.3,9844.52,0]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [10007.7,10376.3]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [11229.3,6583.42]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [9654.47,6562.87]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [13661.3,2914.51]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [11250.8,4274.08]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 "WAI: Spawned a group of 3 Bandits at [6894.65,11438.8]" 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:12 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:12 Error position: <createUnit [_aiskin, [(_position select > 15:03:12 Error Type Any, expected Number 15:03:12 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 "WAI: Spawned a group of 3 Bandits at [11250.8,4274.08]" 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 "WAI: Spawned a group of 3 Bandits at [6894.65,11438.8]" 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 "WAI: Spawned a group of 3 Bandits at [6551.47,5595.67]" 15:03:13 "WAI: Spawned a group of 3 Bandits at [11458.5,7483.28,12.37]" 15:03:13 "WAI: Spawned a group of 3 Bandits at [12215.8,6270.99,3.8147e-006]" 15:03:13 "WAI: Spawned a group of 3 Bandits at [6490.11,2778.89,-7.62939e-006]" 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 "WAI: Spawned a group of 3 Bandits at [10456.7,2247.21]" 15:03:13 "WAI: Spawned a group of 3 Bandits at [12248.7,9573.23,9.53674e-007]" 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:13 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:13 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:13 Error position: <createUnit [_aiskin, [(_position select > 15:03:13 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 "WAI: Spawned a group of 3 Bandits at [13365.2,12852.3]" 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 "WAI: Spawned a group of 3 Bandits at [4673.81,10449]" 15:03:14 "WAI: Spawned a group of 4 Bandits at [4760.9,10160.1,0.0807495]" 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 "WAI: Spawned a group of 4 Bandits at [4607.54,9625.11]" 15:03:14 "WAI: Spawned a group of 4 Bandits at [5222.4,9780.64,0]" 15:03:14 "WAI: Spawned a group of 4 Bandits at [4763.52,10760.8,0]" 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 "WAI: Spawned a group of 4 Bandits at [4103.67,10876.2]" 15:03:14 "WAI: Spawned a group of 4 Bandits at [4147.14,10313.3,0]" 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:14 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:14 Error position: <createUnit [_aiskin, [(_position select > 15:03:14 Error Type Any, expected Number 15:03:14 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 "WAI: Spawned a group of 4 Bandits at [4673.81,10449]" 15:03:15 "WAI: Spawned a group of 4 Bandits at [4760.9,10160.1,0.0807495]" 15:03:15 "WAI: Spawned a group of 4 Bandits at [4760.9,10160.1,0.0807495]" 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 "WAI: Spawned a group of 4 Bandits at [4607.54,9625.11]" 15:03:15 "WAI: Spawned a group of 4 Bandits at [5222.4,9780.64,0]" 15:03:15 "WAI: Spawned a group of 4 Bandits at [4763.52,10760.8,0]" 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 Error in expression <{ _aiskin = _skin }; _unit = _unitGroup createUnit [_aiskin, [(_position select > 15:03:15 Error position: <createUnit [_aiskin, [(_position select > 15:03:15 Error Type Any, expected Number 15:03:15 File z\addons\dayz_server\WAI\compile\SpawnGroup.sqf, line 55 15:03:15 "WAI: Spawned a group of 4 Bandits at [4103.67,10876.2]" 15:03:15 "WAI: Spawned a group of 4 Bandits at [4147.14,10313.3,0]" 15:03:15 "WAI: Mission Config File Loaded" 15:03:16 "WAI: Paradrop Waiting for player" 15:03:16 "WAI: Paradrop Waiting for player" 15:03:16 "WAI: Paradrop Waiting for player" 15:03:16 "WAI: Paradrop Waiting for player" 15:03:16 "WAI: Starting AI Missions Moniter" 15:04:43 Server: Object 4:7 not found (message 70) 15:04:43 "TIME SYNC: Local Time set to [2013,8,3,14,4]" Any ideas what went wrong? Link to comment Share on other sites More sharing options...
Raptoruk Posted January 20, 2014 Report Share Posted January 20, 2014 Apologies for a stupid question but I am running panther on epoch, which pbo file is it I add the WAI file to ? As after reading 23 pages for a definitive answer, my eyes are bleeding, all help as always gratefully accepted thanks Raptor Link to comment Share on other sites More sharing options...
williamjbrown Posted January 20, 2014 Report Share Posted January 20, 2014 Apologies for a stupid question but I am running panther on epoch, which pbo file is it I add the WAI file to ? As after reading 23 pages for a definitive answer, my eyes are bleeding, all help as always gratefully accepted thanks Raptor It would be your server PBO not your mission file. Link to comment Share on other sites More sharing options...
Dodgy Posted January 21, 2014 Report Share Posted January 21, 2014 You should try this: http://epochmod.com/forum/index.php?/topic/1026-server-side-hintglobalchat-fix-deathmsg-fix/?hl=+custom%20+remote Thanks worked a treat added it so can chose either centre of screen or debug area just adding different colours and font size :-) Link to comment Share on other sites More sharing options...
Raptoruk Posted January 21, 2014 Report Share Posted January 21, 2014 Which is my server pbo ? I have dayz dayz_epoch dayz_epoch_server all have addons folders with pbo files not counting hive and all the others, where precisely does it go please for the benefit of the those with no knowledge, assume nothing, and thankyou for replying so far cheers Raptor Link to comment Share on other sites More sharing options...
FrenzyFire000 Posted January 21, 2014 Report Share Posted January 21, 2014 I think it is your epoch_server, but I am having a time getting it to work as well. I am getting ready to Pack the dayz_epoch_server PBO now. I will let you know how it works. Link to comment Share on other sites More sharing options...
Raptoruk Posted January 21, 2014 Report Share Posted January 21, 2014 I think its that one too, but why the hell don't people say exactly what to do, 23 bleeding pages and lots of chat but no specifics, I look forward to your feedback Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now