hey SD, im wondering how to make countdown thing, so i looked into the daybreak map script today, but all looked so complicated, later i searched for it here but found nothing, so i post here: my map, got a flag that right now when it gets captured by and axis, the axis teams win after some seconds, but if the allies takes the flag before that seconds the axis still wins.
so i wanted to make such countdown as u got on ur map indaybreak…
i dont got much clues how to make it … but here is my script right now :
game_manager // Start game_manager section
{
spawn
{
wm_set_round_timelimit 30
wm_axis_respawntime 3
wm_allied_respawntime 5
wm_set_defending_team 1
wm_setwinner 1
} // End spawn
} // End game_manager section
castle_flag
{
spawn
{
accum 1 set 2 // Who owns flag: 0-Axis, 1-Allied, 2-Nobody (1 = 0)
}
trigger allied_capture
{
accum 1 abort_if_equal 1
accum 1 trigger_if_equal 0 castle_flag allied_reclaim
accum 1 set 1
wm_announce "Humans got the Flag!"
setstate castle_wobj default
}
trigger allied_reclaim
{
alertentity castle_wobj // Switch command map marker
}
trigger axis_capture // Touched by an axis player
{
accum 1 abort_if_equal 0 // do Allies own flag?
accum 1 set 0 // Axis own the flag
wm_announce "The Zombies Captured the Flag!"
setstate castle_wobj default
alertentity castle_wobj
wm_setwinner 0
wait 9000
wm_endround
}
}
hope ill get a answer or a link or something 
