Info gamemode: Difference between revisions
Jump to navigation
Jump to search

Idea:Vscripts Input[InputName] hook can be used on these.
(-more info, outputs are most relevant so moved to top) |
(-note relocation) |
||
Line 17: | Line 17: | ||
::{{ModernConfusion|Description in FGD is not correct. This output does fire later than On<Mode> outputs but it doesn't wait until IO generated by it finishes. Doesn't even wait for the delays specified in On<Mode> outputs to expire.}} | ::{{ModernConfusion|Description in FGD is not correct. This output does fire later than On<Mode> outputs but it doesn't wait until IO generated by it finishes. Doesn't even wait for the delays specified in On<Mode> outputs to expire.}} | ||
{{IO|OnScavengeMatchStart|Fired on the first map load of a scavenge match. Doesn't fire on round restarts.|since=L4D2}} | {{IO|OnScavengeMatchStart|Fired on the first map load of a scavenge match. Doesn't fire on round restarts. {{note|Fires shortly after OnGameplayStart of info_director is fired}}|since=L4D2}} | ||
{{IO|OnNavAnalyze|Fired when the map is loaded with -navanalyze on the command line.|since=L4D2}} | {{IO|OnNavAnalyze|Fired when the map is loaded with -navanalyze on the command line.|since=L4D2}} | ||
Line 23: | Line 23: | ||
{{IO|PostSpawnActivate|Fired internally right before On<Mode> outputs fire. Trying to fire this manually is not intended and game will crash|nofgd=1}} | {{IO|PostSpawnActivate|Fired internally right before On<Mode> outputs fire. Trying to fire this manually is not intended and game will crash|nofgd=1}} | ||
{{IO|PreRoundActivate|Fired internally right before On<Mode>PostIO outputs fire.|nofgd=1}} | {{IO|PreRoundActivate|Fired internally right before On<Mode>PostIO outputs fire.|nofgd=1}} | ||
{{IO|FireScavengeMatchStart|Fired internally right before OnScavengeMapStart output fires. | {{IO|FireScavengeMatchStart|Fired internally right before OnScavengeMapStart output fires.|nofgd=1}} | ||
{{ModernIdea|Vscripts [[Left_4_Dead_2/Script_Functions#Hooks|Input{{!(}}InputName{{)!}}]] hook can be used on these. {{todo| What happens when preventing these to fire by returning false ?}} }} | {{ModernIdea|Vscripts [[Left_4_Dead_2/Script_Functions#Hooks|Input{{!(}}InputName{{)!}}]] hook can be used on these. {{todo| What happens when preventing these to fire by returning false ?}} }} |
Revision as of 14:03, 31 August 2023


![]() |
---|
CInfoGameMode |
Template:Entity When a map is loaded, this entity can fire outputs depending on the current game mode. This allows the all game modes to be available in a single map instead of having separate maps for each game mode.
Outputs
- OnCoop
- OnVersus
- OnSurvival
- OnScavenge
- Fired when the map spawns in specified mode.
Note:OnCoop fires in realism
- OnCoopPostIO (in all games since
)
- OnVersusPostIO (in all games since
)
- OnSurvivalPostIO (in all games since
)
- OnScavengePostIO (in all games since
)
- Fired shortly after all scavenge items have been populated
Note:This doesn't mean item populating causes the output to be fired, mentioning item being populated just as a frame of reference
Tip:Useful when wanting to spawn templated weapon_* entities and not have it affected by info_map_parameters densities [confirm]
Risk of Confusion:Description in FGD is not correct. This output does fire later than On<Mode> outputs but it doesn't wait until IO generated by it finishes. Doesn't even wait for the delays specified in On<Mode> outputs to expire.
- OnScavengeMatchStart (in all games since
)
- Fired on the first map load of a scavenge match. Doesn't fire on round restarts.
Note:Fires shortly after OnGameplayStart of info_director is fired
- OnNavAnalyze (in all games since
)
- Fired when the map is loaded with -navanalyze on the command line.
Inputs
- PostSpawnActivate !FGD
- Fired internally right before On<Mode> outputs fire. Trying to fire this manually is not intended and game will crash
- PreRoundActivate !FGD
- Fired internally right before On<Mode>PostIO outputs fire.
- FireScavengeMatchStart !FGD
- Fired internally right before OnScavengeMapStart output fires.

Todo: What happens when preventing these to fire by returning false ?