Advertisement
coinwalk

el clunky

Oct 17th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. fraction = 1600
  2. basebet = balance/fraction
  3. chance = 49.5
  4. nextbet = basebet
  5. bethigh = false
  6. google = balance
  7. com = balance
  8. now = 0
  9. nob = 0
  10. nib = 0
  11. go = 0
  12. bob = balance
  13. target = 15000
  14. resetstats()
  15. function dobet()
  16. if !win then
  17. now+=1
  18. bethigh = !bethigh
  19. go+=1
  20. else
  21. nob+=1
  22. go = 0
  23. now = 0
  24. end
  25. if (now>1) then
  26. nextbet = previousbet*2
  27. end
  28. if (nob==1) then
  29. nextbet = previousbet*5
  30. nob = 0
  31. end
  32. if nextbet<basebet then
  33. nextbet = basebet
  34. end
  35. if (nextbet>=(balance-(basebet*2))) then
  36. basebet = balance/fraction
  37. nextbet = basebet
  38. end
  39. if (balance>=(google+basebet)) then
  40. basebet = balance/fraction
  41. nextbet = basebet
  42. bob = balance
  43. nob = 0
  44. nib = 0
  45. now = 0
  46. google = balance
  47. end
  48. if balance>target and win then
  49. tip(303973219,balance/2)
  50. google = balance/2
  51. nextbet = basebet
  52. nob = 0
  53. nib = 0
  54. now = 0
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement