OP 26 August, 2021 - 04:57 PM
Greetings, As You Everyone Know's, you can't to mention @Everyone without mention permission, but we created a script that mention the whole server, how it's working?
- The Script Checking Every member on the server, and mention everyone every single member in second, in one message.
"How to use this?"
- Open Your Discord, go to any server you want to do it (MAKE SURE YOUR DEVELOPER MODE IS ON)
After that, press Ctrl + Shift + I and go to console.
after that, you pasting this code:
you typing on the "GUILDIDHERE" the server guild id you want to spam.
and, you typing on the "CHANNELIDHERE" the channel id where you want to spam on the server.
on message, you can to type some any message you want, like F$CK U EVERYONE and it will type that on the spam mention.
then, you pressing enter and enjoying the show.
DON'T FORGET TO LIKE
- The Script Checking Every member on the server, and mention everyone every single member in second, in one message.
"How to use this?"
- Open Your Discord, go to any server you want to do it (MAKE SURE YOUR DEVELOPER MODE IS ON)
After that, press Ctrl + Shift + I and go to console.
after that, you pasting this code:
Code:
function FindModule(item)
{
var req = window.webpackJsonp.push([[], {'__extra_id__': (module, exports, req) => module.exports = req}, [['__extra_id__']]]);
for (const in1 in req.c) {
if (req.c.hasOwnProperty(in1)) {
const m = req.c[in1].exports;
if (m && m.__esModule && m.default && m.default[item]) return m.default;
if (m && m[item]) return m;
}
}
}
let amount = 60;
let guildid = "GUILDIDHERE"; // The Guild (Server) ID where you want to do it, MAKE SURE YOUR DEVELOPER MODE IS ON
let channelid = "CHANNELIDHERE"; // The Channel ID Where You want to spam mention, MAKE SURE YOUR DEVELOPER MODE IS ON
let interval = 1000;
let message = "message "; // The Message You Want to add under the mentions
var memberList = FindModule("getMembers").getMembers(guildid);
setInterval(function()
{
let users = "";
for(var index = memberList.length - 1; index > 0; index--)
{
var rndIndex = Math.floor(Math.random() * (index + 1));
var temp = memberList[rndIndex];
memberList[rndIndex] = memberList[index];
memberList[index] = temp;
}
memberList.slice(0, amount).forEach(member => {
users += `<@${member.userId}>`
});
FindModule("sendMessage").sendMessage(channelid, {content: `${users} ${message}`});
}, interval)
you typing on the "GUILDIDHERE" the server guild id you want to spam.
and, you typing on the "CHANNELIDHERE" the channel id where you want to spam on the server.
on message, you can to type some any message you want, like F$CK U EVERYONE and it will type that on the spam mention.
then, you pressing enter and enjoying the show.
DON'T FORGET TO LIKE