mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
328 B
Plaintext
21 lines
328 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Shows/Hides add new gun controls
|
|
*
|
|
* Arguments:
|
|
* visible - <BOOL>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* call ace_atragmx_fnc_show_add_new_gun
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
GVAR(showAddNewGun) = _this;
|
|
|
|
{ctrlShow [_x, _this]} forEach [11000, 11001, 11002, 11003];
|