Squirrel/Server/Functions/Game/SetGamespeed

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(New page: __NOTOC__ Sets the gamespeed in the server. This affects all players. == Syntax == <code>bool SetGamespeed( float fSpeed )</code> == Arguments == * '''fSpeed''' - The value that you wa...)
 

Revision as of 20:08, 26 November 2009

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( id, 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

Template:Squirrel/Functions/Game

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox