Nainstalovat Steam
přihlásit se
|
jazyk
简体中文 (Zjednodušená čínština)
繁體中文 (Tradiční čínština)
日本語 (Japonština)
한국어 (Korejština)
ไทย (Thajština)
български (Bulharština)
Dansk (Dánština)
Deutsch (Němčina)
English (Angličtina)
Español-España (Evropská španělština)
Español-Latinoamérica (Latin. španělština)
Ελληνικά (Řečtina)
Français (Francouzština)
Italiano (Italština)
Bahasa Indonesia (Indonéština)
Magyar (Maďarština)
Nederlands (Nizozemština)
Norsk (Norština)
Polski (Polština)
Português (Evropská portugalština)
Português-Brasil (Brazilská portugalština)
Română (Rumunština)
Русский (Ruština)
Suomi (Finština)
Svenska (Švédština)
Türkçe (Turečtina)
Tiếng Việt (Vietnamština)
Українська (Ukrajinština)
Nahlásit problém s překladem
The default key is T.
Please share how to change this. The CBA keybinding instructions dobnotbapply to this mod as the controls for this mod do not appear in Configure Addons.
Use remoteexec instead (https://community.bistudio.com/wiki/remoteExec) :).
And goodluck on future mods, you make quality content!!
[[ player,"AnimInspectHandgun"],"playAction"] call BIS_fnc_MP;
Could you please tell us what the name of the animation is so that I can do:
player switchmove "Bnae's Inspect Weapon";
I am trying to make the player inspect their weapon upon a trigger activation (acquiring a weapon). It would help me out a ton, thank you so much!
//O Key
case 24: {
private ["_current", "_primary", "_handgun", "_anim"];
_current = currentWeapon player;
_primary = primaryWeapon player;
_handgun = handgunWeapon player;
if ((vehicle player == player) && !(_current == "") && !(stance player == "PRONE") && !(stance player == "UNDEFINED")) then {
if (_current == _primary) then {
[[ player,"AnimInspectAssaultrifle"],"playAction"] call BIS_fnc_MP;
};
if (_current == _handgun) then {
[[ player,"AnimInspectHandgun"],"playAction"] call BIS_fnc_MP;
};
};
_handled = true;
};
@Keen I'll keep that in mind