Pipe bomb projectile: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(info, see also)
Line 1: Line 1:
{{stub}}
{{CD|CPipeBombProjectile}}
{{CD|CPipeBombProjectile}}
{{this is a|point entity|name=pipe_bomb_projectile|series=Left 4 Dead}}
{{this is a|point entity|name=pipe_bomb_projectile|series=Left 4 Dead}} Projectile spawned by throwing {{ent|weapon_pipe_bomb}}. It explodes in <code>pipe_bomb_timer_duration</code> seconds and causes <code>DMG_BLAST | DMG_BLAST_SURFACE</code> [[damage type]].


== Entity Description ==
{{note|Also used for the explosion of propane tank or oxygen tank which are prop_physics spawned by throwing [[weapong_propanetank]] or [[weapon_oxygentank]] with model names <code>props_junk\PropaneCanister001a</code> and <code>props_equipment\OxygenTank01</code> respectively.}}
A thrown [[weapon_pipe_bomb]]. Also used for the explosion of propane tank or oxygen tank.


== Related Cvars ==
== Related Cvars ==
{{varcom|start}}
{{varcom|start}}
{{varcom|pipe_bomb_beep_interval_delta|0.025|Seconds}}
{{varcom|pipe_bomb_beep_interval_delta|0.025|Seconds|}}
{{varcom|pipe_bomb_beep_min_interval|0.1|Seconds}}
{{varcom|pipe_bomb_beep_min_interval|0.1|Seconds|}}
{{varcom|pipe_bomb_initial_beep_interval|0.5|Seconds}}
{{varcom|pipe_bomb_initial_beep_interval|0.5|Seconds|}}
{{varcom|pipe_bomb_shake_amplitude|50|[[Unit]]s}}
{{varcom|pipe_bomb_shake_amplitude|50|[[Unit]]s|}}
{{varcom|pipe_bomb_shake_radius|750|[[Unit]]s}}
{{varcom|pipe_bomb_shake_radius|750|[[Unit]]s|}}
{{varcom|pipe_bomb_timer_duration|6|Seconds}}
{{varcom|pipe_bomb_timer_duration|6|Seconds|}}
{{varcom|end}}
{{varcom|end}}
== See Also ==
* {{ent|weapon_pipe_bomb_spawn}}
* {{ent|weapon_pipe_bomb}}
* {{ent|molotov_projectile}}
* {{ent|vomitjar_projectile}}

Revision as of 13:45, 23 June 2024

C++ Class hierarchy
CPipeBombProjectile
CBaseCSGrenadeProjectile
CBaseGrenade
CBaseAnimating
CBaseEntity

pipe_bomb_projectile is a point entity available in Left 4 Dead seriesLeft 4 Dead series Left 4 Dead series. Projectile spawned by throwing weapon_pipe_bomb. It explodes in pipe_bomb_timer_duration seconds and causes DMG_BLAST | DMG_BLAST_SURFACE damage type.

Note.pngNote:Also used for the explosion of propane tank or oxygen tank which are prop_physics spawned by throwing weapong_propanetank or weapon_oxygentank with model names props_junk\PropaneCanister001a and props_equipment\OxygenTank01 respectively.

Related Cvars

Cvar/Command Parameters or default value Descriptor Effect
pipe_bomb_beep_interval_delta 0.025 Seconds
pipe_bomb_beep_min_interval 0.1 Seconds
pipe_bomb_initial_beep_interval 0.5 Seconds
pipe_bomb_shake_amplitude 50 Units
pipe_bomb_shake_radius 750 Units
pipe_bomb_timer_duration 6 Seconds

See Also