ACE3/addons/weaponselect/XEH_postInit.sqf

202 lines
7.0 KiB
Plaintext
Raw Normal View History

2015-03-24 04:18:00 +00:00
// by esteldunedain
2015-01-18 14:30:57 +00:00
#include "script_component.hpp"
if !(hasInterface) exitWith {};
// Add keybinds
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectPistolNew), localize LSTRING(SelectPistol),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player, handgunWeapon ACE_player] call FUNC(selectWeaponMode);
2015-04-20 19:10:56 +00:00
false
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 1 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectRifleNew), localize LSTRING(SelectRifle),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player, primaryWeapon ACE_player] call FUNC(selectWeaponMode);
2015-04-20 19:10:56 +00:00
false
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 2 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectRifleMuzzleNew), localize LSTRING(SelectRifleMuzzle),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player, primaryWeapon ACE_player] call FUNC(selectWeaponMuzzle);
2015-04-20 19:10:56 +00:00
false
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 3 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectLauncherNew), localize LSTRING(SelectLauncher),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player, secondaryWeapon ACE_player] call FUNC(selectWeaponMode);
2015-04-20 19:10:56 +00:00
false
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 4 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectBinocularNew), localize LSTRING(SelectBinocular),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player, binocular ACE_player] call FUNC(selectWeaponMode);
2015-04-20 19:10:56 +00:00
false
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 5 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectGrenadeFrag), localize LSTRING(SelectGrenadeFrag),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player] call FUNC(selectGrenadeFrag);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[7, [false, false, false]], false] call cba_fnc_addKeybind; //6 Key
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(SelectGrenadeOther), localize LSTRING(SelectGrenadeOther),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player] call FUNC(selectGrenadeOther);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[8, [false, false, false]], false] call cba_fnc_addKeybind; //7 Key
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(HolsterWeapon), localize LSTRING(HolsterWeapon),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, ACE_player, ["isNotEscorting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
// Statement
[ACE_player] call FUNC(putWeaponAway);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[11, [false, false, false]], false] call cba_fnc_addKeybind; //0 Key
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(EngineOn), localize LSTRING(EngineOn),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !((ACE_player != vehicle ACE_player) && {ACE_player == driver vehicle ACE_player} && {!isEngineOn vehicle ACE_player}) exitWith {false};
2015-03-05 07:32:26 +00:00
// Statement
(vehicle ACE_player) engineOn true;
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[3, [false, false, false]], false] call cba_fnc_addKeybind; //2 Key
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(EngineOff), localize LSTRING(EngineOff),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player != vehicle ACE_player && {ACE_player == driver vehicle ACE_player} && {isEngineOn vehicle ACE_player}) exitWith {false};
// Statement
(vehicle ACE_player) engineOn false;
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[2, [false, false, false]], false] call cba_fnc_addKeybind; //1 Key
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(SelectMainGunNew), localize LSTRING(SelectMainGun),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player != vehicle ACE_player) exitWith {false};
// Statement
[ACE_player, vehicle ACE_player, 0] call FUNC(selectWeaponVehicle);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 3 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(SelectMachineGunNew), localize LSTRING(SelectMachineGun),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player != vehicle ACE_player) exitWith {false};
// Statement
[ACE_player, vehicle ACE_player, 1] call FUNC(selectWeaponVehicle);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 4 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(SelectMissilesNew), localize LSTRING(SelectMissiles),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player != vehicle ACE_player) exitWith {false};
// Statement
[ACE_player, vehicle ACE_player, 2] call FUNC(selectWeaponVehicle);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
[0, [false, false, false]], false] call cba_fnc_addKeybind; //Unbound (was 5 Key)
2015-03-05 07:32:26 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Vehicles", QGVAR(FireSmokeLauncher), localize LSTRING(FireSmokeLauncher),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
if !([ACE_player, (vehicle ACE_player), []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player != vehicle ACE_player && {ACE_player == commander vehicle ACE_player}) exitWith {false};
// Statement
[vehicle ACE_player] call FUNC(fireSmokeLauncher);
true
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[10, [false, false, false]], false] call cba_fnc_addKeybind; //9 Key