ExtinguishFire

From Liberty Unleashed Wiki
Revision as of 04:17, 25 September 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function extinguishes fire at the given coordinates.

Syntax

  1. bool ExtinguishFire( Vector vPos, float fRadius )
  1. bool ExtinguishFire( float x, float y, float z, float fRadius )

Arguments

  • vPos - The position where the fire should be extinguished
  • x, y, z - The coordinates of the position to be extinguished as separate float values
  • fRadius - The radius of the area which should be extinguished

Example

This will extinguish all fires within a 5.0 radius from the player when they type '/extinguish2'.

  1.  
  2. function onPlayerCommand( player, cmd, text )
  3. {
  4. if ( cmd == "extinguish2" )
  5. {
  6. local pos = player.Pos;
  7. ExtinguishFire( pos, 5.0 );
  8. }
  9. return 1;
  10. }
  11.  

Notes

The function Player.Pos and call onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox