Squirrel/Server/Functions/Game/SetWeather

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
Line 15: Line 15:
  
 
<code lang="squirrel">
 
<code lang="squirrel">
function OnPlayerCommand( id, cmd, text )
+
function onPlayerCommand( plr, cmd, text )
 
{
 
{
 
     if ( cmd == "setweather" )
 
     if ( cmd == "setweather" )
Line 26: Line 26:
 
=== Notes ===
 
=== Notes ===
  
The call [[Squirrel/Events/Player/OnPlayerCommand|OnPlayerCommand]] was used in in this example. More info about this in the corresponding page.
+
The call [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] was used in in this example. More info about this in the corresponding page.
  
 
== Related Functions ==
 
== Related Functions ==
  
{{Squirrel/Functions/Game}}
+
{{Squirrel/Server/Functions/Game}}

Revision as of 00:05, 27 November 2009

Changes the weather in the server. This affects all players.

Syntax

  1. bool SetWeather( int weatherid )

Arguments

  • weatherid - The WeatherID you want to change the server weather to

Example

This will change the weather in the server when a player types '/setweather 1'.

  1.  
  2. function onPlayerCommand( plr, cmd, text )
  3. {
  4. if ( cmd == "setweather" )
  5. {
  6. SetWeather( text.tointeger() );
  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