mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
/*
|
|
* Author: bux, commy2
|
|
*
|
|
* Hide or show the secondary weapon magazine inventory slot to prevent unloading of dummy magazines.
|
|
*
|
|
* Argument:
|
|
* 0: The player. (Object)
|
|
*
|
|
* Return value:
|
|
* Nothing
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_player", "_display"];
|
|
|
|
_player = _this select 0;
|
|
if (!local _player) exitWith {};
|
|
|
|
_player removeMagazines "ACE_PreloadedMissileDummy";
|
|
_player removeMagazines "ACE_FiredMissileDummy";
|
|
|
|
disableSerialization;
|
|
_display = findDisplay 602;
|
|
if (isNull _display) exitWith {systemChat "null";};
|
|
|
|
private ["_launcher", "_control", "_config"];
|
|
|
|
_launcher = secondaryWeapon _player;
|
|
|
|
if (_launcher == "" || {getText (configFile >> "CfgWeapons" >> _launcher >> "ACE_UsedTube") == ""}) then {
|
|
_control = _display displayCtrl 627;
|
|
_config = configFile >> "RscDisplayInventory" >> "controls" >> "SlotSecondaryMagazine";
|
|
_control ctrlSetPosition [getNumber (_config >> "x"), getNumber (_config >> "y"), getNumber (_config >> "w"), getNumber (_config >> "h")];
|
|
_control ctrlCommit 0;
|
|
|
|
_control = _display displayCtrl 1251;
|
|
_config = configFile >> "RscDisplayInventory" >> "controls" >> "BackgroundSlotSecondaryMagazine";
|
|
_control ctrlSetPosition [getNumber (_config >> "x"), getNumber (_config >> "y"), getNumber (_config >> "w"), getNumber (_config >> "h")];
|
|
_control ctrlCommit 0;
|
|
} else {
|
|
_control = _display displayCtrl 627;
|
|
_control ctrlSetPosition [0, 0, 0, 0];
|
|
_control ctrlCommit 0;
|
|
|
|
_control = _display displayCtrl 1251;
|
|
_control ctrlSetPosition [0, 0, 0, 0];
|
|
_control ctrlCommit 0;
|
|
};
|