# Weather

By default, the weather system used is [AV Weather](https://av-scripts.tebex.io/package/5618745), if you don't own it then go to **client/editable/\_weather.lua** and place your own weather exports/events inside Weather() function. \
\
Example for **qb-weathersync**:

```lua
function Weather(freeze)
    if freeze then
        -- Freeze time
        TriggerEvent('qb-weathersync:client:DisableSync')
    else
        -- Unfreeze time
        TriggerEvent('qb-weathersync:client:EnableSync')
    end
end
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.av-scripts.com/guides/house-robbery/weather.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
