安装 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(越南语)
Українська(乌克兰语)
报告翻译问题








I'll look into the Liberation series of maps. So far it looks like it will fit what I am looking for.
Hello again. I was able to get a LIberation map up and running. I was able to integrate your repair script. It works great! I am looking at enabling the AI repair mechanism, but am unsure where to add the code.
"place the following in the AI VEHICLE'S init field"
I am not sure where you mean. I looked in just about every file, but cannot figure out where that bit of code should go. I am not new to modding and coding, but I am very new to ARMA3 modding and coding. Thanks, and sorry!
this addEventHandler ["GetOut", {
params ["_vehicle", "_role", "_unit", "_turret"];
if (_vehicle isKindOf 'Landvehicle' && _unit == leader (group _unit) && !isplayer _unit && selectMax (getAllHitPointsDamage _vehicle select 2)>=0.1) then {
_vehicle setVariable ["ROSAIrepaired", false];
[_unit, _vehicle] execvm "ROS_VehicleRepair\scripts\ROS_AIVehicleRepair.sqf";
};
}];