A very cool meteor addon adding some very cool features to starscript.
The biggest feature of this addon is a variable support. These can be used in starscript, or in commands. Variables are stored in a json file called variables.json
in .minecraft/meteor-client/better-starscript
. They are global, so they are the same on every server and every profile.
meteor.get_module_setting(module, setting)
- returns a setting value of module as a stringvar.get(name)
- returns a value of variable namevar.set(name, value)
- sets a value of already existing variable
.var
/.variable
create <name> <type> <value>
- creates a new variable.remove <name>
- removes a variableget <name>
- writes all variable info to chatset <name> <value>
- works likevar.set()
list
- lists all existing variables and their values