安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
1. Completely incorrect syntax for disabling AI. Arma is case-sensitive with almost everything, so I recommend you get into the habit of correctly capitalizing everything. The standard practice is using camel case. So the first word in a function or variable is lowercase, and following are capitalized for easier readability. So instead of "myexamplefunction", the right way would be "myExampleFunction". If you compared "myexamplefunction" to "myExampleFunction" inside the game, it would NOT be a match. Also, you do not need to call any scripting functions. Example below:
You were using this in all the Unit's init box:
call{this disableai "path"}
The correct way would be just:
this disableAI "PATH";
Bro enableAI "PATH";
Sis enableAI "PATH";
3. You were trying to run "disableAI" on a Group, it ONLY works on Units (soldiers, civs, don't matter, just has to be unit). If you want to disableAI on a group, you would have to do it through a forEach loop that iterates through the members of a group and assigns it to each member.
4. You were trying to call "disableAI" on a vehicle, same as above, this is a problem. If you need to disable a vehicle from going anywhere, call "disableAI" on the driver.
Sorry for the lecture, I don't like to see someone waste their time creating a decent mission just to be brought down by a few stupid lines of script.
Also, if you'd like, add me on Steam and I can send you the fixed mission file.
**SPOILER**
putting a map in one of the rooms of the Ghost Hotel and on the first floor of the building your siblings are in.
**END SPOILER**
I know the glitch you're talking about. It was one of the biggest headaches I had in making this scenario. I've tested and successfully started the scenario several times myself, but if you continue having problems running it, I'll try to upload a modified version of the scenario that completely removes the entities causing the glitch.