Advertisement
coinwalk

best of snowy

May 13th, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 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 = 0.00001;
  5. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  6. var cript = bob;
  7. var fail = bob;
  8. var god = (bob*3);
  9. var joe = false;
  10. var coil = (bob*10);
  11. var target = 10000;
  12. var olderest = document.getElementById('pct_balance').value
  13. var balancez = parseFloat(document.getElementById('pct_balance').value);
  14. var have = parseFloat(document.getElementById('pct_balance').value);
  15. var ian = parseFloat(document.getElementById('pct_balance').value);
  16. var mybet;
  17. var wild = document.getElementById('pct_balance').value;
  18. var min = document.getElementById('pct_balance').value;
  19. parseFloat(document.getElementById('pct_bet').value = bob);
  20. parseFloat(document.getElementById('pct_profit').value = bob);
  21.  
  22. function getR(minz, maxz) {
  23. minz = Math.ceil(minz);
  24. maxz = Math.floor(maxz);
  25. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  26. }
  27.  
  28. function dobet(){
  29. console.clear()
  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-god)) {
  38. mybet = (stuit*2);
  39. cript = (stuit*2);
  40. god = (stuit*5);
  41. joe = true;
  42. have = parseFloat(balancez);
  43. }
  44. if (balancez>(have+(cript*6))) {
  45. mybet = (stuit*2);
  46. cript = (stuit*2);
  47. god = (stuit*5);
  48. joe = false;
  49. have = parseFloat(balancez);
  50. }
  51. if ((balancez-ian)>(bob*10)) {
  52. mybet = bob;
  53. cript = bob;
  54. god = (bob*3);
  55. have = (ian+((Math.floor((balancez-ian)/(bob*10)).toPrecision(1))*(bob*10)));
  56. ian = ian+((Math.floor((balancez-ian)/(bob*10)).toPrecision(1))*(bob*10));
  57. joe = false;
  58. }
  59. if ((joe==true)&&(balancez>=ian)) {
  60. mybet = bob;
  61. cript = bob;
  62. god = (bob*3);
  63. have = ian;
  64. joe = false;
  65. }
  66. if (balancez>=target) {
  67. //stop();
  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*2)-mybet).toFixed(8)));
  85. parseFloat(document.getElementById('pct_profit').value = (((mybet*2)-mybet).toFixed(8)));
  86. $('#a_lo').click();
  87. }
  88. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement