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










can not open, is 404 now, do you still have a copy? Thank you
Have a nice day and thanks for your attention
Hello. Sorry but i have not been active in arma community for years. Feel free to use this as you want.
I would like to make a request... I have been making a wheel addon using as base and required addon this one. It is a wheel that couples the ACE hand signals and the SOG Prairie Fire CDLC hand signals. It works perfectly, I'm very happy with the result, but I'm missing to be able to configure through the CBA Settings the key, button or macro I want (I've done it manually by modifying the code)... I've tried to do it myself, but I always end up breaking the code, I don't have that much knowledge. Do you see feasible to help with that or update it with that function?
THANK YOU!!!
I don´t think so. You have to try.
If you use "OptionWheel_fnc_setWheelKey" to change the key, replace "0x21" in the "OptionWheel_fnc_buttonDown" to the one you want to use.
Bellow is an example you can use.
You have to do your own research on keys but you can find all on the wiki.
Hope it helps.
animationListActivated = false;
(findDisplay 46) displayAddEventHandler ["KeyDown", {
params ["_displayorcontrol", "_key", "_shift", "_ctrl", "_alt"];
if!(animationListActivated)then{
//Key 1
if(_key isEqualTo 0x02)then{
[[["KEY 1","1"],[" 1","1"]],{hint str _this;},0.3,0.15] call OptionWheel_fnc_setWheel;
[_displayorcontrol, 0x21, _shift, _ctrl, _alt] call OptionWheel_fnc_buttonDown;
};
//Key 2
if(_key isEqualTo 0x03)then{
[[["KEY 2","2"],[" 2","2"]],{hint str _this;},0.3,0.15] call OptionWheel_fnc_setWheel;
[_displayorcontrol, 0x21, _shift, _ctrl, _alt] call OptionWheel_fnc_buttonDown;
};
};
}];