Advertisement
coinwalk

lol lua +++

Sep 1st, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. fraction = 16000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 500000
  7. james = balance
  8. botbuddy = 0
  9. zonk = 0
  10. biz = 0
  11. yo = 0
  12. resetstats()
  13. function dobet()
  14. if win then
  15. botbuddy+=1
  16. biz+=1
  17. else
  18. biz+=1
  19. end
  20. if (botbuddy==8) then
  21. nextbet = previousbet*2
  22. botbuddy = 0
  23. yo+=1
  24. end
  25. if (yo>=2) and (zonk==0) then
  26. nextbet = previousbet
  27. end
  28. if (biz==22) then
  29. nextbet = previousbet*2
  30. zonk+=1
  31. biz = 0
  32. end
  33. if (zonk==1) and (biz==8) then
  34. nextbet = previousbet*2
  35. biz = 0
  36. end
  37. if (nextbet==nil) then
  38. nextbet = previousbet
  39. end
  40. if balance>james then
  41. botbuddy = 0
  42. yo = 0
  43. zonk = 0
  44. biz = 0
  45. james = balance
  46. end
  47. if balance>target then
  48. stop()
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement