4d73d4a013
- qb-core/client/drawtext.lua: Global [E] prompt suppression (all DrawText functions are no-ops) - qs-housing/qb.lua: DrawText3D/DrawText3Ds/DrawTextBoard no-ops when UseTarget=true - qs-housing/qb-target.lua: Added BoxZone target on Real Estate NPC (executes /housebrowser) - qb-weathersync: Time freeze at 14:00 (BaseTime=14, FreezeTime=true)
32 lines
1.4 KiB
Lua
32 lines
1.4 KiB
Lua
Config = {}
|
|
Config.DynamicWeather = true -- Set this to false if you don't want the weather to change automatically every 10 minutes.
|
|
|
|
-- On server start
|
|
Config.StartWeather = 'EXTRASUNNY' -- Default weather default: 'EXTRASUNNY'
|
|
Config.BaseTime = 14 -- Time default: 8 -- RED VALLEY: freeze la 14:00
|
|
Config.TimeOffset = 0 -- Time offset default: 0
|
|
Config.FreezeTime = true -- freeze time default: false -- RED VALLEY: ora blocată la 14:00
|
|
Config.Blackout = false -- Set blackout default: false
|
|
Config.BlackoutVehicle = false -- Set blackout affects vehicles default: false
|
|
Config.NewWeatherTimer = 10 -- Time (in minutes) between each weather change default: 10
|
|
Config.Disabled = false -- Set weather disabled default: false
|
|
Config.RealTimeSync = false -- Activate realtime synchronization default: false
|
|
|
|
Config.AvailableWeatherTypes = { -- DON'T TOUCH EXCEPT IF YOU KNOW WHAT YOU ARE DOING
|
|
'EXTRASUNNY',
|
|
'CLEAR',
|
|
'NEUTRAL',
|
|
'SMOG',
|
|
'FOGGY',
|
|
'OVERCAST',
|
|
'CLOUDS',
|
|
'CLEARING',
|
|
'RAIN',
|
|
'THUNDER',
|
|
'SNOW',
|
|
'BLIZZARD',
|
|
'SNOWLIGHT',
|
|
'XMAS',
|
|
'HALLOWEEN',
|
|
}
|