Advertisement
coinwalk

pfft seedchanger just use it for bets

Aug 4th, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. var originalbalance = $('#pct_balance')[0].value;
  2. var basebet = (originalbalance/3200);
  3. var base = basebet;
  4. var floatingbasebet = basebet;
  5. var target = 200000;
  6. var belance = originalbalance;
  7. var zog = originalbalance;
  8. var zip = originalbalance;
  9. var nope = 5;
  10. var xol = 1;
  11.  
  12.  
  13. function getR(minz, maxz) {
  14. minz = Math.ceil(minz);
  15. maxz = Math.floor(maxz);
  16. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  17. }
  18.  
  19. function dobet(){
  20. belance = $('#pct_balance')[0].value;
  21. if ((xol==3)&&(belance<=(zog-(floatingbasebet*nope)))){
  22. floatingbasebet = floatingbasebet*2
  23. nope = 4.9;
  24. xol = parseFloat(getR(1,3));
  25. zog = parseFloat(belance);
  26. }
  27. if ((xol==2)&&(belance<=(zog-(floatingbasebet*nope)))){
  28. floatingbasebet = floatingbasebet*2
  29. nope = 2.9;
  30. xol = parseFloat(getR(1,3));
  31. zog = parseFloat(belance);
  32. }
  33. if ((xol==1)&&(belance<=(zog-(floatingbasebet*nope)))){
  34. floatingbasebet = floatingbasebet*2
  35. nope = 6.9;
  36. xol = parseFloat(getR(1,3));
  37. zog = parseFloat(belance);
  38. }
  39. if ((xol==3)&&(belance>=(zog+(floatingbasebet*nope)))){
  40. floatingbasebet = floatingbasebet*2
  41. nope = 6.9;
  42. xol = parseFloat(getR(1,3));
  43. zog = parseFloat(belance);
  44. }
  45. if ((xol==2)&&(belance>=(zog+(floatingbasebet*nope)))){
  46. floatingbasebet = floatingbasebet*2
  47. nope = 4.9;
  48. xol = parseFloat(getR(1,3));
  49. zog = parseFloat(belance);
  50. }
  51. if ((xol==1)&&(belance>=(zog+(floatingbasebet*nope)))){
  52. floatingbasebet = floatingbasebet*2
  53. nope = 2.9;
  54. xol = parseFloat(getR(1,3));
  55. zog = parseFloat(belance);
  56. }
  57. if (belance>=zip){
  58. floatingbasebet = basebet;
  59. zog = parseFloat(belance);
  60. zip = parseFloat(belance);
  61. }
  62. if (belance>=target) {
  63. console.log("snowybot rocks");
  64. return;
  65. }
  66.  
  67. $('#pct_chance')[0].value = 49.5;
  68. $('#pct_bet')[0].value = ((floatingbasebet*1).toFixed(8));
  69. $('#pct_profit')[0].value = ((floatingbasebet*1).toFixed(8));
  70. $("#a_lo")[0].click();
  71. setTimeout(() => dobet(), 1);
  72. }
  73. dobet();
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement