ChatVisionZ Spam Bot

Spamma quello che vuoi su ChatVisionZ.com

  1. // ==UserScript==
  2. // @name ChatVisionZ Spam Bot
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Spamma quello che vuoi su ChatVisionZ.com
  6. // @author Mr-Zanzibar
  7. // @match *://chatvisionz.com/*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. let messageCount = 0;
  13. const messages = ['INSERISCI-IL-MESAGGIO-QUI', 'INSERISCI-IL-MESAGGIO-QUI']; // messaggi da inviare (non lo avevi capito?)
  14.  
  15. async function spam() {
  16. try {
  17. const chatInput = document.getElementById('messageInput');
  18. const sendButton = document.getElementById('send');
  19. const nextButton = document.getElementById('next');
  20.  
  21. if (!chatInput || !sendButton || !nextButton) {
  22. console.error("Impossibile trovare gli elementi della chat.");
  23. console.log('%Reporta questo errore nella pagina ufficiale di Github: https://github.com/Mr-Zanzibar/ChatVisionZ-SpamBot', 'color: magenta; font-weight: bold;');
  24. }
  25.  
  26. if (messageCount < messages.length) { // Controlla se sono stati inviati entrambi i messaggi
  27. chatInput.value = messages[messageCount];
  28. sendButton.click();
  29. console.log('%cMessaggio inviato: ' + messages[messageCount], 'color: green; font-weight: bold;');
  30. messageCount++;
  31. } else {
  32. nextButton.click();
  33. messageCount = 0; // Resetta per ricominciare
  34. console.log('%cProssima Chat', 'color: blue;');
  35. }
  36. } catch (error) {
  37. console.error("Errore durante lo spam:", error);
  38. setTimeout(spam, 2000); // Riprova dopo 2 secondi in caso di errore
  39. }
  40. }
  41.  
  42. // Intervallo di 3 secondi
  43. const spamInterval = setInterval(spam, 3000);