Environment
The Environment module provides utility functions to query and process in-game environmental data such as weather, time, season, terrain, and more.
Accessing the Module
Client
get_weather_name(hash)
Returns the readable name of a weather type from its hash.
Parameters
hash
number
The hash key of the weather type.
Example
get_game_time()
Returns current game time (hour + minute) in both raw and formatted format.
Returns
time
table
{ hour, minute }
formatted
string
Time formatted as HH:MM
Example
get_game_date()
Returns current in-game date in both raw and formatted format.
Returns
date
table
{ day, month, year }
formatted
string
Date formatted as DD/MM/YYYY
Example
get_sunrise_sunset_times(weather)
Returns sunrise and sunset times based on weather type.
Parameters
weather
string
The weather type name (e.g. "CLEAR")
Example
is_daytime()
Checks if the current time is between 06:00 and 18:00.
Returns
boolean
true
if daytime, otherwise false
Example
get_current_season()
Returns the current season based on in-game month.
Returns
string
Season name: "Winter", "Spring", "Summer", or "Autumn"
Example
get_distance_to_water()
Calculates the vertical distance from player to nearest water surface.
Returns
number
Distance to water or -1
if no water nearby
Example
get_zone_scumminess()
Returns the "scumminess" level of the player's current zone.
Returns
integer
Value from 0-5, or -1 if not found
Example
get_ground_material()
Returns the hash of the ground material at the player's feet.
Returns
number
Material hash value
Example
get_wind_direction()
Returns the wind direction as a compass direction (N, NE, etc).
Returns
string
Compass direction
Example
get_altitude()
Returns the player's current altitude above sea level.
Returns
number
Altitude value
Example
get_environment_details()
Returns a detailed breakdown of the current environment.
Returns
weather
string
Current weather name
time
table
Table of game time info
date
table
Table of game date info
season
string
Current season
sunrise_sunset
table
Sunrise/sunset times
is_daytime
boolean
True if daytime
distance_to_water
number
Distance to nearest water
scumminess
number
Zone scumminess level
ground_material
number
Ground hash
rain_level
number
Current rain amount
wind_speed
number
Current wind speed
wind_direction
string
Compass wind direction
snow_level
number
Current snow amount
altitude
number
Player's altitude
Example
Last updated