# Getting Started

#### Creating the script file.

To start you have to create a javascript file inside of the breeze scripting folder. You can find this folder in two ways:

* Pressing the <i class="fa-folder">:folder:</i> icon inside of the breeze scripting tab.\
  ![](/files/ZaTIooPMcud6YtbYQho4)
* Or manually manouver to the appdata folder, the same folder where [`.minecraft`](https://stickypiston.co/account/knowledgebase/130/How-do-I-find-my-Minecraft-Folder.html) is. In the folder navigate the following path to find the breeze scripting folder -> `breeze/1.8.9/scripts`

In the `scripts` directory create a file with the name of your script ending with `.js`.

{% hint style="success" %}
The script name that shows up inside of breeze is defined by what you name the file! For example calling your file `PingSpoof.js` will make the script show up as **PingSpoof**.\\

<img src="/files/I80yVbgg0irDCsnmIV0S" alt="" data-size="original">
{% endhint %}

#### Script Description

To start your script we can use the [script](/api/namespaces/script.md) to set the description for the script.

```javascript
script.description = "Test description for this script";
```


---

# 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://scripting.breeze.rip/getting_started.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.
