Advertisement
Guest User

skinup.gg dice bot

a guest
Jul 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var b1 = $('<p class="button-roll state-before-roll">AUTO BET</p>')
  2. var b2 = $('<p class="button-roll state-before-roll">Donate</p>')
  3. var b3 = $('<input value="10" id="donate_amo" style="margin:20px;width:30px;">')
  4. var b4 = $('<p>Coins</p>')
  5. $(".controls").append(b1, b2);
  6. b2.append(b3, b4);
  7.  
  8.  
  9. $(b2).click(function () {
  10.     $(".chat-input").val("/send 76561198194968799 " + $('#donate_amo').val())
  11.     $('.send-message').click();
  12. });
  13. var x = 0
  14. $(b1).click(function () {
  15.     if (x == 0) {
  16.         x = 1;
  17.         b1.html("Stop")
  18.     } else {
  19.         x = 0;
  20.         b1.html("AUTO BET")
  21.     }
  22. });
  23.  
  24. setInterval(function () {
  25.     if (x == 1) {
  26.         $('#bet-button').click();
  27.     }
  28. }, 4000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement