Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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