Advertisement
coinwalk

mega update just dice snowy javascript bot

Oct 10th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. var belance = document.getElementById('pct_balance').value;
  2. var bob = (belance/50000).toFixed(8);
  3. var target = 64000;
  4. parseFloat(document.getElementById('pct_bet').value = ((bob).toFixed(8)));
  5. parseFloat(document.getElementById('pct_profit').value = (((bob*10)-bob).toFixed(8)));
  6. var old = document.getElementById('pct_balance').value;
  7. var olda = document.getElementById('pct_balance').value;
  8. var older = document.getElementById('pct_balance').value;
  9. var olderest = document.getElementById('pct_balance').value
  10. var x = bob
  11. var v = 10000000
  12. var win;
  13. var nextbet;
  14.  
  15.  
  16. function dobet(){
  17. console.clear()
  18. var balance=document.getElementById('pct_balance').value;
  19. var previousbet = document.getElementById('pct_bet').value;
  20. document.getElementById('pct_chance').value = 9.9;
  21. if (balance>old) {
  22. old = parseFloat(balance);
  23. }
  24. if (balance<(old-(x*20))) {
  25. nextbet = previousbet*2;
  26. x = nextbet;
  27. old = parseFloat(balance);
  28. }
  29. if (balance<olda) {
  30. olda = parseFloat(balance);
  31. }
  32. if (balance>(olda+(x*45))) {
  33. nextbet = previousbet*2;
  34. x = nextbet;
  35. olda = parseFloat(balance);
  36. }
  37. if (balance>(older+(bob*50))) {
  38. nextbet = bob;
  39. x = bob;
  40. old = parseFloat(balance);
  41. olda = parseFloat(balance);
  42. older = parseFloat(balance);
  43. }
  44. if (nextbet==null) {
  45. nextbet=previousbet;
  46. }
  47. if ((balance > target) || (nextbet>balance)){
  48. //stop();
  49. }
  50. var freak = ((balance-olderest).toFixed(8));
  51. console.log("balance made");
  52. console.log(freak);
  53. parseFloat(document.getElementById('pct_bet').value = ((nextbet).toFixed(8)));
  54. parseFloat(document.getElementById('pct_profit').value = (((nextbet*10)-nextbet).toFixed(8)));
  55. $('#a_lo').click();
  56. }
  57. setInterval(() => dobet(), 2000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement