GetWeather

From Liberty Unleashed Wiki
Revision as of 10:44, 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

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