Advertisement
supersnowzy

wow beautiful

Dec 17th, 2021
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. div = 24
  2. b = balance/div
  3. basebet = b
  4. bim = (b*3)
  5. oldt = balance
  6. oldbal = balance
  7. old = balance
  8. chance = 49.5
  9. nextbet = b
  10. bs = (b*7)
  11. target = balance*5
  12. f = false
  13. g = false
  14. bethigh = false
  15. resetstats()
  16.  
  17. function dobet()
  18. bets = bets+1
  19. if (balance>=(oldbal+(basebet*6))) then
  20. nextbet = basebet*2
  21. basebet = nextbet
  22. bets = 0
  23. bim = (basebet*3)
  24. oldbal = balance
  25. end
  26. if (balance<=(oldbal-bim)) then
  27. nextbet = basebet*2
  28. basebet = nextbet
  29. bim = (basebet*3)
  30. f = true
  31. bets = 0
  32. g = true
  33. oldbal = balance
  34. end
  35. if ((balance>oldbal) and (g==true) and (nextbet>=(b*2)) and (bets>=3)) then
  36. nextbet = previousbet/2
  37. basebet = nextbet
  38. bets = 0
  39. g = false
  40. oldbal = balance
  41. end
  42. if ((balance>=(old+(b*10))) or ((balance>=old) and (f==true)) or (balance<=(old-(b*9)))) then
  43. nextbet = b
  44. f = false
  45. g = false
  46. bim = (b*3)
  47. basebet = b
  48. bets = 0
  49. oldt = balance
  50. oldbal = balance
  51. old = balance
  52. end
  53. if (balance>=target) then
  54. tip(3672736,(balance/5))
  55. nextbet = b
  56. basebet = b
  57. f = false
  58. g = false
  59. bim = (b*3)
  60. bets = 0
  61. oldt = balance/2
  62. oldbal = balance/2
  63. old = balance/2
  64. end
  65. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement