Advertisement
coinwalk

trial

Mar 17th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = balance/fraction
  4. chance = 24.975
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. old = balance
  9. target = 50000
  10. bim = false
  11. zim = 0
  12. resetstats()
  13.  
  14.  
  15. function dobet()
  16. if !win then
  17. zim+=1
  18. else
  19. zim=0
  20. end
  21. if (zim>=(math.random(3,8))) then
  22. nextbet = previousbet*2
  23. basebet = nextbet
  24. bim = true
  25. zim = 0
  26. end
  27. if balance>=oldbal and bim==true then
  28. nextbet = balance/fraction
  29. basebet = balance/fraction
  30. bim = false
  31. old = balance
  32. oldbal = balance
  33. end
  34. if (balance>=(oldbal+(basebet*2))) and win then
  35. nextbet = previousbet*2
  36. oldbal = balance
  37. bim = true
  38. end
  39. if (balance>=(old+(basebet*5))) and win then
  40. nextbet = balance/fraction
  41. basebet = balance/fraction
  42. old = balance
  43. oldbal = balance
  44. bim = false
  45. end
  46. if (balance>=target) then
  47. stop()
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement