client/addons/phone/functions/fnc_addOfflineEmail.sqf
Jacob Schmidt c6daf95415
All checks were successful
Build / Build (push) Successful in 53s
Initial Repo Setup
2025-01-01 14:35:12 -06:00

10 lines
270 B
Plaintext

#include "..\script_component.hpp"
if (_this isEqualTo [""]) exitWith {};
private _tmp = call compile format ["%1", _this];
if ((typeName _tmp) isEqualTo "SCALAR") exitWith {};
GVAR(email) = _this;
["You got an email while away.", "cyan", 3] call EFUNC(misc,notify);