Advertisement
Ere-kun

Macross

Sep 20th, 2020
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let end = 1000; //Ставим сколько нужно купить оружия
  2. let wp = 503; // Выбираем что купить. Бита: 501, Нож: 502, Пистолет: 503
  3. let time = 800; //Время между покупками в мс
  4. let score = 0;
  5.  
  6. function buy_item(_viewer_id, _auth_key) {
  7.     $.post('script.php', {
  8.         action: 'buy_item',
  9.         type: wp,
  10.         viewer_id: _viewer_id,
  11.         auth_key: _auth_key
  12.     }, 'json');
  13. }
  14.  
  15. function myLoop() {
  16.     setTimeout(function () {
  17.         buy_item(_viewer_id, _auth_key);
  18.         score++;
  19.         console.log(score);
  20.         if (score < end) {
  21.             myLoop();
  22.         }
  23.     }, time);
  24. }
  25.  
  26. myLoop();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement