Staredit Network

Staredit Network -> UMS Assistance -> score counters
Report, edit, etc...Posted by Lord-Omega on 2006-09-30 at 22:43:22
ok i cant figure this out, its probly realy simple but i cant get it...

how do i get like say 3 diferent leader boards to alternate. when i tried it, it just went straight to last leaderboard i put in and thats only 1 it showed. helpsmilie.gif
Report, edit, etc...Posted by Urmom(U) on 2006-09-30 at 22:44:34
Insert a wait action between the displaying of the 3 leaderboards to make it cycle and then preserve trigger.
Report, edit, etc...Posted by xmrxsiegecopx on 2006-09-30 at 23:06:53
QUOTE
Insert a wait action between the displaying of the 3 leaderboards to make it cycle and then preserve trigger.


Rather than using waits, use a death counter timer to prevent wait blocks.
Report, edit, etc...Posted by fritfrat(U) on 2006-09-30 at 23:10:59
Waits work if they're the only waits running, of course.

Most likely you'll want to run a counter, though, so you can run other waits.
Report, edit, etc...Posted by Urmom(U) on 2006-10-01 at 00:11:36
Well normally I have it so that it constantly adds a death to a counter. If the deaths are in a certain range, it displays the first leaderboard, it if in a second range it displays another leaderboard, etc. I thought that the waits would be easier for him to understand though.

If you are curious, this is what it is in trigger form:

Always
----
add 1 death for unit
preserve


curren player has suffered at least 1 death of unit
current player has suffered at most 36 deaths of unit
---------
display leaderboard 1
preserve


curren player has suffered at least 37 death of unit
current player has suffered at most 72 deaths of unit
---------
display leaderboard 2
preserve


Current player has suffered at least 72 deaths of unit
------
set deaths to 0
preserve
Next Page (1)