ghiwar

Auto Like

Dec 13th, 2023
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Ambil semua elemen dengan class yang diberikan
  2. var buttons = document.querySelectorAll('.x1i10hfl.x1qjc9v5.xjbqb8w.xjqpnuy.xa49m3k.xqeqjp1.x2hbi6w.x13fuv20.xu3j5b3.x1q0q8m5.x26u7qi.x972fbf.xcfux6l.x1qhh985.xm0m39n.x9f619.x1ypdohk.xdl72j9.x2lah0s.xe8uvvx.xdj266r.x11i5rnm.xat24cr.x1mh8g0r.x2lwn1j.xeuugli.xexx8yu.x4uap5.x18d9i69.xkhd6sd.x1n2onr6.x16tdsg8.x1hl2dhg.x1ja2u2z.x1t137rt.x1o1ewxj.x3x9cwd.x1e5q0jg.x13rtm0m.x3nfvp2.x1q0g3np.x87ps6o.x1lku1pv.x1a2a7pz.x5ve5x3');
  3.  
  4. // Fungsi untuk menghasilkan angka acak antara min dan max (inklusif)
  5. function getRandomInt(min, max) {
  6.   return Math.floor(Math.random() * (max - min + 1)) + min;
  7. }
  8.  
  9. // Fungsi untuk mengklik tombol secara bergantian dengan jeda acak antara 1-8 detik
  10. function clickButtonsSequentially() {
  11.   var index = 0;
  12.  
  13.   function clickNextButton() {
  14.     if (index < buttons.length) {
  15.       buttons[index].click();
  16.       index++;
  17.       var randomDelay = getRandomInt(5000, 10000); // Jeda acak antara 1-8 detik
  18.       setTimeout(clickNextButton, randomDelay);
  19.     }
  20.   }
  21.  
  22.   clickNextButton();
  23. }
  24.  
  25. // Panggil fungsi untuk memulai pengklikan tombol secara bergantian
  26. clickButtonsSequentially();
Add Comment
Please, Sign In to add comment