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: 965 Bytes

HITS: 391

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

comments powered by Disqus