Advertisement
coinwalk

Untitled

Jul 24th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. chance = 49.5
  2. bob = balance/3200
  3. cript = bob
  4. have = balance
  5. ian = balance
  6. holly = (cript*6.9)
  7. god = (bob*2.5)
  8. nextbet = bob
  9. bethigh = false
  10. target = 5000
  11. resetstats()
  12.  
  13. function dobet()
  14. if (balance>=(have+holly)) then
  15. nextbet = previousbet*2
  16. cript = previousbet*2
  17. holly = (cript*3.2)
  18. have = balance
  19. god = god+(cript*2.5)
  20. end
  21. if (balance<=(have-god)) then
  22. nextbet = previousbet*2
  23. cript = previousbet*2
  24. holly = (cript*6.9)
  25. have = balance
  26. god = god+(cript*2.5)
  27. end
  28. if (balance>(ian+(bob*10))) then
  29. nextbet = bob
  30. cript = bob
  31. holly = (cript*6.9)
  32. ian = ian+((math.floor((balance-ian)/(bob*10)))*(bob*10))
  33. have = ian
  34. god = (bob*2.5)
  35. end
  36. if (balance>=target) then
  37. stop()
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement