Difference between revisions of "Set score announce"
From Unofficial QEdit Wiki Guide
Pheonixmog (Talk | contribs) |
Pheonixmog (Talk | contribs) |
||
Line 9: | Line 9: | ||
<span style='font-size:12px;font-family:courier'> | <span style='font-size:12px;font-family:courier'> | ||
<span style='color:blue'>1: </span><span style='color:blue'>ba_set_time_limit </span>0000000A <span style='color:orange'>//Battle Timer set for 10 minutes</span> | <span style='color:blue'>1: </span><span style='color:blue'>ba_set_time_limit </span>0000000A <span style='color:orange'>//Battle Timer set for 10 minutes</span> | ||
− | <span style='color:blue'> set_score_announce </span>00000001, | + | <span style='color:blue'> set_score_announce </span>00000001, <span style='color:orange'>//Shows the Battle score annoucement when 1 minute remains</span> |
− | <span style='color:blue'> set_score_announce </span>00000003, | + | <span style='color:blue'> set_score_announce </span>00000003, <span style='color:orange'>//Shows the Battle score annoucement when 3 minute remains</span> |
− | <span style='color:blue'> set_score_announce </span>00000005, | + | <span style='color:blue'> set_score_announce </span>00000005, <span style='color:orange'>//Shows the Battle score annoucement when 5 minute remains</span> |
− | <span style='color:blue'> set_score_announce </span>00000007, | + | <span style='color:blue'> set_score_announce </span>00000007, <span style='color:orange'>//Shows the Battle score annoucement when 7 minute remains</span> |
− | <span style='color:blue'> set_score_announce </span>00000009, | + | <span style='color:blue'> set_score_announce </span>00000009, <span style='color:orange'>//Shows the Battle score annoucement when 9 minute remains</span> |
<span style='color:green'> ret </span> | <span style='color:green'> ret </span> | ||
Revision as of 17:51, 22 May 2021
Contents
Syntax
Syntax: set_score_announce xxxxxxxx
- xxxxxxxx (DWORD) = Hex value of minutes remaining to announce score set by ba_set_timelimit
Use
Used to set timed announcements when the Battle Timer hits xxxxxxxx minutes remaining. Multiple in series will run at each individual time.
Example
1: ba_set_time_limit 0000000A //Battle Timer set for 10 minutes
set_score_announce 00000001, //Shows the Battle score annoucement when 1 minute remains
set_score_announce 00000003, //Shows the Battle score annoucement when 3 minute remains
set_score_announce 00000005, //Shows the Battle score annoucement when 5 minute remains
set_score_announce 00000007, //Shows the Battle score annoucement when 7 minute remains
set_score_announce 00000009, //Shows the Battle score annoucement when 9 minute remains
ret