RapidLeech Ads & Timer bypass!!

With this incredible script you can bypass all ads and limits on ALL servers that uses RapidLeech as script!!

  1. // ==UserScript==
  2. // @name RapidLeech Ads & Timer bypass!!
  3. // @namespace RapidLeech Ads & Timer bypass!!
  4. // @description With this incredible script you can bypass all ads and limits on ALL servers that uses RapidLeech as script!!
  5. // @encoding utf-8
  6. // @include *
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
  8. // @version 1.0.0
  9. // ==/UserScript==
  10.  
  11. // Wait document ready
  12.  
  13. $(document).ready(function () {
  14.  
  15. // Check if the site is based with RapidLeech script
  16. var checkname = $("html").text().toLowerCase();
  17.  
  18. if(((checkname.indexOf("leech") > -1)) && ($("form[name='transload']").length)){
  19.  
  20. // Remove original button to confirm
  21.  
  22. $("input[name='btnTransload']").remove();
  23. $("form[name='transload'] input[type='button']").remove();
  24. $("form[name='transload'] input[type='submit']").remove();
  25.  
  26.  
  27. // Insert hacked button with bypass function
  28.  
  29. $("form[name='transload']").append('<div style="border: 6px lime solid; width:200px;"><input id="hackedbtn" style="font : 180% arial;letter-spacing: -.05em;width:200px;height:50px;" type="button" value="Bypass!!" /></div><p><font size="5" color="coral">RapidLeech bypassed with success by r3x0!!</font></p>');
  30.  
  31. $("#hackedbtn").click(function() {
  32. bypass();
  33. });
  34.  
  35. function bypass(){
  36. $('form[name=transload]').submit();
  37.  
  38. };
  39.  
  40.  
  41. // Insert Team Vipers signature
  42.  
  43. $("input[name='link']").attr('value','RapidLeech bypassed with success by r3x0!!');
  44. }
  45.  
  46. });