Baliarta

Wageran

Jan 30th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. chance = 60.5
  2. bethigh = !bethigh
  3. basebet = balance/10000
  4. nextbet = balance/10000
  5. minbetofsite = 0.00000001
  6. maxbalance = balance
  7. loseAmount = 0
  8. sbalance = balance
  9. won = 0
  10. loss = 0
  11. resetstats()
  12.  
  13.  
  14. function dobet()
  15.  
  16. swapseed = 500
  17. if balance>=(maxbalance+(maxbalance*5/100)) then
  18. maxbalance = balance * 1
  19. loseAmount = 0
  20.  
  21. else
  22. if winstreak == 1 then
  23. won = 1-loss
  24.  
  25. end
  26. loseAmount = maxbalance - (balance * 1)
  27. bethigh = !bethigh
  28.  
  29. end
  30.  
  31.  
  32. if win then
  33. won = won+1
  34. bethigh = !bethigh
  35. if won<=loss then
  36.  
  37. nextbet = nextbet*1.5
  38. bethigh = !bethigh
  39. else
  40.  
  41. nextbet = nextbet*1.5
  42. end
  43. else
  44. chance = 60.5
  45.  
  46. nextbet = nextbet*1.5
  47. won=0
  48. loss=loss+1
  49. end
  50.  
  51.  
  52.  
  53. if nextbet>(loseAmount/(99/chance-1)) then
  54. nextbet = loseAmount/(99/chance-1)
  55. chance = 60.5
  56. bethigh = !bethigh
  57. end
  58. if nextbet<basebet then
  59. nextbet = balance/10000
  60. bethigh = !bethigh
  61. chance = math.random (1,98)
  62. end
  63. if profit > 0.000001 then
  64. stop()
  65. end
  66. if bets % swapseed == 0 then
  67. resetseed()
  68. end
  69. end
Add Comment
Please, Sign In to add comment