Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var api = Java.type("com.glowman554.bot.plugin.PluginAPI");
- var utils = Java.type("com.glowman554.bot.utils.ArrayUtils");
- function load() {
- }
- function enable() {
- api.addCommand("say", "Say something!", function(event) {
- if(event.args.length < 1) {
- event.sendMessage("Lol not like that");
- return;
- }
- event.sendMessage(utils.arrayToString(event.args));
- });
- }
- function disable() {
- }
Add Comment
Please, Sign In to add comment