ACE3/addons/volume/functions/fnc_remind.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
493 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Kingsley
* Reminds about lowered volume.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* [] call ace_volume_fnc_remind
*
* Public: No
*/
// Exit if reminder not enabled or not lowered
if (!XGVAR(remindIfLowered) || {!GVAR(isLowered)}) exitWith {};
[LLSTRING(LoweredReminder)] call EFUNC(common,displayTextStructured);
// Fire another reminder in 60s
[FUNC(remind), [], REMINDER_DELAY] call CBA_fnc_waitAndExecute;