MelloMe custom sub script

for MelloMe

  1. // ==UserScript==
  2. // @name MelloMe custom sub script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description for MelloMe
  6. // @author You
  7. // @match https://shellshock.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. alert("Auto typer will begin in 1 minute. Please join a game in 1 minute.")
  12.  
  13. setTimeout(function() {
  14. alert("Auto typer on...\nClick on the imput box to create a message")
  15. document.getElementById("chatIn").addEventListener("click", function(){
  16. var phrases = ["Sub 2 MelloMe Plz", "It's the gaming channel!", "Sub!"]
  17. document.getElementById("chatIn").value = phrases[Math.floor(Math.random() * phrases.length)];
  18. });
  19. }, 60000)