CreateExplosion

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

Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function creates an explosion in the given coordinates.

Syntax

  1. bool CreateExplosion( Vector vPos, int iExplosionType )
  1. bool CreateExplosion( float x, float y, float z, int iExplosionType )

Arguments

  • vPos - The position of the explosion as a vector
  • x, y, z - The coordinates of the wanted explosion as separate float values
  • iExplosionType - The explosion type

Example

This will create a type-1 explosion 5 x co-ordinate units away from the player.

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

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