SetGravity

From Liberty Unleashed Wiki
Revision as of 10:45, 11 October 2010 by VRocker (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

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