GtkRadiant Editor Manual
Appendix B: Entity Descriptions
target_delay
Map Entity Color: aqua
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: The target_delay trigger is an
intermediary time delay trigger. Like a target_relay (see below),
this can only be fired by other triggers which will, in turn, cause
it to fire its own targets
Keys
targetname: activating trigger points to this.
target: this points to entities to activate when this
entity is triggered.
wait: delay in seconds from when this gets triggered to
when it fires its own targets (default approx. 1).
random: random time variance in seconds added or
subtracted from "wait" delay (default 0 - see Notes).
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Notes
When the random key is set, its value is used to calculate a
minimum and a maximum delay. The final time delay will be a random
value anywhere between the minimum and maximum values: (min delay =
wait - random) (max delay = wait + random).
target_give
Map Entity Color: red
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This is used to give ammo, weapons, health
or items to the player who activates it.
Keys
target: this points to the item(s) to give when
activated.
targetname: activating trigger or spawn entity points to
this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Notes
- There are 2 ways to use this entity.
- To automatically give items to players when they spawn
in the game: make a spawn location entity like
info_player_deathmatch or CTF respawn points target this entity,
then make it target the item(s) to give to the player upon
respawn.
- To give items to players during the game: make a
trigger_multiple target this entity, then make it target the
item(s) to give to the player when the trigger is touched. This is
how the column of health and armor in Q3DM10 works.
- Items targeted to be given are not seen in the map.
target_kill
Map Entity Color: gray
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This will kill the player who activates
the trigger that fires this target.
Keys
targetname: the activating trigger points to this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).*/
target_laser
Map Entity Color: red
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: Generates a red laser beam. I think this
can somehow spawn in the game, I saw it once but it's too
inconsistent to be usable. Commented out.
Keys
angles: alternate "pitch, yaw, roll" angles method of
aiming laser (default 0 0 0).
target: point this to a target_position entity to set the
laser's aiming direction.
targetname: the activating trigger points to this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Check Boxes/Spawnflags
START_ON: when set, the laser will start on in the game.
Notes
Since none of the game maps in Quake III Arena used this
function, it is not likely to be a functioning entity.
target_location
Map Entity Color: Dark Green
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: Location marker used by bots and players
for team orders and team chat in the course of Teamplay games. The
closest target_location in sight is used for the location. If none
is in sight, the closest in distance is used.
Keys
Message: name of the location (text string).
Displayed in parentheses in front of all team chat and order
messages. Shorter is better.
count: color of the location text displayed in
parentheses during team chat. Set to 0-7 for color.
0 : white (default)
1 : red
2 : green
3 : yellow
4 : blue
5 : cyan
6 : magenta
7 : white
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Design Tips: The target locations are "line-of-sight." If
a player can "see" it, and that target is the closest to the
player, then that location message is displayed. Be
conservative in placing location markers. Because of the way the
location code is implemented, it causes a large amount of data to
be transmitted regularly. It has been explained that the game
serrver has to constantly keep track of, and update to the clients,
a data table equal to all the location markers multiplied by all
the players. Not only that, but it must calculate line of sight
from players to location markers and calculate the distance from
the location marker.
Place the target locations in such a way that the entity can be
"seen" from most, if not all, the positions that a player can stand
in when it is inside that area. Fewer are better, even if it
means that occasionally, a team mate is in an unknown location.
target_position
Map Entity Color: Dark Green
Dimensions: (-4 -4 -4) (4 4 4)
Game Function: This is an aiming target for entities like
light, misc_portal_camera, and trigger_push (jump pads and launch
pads) in particular.
Keys
Targetname: the entity that requires an aiming direction
points to this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Notes
Use this as the target for any entity that must be actively
targeted during the game (do not use it as a target for
spotlights).
See Tips, Tricks and Tutorials for the method used to make jump
pads.
target_print
Map Entity Color: dark green
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This will print a message on the center of
the screen when triggered. By default, all the clients will see the
message.
Keys
message: text string to print on screen.
targetname: the activating trigger points to this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Check Boxes/Spawnflags
REDTEAM : only the red team players will see the message.
BLUETEAM : only the blue team players will see the message.
PRIVATE : only the player that activates the target will see the
message.
target_push
Map Entity Color: gray
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This is not recommended for creating jump
pads and launch ramps. The direction of push can be set by the
"angles" key or pointing to a target_position or info_notnull
entity. Unlike trigger_push, this is NOT client side predicted and
must be activated by a trigger.
Keys
angles: this sets the pitch and yaw aiming angles of push
entity (default 0 0). The roll angle does not apply.
speed: speed of push (default 1000 game units per
second). Has no effect if entity targets an aiming entity.
targetname: the activating trigger points to this. Push
originates from the location of the trigger.
target: this points to the aiming entity to which the
player will jump.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Check Boxes/Spawnflags
BOUNCEPAD : if set, trigger will play bounce noise instead of
beep noise when activated (see notes).
Notes
- The player will first move from the trigger to the target_push
and then on towards the target_position.
- To make a jump pad or launch ramp, create a trigger_multiple
where the jump must originate. Place the target_push directly above
the trigger_multiple and place the target_position entity at the
highest point of the jump. Target the trigger_multiple to the
target_push and target the target_push to the
target_position/info_notnull (or set the target_push's "angles"
key).
- Note that the "angle" key also
works.
- A target_push can be used to make a wind tunnel push effect (as
opposed to the jump pad effect of a trigger_push). It pushes the
activator in the direction of the angle value or towards its apex,
a targeted target_position entity.
- The default speed is 1000.
- If bouncepad is checked, it will play the bouncepad sound
instead of windfly.
Design Tip:
There is a way to make the target push play proper sounds. Just
create a sound\movers\plats folder under baseq3 and put a sounds
windfly.wav in it. It can be the sound from the Q2 or your own
custom looping if you're up to it.
target_relay
Map Entity Color: aqua
Map Entity Color: (-8 -8 -8) (8 8 8)
Game Function: This can only be activated by other
triggers, which will, in turn, cause it to activate its own
targets.
Keys
targetname: activating trigger points to this.
target: this points to entities to activate when this
entity is triggered.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Check Boxes/Spawnflags
RED_ONLY : only red team players can activate trigger.
BLUE_ONLY : only red team players can activate trigger.
RANDOM: one of the targeted entities will be triggered at
random.
Notes
Use this when you need to split off targeting functions along
separate paths.
target_remove_powerups
Map Entity Color: blue
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This takes away all item_* type powerups
from player except health and armor (holdable_* items are not taken
away either). This must be activated by a button or
trigger_multiple entity. The player that activates the trigger will
lose any powerup(s) currently in his possession.
Keys
targetname: activating trigger points to this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).*/
target_score
Map Entity Color: bright green
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: This is used to automatically give frag
points to the player who activates this. A spawn location entity
like info_player_* or CTF respawn points can target this entity to
give points to the player when he spawns in the game. Or a trigger
can also be used to activate this. The activator of the trigger
will get the points.
Keys
targetname: activating entity points to this.
count: number of frag points to give to player (default
1).
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).*/
target_speaker
Map Entity Color: bright green
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: Sound generating entity that plays .wav
files. Normal non-looping sounds play each time the target_speaker
is triggered. Looping sounds can be set to play by themselves (no
activating trigger) or be toggled on/off by a trigger.
Keys
noise: path/name of .wav file to play (eg.
sound/world/growl1.wav - see Notes).
wait: delay in seconds between each time the sound is
played ("random" key must be set - see Notes).
Random: random time variance in seconds added or
subtracted from "wait" delay ("wait" key must be set - see
Notes).
targetname: the activating button or trigger points to
this.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Check Boxes/Spawnflags
LOOPED_ON: sound will loop and initially start on in level (will
toggle on/off when triggered).
LOOPED_OFF: sound will loop and initially start off in level
(will toggle on/off when triggered).
GLOBAL: sound will play full volume throughout the level.
ACTIVATOR: sound will play only for the player that activated
the target.
Notes
- The path portion value of the "noise" key can be replaced by the
implicit folder character "*" for triggered sounds that belong to a
particular player model. For example, if you want to create a
"bottomless pit" in which the player screams and dies when he falls
into, you would place a trigger_multiple over the floor of the pit
and target a target_speaker with it. Then, you would set the
"noise" key to "*falling1.wav". The * character means the current
player model's sound folder. So if your current player model is
Visor, * = sound/player/visor, if your current player model is
Sarge, * = sound/player/sarge, etc. This cool feature provides an
excellent way to create "player-specific" triggered sounds in your
levels.
- The combination of the "wait" and "random" keys can be used to
play non-looping sounds without requiring an activating trigger but
both keys must be used together. The value of the "random" key is
used to calculate a minimum and a maximum delay. The final time
delay will be a random value anywhere between the minimum and
maximum values: (min delay = wait - random) (max delay = wait +
random).
target_teleporter
Map Entity Color: red
Dimensions: (-8 -8 -8) (8 8 8)
Game Function: Activating this will teleport players to
the location of the targeted misc_teleporter_dest entity
(target_position can also be used). Unlike trigger_teleport, this
entity must be activated by a trigger and does NOT allow client
prediction of events.
Keys
targetname: activating trigger points to this.
target: this must point to a misc_teleporter_dest
entity.
notfree: when set to 1, entity will not spawn in "Free
for all" and "Tournament" modes.
notteam: when set to 1, entity will not spawn in
"Teamplay" and "CTF" modes.
notsingle: when set to 1, entity will not spawn in Single
Player mode (bot play mode).
Notes
When you give multiple targets the same target name, the
teleporter will randomly select from one each time it is used.
Back | Home | Next