GtkRadiant Editor Manual


Appendix B: Entity Descriptions

Holdable_* Entities

holdable_medkit
Map Entity Color: blue (.7 0 1)
Dimensions:  (-16 -16 -16) (16 16 16)
Game Function:  This is a Medkit that can be picked up and used (once) later. Brings the player's health back to 100 when used. Player can only carry one holdable item at a time.

Keys
wait: time in seconds before item respawns after being picked up (default 60, -1 = never respawn).
random: random time variance in seconds added or subtracted from "wait" delay (default 0 - see Notes).
team: set this to team items. Teamed items will respawn randomly after team master is picked up (see Notes).
target: picking up the item will trigger the entity this points to.
targetname: a target_give entity can point to this for respawn freebies.
notbot: when set to 1, a bot will never seek out this item
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
SUSPENDED: item will spawn where it was placed in map and won't drop to the floor.  Bots will only be attracted to suspended entities if they are reachable by way of a jump pad or launch pad (trigger_push).

Notes
The amount of time it takes for an item in the team to respawn is determined by the "wait" value of the item that was picked up previously. So if one of the items in the team has it's "wait" key set to -1 (never respawn), the random respawning cycle of the teamed items will stop after that item is picked up.

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).*/

holdable_teleporter
Map Entity Color: blue (.7 0 1)
  Dimensions: (-16 -16 -16) (16 16 16)
Game Function: Teleporter item that can be picked up and used (once) later. Teleports the player to a random player spawn point when used. Player can only carry one holdable item at a time.

Keys
wait: time in seconds before item respawns after being picked up (default 60, -1 = never respawn).
random: random time variance in seconds added or subtracted from "wait" delay (default 0 - see Notes).
team: set this to team items. Teamed items will respawn randomly after team master is picked up (see Notes).
target: picking up the item will trigger the entity this points to.
targetname: a target_give entity can point to this for respawn freebies.
notbot: when set to 1, a bot will never seek out this item
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
SUSPENDED: item will spawn where it was placed in map and won't drop to the floor. Bots will only be attracted to suspended entities if they are reachable by way of a jump pad or launch pad (trigger_push).

Notes
The amount of time it takes for an item in the team to respawn is determined by the "wait" value of the item that was picked up previously. So if one of the items in the team has its "wait" key set to -1 (never respawn), the random respawning cycle of the teamed items will stop after that item is picked up.

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).

Back | Home | Next