Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
'_unit = _this |3 |select 0;_passedParameters = (_this sele...'
Error select: ype Object, expected Array,String,Config entry
Error now fixed
Any idea what this means?
"Can you remove the star emoji from the name, both folder and steam? It can't be properly set up on dedicated servers due to it"
Removed it, thanks for the info. It should auto-update when you re-launch Arma.
thank you!
“so right now it doesn't create a dependency? i can just use this for my mission and the players + server don't need this mod right?”
That's correct, because all you'd be doing is adding a script to your mission's init.
The script in this case is whatever your export of the agents is.
"Tools > 3DEN Agency > Export Agents to SQF (Agents Only)."
Here is an example of what I mean,
but there are other ways you could achieve the same effect:
The file you want to edit:
https://imgur.com/a/bjXCnLQ
The content of that file:
https://pastebin.com/Q614BHJr
Hope this helps
“So agents can’t be used as combatants?”
The short answer is no, they won’t attack enemies.
They can potentially be used as combatants, but you will have to script their actions manually. Commands like fire & forceWeaponFire will still work on agents. The functions BIS_fnc_unitCapture & BIS_fnc_unitPlay should also work.
Ex:
ai1 Fire currentMuzzle ai1;
ai1 forceWeaponFire [currentMuzzle ai1, (selectRandom (getArray (configFile >> "CfgWeapons" >> currentWeapon ai1 >> "modes")))];