Advertisement
coinwalk

trial lua

Feb 11th, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. basebet = 0.01
  2. oldbalance = balance
  3. i = balance
  4. bethigh = false
  5. nextbet = basebet
  6. target = 50000
  7. f = true
  8. resetstats()
  9.  
  10. function dobet()
  11. if ((oldbalance-(basebet*3)==balance)) then
  12. nextbet = previousbet*2
  13. f = false
  14. end
  15. if ((oldbalance-(basebet*9)==balance)) then
  16. nextbet = previousbet/2
  17. f = false
  18. end
  19. if ((oldbalance-(basebet*13)==balance)) then
  20. nextbet = previousbet*2
  21. f = false
  22. end
  23. if ((oldbalance-(basebet*19)==balance)) then
  24. nextbet = previousbet*2
  25. f = false
  26. end
  27. if ((oldbalance-(basebet*23)==balance))then
  28. nextbet = previousbet*2
  29. f = false
  30. end
  31. if (((oldbalance+(basebet*7)==balance)) and (f==true)) then
  32. nextbet = previousbet*2
  33. f = false
  34. end
  35. if (balance>=(i+(basebet*11))) then
  36. nextbet = basebet
  37. f = true
  38. oldbalance = (i+(basebet*10))
  39. i = (i+(basebet*11))
  40. end
  41. if balance>=target then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement