Squirrel/Server/Functions/Game/GetWeather
From Liberty Unleashed Wiki
(Difference between revisions)
(Updated old functions) |
|||
Line 1: | Line 1: | ||
− | + | {{Squirrel/Title|GetWeather}} | |
Returns the current weather ID in the server. | Returns the current weather ID in the server. | ||
Latest revision as of 09:44, 11 October 2010
Returns the current weather ID in the server.
[edit] Syntax
int GetWeather()
[edit] Arguments
- None
[edit] Example
This command will tell player the current weather ID when they type '/weather'.
function onPlayerCommand( plr, cmd, text ) { if ( cmd == "weather" ) { MessagePlayer( "Server weather ID is: " + GetWeather(), plr ); } }
[edit] Notes
The function MessagePlayer and call onPlayerCommand were used in in this example. More info about them in corresponding pages.
[edit] Related Functions
- CloseGarage
- CloseSSVBridge
- EnableTrains
- GetBoundariesLower
- GetBoundariesUpper
- GetFriendlyFire
- GetGamespeed
- GetGravity
- GetHour
- GetIslands
- GetMinute
- GetSSVBridgeLock
- GetSSVBridgeUpdateTime
- GetSurfaceTraction
- GetTimeLock
- GetWeather
- GetWeatherLock
- IsSSVBridgeUp
- OpenGarage
- OpenSSVBridge
- SetBoundaries
- SetFriendlyFire
- SetGamespeed
- SetGravity
- SetIslands
- SetSSVBridgeLock
- SetSSVBridgeUpdateTime
- SetSurfaceTraction
- SetTime
- SetTimeLock
- SetWeather
- SetWeatherLock