trigger_finale
trigger_finale is a point entity available in the Left 4 Dead series. The entity triggers the end of the current campaign session. Its location is crucial in determining the end of the escape route, also known as the flow of the single-map campaign or finale map in a multi-map campaign. If trigger_finale is not above the finale arena's nav mesh, the end of the escape route will be determined by the center of the all the nav areas marked with FINALE.
It has a duplicate entity with a different name, which is thefinale_triggerentity.
Contents
Keyvalues
- World model
(model)<model path> - Disable Shadows
(disableshadows)<boolean> - Used to disable dynamic shadows on this entity.
- First Use Delay
(FirstUseDelay)<float> - For two-part finale starts, delays this many seconds before allowing another +use.
- Use Delay
(UseDelay)<float> - Starts the finale this many seconds after a +use.
- Finale Type
(type)<choices>(in all games since
) - Specifies which style of finale to trigger
- 0 : Standard
- 1 : Gauntlet
- 2 : Custom
- 4 : Scavenge
- Script File
(ScriptFile)<string>(in all games since
) - Name a script as [mapname]_finale.nut instead. Example:
c10m4_houseboat_finale.nut - Versus Travel
(VersusTravelCompletion)<float>(in all games since
) - How much of the versus score is attained through travel to the finale ( not valid in gauntlet finale )
- Is Sacrifice Finale
(IsSacrificeFinale)<boolean>(in all games since
) - If true, one survivor has to be available to perform some action outside the escape vehicle.
Targetname:
- Name
(targetname)<string> - The targetname that other entities refer to this entity by.
Angles:
- Pitch Yaw Roll (Y Z X)
(angles)<angle> - This entity's orientation in the world. Pitch is rotation around the Y axis, yaw is the rotation around the Z axis, roll is the rotation around the X axis.
EnableDisable:
- Start Disabled
(StartDisabled)<boolean> - Stay dormant until activated (with the
Enableinput).
Inputs
FinaleEscapeFinished- Give the survivors a victory.
FinaleEscapeForceSurvivorPositions- Teleports the survivors to a set of info_survivor_position entities. Used to make the survivors stand still on the escape vehicle or hide them.
FinaleEscapeVehicleReadyForSurvivors- Unlocks the escape vehicle navigation mesh areas, and makes survivors speak out that the vehicle has arrived.
ForceFinaleStart- Start the finale now. Only works when all survivors have entered the finale area marked in the navigation mesh.
DisableEscapeSequence- Block the escape sequence from happening (until re-enabled). Infected will still spawn.(
only)
GauntletStopPanic(in all games since
)- Move the gauntlet finale state out of continuous panic mode. Advances to the tank stage the first time it is called, and the escape sequence the second time.
SacrificePlayerBeginsRun(in all games since
)- A player has committed to the sacrifice run. (activator is the player)
Targetname:
Kill- Removes this entity from the world.
KillHierarchy- Removes this entity and its children from the world.
Note: Entities already remove orphaned children upon being removed, but this input removes all children on the same frame, being marginally faster than Kill.
AddOutput<string>- Adds a keyvalue/output to this entity. It can be potentially very dangerous, use with care.
KV Format:<key> <value>
I/O Format:<output name> <targetname>:<inputname>:<parameter>:<delay>:<max times to fire, -1 means infinite>
FireUser1toFireUser4- Fire the
OnUseroutputs; see User Inputs and Outputs.
Use!FGD- Same as a player invoking +use; may not do anything depending on the entity. Can also be invoked by firing an output that does not specify an input.
RunScriptFile<script>(in all games since
)- Execute a VScript file from disk, without file extension. The script contents are merged with the script scope of the receiving entity.
RunScriptCode<string>(in all games since
)- Execute a string of VScript source code in the scope of the entity receiving the input. String quotation may be needed when fired via console.
Bug: In
, the code is executed in the script scope of the entity that fires the output, not the one receiving the input.
Warning: Never try to pass string parameters to a script function with this input. It will corrupt the VMF structure because of the nested quotation marks, which then must be removed manually with a text editor.
CallScriptFunction<string>(in all games since
) !FGD- Execute a VScript function in the scope of the receiving entity.
SetLocalOrigin<coordinates>(in all games since
) !FGD- Send this entity to a spot in the map. If the entity is parented to something, it will be offset from the parent by this amount.
EnableDisable:
Enable
Disable- Enable/disable this entity from performing its task. It might also disappear from view.
Outputs
FinaleEscapeStarted- Fired when the survivors should start their escape.
FinaleWon- Fired when the survivors win the finale.
FinaleLost- Fired when the survivors lose the finale.
FirstUseStart- Fired when a player uses the trigger the first time.
UseStart- Fired when a player uses the trigger to start the finale.
FinaleStart- Fired when the finale starts.
FinalePause- Fired during the pause between each finale wave.
EscapeVehicleLeaving- Fired when the escape vehicle starts to leave.
Targetname:
OnUser1toOnUser4- These outputs each fire in response to the firing of the like-numbered
FireUser1toFireUser4Input; see User Inputs and Outputs.