Advertisement
coinwalk

permastfu

May 5th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. // ==UserScript==
  2. // @name permastfu
  3. // @description permanently ignore a list of accounts
  4. // @version 1.0
  5. // @author snowy
  6. // @license Do what you feel what you need to do
  7. // @match https://www.999dice.com/
  8. // @include https://www.999dice.com/
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. // put your comma separated list of account numbers you want to ignore here
  14. var delayInMilliseconds = 10000; //5 second
  15. setTimeout(function() {
  16. setTimeout(function() {
  17. document.getElementById('ChatTabText').value = "/stfu 22070650";
  18. },1000);
  19. setTimeout(function() {
  20. document.getElementById("ChatTabSendButton").click()
  21. },1000);
  22. setTimeout(function() {
  23. document.getElementById('ChatTabText').value = "/stfu 68848846";
  24. },1000);
  25. setTimeout(function() {
  26. document.getElementById("ChatTabSendButton").click()
  27. },1000);}, delayInMilliseconds);
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement