L4D2 Level Design/Gauntlet Finale: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 2: Line 2:
{{update}}
{{update}}
{{stub}}
{{stub}}
Gauntlet Finales were introduced into Left 4 Dead 2 with The Parish campaign. Rather than having the player holdout in an enclosed arena, gauntlets force players to run to the end of the level, where the rescue vehicle is already waiting for them. In The Parish, the players must run across a bridge to make it to a rescue helicopter.
{{l4d2}} Gauntlet Finales were introduced in The Parish campaign. Rather than having the player holdout in an enclosed arena, gauntlets force players to run to the end of the level, where the rescue vehicle is already waiting for them. In The Parish, the players must run across a bridge to make it to a rescue helicopter.


You may wish to follow along with the [[Decompiling Maps|decompiled map]] this article is based off of, c5m5_bridge.vmf.
You may wish to follow along with the [[Decompiling Maps|decompiled map]] this article is based off of, c5m5_bridge.vmf.
Line 12: Line 12:
*info_target, targetname "nav_flow_target"
*info_target, targetname "nav_flow_target"
*Rescue closets are absent but should work if they are added. Consider adding one if there is combat before reaching the finale area.
*Rescue closets are absent but should work if they are added. Consider adding one if there is combat before reaching the finale area.
*A custom vscript with modifications to director_gauntlet.nut
*Dependency on director_gauntlet.nut vscript


The gauntlet finale structure is not very flexible and workarounds should be taken into consideration. Only one tank is allowed before the escape vehicle is ready. director_debug 1 shows that it is considered an escape sequence by the second time GauntletStopPanic is fired at trigger_finale.
The gauntlet finale structure is not very flexible and workarounds should be taken into consideration. Only one tank is allowed before the escape vehicle is ready. director_debug 1 shows that it is considered an escape sequence by the second time GauntletStopPanic is fired at trigger_finale.


== VScript ==
A custom vscript seems possible by loading up a different vscript with trigger_finale.
==See also==
==See also==



Revision as of 07:03, 6 October 2011

Broom icon.png
This article or section needs to be updated to include current information regarding the subject.
Remember to check for any notes left by the tagger at this article's talk page.

Stub

This article or section is a stub. You can help by expanding it.

Left 4 Dead 2 Gauntlet Finales were introduced in The Parish campaign. Rather than having the player holdout in an enclosed arena, gauntlets force players to run to the end of the level, where the rescue vehicle is already waiting for them. In The Parish, the players must run across a bridge to make it to a rescue helicopter.

You may wish to follow along with the decompiled map this article is based off of, c5m5_bridge.vmf.

Overview

A gauntlet mainly consists of standard finale components with a few new additions and modifications:

  • trigger_finale set to gauntlet
  • info_target, targetname "nav_flow_target"
  • Rescue closets are absent but should work if they are added. Consider adding one if there is combat before reaching the finale area.
  • Dependency on director_gauntlet.nut vscript

The gauntlet finale structure is not very flexible and workarounds should be taken into consideration. Only one tank is allowed before the escape vehicle is ready. director_debug 1 shows that it is considered an escape sequence by the second time GauntletStopPanic is fired at trigger_finale.

VScript

A custom vscript seems possible by loading up a different vscript with trigger_finale.

See also