# /varset

## Syntax

**/varset varname \[** ***newvalue*** **]**

## Description

Sets a variable directly to a new value.

* Keep in mind that the type of the variable may itself reject this value depending on what you give it.
* To clear the value of the variable, you may omit the new value.

## Examples

```
 /varset MyString ${MyString}stuff             Concatenate a string variable
 /varset MyString stuff${MyString}             Inserts stuff at the front of ${MyString}
 /varset MyInt 123                             Sets MyInt to 123
 /varset MyTimer 123s                          Sets MyTimer to 123 seconds
 /varset MyFloat 1.23                          Sets MyFloat to 1.23
 /varset MyIntArray[n] 123                     Sets array element n to 123
```

## See Also

* [MQ2DataVars](https://github.com/macroquest/docs/blob/master/documentation/mqdatavars.md) for further information about variables.


---

# 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://macroquest.gitbook.io/macroquest/commands/macro-commands/varset.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.
