Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
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