Advertisement
coinwalk

lua

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