Advertisement
coinwalk

snowybot 3.14 continue javascript

Jul 16th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. var belance = document.getElementById('pct_balance').value;
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var bob = ((belance/240).toFixed(8))
  5. var cript = bob;
  6. var joe = false;
  7. var target = (belance*2);
  8. var god = (bob*2.5);
  9. var sin = 6;
  10. var olderest = document.getElementById('pct_balance').value
  11. var balancez = parseFloat(document.getElementById('pct_balance').value);
  12. var have = parseFloat(document.getElementById('pct_balance').value);
  13. var ian = parseFloat(document.getElementById('pct_balance').value);
  14. var mybet;
  15. var bust = parseFloat(document.getElementById('pct_balance').value);
  16. var wild = document.getElementById('pct_balance').value;
  17. var min = document.getElementById('pct_balance').value;
  18. parseFloat(document.getElementById('pct_bet').value = bob);
  19. parseFloat(document.getElementById('pct_profit').value = bob);
  20.  
  21. function getR(minz, maxz) {
  22. minz = Math.ceil(minz);
  23. maxz = Math.floor(maxz);
  24. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  25. }
  26.  
  27. function dobet(){
  28. console.clear()
  29. var balancey = document.getElementById('pct_balance').value;
  30. balancez = document.getElementById('pct_balance').value;
  31. var stuit = document.getElementById('pct_bet').value;
  32. document.getElementById('pct_chance').value = 49.5;
  33. document.getElementById('pct_payout').value = 2;
  34. if (mybet==null){
  35. mybet = stuit;
  36. }
  37. if (balancez>=(have+(cript*6.9))) {
  38. mybet = cript*2;
  39. cript = cript*2;
  40. god = (cript*4.9);
  41. joe = false;
  42. have = parseFloat(balancez);
  43. }
  44. if (balancez<=(have-god)) {
  45. mybet = cript*2;
  46. cript = cript*2;
  47. god = (cript*4.9);
  48. joe = true;
  49. have = parseFloat(balancez);
  50. }
  51. if ((joe==true)&&(balancez>=ian)&&(balancez<(ian+(bob*10)))) {
  52. mybet = bob;
  53. cript = bob;
  54. god = (bob*2.5);
  55. have = ian;
  56. ian = ian;
  57. joe = false;
  58. }
  59. if (balancez>(ian+(bob*10))) {
  60. mybet = bob;
  61. cript = bob;
  62. god = (bob*2.5);
  63. joe = false;
  64. ian = ian+((Math.floor((balancez-ian)/(bob*10)).toPrecision(1))*(bob*10));
  65. have = ian;
  66. }
  67. if (balancez>=target) {
  68. return;
  69. }
  70. if (balancez>wild) {
  71. wild = parseFloat(balancez);
  72. }
  73. if (balancez<min) {
  74. min = parseFloat(balancez);
  75. }
  76. balancez = document.getElementById('pct_balance').value;
  77. var freak = ((balancez-olderest).toFixed(8));
  78. console.log("balance made");
  79. console.log(freak);
  80. console.log("biggest balance");
  81. console.log(parseFloat(wild));
  82. console.log("lowest balance");
  83. console.log(parseFloat(min));
  84. parseFloat(document.getElementById('pct_bet').value = ((mybet*1).toFixed(8)));
  85. parseFloat(document.getElementById('pct_profit').value = ((mybet*1).toFixed(8)));
  86. $('#a_lo').click();
  87. }
  88. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement