diff --git a/extension.js b/extension.js index 0aab25864..cfa76058f 100644 --- a/extension.js +++ b/extension.js @@ -36,14 +36,14 @@ */ bot.commands.baconCommand = { - command: 'bacon', //The command to be called. With the standard command literal this would be: !bacon + command: ['fu', 'kent'], //The command to be called. With the standard command literal this would be: !bacon rank: 'user', //Minimum user permission to use the command type: 'exact', //Specify if it can accept variables or not (if so, these have to be handled yourself through the chat.message functionality: function (chat, cmd) { if (this.type === 'exact' && chat.message.length !== cmd.length) return void (0); if (!bot.commands.executable(this.rank, chat)) return void (0); else { - API.sendChat("/me Bacon!!!"); + API.sendChat("/me BAN?!?!?"); } } }; @@ -56,17 +56,17 @@ //Change the bots default settings and make sure they are loaded on launch localStorage.setItem("basicBotsettings", JSON.stringify({ - botName: "basicBot", - language: "english", - chatLink: "https://rawgit.com/Yemasthui/basicBot/master/lang/en.json", + botName: "Bot Teste", + language: "portuguese", + chatLink: "https://rawgit.com/BotTest/BotTestFu/master/lang/pt.json", startupCap: 1, // 1-200 startupVolume: 0, // 0-100 - startupEmoji: false, // true or false + startupEmoji: true, // true or false autowoot: true, autoskip: false, smartSkip: true, cmdDeletion: true, - maximumAfk: 120, + maximumAfk: 60, afkRemoval: true, maximumDc: 60, bouncerPlus: true, @@ -80,7 +80,7 @@ voteSkipLimit: 10, historySkip: false, timeGuard: true, - maximumSongLength: 10, + maximumSongLength: 1.5, autodisable: true, commandCooldown: 30, usercommandsEnabled: true, @@ -120,6 +120,6 @@ })); //Start the bot and extend it when it has loaded. - $.getScript("https://rawgit.com/Yemasthui/basicBot/master/basicBot.js", extend); + $.getScript("https://rawgit.com/BotTest/BotTestFu/master/basicBot.js", extend); }).call(this);