mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-04 00:48:32 +00:00
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
|
var FFZ = window.FrankerFaceZ;
|
||
|
|
||
|
// -----------------
|
||
|
// Mass Unmod
|
||
|
// -----------------
|
||
|
|
||
|
FFZ.chat_commands.massunmod = function(room, args) {
|
||
|
args = args.join(" ").trim();
|
||
|
|
||
|
if ( ! args.length )
|
||
|
return "You must provide a list of users to unmod.";
|
||
|
|
||
|
args = args.split(/\W*,\W*/);
|
||
|
|
||
|
var user = this.get_user();
|
||
|
if ( ! user || ! user.login == room.id )
|
||
|
return "You must be the broadcaster to use massunmod.";
|
||
|
|
||
|
if ( args.length > 50 )
|
||
|
return "Each user you unmod counts as a single message. To avoid being globally banned, please limit yourself to 50 at a time and wait between uses.";
|
||
|
|
||
|
var count = args.length;
|
||
|
while(args.length) {
|
||
|
var name = args.shift();
|
||
|
room.room.tmiRoom.sendMessage("/unmod " + name);
|
||
|
}
|
||
|
|
||
|
return "Sent unmod command for " + count + " users.";
|
||
|
}
|
||
|
|
||
|
FFZ.chat_commands.massunmod.help = "Usage: /ffz massunmod <list, of, users>\nBroadcaster only. Unmod all the users in the provided list.";
|
||
|
|
||
|
|
||
|
FFZ.chat_commands.massmod = function(room, args) {
|
||
|
args = args.join(" ").trim();
|
||
|
|
||
|
if ( ! args.length )
|
||
|
return "You must provide a list of users to mod.";
|
||
|
|
||
|
args = args.split(/\W*,\W*/);
|
||
|
|
||
|
var user = this.get_user();
|
||
|
if ( ! user || ! user.login == room.id )
|
||
|
return "You must be the broadcaster to use massmod.";
|
||
|
|
||
|
if ( args.length > 50 )
|
||
|
return "Each user you mod counts as a single message. To avoid being globally banned, please limit yourself to 50 at a time and wait between uses.";
|
||
|
|
||
|
|
||
|
var count = args.length;
|
||
|
while(args.length) {
|
||
|
var name = args.shift();
|
||
|
room.room.tmiRoom.sendMessage("/mod " + name);
|
||
|
}
|
||
|
|
||
|
return "Sent mod command for " + count + " users.";
|
||
|
}
|
||
|
|
||
|
FFZ.chat_commands.massmod.help = "Usage: /ffz massmod <list, of, users>\nBroadcaster only. Mod all the users in the provided list.";
|