Skip to content
master-m1000 edited this page Mar 27, 2016 · 3 revisions

The syntax of Scripti is very simple. Here you can see a simple command line:

me.color:0;15

Main structure

This line changes the background color to black and the foreground color to white. A command is divided in

group.command:argument;argument;argument;argument;argument

Less than five arguments

Not every command needs five arguments. If you need less, just ignore the other ones, but don't forget the ; between the arguments.

io.copyfile:C:\doc.txt;D:\;false

This command copies the file C:\doc.txt to D:\ and asks if the file already exist to overwrite it.

No argument

There are also commands wich don't need any arguments, like:

me.pause:

or

me.exit:

But please don't forget the : or the line will be ignored be the interpreter!