Difference between revisions of "Multi manager (GoldSource Engine)"
Solokiller (talk | contribs) (spelling, incorrect statement about multithreaded flag removed (see https://github.com/ValveSoftware/halflife/blob/master/dlls/triggers.cpp#L398), reworked description, changed type of target delay from integer to float) |
Dr. Orange (talk | contribs) (Replaced Template:Hl1 series point with Template:GoldSource base point) |
||
Line 1: | Line 1: | ||
{{stub}} | {{stub}} | ||
− | {{ | + | {{GoldSource base point|multi_manager}} |
==Entity description== | ==Entity description== |
Revision as of 06:56, 15 December 2015
This article is a stub. You can help by adding to it. |
multi_manager is a point entity available in all GoldSource engine games.
Entity description
Lets you trigger multiple entities, potentially with a delay before fire for each targeted entity.
To trigger an entity with it, you must first turn off smart edit, then add keyvalue pairs for the targets. The "key" is the targetname of the entity you want to target. The "value" is the delay in seconds before the entity is triggered after the multi_manager
itself has been triggered. The same targetname can be targeted multiple times at different delays, however the keyvalue will become targetname#1 and so on.
A maximum of 16 targets can exist for a single multi_manager
.
Key Values
Targetname:
- Name
<target_source>
- The targetname that other entities refer to this entity by.
Targets:
- Any other entity's targetname
<float>
- The entity targetnames to be fired by this
multi_manager
. The key is the targetname of another entity, and the value is the delay in seconds. Up to 16 targets in the queue can exist.Note: These keyvalues must be added manually without smart edit.
Flags
- 1: Multithreaded - This allows the
multi_manager
to be targeted again after it has been targeted once, but before all of the targets in its queue have been fired. It does this by creating a clone of itself that will trigger all targets and then remove itself. This can cause a noticeable increase in the number of entities if the manager has targets with long delays.