Squirrel/Server/Functions/Game/SetGravity

From Liberty Unleashed Wiki
Revision as of 00:03, 27 November 2009 by Juppi (Talk | contribs)

Jump to: navigation, search

Sets the gravity in the server. This affects all players.

Syntax

  1. bool SetGravity( float fGravity )

Arguments

  • fGravity - The value that you want to set the gravity to

Example

This will set the gravity when a player types '/grav 0.001'

  1.  
  2. function onPlayerCommand( plr, cmd, text )
  3. {
  4. if ( cmd == "grav" )
  5. {
  6. SetGravity( text.tofloat() );
  7. }
  8. }
  9.  

Notes

The call onPlayerCommand was used in in this example. More info about this in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox