This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/javascript/plugins/example-1.js

13 lines
265 B
JavaScript

/*
A simple minecraft plugin.
Usage: At the in-game prompt type ...
/js hello()
... and a message `Hello {player-name}` will appear (where {player-name} is
replaced by your own name).
*/
exports.hello = function(){
echo("Hello " + self.name);
};