Hi,
at the moment I’m working on a new concept map for CTF / KOTH (actually the teams have to hold / dominate the flag).
And I am using timer to sum up points for the teams that dominate flags in dependence of the time a team dominate a flag.
I am using “team_WOLF_objective”-eintities with the “models/multiplayer/flagpole/flagpole.md3”-model as flag.
There are three “trigger_objective_info”-entities (axis, allied and neutral) per flag each with a “misc_commandmap_marker”-entity.
I have created a custom image for the neutral TOI’s.
Here is the script part for one flag:
// **************************************************
// CAPTURE: team_WOLF_checkpoint = flag
// flag 1
scr_KOTH_FLAG_1
{
spawn
{
// ...
setstate neutral_FLAG_1_toi default
setstate allied_FLAG_1_toi invisible
setstate axis_FLAG_1_toi invisible
// ...
}
trigger axis_capture
{
// ...
setstate neutral_FLAG_1_toi invisible
setstate allied_FLAG_1_toi invisible
setstate axis_FLAG_1_toi default
// ...
}
trigger allied_capture
{
// ...
setstate neutral_FLAG_1_toi invisible
setstate allied_FLAG_1_toi default
setstate axis_FLAG_1_toi invisible
// ...
}
}
// **************************************************
The problem is the following:
In limbo menu when the mouse is near the flags / flagpoles there are two flags:

How can I get rid of the second flag?
I have tried already to work with only one TOI and one CM-marker for the neutral flag.
And have set only the neutral CM marker invisibible.
But this doesn’t work at all.
The flags have been marked as captured from the beginning (strange).
Many thanks in advance.
EDIT:
Here are the entities for one flag:
- [li]“team_WOLF_objective”
[/li]
{ "classname" "team_WOLF_checkpoint" "origin" "0 0 -232" "model" "models/multiplayer/flagpole/flagpole.md3" "scriptname" "scr_KOTH_FLAG_3" }
[li]allied TOI + allied CM-marker (axis and neutral corresponding)
[/li]
// entity { "spawnflags" "3" "customimage" "gfx/limbo/cm_flagallied.tga" "classname" "trigger_objective_info" "targetname" "allied_FLAG_3_toi" "scriptname" "scr_allied_FLAG_3_toi" "track" "the Flag 3" "shortname" "Flag 3" "target" "allied_FLAG_3_cm_marker" // brush 0 { ( -64 64 -96 ) ( -64 -64 -96 ) ( -64 -64 -112 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 ( 56 64 -96 ) ( -56 64 -96 ) ( -56 64 -112 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 ( 64 -64 -96 ) ( 64 64 -96 ) ( 64 64 -112 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 ( -56 -64 -96 ) ( 56 -64 -96 ) ( 56 -64 -112 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 ( -56 -64 -96 ) ( -56 64 -96 ) ( 56 64 -96 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 ( 64 64 -240 ) ( -48 64 -240 ) ( -48 -64 -240 ) common/trigger 0 0 0 0.500000 0.500000 0 7 0 } // brush 1 { ( -8 8 -72 ) ( -8 -8 -72 ) ( -8 -8 -216 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 ( 8 8 -72 ) ( 0 8 -72 ) ( 0 8 -216 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 ( 8 -8 -72 ) ( 8 8 -72 ) ( 8 8 -216 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 ( 0 -8 -72 ) ( 8 -8 -72 ) ( 8 -8 -216 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 ( 0 -8 -72 ) ( 0 8 -72 ) ( 8 8 -72 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 ( 16 8 -88 ) ( 8 8 -88 ) ( 8 -8 -88 ) common/origin 0 0 0 0.500000 0.500000 0 15 0 } } // entity { "targetname" "allied_FLAG_3_cm_marker" "origin" "0 0 -56" "classname" "misc_commandmap_marker" }