安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






Is it possible to rebind these keys?
By the way I haven't played arma in a month or two so I hope this still works
Do I select the units I want to be revealed with the "B" key, then unselect them, select the units I want to see the units, then press "G"?
Or do I press "B" to select the units I want revealed, then select the units that I want to see them, then press "B" on them?
A better explanation is really needed here.
Also I've been using the mod with my unit so far, alongside ACE, haven't noticed any issues yet but I can see how that *could* be a problem so I'll keep my eye out.
You mentioned:
"Known issue/observed a couple times that you cannot apply the commands to zeus units that *another* curator has spawned in, only your own."
Reason of that is curator spawned units are local to curator's PC. Commands like "disableAI" and "enableAI" only has effect on local units.
Wrapping those cmds with a simple "remoteExecCall" should make them work on remote units:
[_x,"PATH"] remoteExecCall ["disableAI",_x,false];
Other than that, the mod seems fine. Keep up the good work.
Our group's zeus guy is really excited about this mod.
ASR AI and Lambs danger FSM mainly use "forceSpeed", "moveTo" and "suppressFor" for their magic,
which means they should work with this mod just fine.
However, this mod could conflict with ACE medical on certain situations.
Applying "enableAI" on unconscious AIs will allow them to shoot back as long as their animation doesn't prohibit firing.
For example, unconscious gunners on static weapon will resume firing, while staying in unconscious animation.
A simple check line can be sued to fix the problem:
if(_x getVariable ["ACE_isUnconscious",false])then
{
//...remaining codes
};