Hello! Need some help with part of script.
i Have:
Spoiler
_humanity_lose = round(random player_lose_humanity) * 3;
_humanity = player getVariable['humanity',0];
player setVariable['humanity',_humanity - _humanity_lose,true];
titleText [format ["You lose %1 humanity!", _humanity_lose], "PLAIN DOWN"];
but i want to send info to system chat. When i try
systemChat [format ["You lose %1 humanity!", _humanity_lose], "PLAIN DOWN"];
it wont show up, how i need to write it?
I just change to:
systemChat format ["You lose %1 humanity!", _humanity_lose];