mirror of
https://github.com/IT07/a3_vemf_reloaded.git
synced 2024-08-30 16:52:11 +00:00
color instead of type
This commit is contained in:
parent
ad5283c90c
commit
322a4de74b
@ -5,7 +5,7 @@
|
||||
will put mission notification on either all screens or just on given
|
||||
|
||||
Params:
|
||||
_this select 0: SCALAR - mission type (AI mode)
|
||||
_this select 0: SCALAR - mission color
|
||||
_this select 1: STRING - notification title
|
||||
_this select 2: STRING - notification message
|
||||
_this select 3: ARRAY (optional) - specific clients to (ONLY) send notification to
|
||||
@ -14,9 +14,9 @@
|
||||
nothing
|
||||
*/
|
||||
|
||||
params [ "_mt", "_title", "_line", "_to" ];
|
||||
params [ "_mc", "_title", "_line", "_to" ];
|
||||
if ( isNil "_to" ) then { _to = allPlayers };
|
||||
{
|
||||
VEMFrMsgToClient = [ [ _mt, _title, _line ], "" ];
|
||||
VEMFrMsgToClient = [ [ _mc, _title, _line ], "" ];
|
||||
( owner _x ) publicVariableClient "VEMFrMsgToClient";
|
||||
} forEach _to;
|
||||
|
Loading…
Reference in New Issue
Block a user