Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
addicted

end mission after some time adn displey score.

Recommended Posts

Hello

I read many topics and I still don't have answer. How to make mission ending after 60min and show score and winner side and score for players. In my mission I have westscore and eastscore. To End mission after 60 min I can set the trigger adding in "countdown time" - 3600, in "condition" - This, and in "on act" - "END1" but how to tell the game that now arma should display for example

WEST WON
678 : 333
"normal table score for players"

or how to tell arma that

 now it should be displayed for 30s
WEST WON
678 : 342
and after 30s should be displayed
"tabale score for players"

Second thing is that best option is to display it on black screen without an background.

Help me please. I don't have an idea how to make it properly. Second thing is that best option is to display it on black screen without any background.

Edit... How to edit title of the thread :butbut: ?

Edited by addIcted

Share this post


Link to post
Share on other sites

Check bis_fnc_showNotification

And also bis_fnc_endMission

As well as the related pages for description.ext entries needed to make them work the way you want.

As for score, there is a built-in score tab on the debriefing screen that shows sometimes, but I have no idea how to add anything to it. In any case, you can create your own debriefing tabs if you want (again, check the related pages).

Share this post


Link to post
Share on other sites

Thanks for answer.

I read this before and I still don't have any idea how to make it corectly. :(

Share this post


Link to post
Share on other sites

I have found a solution. I made trigger set mission time in it started when enybody present. condition this and on act A = true. I made 4 other trigers with. 3 Of them blackouting screen, showing score and telling who won. for example

condition A= true;
westscore > eastscore;
on act
[] exec "showscore.sqf" //(script showing score)
titleText ["WEST WIN", "BLACK IN", 40];
titleFadeOut 10;

and second one ends mission after 10 seconds

countdown 10s
condition - A = true
on act - endmission "END1";

Share this post


Link to post
Share on other sites

×