Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Promo checker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @author CalypsoToolz
  6. // @match https://shop.logicvapes.ru/checkout/cart/couponAjax?coupon_code=*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. var num = random(1000, 9999);
  14. var checking = "";
  15.  
  16. if(location.search.split('coupon_code=')[1]) {
  17. checking = location.search.split('coupon_code=')[1];
  18. }
  19.  
  20. setTimeout(function() {
  21. if(document.body.innerText.indexOf("Неверный код купона") != -1) {
  22. window.location.href = "https://shop.logicvapes.ru/checkout/cart/couponAjax?coupon_code=Logicclub" + num;
  23. } else {
  24. alert("Founded promo: " + checking);
  25. }
  26. }, 500); // если инет слабоват - увеличить задержку
  27.  
  28. function random(min, max) {
  29. var rand = min - 0.5 + Math.random() * (max - min + 1)
  30. rand = Math.round(rand);
  31. return rand;
  32. }
  33. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement