The 100% Consistent are You, Solysis and Glasia (So the minimum i have seen is 2, If anyone on this list posts, since canât like himself lol)
Mostly consistent, Nate,Eerie and Messiah
The rest are pmuch on only Recient/Popular topics
But yea, on average i see around 6-8 likes on recent topics.
I use this java program to get spam to paste for spam channel in discord:
import java.awt.datatransfer.StringSelection;
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import java.util.*;
public class SpamGenerator {
final static String unwantedChars = "`´*_~";
final static int MAX_DISCORD_MSG_LENGTH = 2000;
public static void main(String[] args) {
/*
* Generates the random text
* */
String out = "";
Random r = new Random();
for (; out.length() < MAX_DISCORD_MSG_LENGTH;) {
/*
* Generating characters and rerolling if the character is unwanted
* */
int charID = r.nextInt(95) + 32;
while (unwantedChars.contains(new String() + ((char) charID))) {
charID = r.nextInt(95) + 32;
}
out += (char) (charID);
}
/*
* Puts the generated text onto the clipboard with the clipboard class
* */
StringSelection stringSelectionObj = new StringSelection(out);
Clipboard clipboardObj = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboardObj.setContents(stringSelectionObj, null);
}
}
With this post I donât promote spam, but rather it is a funnier way than mashing the keyboard to spam the spam channel. Donât spam outside of spam channel in discord. I am not responsible for if someone got banned spamming spam generated by this program in other places outside of spam channel in discord