Advertisement
coinwalk

holy grail lua

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