We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In order to define a variable in IterkoczeScript, use a unique identifier that is not used yet. For example: myVar;
myVar;
Or you can define and initialize the variable with a value like this: myVar = 12;
myVar = 12;
You can use your variables in the code by referencing their name. Like this Write(myVar);
Write(myVar);
You can use modifiers with your variables.
List of modifiers:
To use any modifiers, you have to start the variable definition with remember.
remember
remember global const Points = 100;
You can also delete the variable from memory by using:
forget Points;