Advertisement
coinwalk

this works

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