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
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

