mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
472 B
Plaintext
22 lines
472 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Update Memory of Kestrel
|
|
*
|
|
* Arguments:
|
|
* 0: Slot <NUMBER>
|
|
* 1: Value <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [1, "test"] call ace_kestrel4500_fnc_updateMemory
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
params ["_slot", "_value"];
|
|
GVAR(MIN) set [_slot, (GVAR(MIN) select _slot) min _value];
|
|
GVAR(MAX) set [_slot, _value max (GVAR(MAX) select _slot)];
|
|
GVAR(TOTAL) set [_slot, (GVAR(TOTAL) select _slot) + _value];
|