Arma 3
Improved Melee System
Khorne Flakes 13 SEP 2022 a las 3:09
Make AI more aggressive/suicidal charge?
When going up against ranged units from afar, melee units in my experience will choose to either stand still, fidget around or go running away. Now the last one makes sense but I wanna have a fearless AI charge regardless. Is there anyway I can force the AI to do this?
< >
Mostrando 1-7 de 7 comentarios
Aquiles 25 SEP 2022 a las 2:49 
same...?
Newton 23 OCT 2022 a las 3:47 
Lambs rush maybe?
Pathogenex 4 DIC 2022 a las 9:30 
Necroing this post for anyone that wants the help in the future. Best to spawn units in but you can also adjust inside thier inits

SpawnedUnit = SPAWNPOSITION) ,_Spawnside ,[UNITCLASSNAME],[],[],[],[],[],random 360] call BIS_fnc_spawnGroup; SpawnedUnit setBehaviour "SAFE"; SpawnedUnit setSpeedMode "FULL"; SpawnedUnit setCombatMode "RED"; //these three have big effects of a units suicidability SpawnedUnit deleteGroupWhenEmpty true; { _x setSkill ["general",1]; _x setSkill ["aimingAccuracy",0.1]; _x setSkill ["aimingShake",1]; _x setSkill ["aimingSpeed",0.1]; _x setSkill ["spotDistance",0.5]; _x setSkill ["spotTime",0.5]; _x setSkill ["courage",1]; _x setSkill ["reloadspeed",0.5]; _x setSkill ["commanding",1]; } forEach (units SpawnedUnit );
Illu 11 DIC 2022 a las 16:25 
how to use/utilize this? @Pathogenex

add execVM "skill.sqf" in init.sqf?
Pathogenex 11 DIC 2022 a las 16:47 
Do as you said with init.sqf and also create a global variable like this
SpawnEnemies = false;

Then use this template. Add the units you want spawned on line 3 replacing "UNITCLASSNAME" with whatever units you want (you can get unit classnames from inside 3den using 3den Enhanced Mod)

Save that inside a script with a while loop
EG.
While {SpawnEnemies == true} do {THE TEMPLATE SCRIPT HERE};

Then use a triggers onActivation section to change the boolean to true;
EG
OnActivation
SpawnEnemies = true;

I learnt this from DAYZ MEDIC on YT its worth looking at their channel as its very informative for this kind of stuff.
Louis 19 FEB 2024 a las 10:07 
@pathogenix RIP DayZ Medic :(
Pathogenex 20 FEB 2024 a las 9:22 
Publicado originalmente por Louis:
@pathogenix RIP DayZ Medic :(
dayz medic channel deleted? wtf? why?
https://www.youtube.com/watch?v=rimtaSgGz_4
< >
Mostrando 1-7 de 7 comentarios
Por página: 1530 50