mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
bacb7d069b
* Fix medical respawn/init * Medical use CBA addClassEH * Movement inventoryDisplayLoad * Medical handleRespawn header typo * Parachute handleRespawn * Rearm and parachute handleRespawn * concertina_wire handleInit * Fix header * use XEH function instead of config * use XEH function instead of config * remove unneeded init eh
30 lines
697 B
Plaintext
30 lines
697 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Executed every time an inventory display is opened.
|
|
*
|
|
* Arguments:
|
|
* 0: Inventory display <DISPLAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [DISPLAY] call ACE_movement_fnc_inventoryDisplayLoad
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
disableSerialization;
|
|
|
|
[{
|
|
disableSerialization;
|
|
params ["_dialog"];
|
|
|
|
if (isNull _dialog) exitWith {
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
(_dialog displayCtrl 111) ctrlSetText format ["%1 - %2 %3", [ACE_player, false, true] call EFUNC(common,getName), localize LSTRING(Weight), [ACE_player] call FUNC(getWeight)];
|
|
}, 0, _this select 0] call CBA_fnc_addPerFrameHandler;
|