Im awful at coding? haha I'll show you what I mean with my previous script.
[] spawn {
While{alive player} do {
waituntil{((nearestObject [getpos (vehicle player), "SmokeShellGreen"]) distance (vehicle player) < 25) and (getpos (nearestObject [getpos (vehicle player), "SmokeShellGreen"]) select 2 < 1)};
cuttext ["Your Lungs Are Burning from Nerve Gas", "PLAIN DOWN"];
r_player_blood = r_player_blood - floor(random 5000);
sleep 2;
if !(alive player)exitWith{
cuttext ["You Suffocated to Death from the Nerve Gas", "PLAIN DOWN"];
_victim = name player;
_message = format["[W.I.C.K.E.D.] %1 was Killed By Nerve Gas",_victim];
[nil, nil, rspawn, [_message], {systemChat (_this select 0) }] call RE;
};
};
};
Im trying to do something similar with the messages being displayed.
Edit - For clarification this script is from Arma 2 Im only trying to add similar text in your script.