Advertisement
coinwalk

you're genius snowy

Jul 22nd, 2022
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. chance = 49.5
  2. bob = balance/32000
  3. cript = bob
  4. have = balance
  5. ian = balance
  6. joe = false
  7. holly = (cript*6.9)
  8. god = (bob*2.5)
  9. nextbet = bob
  10. bethigh = false
  11. target = 50000
  12. resetstats()
  13.  
  14. function dobet()
  15. if (balance>=(have+holly)) then
  16. nextbet = previousbet*2
  17. cript = previousbet*2
  18. holly = (cript*9.9)
  19. have = balance
  20. god = (cript*4.9)
  21. end
  22. if (balance<=(have-god)) then
  23. nextbet = previousbet*2
  24. cript = previousbet*2
  25. joe = true
  26. holly = (cript*6.9)
  27. have = balance
  28. god = (cript*4.9)
  29. end
  30. if ((joe==true) and (balance>=ian) and (balance<(ian+(bob*10)))) then
  31. nextbet = bob
  32. cript = bob
  33. have = ian
  34. god = (bob*2.5)
  35. ian = ian
  36. holly = (cript*6.9)
  37. joe = false
  38. end
  39. if (balance>(ian+(bob*10))) then
  40. nextbet = bob
  41. cript = bob
  42. joe = false
  43. holly = (cript*6.9)
  44. ian = ian+((math.floor((balance-ian)/(bob*10)))*(bob*10))
  45. have = ian
  46. god = (bob*2.5)
  47. end
  48. if (balance>=target) then
  49. stop()
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement