Skip to content

Commit 2c1045d

Browse files
authored
I'll add those Soon™️
1 parent c4e83d0 commit 2c1045d

1 file changed

Lines changed: 28 additions & 2 deletions

File tree

basicBot.js

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2725,7 +2725,20 @@
27252725
}
27262726
}
27272727
},
2728-
2728+
2729+
mehCommand: {
2730+
command: 'meh',
2731+
rank: 'mod',
2732+
type: 'exact',
2733+
functionality: function (chat, cmd) {
2734+
if (this.type === 'exact' && chat.message.length !== cmd.length) return void (0);
2735+
if (!basicBot.commands.executable(this.rank, chat)) return void (0);
2736+
else {
2737+
$('#meh').click();
2738+
}
2739+
}
2740+
},
2741+
27292742
motdCommand: {
27302743
command: 'motd',
27312744
rank: 'bouncer',
@@ -3702,7 +3715,20 @@
37023715
}
37033716
}
37043717
},
3705-
3718+
3719+
wootCommand: {
3720+
command: 'woot',
3721+
rank: 'mod',
3722+
type: 'exact',
3723+
functionality: function (chat, cmd) {
3724+
if (this.type === 'exact' && chat.message.length !== cmd.length) return void (0);
3725+
if (!basicBot.commands.executable(this.rank, chat)) return void (0);
3726+
else {
3727+
$("#woot").click();
3728+
}
3729+
}
3730+
},
3731+
37063732
youtubeCommand: {
37073733
command: 'youtube',
37083734
rank: 'user',

0 commit comments

Comments
 (0)