安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
"cursorObject", of course you would need to check it it's "isKindOf "Man".
I have automedic code I wrote, but I would not be able to make that happen, to a moving medivac bird without some advice. Cab you guys help?
*Additonal: I wrote the code specifically for AI ACE Medicals on Advanced.*
at which time, they should start the code I wrote correct?
this addaction ["Your text here", // title
{ [Unit Name] join (Player); }, // script
nil, // arguments
1.5, // priority ( how high on your action window the script appears)
true, // showWindow
true, // hideOnUse (When you click the action the title disappears until you scroll to it again.)
"", // shortcut (A key stroke if you so choose)
"alive _target", // condition
3 // max distance for the action to display (In meters ofc, default is 50m)
];
------------------------------------------------------------------------------
end result for the units init:
------------------------------------------------------------------------------
this addAction ["Your text",{[Unit name] join player;},nil,1.5,true,true,"","alive Unit name",10];
this addAction ["Your text",{[Unit name] join grpNull;},nil,1.5,true,true,"","alive Unit name",10];
------------------------------------------------------------------------------
Basically now these two addActions allow you to, not only add or join AI to your squad, but now make the addActions disappear when the unit dies, and shorten the range which you can use the addActions :)