Squirrel/Server/Functions/Game/GetWeather

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Updated old functions)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
Returns the current weather in the server.
+
Returns the current weather ID in the server.
  
 
== Syntax ==
 
== Syntax ==
Line 15: Line 15:
  
 
<code lang="squirrel">
 
<code lang="squirrel">
function OnPlayerCommand( id, cmd, text )
+
function onPlayerCommand( plr, cmd, text )
 
{
 
{
 
     if ( cmd == "weather" )
 
     if ( cmd == "weather" )
 
     {
 
     {
           MessagePlayer( "Server weather ID is: " + GetWeather(), id );
+
           MessagePlayer( "Server weather ID is: " + GetWeather(), plr );
 
     }
 
     }
 
}
 
}
Line 26: Line 26:
 
=== Notes ===
 
=== Notes ===
  
The function [[Squirrel/Functions/Misc/MessagePlayer|MessagePlayer]] and call [[Squirrel/Events/Player/OnPlayerCommand|OnPlayerCommand]] were used in in this example. More info about them in corresponding pages.
+
The function [[Squirrel/Server/Functions/Messages/MessagePlayer|MessagePlayer]] and call [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] were used in in this example. More info about them in corresponding pages.
  
 
== Related Functions ==
 
== Related Functions ==
  
{{Squirrel/Functions/Game}}
+
{{Squirrel/Server/Functions/Game}}

Revision as of 23:30, 26 November 2009

Returns the current weather ID in the server.

Syntax

  1. int GetWeather()

Arguments

  • None

Example

This command will tell player the current weather ID when they type '/weather'.

  1.  
  2. function onPlayerCommand( plr, cmd, text )
  3. {
  4. if ( cmd == "weather" )
  5. {
  6. MessagePlayer( "Server weather ID is: " + GetWeather(), plr );
  7. }
  8. }
  9.  

Notes

The function MessagePlayer and call onPlayerCommand were used in in this example. More info about them in corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox