glowman554

Untitled

Mar 22nd, 2021 (edited)
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var api = Java.type("com.glowman554.bot.plugin.PluginAPI");
  2. var utils = Java.type("com.glowman554.bot.utils.ArrayUtils");
  3.  
  4.  
  5. function load() {
  6. }
  7.  
  8. function enable() {
  9.     api.addCommand("say", "Say something!", function(event) {
  10.         if(event.args.length < 1) {
  11.             event.sendMessage("Lol not like that");
  12.             return;
  13.         }
  14.         event.sendMessage(utils.arrayToString(event.args));
  15.     });
  16. }
  17.  
  18. function disable() {
  19. }
Add Comment
Please, Sign In to add comment