Advertisement
coinwalk

pfft seedchanger just use it for bets

Aug 4th, 2023 (edited)
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. var originalbalance = $('#pct_balance')[0].value;
  2. var basebet = (originalbalance/10000);
  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. zog = parseFloat(belance);
  24. nope = 3;
  25. xol = parseFloat(getR(1,3));
  26. }
  27. if ((xol==2)&&(belance<(zog-(floatingbasebet*nope)))){
  28. floatingbasebet = floatingbasebet*2
  29. zog = parseFloat(belance);
  30. nope = 5;
  31. xol = parseFloat(getR(1,3));
  32. }
  33. if ((xol==1)&&(belance<(zog-(floatingbasebet*nope)))){
  34. floatingbasebet = floatingbasebet*2
  35. zog = parseFloat(belance);
  36. nope = 7;
  37. xol = parseFloat(getR(1,3));
  38. }
  39. if (belance>zog){
  40. zog = parseFloat(belance);
  41. }
  42. if (belance>=(zip+(basebet*5))){
  43. floatingbasebet = basebet;
  44. zog = parseFloat(belance);
  45. zip = parseFloat(belance);
  46. }
  47. if (belance>=target) {
  48. console.log("snowybot rocks");
  49. return;
  50. }
  51.  
  52. $('#pct_chance')[0].value = 19.8;
  53. $('#pct_bet')[0].value = ((floatingbasebet*1).toFixed(8));
  54. $('#pct_profit')[0].value = ((floatingbasebet*1).toFixed(8));
  55. $("#a_lo")[0].click();
  56. setTimeout(() => dobet(), 1);
  57. }
  58. dobet();
  59.  
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement