Info zombie spawn: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (→‎See also: added a link to Commentary_zombie_spawner, often asked about on forms)
No edit summary
 
(17 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{l4d series point|info_zombie_spawn}} It is an entity used to spawn a zombie.
{{LanguageBar}}
{{stub}}
{{CD|CInfoZombieSpawn}}
{{this is a|point entity|name=info_zombie_spawn|series=Left 4 Dead}} It is used to spawn a zombie manually. Generally, it is recommended to leave zombie spawning to the AI Director, however there may be uses for it, such as spawning a Tank in a train car like in The Sacrifice.
{{Bug|hidetested=1|Trying to spawn spitter or jockey will result in common infected being spawned with a model of spitter or jockey respectively{{workaround|Using a commentary_zombie_spawner will spawn spitters and jockeys}}}}
__NOTOC__
== Keyvalues ==
== Keyvalues ==
* {{KV Targetname}}
{{KV Targetname}}
* {{KV Angles}}
{{KV|Population|intn=population|string|Zombie population to choose among.}}
* '''Population''' <code><[[string]]></code>
{{KV|Attack On Spawn|intn=AttackOnSpawn|only={{l4d}}|boolean|Whether this zombie should always attack on spawn. Note that this only affects Tanks and Witches at this time, all others always attack on spawn.}}
:A set of infected to spawn. See left4dead\scripts\population.txt for possible values.
{{KV|Offer Spawned Tank to PZs|intn=offer_tank|choices|only={{l4d2}}}}
:*0: No
:*1: Yes
{{KV|Pitch Yaw Roll (Y Z X)|intn=angles|angles|Angles spawned zombie will have}}


== Flags ==
* none
== Inputs ==
== Inputs ==
*'''SpawnZombie'''
{{I|SpawnZombie|Spawn a zombie now.}}
:Spawns a random infected.
{{I|StartleZombie|Startle the zombie (witches only).|only={{l4d2}}}}
*{{l4d2 add|'''StartleZombie'''}}
 
:Startle the zombie (witches only).
== Outputs ==
== Outputs ==
*'''OnSpawnNormal'''
{{O|OnSpawnNormal|Fired when the spawner creates a Common Infected.}}
:Fired when the spawner creates a normal infected.
{{O|OnSpawnSmoker|Fired when the spawner creates a Smoker.}}
*'''OnSpawnSmoker'''
{{O|OnSpawnBoomer|Fired when the spawner creates a Boomer.}}
:Fired when the spawner creates a Smoker.
{{O|OnSpawnHunter|Fired when the spawner creates a Hunter.}}
*'''OnSpawnBoomer'''
{{O|OnSpawnSpitter|Fired when the spawner creates a Spitter.|only={{l4d2}}}}
:Fired when the spawner creates a Boomer.
{{O|OnSpawnJockey|Fired when the spawner creates a Jockey.|only={{l4d2}}}}
*'''OnSpawnHunter'''
{{O|OnSpawnCharger|Fired when the spawner creates a Charger.|only={{l4d2}}}}
:Fired when the spawner creates a Hunter.
{{O|OnSpawnWitch|Fired when the spawner creates a Witch.}}
*'''OnSpawnSpitter'''
{{O|OnSpawnTank|Fired when the spawner creates a Tank.}}
:Fired when the spawner creates a Spitter.
*'''OnSpawnJockey'''
:Fired when the spawner creates a Jockey.
*'''OnSpawnCharger'''
:Fired when the spawner creates a Charger.
*'''OnSpawnWitch'''
:Fired when the spawner creates a Witch.
*'''OnSpawnTank'''
:Fired when the spawner creates a Tank.
{{O Targetname}}


== See also ==
== See also ==
*[[Left 4 Dead Infected Populations]]
* {{ent|commentary_zombie_spawner}} - An alternative entity for spawning common, special, and boss infected
*[[Commentary_zombie_spawner]] for spawning special infected: boomer, hunter, smoker, tank, or witch.
* [[Left 4 Dead Infected Populations]]

Latest revision as of 20:21, 29 January 2025

English (en)中文 (zh)Translate (Translate)
C++ Class hierarchy
CInfoZombieSpawn
CPointEntity
CBaseEntity

info_zombie_spawn is a point entity available in Left 4 Dead seriesLeft 4 Dead series Left 4 Dead series. It is used to spawn a zombie manually. Generally, it is recommended to leave zombie spawning to the AI Director, however there may be uses for it, such as spawning a Tank in a train car like in The Sacrifice.

Icon-Bug.pngBug:Trying to spawn spitter or jockey will result in common infected being spawned with a model of spitter or jockey respectively
PlacementTip.pngWorkaround:Using a commentary_zombie_spawner will spawn spitters and jockeys

Keyvalues

Name (targetname) <string>[ Edit ]
The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentname or target).
Also displayed in Hammer's 2D views and Entity Report.
See also:  Generic Keyvalues, Inputs and Outputs available to all entities

Population (population) <string>
Zombie population to choose among.
Attack On Spawn (AttackOnSpawn) <boolean> (only in Left 4 Dead)
Whether this zombie should always attack on spawn. Note that this only affects Tanks and Witches at this time, all others always attack on spawn.
Offer Spawned Tank to PZs (offer_tank) <choices> (only in Left 4 Dead 2)
  • 0: No
  • 1: Yes
Pitch Yaw Roll (Y Z X) (angles) <angles>
Angles spawned zombie will have

Inputs

SpawnZombie
Spawn a zombie now.
StartleZombie  (only in Left 4 Dead 2)
Startle the zombie (witches only).

Outputs

OnSpawnNormal
Fired when the spawner creates a Common Infected.
OnSpawnSmoker
Fired when the spawner creates a Smoker.
OnSpawnBoomer
Fired when the spawner creates a Boomer.
OnSpawnHunter
Fired when the spawner creates a Hunter.
OnSpawnSpitter  (only in Left 4 Dead 2)
Fired when the spawner creates a Spitter.
OnSpawnJockey  (only in Left 4 Dead 2)
Fired when the spawner creates a Jockey.
OnSpawnCharger  (only in Left 4 Dead 2)
Fired when the spawner creates a Charger.
OnSpawnWitch
Fired when the spawner creates a Witch.
OnSpawnTank
Fired when the spawner creates a Tank.

See also