Left 4 Dead 2/Scripting: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
m (Substituted IO templates)
 
(274 intermediate revisions by 30 users not shown)
Line 1: Line 1:
{{sq}}{{l4d2}} '''Left 4 Dead 2 vscripts''' are Squirrel language-based scripts that can be run in-game to perform various in-game tasks and changes.
{{LanguageBar}}
{{stub}}
{{TabsBar|main=Scripting}}
{{Note|Information on vscripts is currently incomplete. Descriptions, accuracy, and information are subject to change.}}
{{back|Left 4 Dead 2/Docs}}
{{toc-right}}


==Description==
== Useful links ==
Left 4 Dead 2 vscripts are written in [http://squirrel-lang.org/ Squirrel], a compilable scripting language similar to [http://www.lua.org/ Lua].
* [[/Game Events|List of game events]]
* [[/Script Functions|List of script functions]]
* [[/Director Scripts|Director Scripts]]
* [[/Expanded Mutation System|Expanded Mutation System]]
* [[/Mutation Gametype|Mutation Gametype]]
* [[/Decrypted mutations|Decrypted mutations]]


Some uses of vscripts include:
== Overview ==
{{sq}}{{l4d2}} '''Left 4 Dead 2 [[VScript]]s''' are server-side scripts that are run in an in-game virtual machine. They are written in [[Squirrel]], a compiled scripting language similar to [http://www.lua.org/ Lua]. It currently runs Squirrel version 3.0.4.


*Mini-games found in Dark Carnival - counters, timers, prop spawning
== Uses ==
*Some Scavenge Logic
*Director manipulation - onslaughts, reserved wanderers, complete emptiness/silence, [[L4D2_Level_Design/Boss_Prohibition|prohibition of boss infected]] (tanks and witches), direction of mobs
*Model manipulation - green diesel cans attached to survivors in Hard Rain
*Much more!


The file extensions of vscripts are .nut and .nuc, where .nut files are human readable using a text editor. Official .nuc script files are located in '''scripts/vscripts''' within pak01_dir.vpk (you can open this file with third party programs like [[GCFScape]]).
=== [[L4D2_Director_Scripts|Director Scripts]] ===
The most common use of [[VScript]]s in ''Left 4 Dead 2'' is to temporarily influence the behavior of the AI Director. These scripts can range from simple adjustments of infected spawning and [[L4D2_Level_Design/Boss_Prohibition|prohibiting boss infected]], to custom events like onslaughts and gauntlets, and even complex staged panic events and fully [[L4D2_Level_Design/Custom_Finale|custom finales]]. Most of the events in the official campaigns are mainly implemented this way.


Some entities that accept vscripts as inputs or properties include [[Info_director|info_director]], [[Logic_script|logic_script]], and [[Trigger_finale|trigger_finale]].
Director Scripts work mainly by writing overriding values of the various variables used by the Director into a <code>DirectorOptions</code> table.


===Decompiling nuc-files===
Only one Director Script can be running at a time. Executing a new one will terminate any previous running one and remove any values it set in <code>DirectorOptions</code>.
.Nuc files are ICE encrypted .nut files. The encryption key is '''SDhfi878'''. You can use [[VICE]] to decode them or download already deciphered scripts [http://www.multiupload.com/OXO3T2S1YA here] (includes all scripts from version 2.0.1.8 and all mutations).  


==Practicing the Squirrel language==
=== [[#Entity Scripts 2|Entity Scripts ↓]] ===
Developers that would like to practice Squirrel can quickly set up an environment to do so. It can be as simple as opening up L4D2 and executing scripts from the console. One can also set up a light-weight squirrel interpretor from Windows Command Prompt:
Another common use is to attach a script to an entity. The script provides easy access to read and modify many of the entity's properties, and even to write new [[KeyValues]]. This allows for controlling entities in ways that would be very complicated or impossible to with the entity I/O system in Hammer.
===Windows Command Prompt===
#Download and extract the [http://modulatum.wordpress.com/2008/03/20/squirrel-binary-for-windows/ Squirrel interpretor binary (Version 2.2, 32-Bit)] to any folder. sq.exe is the interpretor. sq.exe can also be created by compiling from source code.
#Any scripts within that folder are executed with the command <code>sq ''filename''.nut</code> via Windows Command Prompt {{tip|There are sample scripts included with the compiled binary. Try running something simple first, like the "Hello, World!" script. <code>sq hello.nut</code>}}
#Optional: Set up a path to sq.exe within the Environment Variables in Windows. This allows convenient execution of .NUT scripts from any folder from the Command Prompt. Go to System Properties via the Control Panel, select the Advanced tab, and click the Environmental Variables button. Under System Variables select the Variable "Path" and click on the Edit button. Add the full path to sq.exe (for example, C:\Squirrel, where sq.exe is located in C:\Squirrel) to the other paths to the Variable Value. Restart the Command Prompt and <code>sq ''filename''.nut</code> should be able to work from any folder.


Documentation and generic sample scripts can always be found at the [http://squirrel-lang.org/ official Squirrel Language site].
Any entity is capable of running a script, and has the ability to set a specified ''think'' function to run every 0.1 seconds, as well as executing script code as an entity output.
===L4D2 Client===
*[[info_director]]
**Loads DirectorOptions such as onslaughts, panic events, infected limits, etc.
**Can be loaded in console with ent_fire command <code>ent_fire <targetname of info_director> BeginScript <name of script></code>
*[[logic_script]]
**The vscript that is set up in the logic_script will load automatically on load
**The vscript can be reloaded with console command <code>script_reload_code</code>
*Game Modes {{todo|see if it also applies to coop, versus, etc.}}
**Scavenge
***A per-map script is loaded automatically during Scavenge Mode
***Name the script <map name>_scavenge.nut.
***For example, c1m4_atrium_scavenge.nut.
**Mutators
***Will automatically run the script with the same name as the game mode.
***For example, running a map <code>map <map name> realismversus</code> will automatically load realismversus script.
*Events
**Finale
***"Script" KeyValue of trigger_finale does not need to be set up
***Automatically loads <map name>_finale.nut script on finale trigger
***Known to work in this fashion in Custom and Scavenge finale type (set up in trigger_finale)


==Scripting samples==
Some entities also have specialized functions for VScripts, with the most prominent being {{ent|point_script_use_target}}, which allows for turning other entities into fully programmable timed buttons.  
{{Warning|}}NEVER use the = operator when trying to influence the director. Use <-. The difference is semantics. If you use =, it will throw an error if the table slot isn't defined (like if a previous script didn't define it). <-, on the other hand, will create the variable if it does not exist. Some of these samples are only portions of a full script, so make sure that the variables are created beforehand.
===Targeting entities with a director script===
Add something like this in the script for your minifinale when your horde wave gets triggered:
<pre>{
EntFire( "church_bell_relay", "Trigger", 0 )
}</pre>
Then place a logic_relay with that name to send an output to your ambient_generic.


===Triggering a panic event though a script===
=== [[#Global Scripts 2|Global Scripts ↓]] ===
If you want to start a panic event through a script (not an onslaught) then use this:
Scripts can also be made to run on map load, based on game mode and optionally map name. These scripts are commonly used to create pure script addons and modify global Director options for [[Mutation_Gametype_(L4D2)|mutations]].
<pre>DirectorOptions <-
 
{
Global scripts can have [[Left 4 Dead 2/Script Functions#Scripted_Mode_hooks|script hook functions]] added that get called from the game at certain events, like when players/objects take damage.
A_CustomFinale1 = PANIC
 
A_CustomFinaleValue1 = 2
There are many utility functions and features readily available for these scripts, including a resource and building system, and custom panic wave spawning. Please see Valve's [[L4D2_EMS|Expanded Mutation System tutorial]] for more information.
}</pre>
 
The number refers to the number of waves that you want in your minifinale. This is what was used at the ferry in the first map of Swamp Fever.
=== Other Uses ===
All scripts can access functions for many features, including [[L4D2_EMS/Appendix:_Spawning|spawning entities]] either from precompiled lists or programmatically, [[L4D2_EMS/Appendix:_Spawning_Infected|spawning infected]], a [[L4D2_EMS/Appendix:_HUD|HUD system]], [[L4D2_EMS/Appendix:_Table_Save_Restore|storing data]] across levels and to disk, and much more.
 
Please see [[L4D2 Vscript Examples]] for more examples and ideas.
 
== Script Files ==
The scripts are loaded from text files with the file extensions <code>.nut</code> and <code>.nuc</code>, where <code>.nuc</code> denotes encryption of plaintext <code>.nut</code>. Custom scripts are read from '''\left 4 dead 2\left4dead2\scripts\vscripts\''', as well as '''\scripts\vscripts\''' when packed into a <code>.vpk</code> file.
 
=== Location ===
;Official <code>.nuc</code> script files are located in '''scripts/vscripts''' in multiple locations
{{note|Browse and extract [[VPK]] files with third-party programs like [[GCFScape]].}}
*'''left 4 dead 2\left4dead2\pak01_dir.vpk'''
;*'''left 4 dead 2\left4dead2_dlc1\pak01_dir.vpk'''
:April 22, 2010 The Passing update
;*'''left 4 dead 2\left4dead2_dlc2\pak01_dir.vpk'''
:October 5, 2010 The Sacrifice update
;*'''left 4 dead 2\left4dead2_dlc3\pak01_dir.vpk'''
:March 22, 2011 Cold Stream Beta / L4D1 Transition Project update
;*'''left 4 dead 2\update\pak01_dir.vpk'''
:This is where mutations were updated/replaced bi-weekly. Also contain files introduced with September 24, 2020 The Last Stand Community Update.
;*'''left 4 dead 2\sdk_content\scripting\scripts\vscripts\'''
:Plaintext versions of many of the scripts introduced in the EMS update.


===Handling a survivor===
=== Decrypting NUC Files ===
<pre>/***************************************
.nuc files are ICE encrypted .nut files. The encryption key is '''SDhfi878'''. You can use [[VICE]] to decode them.<br>
Get a handle on a specific survivor
You may find decrypted mutation vscripts [[L4D2_Decrypted_mutations|here]].
- This is pretty hackish, I can't just say Entities.FindByName(null, "playername"), (YET) because
I don't know what it's expecting internally. And I can't "learn" it's name by saying survivior.GetName(),
because what that returns is just some a function ref, it's probably the C++ side wrapped in a closure, OPAQUE, bummer.
***************************************/


//Get Nick
== Loading VScripts ==
Nick <- Entities.FindByModel(null,"models/survivors/survivor_gambler.mdl");
VScripts are loaded in a variety of ways, depending on their context. They can also be manually loaded with the console command <code>script_execute ''filename''</code>.
// Nick is class "player" (which must be related or superset of CBaseEntity)
Nick.SetHealth(0); // Ouch but he won't incap until hit again, even below zero
//or Super Nick!
Nick.SetHealth(50000); // Tank gonna get slapped to death.</pre>


New Info!!!
=== Director Scripts ===
;*{{ent|info_director}} inputs
{{I|BeginScript|param=scriptlist|Executes generic Director scripts, whether for onslaught events or changing spawning behavior.}}
:They are placed in the <code>LocalScript</code> script scope.
{{I|EndScript|Ends the currently running local script, then resets the Director options to either map-specific values, or default values.}}
{{I|ScriptedPanicEvent|param=scriptlist|With the given scripts, set up the structure of a [[L4D2 Director Scripts#Finales and Scripted Panic Events|scripted panic event]].}}
:They are placed in the <code>LocalScript</code> script scope.


You can get the entity for any of the survivors by using "!survivorname" as the entity name.
{{note|The scripts of these inputs ''must'' reside under the "vscripts" subfolder. Events will play out only the 1 second DELAY "stage 0" otherwise.}}
If I wanted to mess up Nick, EntFire("!nick", "SetHealth", 1); <not sure if that's exactly right.


!nick !rochelle !coach !ellis point to the corresponding player class entities in game, do a few ent_fires on them, have a blast.
;*[[L4D2 Director Scripts#Finales and Scripted Panic Events|Finale scripts]]
:As a {{ent|trigger_finale}} finale starts, it loads a script of this format: <code>[mapname]_finale.nut</code>.
:They are placed in the <code>g_MapScript</code> script scope.


This was discovered by looking at the passing campaign decompiled levels where the designers used !zoey !louis and !francis in the actual level to teleport
=== Entity Scripts ===
the corresponding l4d1 npcs around the map.
;*Keyvalue
{{KV|Entity Scripts|intn=vscripts|scriptlist|As an entity is preparing itself before it spawns, the VScript path names in that keyvalue will be ran. (See [[L4D2_Vscripts#Entity_Scripts_3|Entity Scripts]] for more info.)}}
;*Input
{{I|RunScriptFile|param=script|Inserts the given script into the entity's scope, then runs it.}}


===Some General DirectorOptions===
Entity Scripts are placed in the <code>_<unique ID>_<entity name></code> script scope.
You can start a script with an input to the director "BeginScript" and then the name of the script in the parameters field. Place the script as a ".nut" file in your vscripts directory. To end the script, send an input to the director "EndScript".


Here are some examples:
=== Global Scripts ===
<pre>DirectorOptions <-
;*Mode scripts
{
:A script with the same name as the current [[Mutation_Gametype_(L4D2)|game mode]]. Loaded when a new mode is set.
ProhibitBosses = 1 (default is 0)
:They are placed in the <code>g_ModeScript</code> script scope.
AlwaysAllowWanderers = 1 (default is 0)
:{{tip|The <code>map</code> command can also set gamemodes. For example, <code>map <map name> mutation12</code> loads the Realism Versus mode script, <code>mutation12.nuc</code>.}}
MobMinSize = 10 (default)
:{{note|Adding a script for a mode will enable Scripted Mode.}}
MobMaxSize = 30 (default)
SustainPeakMinTime = 3 (default)
SustainPeakMaxTime = 5 (default)
IntensityRelaxThreshold = 0.9 (default)
RelaxMinInterval = 30 (default)
RelaxMaxInterval = 45 (default)
RelaxMaxFlowTravel = 3000 (default)
SpecialRespawnInterval = 45.0 (default)
NumReservedWanderers = 10 (default is 0)
}</pre>


You can play around with some of these numbers for specific events in your levels. For example, some of our scripts reduce the SpecialRespawnInterval to 30 seconds or we have some that reduce the RelaxMaxFlowTravel to 1000 so that the director won't stay relaxed if the survivors have continued far enough.
;*Map-specific mode scripts
:Per-map scripts when the map is loaded in the specified game mode. They are in the name format: ''<nowiki>[mapname]_[modename].nut</nowiki>''.
:They are placed in the <code>g_MapScript</code> script scope.


===Prohibiting Tank and Witch spawns===
;*Addon scripts
Left4Dead 2 no longer relies on the mission.txt file to prohibit Tanks and Witches on maps. This is now done with a script file that you should place in your left4dead2/scripts/vscripts folder (you may need to add the vscripts subfolder yourself). Add the following to a text file:
:These scripts vary in context, but they all share one big attribute: they don't override files with the same name, but instead load alongside them. They are executed in the order below, each after its respective base script (without <code>_addon</code> suffix). A script is considered an "addon script" if it's named as:
:# <code>mapspawn_addon.nut</code> (runs once every chapter) - <code>getroottable()</code> scope
:# <code>response_testbed_addon.nut</code> (runs once every chapter) - <code>g_rr</code> scope
:# <code>scriptedmode_addon.nut</code> (runs twice every round) - <code>g_MapScript</code> scope
:# <code>director_base_addon.nut</code> (runs twice every round) - <code>DirectorScript</code> scope


<pre>DirectorOptions <-
== Scripting Environment ==
{
'''Please see [[Left 4 Dead 2/Script Functions]] for built in classes and functions.'''
  ProhibitBosses = true
}</pre>


Save the textfile with the extention '''.nut''' in the vscripts folder. In your map, place a '''logic_auto''' entity and add an output. The output should target the AI Director entity and make it fire the script by using the BeginScript action. In the parameter field, you set the name of your script (without the '''.nut''' extention)
When a script is loaded, it is placed into a table, or Script Scope. Global and Director Scripts are put into set scopes, while a unique scope is generated for each Entity Script. Please see [[Vscript Fundamentals]] for more information.


===Some Scavenge Gamemode DirectorOptions (for Coop/Versus Finales with Scavenge)===
=== Table Structure ===
For a finale that is using scavenge as the gameplay (such as in the Mall Atrium finale), you'll need a separate scavenge script.  Here's c1m4's (name the script "[the name of the map]_scavenge.nut"):
<source lang=cpp>
<pre>DirectorOptions <-
DirectorScript = // Base Director Scope.
{
{
PreferredMobDirection = SPAWN_LARGE_VOLUME
DirectorOptions // Base DirectorOptions table.
PreferredSpecialDirection = SPAWN_LARGE_VOLUME
MapScript = // Script scope for either map scripts or trigger_finale scripts
ShouldConstrainLargeVolumeSpawn = false
{
MobSpawnMinTime = 45
DirectorOptions       
MobSpawnMaxTime = 90
BaseScriptedDOTable // Default DirectorOptions for Scripted mode
CommonLimit = 15
ChallengeScript = // Script scope for mode scripts
ZombieSpawnRange = 3000
{
DirectorOptions // Filled with BaseScriptedDOTable, MutationOptions and MapOptions; if identical keys are present then the most-right table gets precedence.
MutationState // Filled with MapState overwriting previous values
MutationOptions // Initial values used if defined in mode script
}
LocalScript = // Script scope for scripts executed through info_director 'BeginScript' or 'ScriptedPanicEvent' inputs
{
DirectorOptions // DirectorOptions for current Director Script (like onslaughts). Only available when a script is active
}
MapOptions // Initial values used if defined in map script
MapState // Initial values used if defined in map script
}
}
}
NavMesh.UnblockRescueVehicleNav()
g_MapScript // Global reference to the Map Script scope (DirectorScript.MapScript).
Director.ResetMobTimer()</pre>
g_ModeScript // Global reference to the Mode Script scope (DirectorScript.MapScript.ChallengeScript).
SessionOptions // Global reference to g_ModeScript.DirectorOptions (Scripted mode only).
SessionState  // Global reference to g_ModeScript.MutationState (Scripted mode only).
 
g_rr // Scope holding the Response Rule system.
g_RoundState // TODO
</source>


===Dark Carnival Onslaught Script===
=== Delegation ===
Here's the onslaught script Valve used for the 4th map of Dark Carnival:
Some of the tables have [http://squirrel-lang.org/doc/squirrel3.html#d0e2038 delegation] set up, so that if a key isn't present in it, it is read from its delegate (usually parent) table instead.


<pre>Msg("Initiating Onslaught\n");
The tables are delegated like this (delegates on the right):
; The Director Scope
: <code>(DirectorScript.MapScript.ChallengeScript or DirectorScript.MapScript.LocalScript) < DirectorScript.MapScript < DirectorScript < ::</code>
; DirectorOptions
: <code>DirectorScript.MapScript.ChallengeScript.DirectorOptions (Scripted mode only) < DirectorScript.MapScript.LocalScript.DirectorOptions (when Director Script active) < DirectorScript.MapScript.DirectorOptions < DirectorScript.DirectorOptions</code>
: See GetDirectorOptions in {{ent|director_base.nut}}.


DirectorOptions <-
== Entity Scripts ==
{
Use script scope <code>_<unique ID>_<entity name></code>
// This turns off tanks and witches.
 
ProhibitBosses = false
Adding a script to the '''Entity Scripts''' KeyValue of a server-side entity loads the script as an Entity Script. The script is executed when the entity spawns, and loads into a unique script scope made up of an unique identifier followed by the entity name or class name.  


//LockTempo = true
A think function can be set with the <code>thinkfunction</code> [[Keyvalue|KeyValue]], the specified script function every 0.1 seconds. While it has the potential to become expensive, a programmer is able to limit the amount of code executed. Functions can also be manually called through the I/O system with the input <code>RunScriptCode ''function_name(argument, …)</code>.
MobSpawnMinTime = 3
MobSpawnMaxTime = 7
MobMinSize = 30
MobMaxSize = 30
MobMaxPending = 30
SustainPeakMinTime = 5
SustainPeakMaxTime = 10
IntensityRelaxThreshold = 0.99
RelaxMinInterval = 1
RelaxMaxInterval = 5
RelaxMaxFlowTravel = 50
SpecialRespawnInterval = 1.0
PreferredMobDirection = SPAWN_IN_FRONT_OF_SURVIVORS
ZombieSpawnRange = 2000
}


Director.ResetMobTimer()</pre>
Entity Scripts have a <code>self</code> reference to their owning entity handle, allowing the script easy access to control the entity through its class methods. There are also hook functions available depending on the entity class. Both methods and hooks are documented [[Left 4 Dead 2/Script Functions#Classes|here]].


===Maximum number of simultaneous specials===
Some entities have additional script functionality:
The following script not only limits the number of specials (using <code>MaxSpecials</code>), but also limits the number of specific specials allowed simultaneously and increases the maximum number of common infected:
*{{ent|point_script_use_target}} - Has both methods and hooks for controlling the button.
{{note|Developers should keep in mind that in-game and '''network''' performance may suffer as more infected are introduced to the player at the same time.}}
*{{ent|logic_script}} - Can pass multiple entity names to the script as an array called <code>EntityGroup</code>.
<pre>Msg("Preparing to own the Survivors");
*{{ent|point_template}}
local Dopts = DirectorScript.DirectorOptions; // get a reference to the options
*{{ent|env_entity_maker}}
Dopts.MaxSpecials <- 20;
*{{ent|info_item_position}}
Dopts.BoomerLimit <- 5;
Dopts.SmokerLimit <- 5;
Dopts.HunterLimit <- 5;
Dopts.ChargerLimit <- 5;
Dopts.SpitterLimit <- 5;
Dopts.JockeyLimit <- 5;
Dopts.CommonLimit <- 120;
Dopts.SpecialRespawnInterval <- 1.0;</pre>


===Dead Center Chapter 3 Special Infected Limit===
The script can be reloaded with console command <code>ent_fire <name of entity> runscriptfile ''<relative vscript path>''</code>. This is useful for quick script reloading.
For [http://forums.steampowered.com/forums/showthread.php?t=1155050 multiple SI spawns] like in the 3rd chapter of Dead Center:
<pre>
BoomerLimit = 0
SmokerLimit = 3
HunterLimit = 1
ChargerLimit = 2
</pre>


You can also limit Spitters and Jockeys with
=== [[Inputs_and_Outputs|I/O system]] Interaction ===
<pre>
Any script can use the <code>EntFire()</code> and <code>DoEntFire()</code> functions to fire outputs to map entities. Since the ''<code>activator</code>'' and ''<code>caller</code>'' arguments in <code>DoEntFire()</code> take a script handle, it can be used to fire an output to an entity using the {{ent|!self}} or {{ent|!activator}} keyword, even without having to know its name, as long as the entity handle is available.
SpitterLimit = 0
JockeyLimit = 0
</pre>


===c1m4_atrium.nut (or <map_name>.nut)===
<source lang=cpp>
c1m4_atrium_finale (or <map name>_finale) also relies on this script in certain cases.
EntFire( "church_bell_relay", "Trigger", 0 ); // Fires an output to the Trigger input of the named entity.
{{note|The description of the finale script was derived from the given c1m4_atrium_finale script comment: "// this is too late. Moved to c1m4_atrium.nut"}}


<pre>
player <- null;
Msg(" atrium map script "+"\n")
while(player = Entities.FindByClassname(player, "player")// Iterate through the script handles of the players.
// number of cans needed to escape.
if ( Director.IsSinglePlayerGame() )
{
{
                NumCansNeeded <- 8
    DoEntFire("!self", "speakresponseconcept", "PlayerLaugh", 0, null, player); // Make each player laugh.
}
}
else
</source>
{
 
                NumCansNeeded <- 13
Conversely, the <code>[[Left 4 Dead 2/Script Functions#CBaseEntity|CBaseEntity]]::ConnectOutput()</code> and <code>DisconnectOutput()</code> functions can be used to call a script function when the specified entity output fires.
}
In addition, arbitrary VScript code can be run from the I/O system, using the <code>RunScriptCode</code> input available in all entities. The code will run in the current entities script scope.
{{warning|Never use double-quotation marks in any Hammer Output, since it will corrupt the map file. This means that strings cannot be passed with <code>RunScriptCode</code>.}}
 
DirectorOptions <-
== Global Scripts ==
{
Naming a script file with a game mode name makes it a mode specific script which executes every time a map is loaded in the specified mode. If a Mode Script exists, a map specific script with the map name followed by an underscore and the mode name can also be loaded.
             
CommonLimit = 15
}
NavMesh.UnblockRescueVehicleNav()
EntFire( "progress_display", "SetTotalItems", NumCansNeeded )
function GasCanPoured(){}
</pre>


===Other Possible Director Options===
=== Mode Scripts ===
There are also other options that might work like the above. Some can be seen in console outputs in dev mode (for example, from <map name>_finale.nuc). They might work like the above scripts, but it appears that some may be affected by a local script that dynamically changes the variables. Here are some examples:
Use script scope <code>g_ModeScript</code>


====c1m4_atrium_finale (Scavenge Finale)====
==== Tables ====
{{note|This isn't the full list of variables that are output in the console as some are already known or repeated. The variables seem to change depending on multiple factors that include, but are not limited to, number of gas cans poured, number of times gas cans touched, and a timer. It may also be monitoring player status, somewhat like how the player is feeling in director_debug 1.}}
;<code>MutationState</code>
<pre>
:Initial values for the <code>SessionState</code> table.
ShouldAllowMobsWithTank = true
;<code>MutationOptions</code>
ShouldAllowSpecialsWithTank = true
:Initial values for the <code>SessionOptions</code> table.
MinimumStageTime = 15
MobRechargeRate = 0.5
HordeEscapeCommonLimit = 15
MusicDynamicMobStopSize = 2
MusicDynamicMobSpawnSize = 8
BileMobSize = 15
PreferredSpecialDirection = 9 (In other examples, this was set as a string)
MusicDynamicMobScanStopSize = 2


A_CustomFinale[x]('x' seems to be any number, like up to 30) =  
=== Map Scripts ===
A_CustomFinale1 = 3
Use script scope <code>g_MapScript</code>
A_CustomFinale2 = 0


A_CustomFinaleValue[x] = c1m4_delay
==== Tables ====
</pre>
;<code>MapState</code>
:Map specific values for the <code>SessionState</code> table.
;<code>MapOptions</code>
:Map specific values for the <code>SessionOptions</code> table.


===Tic-Tac-Toe mini-game===
=== Scripted Mode ===
This example uses and vscripts to manipulate entities "registered" to a [[logic_script]] entity.[http://forums.steampowered.com/forums/showthread.php?t=1242468]
Adding a Mode Script will enable Scripted Mode for the game mode. This works on the base game modes included in the game as well.
*[http://www.leeland.net/l4d2-scripts-play-tic-tac-toe.html Writing a Mini Game - Tic Tac Toe - Part One] - Author's Website
*[http://www.youtube.com/watch?v=B9hASsoHK54 l4d2 - Vscript example - Tic-Tac-Toe] - Video of early Prototype
*[http://www.youtube.com/watch?v=mvDFEoA0ib0 l4d2 - Vscript example - Tic-Tac-Toe - updated] - Video of current version with "brutally misanthropic AI"


==Overview of Squirrel in L4D2==
Scripted Mode loads utility functions into the <code>g_MapScript</code> scope, disables the hardcoded setting of 2 on the <code>MaxSpecials</code> Director option, and enables [[L4D2_EMS/Appendix:_Game_Events|game event callbacks]] and [[Left 4 Dead 2/Script Functions#Scripted_Mode_hooks|script hook functions]]. It also seems to break the finale tank music in Dark Carnival.
The following are available in L4D2 by default.[http://forums.steampowered.com/forums/showthread.php?t=1238461][http://www.leeland.net/vscript-faq.html]
{{Warning|}}NEVER use the = operator when trying to influence the director. Use <-. The difference is semantics. If you use =, it will throw an error if the table slot isn't defined (like if a previous script didn't define it). <-, on the other hand, will create the variable if it does not exist.
===Variables===
{{todo|Add Variables}}
===Classes===
====CDirector====
Game Instance: Director
*Class Methods
**GetAveragedSurvivorSpan() - Get the distance between the lead and trailing survivors, smoothed over time
**GetAveragedSurvivorSpeed() - Get the rate at which the lead survivor is moving along the flow, smoothed over time
**GetFurthestSurvivorFlow() - Get the maximum distance along the flow that the survivors have reached
**GetGameMode() -  Get the current game mode "versus", "coop", etc.
**HasAnySurvivorLeftSafeArea()
**IsPlayingOnConsole() - Returns true if player is running the client on a console like Xbox 360
**IsSinglePlayerGame() - Return true if game is in single player
**IsValid()
**L4D1SurvivorGiveItem()
**PlayMegaMobWarningSounds() - Plays a horde scream sound and asks survivors to speak 'incoming horde' lines
**ResetMobTimer() - Trigger a mob as soon as possible when in BUILD_UP (refer to <code>director_debug 1</code>)
*Director Enumerations {{note|These are (or some are) '''script specific''', hence the duplicate values.}}
**FINALE_CUSTOM_DELAY = 10
**FINALE_CUSTOM_PANIC = 7
**FINALE_CUSTOM_SCRIPTED = 9
**FINALE_CUSTOM_TANK = 8
**FINALE_FINAL_BOSS = 5
**FINALE_GAUNTLET_1 = 0
**FINALE_GAUNTLET_2 = 3
**FINALE_GAUNTLET_BOSS = 15
**FINALE_GAUNTLET_BOSS_INCOMING = 14
**FINALE_GAUNTLET_ESCAPE = 16
**FINALE_GAUNTLET_HORDE = 12
**FINALE_GAUNTLET_HORDE_BONUSTIME = 13
**FINALE_GAUNTLET_START = 11
**FINALE_HALFTIME_BOSS = 2
**FINALE_HORDE_ATTACK_1 = 1
**FINALE_HORDE_ATTACK_2 = 4
**FINALE_HORDE_ESCAPE = 6
**SPAWN_ABOVE_SURVIVORS = 6
**SPAWN_ANYWHERE = 0
**SPAWN_BEHIND_SURVIVORS = 1
**SPAWN_FAR_AWAY_FROM_SURVIVORS = 5
**SPAWN_IN_FRONT_OF_SURVIVORS = 7
**SPAWN_LARGE_VOLUME = 9
**SPAWN_NEAR_IT_VICTIM = 2
**SPAWN_NO_PREFERENCE = -1
**SPAWN_SPECIALS_ANYWHERE = 4
**SPAWN_SPECIALS_IN_FRONT_OF_SURVIVORS = 3
**SPAWN_VERSUS_FINALE_DISTANCE = 8
**ZOMBIE_TANK = 8
**ZOMBIE_WITCH = 7


====CEntities====
{{todo|Does enabling Scripted Mode have any other consequences?}}
Game Instance: Entities
*Class Methods
**.FindByClassname (null|prev,classname) - Find entities by class name. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search Continue an iteration over the list of entities, providing reference to a previously found entity
**.FindByClassnameNearest (classname, vector) - Find entities by class name nearest to a point
**.FindByClassnameWithin (null|prev,classname) - Find entities by class name within a radius. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search
**.FindByModel (null|prev, modelname) - Find entities by model name. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search
**.FindByName (classname, vector) - Find entities by class name nearest to a point
**.FindByNameNearest (name, vector) ??? - Find entities by name nearest to a point
**.FindByNameWithin (null|prev, name, radius) ??? - Find entities by name within a radius. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search
**.FindByTarget (null|prev, targetname) - Find entities by targetname. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search
**.FindInSphere (null|prev, vector,radius) ??? - Find entities within a radius. Pass 'null' to start an iteration, or reference to a previously found entity to continue a search
**.IsValid() - whether entity is valid
**.First() - Begin an iteration over the list of entities
**.Next() - Returns the next entity in the Entities list


====CBaseEntity====
==== Available Functions ====
Game Instance: N/A
{{todo|Document the available utility features.}}
*Class Methods
**.__KeyValueFromInt(key,int) - Sets a keyvalue from an integer, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc.)
**.__KeyValueFromString(key,string) - Sets a keyvalue from a string, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc.)
**.__KeyValueFromVector(key,vector) - Sets a keyvalue from a vector, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc.)
**.ConnectOutput(outputname,functioname) - Adds an I/O connection that will call the named function when the specified output fires
**.DisconnectOutput(event) - Removes a connected script function from an I/O event
**.FirstMoveChild() - returns entity's first move child if exists
**.GetClassname() - returns classname
**.GetForwardVector() - returns Vector instance
**.GetHealth() - returns entity health
**.GetMoveParent() - If in hierarchy, retrieves the entity's parent
**.GetName() - returns targetname of entity (if entity is named)
**.GetOrigin() - returns origin vector
**.GetPreTemplateName - Get the entity name stripped of template unique decoration. ie myitem&0125 returns myitem
**.GetRootMoveParent() - If in hierarchy, walks up the hierarchy to find the root parent
**.GetScriptId() - Retrieve the unique identifier used to refer to the entity within the scripting system
**.GetScriptScope() - Retrieve the script-side data associated with an entity
**.GetVelocity() - returns velocity vector
**.IsValid() - whether entity is valid
**.NextMovePeer - returns next child entity
**.SetForwardVector(vector)
**.SetHealth(int) - sets entity health
**.SetOrigin(vector) - sets entity position in world
**.SetVelocity(vector) - sets entity velocity
**.ValidateScriptScope - Ensure that an entity's script scope has been created


====CBaseAnimating====
=== Shared Tables ===
'''Extends''' CBaseEntity
;<code>SessionState</code>
*Class Methods
:A table for storing session specific variables. Not preserved across level transitions.
**.__KeyValueFromInt(key,int) - Sets a keyvalue from an integer, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc)
;<code>SessionOptions</code>
**.__KeyValueFromString(key,string) - Sets a keyvalue from a string, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc)
:Active [[L4D2_Director_Scripts#DirectorOptions|Director Options]] for the game mode.
**.__KeyValueFromVector(key,vector) - Sets a keyvalue from a vector, the keys available for all __KeyValue are from the DEFINE_KEYFIELD in baseentity.cpp (classname,rendermode, renderfx, etc)
**.ConnectOutput(outputname,functioname) - Adds an I/O connection that will call the named function when the specified output fires
**.DisconnectOutput(event) - Removes a connected script function from an I/O event
**.FirstMoveChild() - returns entity's first move child if exists
**.GetClassname() - returns classname
**.GetForwardVector() - returns Vector instance
**.GetHealth() - returns entity health
**.GetMoveParent() - If in hierarchy, retrieves the entity's parent
**.GetName() - returns named (if entity is named)
**.GetOrigin() - returns origin vector
**.GetPreTemplateName - Get the entity name stripped of template unique decoration. ie myitem&0125 returns myitem
**.GetRootMoveParent() - If in hierarchy, walks up the hierarchy to find the root parent
**.GetScriptId() - Retrieve the unique identifier used to refer to the entity within the scripting system
**.GetScriptScope() - Retrieve the script-side data associated with an entity
**.GetVelocity() - returns velocity vector
**.IsValid() - whether entity is valid
**.NextMovePeer - returns next child entity
**.SetForwardVector(vector)
**.SetHealth(int) - sets entity health
**.SetOrigin(vector) - sets entity position in world
**.SetVelocity(vector) - sets entity velocity
**.ValidateScriptScope - Ensure that an entity's script scope has been created


====CNavMesh====
== Glossary ==
Game Instance: NavMesh
;DirectorOptions
*Class Methods
:A table of named variables that override the AI Director behavior.
**.IsValid
;Entity handle
**.UnblockRescueVehicleNav() - Removes the block for rescue vehicle. Normally is blocked before the finale is finished, but is necessary for bots to access like in the Atrium finale, c1m4_atrium.bsp.
:Also known as EHANDLE. {{todo|Looks like some sort of pointer reference to an entity.}}
;Script handle
:An entity instance with accessors and mutators to the C++ entity object. Also known as HScript.
;Script scope
:The table where the variables, functions and classes of a VScript are placed.


====CCallChainer====
== Director Options ==
Game Instance: N/A
'''Please see [[L4D2 Director Scripts#DirectorOptions|L4D2 Director Scripts]] for a table of available options.'''
*Class Methods
**.chains
**.constructor
**.PostScriptExecute
**.prefix
**.scope
====CSimpleCallChainer====
*Class Methods
**.Call
**.chain
**.constructor
**.exactMatch
**.PostScriptExecute
**.prefix
**.scope
====regxp====
{{todo|}}
Game Instance:
*Class Methods
====Vector====
Game Instance: None
*Class Methods
**.constructor
**.Cross
**.Dot
**.Length
**.Length2D
**.Length2DSqr
**.LengthSqr
**.Norm
**.ToKVString
===Functions===
*Assert(value, "optional message") - test value and if not true, throws exception, optionally with messsage
*ConnectOutputs(table) - sets output functions for entity by table TODO
*DebugDrawBox
*DebugDrawLine
*Developer() - returns 1 or TRUE when in developer mode
*DoEntFire( target.tostring(), action, value, delay, activator, caller ) - Fire an event
*EntFire("ent_fire target event") - wrapper for DoEntFire() that sets activator and caller to null
*DoIncludeScript
*IncludeScript - Wrapper for DoIncludeScript
*GetFunctionSignature
*Msg("message here") - prints message to console
*printl("message") - prints message with carriage return
*RandomFloat() - Returns a random float
*RandomInt() - Returns a random int between 0 and 32767
*RetrieveNativeSignature
*SendToConsole("string")- send a string to the console as a command
*ShowMessage("message") - Print a hud message on all clients
*Time() - Get the current server time
*DoUniqueString - Called by UniqueString, prob want to call that instead
*UniqueString() - Generate a string guaranteed to be unique across the life of the script VM, with an optional root string. Useful for adding data to tables when not sure what keys are already in use in that table.


{{sq}}Standard Squirrel library functions (consult official Squirrel language league for more details):
== Third-Party Tools ==
abs,
acos,
array,
asin ,
assert,
atan ,
atan2,
ceil,
collectgarbage,
compilestring,
cos,
exp ,
fabs ,
floor,
format,
getconsttable,
getroottable,
getstackinfos,
log,
log10,
lstrip,
pow,
print,
rand,
rstrip,
setconsttable,
seterrorhandler,
setroottable,
type,
sin,
split,
sqrt,
srand,
strip,
suspend,
tan


===Constants===
===VSLib===
{{todo|Add Constants}}
'''VSLib''' (''VS''cript ''Lib''rary) is a simple, lightweight library for L4D2's VScript mutation system. It greatly simplifies coding VScripts by taking care of a lot of tedious work for you. It is used in several popular mods like [http://steamcommunity.com/sharedfiles/filedetails/?id=214630948 Rayman1103's Admin System] and [http://steamcommunity.com/sharedfiles/filedetails/?id=157525096 Stranded]. Read more about [[VSLib]].


==See also==
== See also ==
=== Intros ===
*[[VScript]]
*[[Mutation Gametype (L4D2)]]
=== Documentations ===
*[[VSLib]]
*[[L4D2 Vscript Examples]]
*[[L4D2_Director_Scripts|L4D2 Director Scripts]]
*[[Left 4 Dead 2/Script Functions|L4D2 Script Functions]]
*[[L4D2_Decrypted_mutations|Decrypted Mutation Vscripts]]
*[[L4D2_Level_Design/Boss_Prohibition|L4D2 Level Design/Boss Prohibition]]
*[[L4D2_Level_Design/Boss_Prohibition|L4D2 Level Design/Boss Prohibition]]
*[[L4D2_Level_Design/Custom_Finale|Custom Finales]] ''Contains all original finale scripts as reference.''
*[[L4D2 EMS|Extended Mutation System]]
*[[Left_4_Dead_2_Tool_Updates|Left 4 Dead 2 Tool Updates]]
*[[Left_4_Dead_2_Tool_Updates|Left 4 Dead 2 Tool Updates]]
*[[Mutation Gametype (L4D2)]]
*[[Trigger_finale|trigger_finale]]
*[[Info_director|info_director]]
*[[Logic_script|logic_script]]


==External links==
=== Miscelleanous ===
* [http://forums.steampowered.com/forums/showthread.php?t=1128303 Director Scripts - .nuc files (Steam forums)]
*{{ent|logic_script}}
* [http://forums.steampowered.com/forums/showthread.php?t=1238461 It's the vscript'ing documentation FAQ! (Steam forums)]
*{{ent|trigger_finale}}
* [http://forums.steampowered.com/forums/showthread.php?t=1242468 Tutorial - Writing a Mini Game - Tic Tac Toe - Part One (Steam Forums)]
*{{ent|info_director}}
**[http://www.leeland.net/l4d2-scripts-play-tic-tac-toe.html Writing a Mini Game - Tic Tac Toe - Part One] - Author's Website
 
== External links ==
;Alternative Tool
* [http://www.mediafire.com/?q4dqbs554p494vk (mediafire)L4D2 VScript Editor Beta 0.5 by Cynick:support nut (de)compile for l4d2]
;Alternative Documentation
* [http://forums.steampowered.com/forums/showthread.php?t=1128303 Director Scripts - .nuc files (Steam forums)] {{deadlink}}
* [http://forums.steampowered.com/forums/showthread.php?t=1238461 It's the vscript'ing documentation FAQ! (Steam forums)] {{deadlink}}
* [http://forums.steampowered.com/forums/showthread.php?t=1242468 Tutorial - Writing a Mini Game - Tic Tac Toe - Part One (Steam Forums)] {{deadlink}}
**[http://leeland.stores.yahoo.net/l4d2-scripts-play-tic-tac-toe.html Writing a Mini Game - Tic Tac Toe - Part One] - Author's Website {{deadlink}}
**[http://www.youtube.com/watch?v=B9hASsoHK54 l4d2 - Vscript example - Tic-Tac-Toe] - Video of early Prototype
**[http://www.youtube.com/watch?v=B9hASsoHK54 l4d2 - Vscript example - Tic-Tac-Toe] - Video of early Prototype
**[http://www.youtube.com/watch?v=mvDFEoA0ib0 l4d2 - Vscript example - Tic-Tac-Toe - updated] - Video of current version with "brutally misanthropic AI"
**[http://www.youtube.com/watch?v=mvDFEoA0ib0 l4d2 - Vscript example - Tic-Tac-Toe - updated] - Video of current version with "brutally misanthropic AI"
* [http://forums.steampowered.com/forums/showthread.php?t=1238004 Mutation scripts (Steam forums)]
* [http://forums.steampowered.com/forums/showthread.php?t=1238004 Mutation scripts (Steam forums)] {{deadlink}}
* [http://modulatum.wordpress.com/2008/03/20/squirrel-binary-for-windows/ Squirrel Binary for Windows]
* [http://modulatum.wordpress.com/2008/03/20/squirrel-binary-for-windows/ Squirrel Binary for Windows]
* [http://en.wikipedia.org/wiki/Squirrel_(programming_language) Squirrel (programming language)] - Wikipedia Article on Squirrel
* [http://en.wikipedia.org/wiki/Squirrel_(programming_language) Squirrel (programming language)] - Wikipedia Article on Squirrel
* {{sq}}[http://squirrel-lang.org/ Squirrel: The Programming Language - Documentation and Sample Code]
* {{sq}}[http://squirrel-lang.org/ Squirrel: The Programming Language - Documentation and Sample Code]
* [http://www.valvesoftware.com/publications/2009/ai_systems_of_l4d_mike_booth.pdf The AI Systems of Left 4 Dead by Michael Booth (PDF)]
* [https://steamcdn-a.akamaihd.net/apps/valve/2009/ai_systems_of_l4d_mike_booth.pdf The AI Systems of Left 4 Dead by Michael Booth (PDF)]
<div style="text-align: right; direction: ltr; margin-left: 1em;">{{sq}}+{{l4d2}} = [[image:pnkhrt-16px.png]]</div>
* {{as}}[http://swarmarmory.com/forums/viewtopic.php?f=19&t=541 "Creating a "Money"/Point System"] - Swarm Armory
;Deciphered Official Scripts:
*[http://www.mediafire.com/?k280fhwjsp21sn8 Version 2.1.3.6 and all mutations]
*[http://ata4.info/downloads/left4dead2/scriptsrc.zip Version 2.0.8.4 (August 16, 2011)]
<div style="text-align: right; direction: ltr; margin-left: 1em;">{{sq}}+ {{l4d2}} = [[File:PinkHeartCensor.png|16px]]</div>
 
[[Category:Left_4_Dead_2]]
[[Category:Left_4_Dead_2]]
[[Category:VScript]]
[[Category:Scripting]]

Latest revision as of 11:06, 21 April 2025

English (en)Translate (Translate)
edit
Left 4 Dead 2/Docs

Useful links

Overview

SquirrelLeft 4 Dead 2 Left 4 Dead 2 VScripts are server-side scripts that are run in an in-game virtual machine. They are written in Squirrel, a compiled scripting language similar to Lua. It currently runs Squirrel version 3.0.4.

Uses

Director Scripts

The most common use of VScripts in Left 4 Dead 2 is to temporarily influence the behavior of the AI Director. These scripts can range from simple adjustments of infected spawning and prohibiting boss infected, to custom events like onslaughts and gauntlets, and even complex staged panic events and fully custom finales. Most of the events in the official campaigns are mainly implemented this way.

Director Scripts work mainly by writing overriding values of the various variables used by the Director into a DirectorOptions table.

Only one Director Script can be running at a time. Executing a new one will terminate any previous running one and remove any values it set in DirectorOptions.

Entity Scripts ↓

Another common use is to attach a script to an entity. The script provides easy access to read and modify many of the entity's properties, and even to write new KeyValues. This allows for controlling entities in ways that would be very complicated or impossible to with the entity I/O system in Hammer.

Any entity is capable of running a script, and has the ability to set a specified think function to run every 0.1 seconds, as well as executing script code as an entity output.

Some entities also have specialized functions for VScripts, with the most prominent being point_script_use_target, which allows for turning other entities into fully programmable timed buttons.

Global Scripts ↓

Scripts can also be made to run on map load, based on game mode and optionally map name. These scripts are commonly used to create pure script addons and modify global Director options for mutations.

Global scripts can have script hook functions added that get called from the game at certain events, like when players/objects take damage.

There are many utility functions and features readily available for these scripts, including a resource and building system, and custom panic wave spawning. Please see Valve's Expanded Mutation System tutorial for more information.

Other Uses

All scripts can access functions for many features, including spawning entities either from precompiled lists or programmatically, spawning infected, a HUD system, storing data across levels and to disk, and much more.

Please see L4D2 Vscript Examples for more examples and ideas.

Script Files

The scripts are loaded from text files with the file extensions .nut and .nuc, where .nuc denotes encryption of plaintext .nut. Custom scripts are read from \left 4 dead 2\left4dead2\scripts\vscripts\, as well as \scripts\vscripts\ when packed into a .vpk file.

Location

Official .nuc script files are located in scripts/vscripts in multiple locations
Note.pngNote:Browse and extract VPK files with third-party programs like GCFScape.
  • left 4 dead 2\left4dead2\pak01_dir.vpk
  • left 4 dead 2\left4dead2_dlc1\pak01_dir.vpk
April 22, 2010 The Passing update
  • left 4 dead 2\left4dead2_dlc2\pak01_dir.vpk
October 5, 2010 The Sacrifice update
  • left 4 dead 2\left4dead2_dlc3\pak01_dir.vpk
March 22, 2011 Cold Stream Beta / L4D1 Transition Project update
  • left 4 dead 2\update\pak01_dir.vpk
This is where mutations were updated/replaced bi-weekly. Also contain files introduced with September 24, 2020 The Last Stand Community Update.
  • left 4 dead 2\sdk_content\scripting\scripts\vscripts\
Plaintext versions of many of the scripts introduced in the EMS update.

Decrypting NUC Files

.nuc files are ICE encrypted .nut files. The encryption key is SDhfi878. You can use VICE to decode them.
You may find decrypted mutation vscripts here.

Loading VScripts

VScripts are loaded in a variety of ways, depending on their context. They can also be manually loaded with the console command script_execute filename.

Director Scripts

BeginScript <scriptlistRedirectInput/string>
Executes generic Director scripts, whether for onslaught events or changing spawning behavior.
They are placed in the LocalScript script scope.
EndScript
Ends the currently running local script, then resets the Director options to either map-specific values, or default values.
ScriptedPanicEvent <scriptlistRedirectInput/string>
With the given scripts, set up the structure of a scripted panic event.
They are placed in the LocalScript script scope.
Note.pngNote:The scripts of these inputs must reside under the "vscripts" subfolder. Events will play out only the 1 second DELAY "stage 0" otherwise.
As a trigger_finale finale starts, it loads a script of this format: [mapname]_finale.nut.
They are placed in the g_MapScript script scope.

Entity Scripts

  • Keyvalue
Entity Scripts (vscripts) <scriptlist>
As an entity is preparing itself before it spawns, the VScript path names in that keyvalue will be ran. (See Entity Scripts for more info.)
  • Input
RunScriptFile <scriptRedirectInput/string>
Inserts the given script into the entity's scope, then runs it.

Entity Scripts are placed in the _<unique ID>_<entity name> script scope.

Global Scripts

  • Mode scripts
A script with the same name as the current game mode. Loaded when a new mode is set.
They are placed in the g_ModeScript script scope.
Tip.pngTip:The map command can also set gamemodes. For example, map <map name> mutation12 loads the Realism Versus mode script, mutation12.nuc.
Note.pngNote:Adding a script for a mode will enable Scripted Mode.
  • Map-specific mode scripts
Per-map scripts when the map is loaded in the specified game mode. They are in the name format: [mapname]_[modename].nut.
They are placed in the g_MapScript script scope.
  • Addon scripts
These scripts vary in context, but they all share one big attribute: they don't override files with the same name, but instead load alongside them. They are executed in the order below, each after its respective base script (without _addon suffix). A script is considered an "addon script" if it's named as:
  1. mapspawn_addon.nut (runs once every chapter) - getroottable() scope
  2. response_testbed_addon.nut (runs once every chapter) - g_rr scope
  3. scriptedmode_addon.nut (runs twice every round) - g_MapScript scope
  4. director_base_addon.nut (runs twice every round) - DirectorScript scope

Scripting Environment

Please see Left 4 Dead 2/Script Functions for built in classes and functions.

When a script is loaded, it is placed into a table, or Script Scope. Global and Director Scripts are put into set scopes, while a unique scope is generated for each Entity Script. Please see Vscript Fundamentals for more information.

Table Structure

DirectorScript = 			// Base Director Scope.
{
	DirectorOptions 		// Base DirectorOptions table.
	MapScript =  			// Script scope for either map scripts or trigger_finale scripts
	{
		DirectorOptions         
		BaseScriptedDOTable 	// Default DirectorOptions for Scripted mode
		ChallengeScript = 	// Script scope for mode scripts
		{
			DirectorOptions // Filled with BaseScriptedDOTable, MutationOptions and MapOptions; if identical keys are present then the most-right table gets precedence.
			MutationState 	// Filled with MapState overwriting previous values
			MutationOptions // Initial values used if defined in mode script 
		}
		LocalScript =		// Script scope for scripts executed through info_director 'BeginScript' or 'ScriptedPanicEvent' inputs
		{
			DirectorOptions // DirectorOptions for current Director Script (like onslaughts). Only available when a script is active
		}
		MapOptions 		// Initial values used if defined in map script 
		MapState 		// Initial values used if defined in map script 
	}
}
g_MapScript 	// Global reference to the Map Script scope (DirectorScript.MapScript).
g_ModeScript 	// Global reference to the Mode Script scope (DirectorScript.MapScript.ChallengeScript).
SessionOptions 	// Global reference to g_ModeScript.DirectorOptions (Scripted mode only).
SessionState  	// Global reference to g_ModeScript.MutationState (Scripted mode only).

g_rr		// Scope holding the Response Rule system.
g_RoundState	// TODO

Delegation

Some of the tables have delegation set up, so that if a key isn't present in it, it is read from its delegate (usually parent) table instead.

The tables are delegated like this (delegates on the right):

The Director Scope
(DirectorScript.MapScript.ChallengeScript or DirectorScript.MapScript.LocalScript) < DirectorScript.MapScript < DirectorScript < ::
DirectorOptions
DirectorScript.MapScript.ChallengeScript.DirectorOptions (Scripted mode only) < DirectorScript.MapScript.LocalScript.DirectorOptions (when Director Script active) < DirectorScript.MapScript.DirectorOptions < DirectorScript.DirectorOptions
See GetDirectorOptions in director_base.nut.

Entity Scripts

Use script scope _<unique ID>_<entity name>

Adding a script to the Entity Scripts KeyValue of a server-side entity loads the script as an Entity Script. The script is executed when the entity spawns, and loads into a unique script scope made up of an unique identifier followed by the entity name or class name.

A think function can be set with the thinkfunction KeyValue, the specified script function every 0.1 seconds. While it has the potential to become expensive, a programmer is able to limit the amount of code executed. Functions can also be manually called through the I/O system with the input RunScriptCode function_name(argument, …).

Entity Scripts have a self reference to their owning entity handle, allowing the script easy access to control the entity through its class methods. There are also hook functions available depending on the entity class. Both methods and hooks are documented here.

Some entities have additional script functionality:

The script can be reloaded with console command ent_fire <name of entity> runscriptfile <relative vscript path>. This is useful for quick script reloading.

I/O system Interaction

Any script can use the EntFire() and DoEntFire() functions to fire outputs to map entities. Since the activator and caller arguments in DoEntFire() take a script handle, it can be used to fire an output to an entity using the !self or !activator keyword, even without having to know its name, as long as the entity handle is available.

EntFire( "church_bell_relay", "Trigger", 0 ); // Fires an output to the Trigger input of the named entity.

player <- null;
while(player = Entities.FindByClassname(player, "player"))   // Iterate through the script handles of the players.
{
    DoEntFire("!self", "speakresponseconcept", "PlayerLaugh", 0, null, player); // Make each player laugh.
}

Conversely, the CBaseEntity::ConnectOutput() and DisconnectOutput() functions can be used to call a script function when the specified entity output fires. In addition, arbitrary VScript code can be run from the I/O system, using the RunScriptCode input available in all entities. The code will run in the current entities script scope.

Warning.pngWarning:Never use double-quotation marks in any Hammer Output, since it will corrupt the map file. This means that strings cannot be passed with RunScriptCode.

Global Scripts

Naming a script file with a game mode name makes it a mode specific script which executes every time a map is loaded in the specified mode. If a Mode Script exists, a map specific script with the map name followed by an underscore and the mode name can also be loaded.

Mode Scripts

Use script scope g_ModeScript

Tables

MutationState
Initial values for the SessionState table.
MutationOptions
Initial values for the SessionOptions table.

Map Scripts

Use script scope g_MapScript

Tables

MapState
Map specific values for the SessionState table.
MapOptions
Map specific values for the SessionOptions table.

Scripted Mode

Adding a Mode Script will enable Scripted Mode for the game mode. This works on the base game modes included in the game as well.

Scripted Mode loads utility functions into the g_MapScript scope, disables the hardcoded setting of 2 on the MaxSpecials Director option, and enables game event callbacks and script hook functions. It also seems to break the finale tank music in Dark Carnival.

Todo: Does enabling Scripted Mode have any other consequences?

Available Functions

Todo: Document the available utility features.

Shared Tables

SessionState
A table for storing session specific variables. Not preserved across level transitions.
SessionOptions
Active Director Options for the game mode.

Glossary

DirectorOptions
A table of named variables that override the AI Director behavior.
Entity handle
Also known as EHANDLE.
Todo: Looks like some sort of pointer reference to an entity.
Script handle
An entity instance with accessors and mutators to the C++ entity object. Also known as HScript.
Script scope
The table where the variables, functions and classes of a VScript are placed.

Director Options

Please see L4D2 Director Scripts for a table of available options.

Third-Party Tools

VSLib

VSLib (VScript Library) is a simple, lightweight library for L4D2's VScript mutation system. It greatly simplifies coding VScripts by taking care of a lot of tedious work for you. It is used in several popular mods like Rayman1103's Admin System and Stranded. Read more about VSLib.

See also

Intros

Documentations

Miscelleanous

External links

Alternative Tool
Alternative Documentation
Deciphered Official Scripts
Squirrel+ Left 4 Dead 2 = PinkHeartCensor.png