Triggers

From The DarkMod Wiki
Revision as of 02:59, 3 March 2014 by RJFerret (talk | contribs) (Page creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Triggers

To create triggers that rely on boundaries (once, multiple and their derivations), you need to drag out a worldspawn brush, right-click, select "Create Entity". The triggers below are listed roughly in frequency of usage order, with related triggers beneath.

trigger_once

Requires a Target spawnarg, and may have multiple Targets (Target0, Target1, etc.) directed at the subject entity. When the origin of an entity enters the bounds of the brush, the target(s) will be triggered that one time only. (Note, to resize the brush after creating the entity, need to select and press Tab once to resize it.)

trigger_once_entityname

Similar to above, but may be set to only respond to the entity specified by the spawnarg, "entityname". Note the entity must move into the boundaries itself, not be moved by player (AI walking themselves for example).

trigger_multiple

Similar to above but will activate again and again, use "Wait" spawnarg to control how many seconds between triggerings.

trigger_entityname

Similar to trigger_multiple but only reacts to the entity defined by the "entityname" spawnarg.

trigger_facing

Also similar to trigger_multiple, but requires the triggering entity to be within 30° of the specified "angle" spawnarg.

trigger_relay

Most commonly used to trigger multiple targets, or do so after a delay (per the "delay" spawnarg). May be set to only work once (spawnarg "wait" "-1") or limit firing based upon how many seconds have passed. The "random" spawnarg may be used with "wait" to vary the firings. Very useful as the target of worldspawn, to trigger things at map start (since worldspawn currently only activate one "Target").

trigger_count

This will fire at it's targets upon a specific number of times being triggered itself, based upon the "count" spawnarg. If "count" "3" is set, it will do nothing until the third triggering.

trigger_timer

This trigger will fire repeatedly ever "wait" # seconds. The spawnarg "start_on" defines if it should do so at the start of the map or wait to be triggered (defaults to 0, off at map start). Spawnarg "random" may at variability to the triggerings.

trigger_fade

Will cause the display to fade to specified color. The spawnarg "fadeColor" specifies which color and how transparent in RGBA (red, green, blue, alpha). Default is fade to black: "fadeColor" "0 0 0 1". To fade up from whatever, use alpha of 0, IE to fade up from black, "0 0 0 0".

trigger_hurt

(needs experienced write-up, compare with stim/response damage please)

trigger_presize

(needs experienced write-up)

trigger_touch

Continuously checks if entities are touching, costly performance wise, perhaps done via Objectives more efficiently.

Triggering via Stim/Response

Within the Stim/Response editor, add a response stim set to "Trigger", now when this entity is targeted, whatever specified effect will occur.

Triggering via Conversation

The command, ActivateTarget will trigger the specified entity at that time in the Conversation script.

Triggering via Objectives

In the Objectives Editor you may select an entity to be triggered upon an objective succeeding or failing. Therefore all the possible objective conditions may become trigger events (knock out an AI, move an object away from another, cause another objective to become visible or disappear, etc.)

Triggering via Worldspawn

You may set "Target" on Worldspawn (usually at a trigger_relay since it only may target one entity currently) to cause things to be triggered at map start. If you use this to kill an AI or other affect with audio, note if in range of the player's start, it will be heard during the fade up from black.