Advertisement
coinwalk

Untitled

Aug 5th, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. //by snowy;
  2. //start of variables;
  3.  
  4. var belance = document.getElementById('pct_balance').value;
  5. document.getElementById('pct_chance').value = 49.5;
  6. document.getElementById('pct_payout').value = 2;
  7. var dking = ((belance/24).toFixed(8));
  8. var cript = dking;
  9. var target = 300;
  10. var god = (dking*2.9);
  11. var holly = (cript*6.9);
  12. var olderest = document.getElementById('pct_balance').value;
  13. var old = document.getElementById('pct_balance').value;
  14. var balancez = document.getElementById('pct_balance').value;
  15. var have = 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 = dking);
  20. parseFloat(document.getElementById('pct_profit').value = dking);
  21.  
  22. //end of variables;
  23.  
  24. function cross(){
  25. console.clear();
  26. balancez = document.getElementById('pct_balance').value;
  27. var stuit = document.getElementById('pct_bet').value;
  28. document.getElementById('pct_chance').value = 49.5;
  29. document.getElementById('pct_payout').value = 2;
  30. if (mybet==null){
  31. mybet = stuit;
  32. }
  33. if ((balancez>=(have+holly))) {
  34. have = have+(cript*10);
  35. holly = (cript*6.9);
  36. god = (cript*12.5);
  37. mybet = cript*2;
  38. cript = cript*2;
  39. }
  40. if (balancez<=(have-god)) {
  41. holly = (cript*9.9);
  42. have = (have-god);
  43. god = (cript*9.9);
  44. mybet = cript*2;
  45. cript = cript*2;
  46. }
  47. if (((old+cript>=(old+(old/4)))&&(balancez>=old))||((old-cript>=(old-(old/4)))&&(balancez<=old))) {
  48. mybet = dking;
  49. cript = dking;
  50. holly = (dking*6.9);
  51. god = (dking*2.9);
  52. have = parseFloat(balancez);
  53. old = parseFloat(balancez);
  54. }
  55. if (balancez>target) {
  56. return;
  57. }
  58. if (balancez>wild) {
  59. wild = parseFloat(balancez);
  60. }
  61. if (balancez<min) {
  62. min = parseFloat(balancez);
  63. }
  64. var freak = ((balancez-olderest).toFixed(8));
  65. console.log("balance made");
  66. console.log(freak);
  67. console.log("biggest balance");
  68. console.log(parseFloat(wild));
  69. console.log("lowest balance");
  70. console.log(parseFloat(min));
  71. parseFloat(document.getElementById('pct_bet').value = ((mybet*1).toFixed(8)));
  72. parseFloat(document.getElementById('pct_profit').value = ((mybet*1).toFixed(8)));
  73. $('#a_lo').click();}
  74. setInterval(() => cross(), 800);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement