Arma 3
Improved Melee System
Khorne Flakes 2022 年 9 月 13 日 上午 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?
< >
目前顯示第 1-7 則留言,共 7
Aquiles 2022 年 9 月 25 日 上午 2:49 
same...?
Newton 2022 年 10 月 23 日 上午 3:47 
Lambs rush maybe?
Pathogenex 2022 年 12 月 4 日 上午 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 2022 年 12 月 11 日 下午 4:25 
how to use/utilize this? @Pathogenex

add execVM "skill.sqf" in init.sqf?
Pathogenex 2022 年 12 月 11 日 下午 4: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 2024 年 2 月 19 日 上午 10:07 
@pathogenix RIP DayZ Medic :(
Pathogenex 2024 年 2 月 20 日 上午 9:22 
引用自 Louis
@pathogenix RIP DayZ Medic :(
dayz medic channel deleted? wtf? why?
https://www.youtube.com/watch?v=rimtaSgGz_4
< >
目前顯示第 1-7 則留言,共 7
每頁顯示: 1530 50