Tikabum

Try=Confirm (TAMPER)

Dec 17th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Try=Confirm
  3. // @include https://*screen=place&try=confirm
  4. // ==/UserScript==
  5.  
  6. (function() {
  7. 'use strict';
  8.  
  9. var ignorarEnvio = 0; /*⚡ IGNORA O ENVIO (1 = ATIVO) ⚡*/
  10. console.log("DEBUG: ignorarEnvio: " + ignorarEnvio);
  11.  
  12. setTimeout(function() {
  13. if(ignorarEnvio === 0) {
  14. console.log("DEBUG: ignorarEnvio: " + ignorarEnvio);
  15. if(mobile === false) $("#troop_confirm_go").click(); else $("button[name = 'submit']").click();
  16. }
  17. console.log("DEBUG: Attack sent!");
  18. }, 300,150); /*⚡ SELECIONAR TEMPO PARA CONFIRMAR COMANDO (1000 = 1 SEG) | TEMPO ALEATÓRIO ENTRE OS DOIS SELECIONADOS ⚡*/
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment