promotional bannermobile promotional banner

Advanced Scripts

A simple mod to create event scripts, and programmable scripts

File Details

AdvancedScripts-7.0-Forge-1.16.5

  • B
  • Sep 4, 2025
  • 58.66 KB
  • 11
  • 1.16.5
  • Forge

File Name

AdvancedScriptsMod-7.0-Forge-1.16.5.jar

Supported Versions

  • 1.16.5

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:advanced-scripts-1330745:6963489")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Added:

Custom Re-callable Functions
example:

def giveDiamonds(){
give player minecraft:diamond 64
say "gived diamonds"
}

//lets call the function
giveDiamonds()

--------------------------------------------------------------
1 important info, If you declare the function after you call it, the function will not be called, make sure the declaration is made before the function call statement is executed.

same applies with #define