Bitssurfer Autosurf Script


SUBMITTED BY: simplymieke

DATE: April 16, 2017, 12:55 p.m.

UPDATED: April 16, 2017, 12:57 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 390

  1. To find out how to use this bot visit http://q.gs/13230779/bitssurferhack
  2. Copy everything below this line to your clipboard
  3. ---------------------------------------------------------
  4. // ==UserScript==
  5. // @name Surf
  6. // @namespace Munem2x
  7. // @icon http://bitssurfer.com/android-icon-192x192.png
  8. // @version 2
  9. // @description Auto surf
  10. // @author Munem2x
  11. // @match http://bitssurfer.com/surf/browse
  12. // @grant none
  13. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
  14. // ==/UserScript==
  15. $(document).ready(function(){
  16. setInterval(function(){
  17. if($(".green-text:not(:empty)")){
  18. (function () {
  19. var ids = {};
  20. var found = false;
  21. $('[id]').each(function() {
  22. if (this.id && ids[this.id]) {
  23. found = true;
  24. console.warn('Duplicate ID #'+this.id);
  25. dupid=this.id;
  26. $('#'+dupid).mousedown();
  27. $('#'+dupid).click();
  28. $('#'+dupid).mouseup();
  29. }
  30. ids[this.id] = 1;
  31. });
  32. if (!found) console.log('No duplicate IDs found');
  33. })();
  34. }
  35. },10000);
  36. });

comments powered by Disqus