Simba's Layout
1: The Function List
This is where you can find all the pre-built, or the curent functions in your script are at.
To find a function, just simply click the right arrow next to the action your looking for, and it will show a list of related function.
Example:
I want to find some bitmap functions, so I click the right arrow.
2: Most used buttons in Simba.
Starting from left to right:
-The play button, which runs the script.
-The color picker, which is used to get the x and y coordinates of a point, and find simple colors.
-The target button, which is used to select a client in Simba.
3: The script area.
This is where the script you want to run , or the code you are working on goes.
4: The debug box.
This is the debug box is, it is used to debug your scripts, via the writeln function.
Example:
Lets Run this bit of code with the writeln function.
program new;
begin
writeln('Hello world');
end.
Results: