Send comments to magine@turtleflight.com
On the other hand, if you do want to use the scripting language, the current version of MB provides you with extensive bot programming capabilties without the need for a programming language compiler.
Note: Technically, I don't really consider Magsbot-run programs to be "scripts" because the code you enter into the behavior table or action buttons is tokenized or "packed" into data structures for faster execution at run time, whereas bots that use "scripts" usually parse and interpret each line of text as they come to it during execution. Magsbot is more like an "interpreter". Of course compiled programs (like programs written in C or Delphi like Magsbot itself) will always be somewhat faster than interpreted programs, but you can't change the code in a compiled program while it's still running, as you can with Magsbot-run programs.
First, through the use of User-defined macros that can be added to MB's Expression Evaluation language.
Secondly, through MB's ability to call a DLL or executable file as an Action in response to whatever Event the user chooses.
Next: Getting Started