hi i used this part of the et_beach script
to learn from i know it pretty well exept when it comes to the finishing part then i always geth stuck.
i can take it bud when i run to the dropoff zone nothing happens .
game_manager
{
spawn
{
// Game rules
wm_axis_respawntime 30
wm_allied_respawntime 30
wm_number_of_objectives 7
wm_set_round_timelimit 12
// Objectives
// 1: Primary1 : Steal the Documents
// 2: Primary2 : Transmit the documents
wm_objective_status 1 1 0
wm_objective_status 1 0 0
wm_objective_status 2 1 0
wm_objective_status 2 0 0
wait 50
setstate forward_wobj invisible
setstate forwardflag_cm_marker invisible
// Set Defending Team for SW Mode
wm_set_defending_team 1
// If the round timer expires, the Allies have won, so set the current winning team
// Set the round winner: 0 == AXIS, 1 == ALLIED
wm_setwinner 1
wait 450
trigger objective1
{
accum 2 set 1
wm_announce "^1The Axis team has transmited the Secret War Documents!"
wm_objective_status 2 0 1
wm_objective_status 2 1 2
trigger game_manager checkgame
}
trigger axis_object_stolen
{
wm_objective_status 1 0 1
wm_objective_status 1 1 2
}
trigger axis_object_returned
{
wm_objective_status 1 0 2
wm_objective_status 1 1 1
}
}
radioend
{
spawn
{
}
death
{
trigger game_manager objective1
}
}
axis_obj01
{
spawn
{
}
trigger stolen
{
wm_objective_status 1 0 1
wm_objective_status 1 1 2
}
trigger returned
{
wm_objective_status 1 0 2
wm_objective_status 1 1 1
}
trigger captured
{
}
}
trigger checkgame
{
accum 2 abort_if_not_equal 1
wm_setwinner 0
wait 1500
wm_endround
}
}
why wont it end the game when i have stolen the objective and taken it to the dropoff zone .
