SetGamespeed

From Liberty Unleashed Wiki
Revision as of 20:10, 23 June 2013 by Shadow (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 gamespeed in the server. This affects all players.

Syntax

  1. bool SetGamespeed( float fSpeed )

Arguments

  • fSpeed - The value that you want to set the gamespeed to

Example

This will set the Gamespeed when a player types '/speed 0.5'

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

Notes

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

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox