Bitssurfer AutoSurf Script


SUBMITTED BY: Riekie

DATE: March 7, 2017, 5:58 p.m.

UPDATED: April 24, 2017, 5:53 p.m.

FORMAT: Text only

SIZE: 833 Bytes

HITS: 3270

  1. [START COPY BELOW]
  2. // ==UserScript==
  3. // @name Surf
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description Auto surf
  7. // @author Munem2x
  8. // @match http://bitssurfer.com/surf/browse
  9. // @grant none
  10. // ==/UserScript==
  11. $(document).ready(function(){
  12. setInterval(function(){
  13. if($(".green-text:not(:empty)")){
  14. (function () {
  15. var ids = {};
  16. var found = false;
  17. $('[id]').each(function() {
  18. if (this.id && ids[this.id]) {
  19. found = true;
  20. console.warn('Duplicate ID #'+this.id);
  21. dupid=this.id;
  22. $('#'+dupid).click();
  23. }
  24. ids[this.id] = 1;
  25. });
  26. if (!found) console.log('No duplicate IDs found');
  27. })();
  28. }
  29. },10000);
  30. });
  31. [END COPY]
  32. Guide link: http://cryptocurrencyman.blogspot.com/2017/03/bitssurfer-auto-surf-tricks.html

comments powered by Disqus