Skip to content

MattoScript v1 - engine v0.2.0 - revision 6

Pre-release
Pre-release
Compare
Choose a tag to compare
@Matto58 Matto58 released this 20 Dec 16:09
· 12 commits to main since this release

Version meta

Version Engine version Engine revision .NET version Release date (supported) Supported until
v1 v0.2.0 6 7.0 2022-12-20 (yes) 2023-02-20

New features

  • Integer variables!
    • Store 128-bit signed integers in a variable!
    • Example: int.var %num=1234567890
  • Added calc function
    • Calculate numbers!
    • Example: calc %num + 100 20 3
  • Added for loops!
    • Repeatedly executes a function!
    • Example: for %i=0:10 func
  • Added extensibility support!
    • Add functions and vars externally! (Useful for games wanting to use MattoScript as their scripting language)
  • Added flex.file.loadFuncs function
    • Loads functions from another file!
    • Example: flex.file.loadFuncs fortest.mts
  • Fixed bug where variables are not copied over from global scope to functions