Advertisement
coinwalk

lol

May 7th, 2024
725
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. betbse        = (balance/1000)
  2. bethigh       = false
  3. chance        = 49.5
  4. nextbet       = betbse
  5. original      = balance
  6. tens          = (betbse*10)
  7. seventy       = (betbse*70)
  8. twohundreds   = (betbse*50)
  9. sevens        = (betbse*6.9)
  10. eights        = (betbse*7.9)
  11. setasseven    = 0
  12. chickendinner = 144000
  13. balance       = balance
  14. goodoldbal    = ((math.floor(balance/tens))*tens)
  15. upper         = 6.9
  16. downer        = 2.9
  17. belance       = balance
  18. resetstats()
  19.  
  20. function dobet()  
  21. if win then
  22.     belance = belance+previousbet
  23. end
  24. if !win then
  25.     belance = belance-previousbet
  26. end
  27. if (belance>(goodoldbal+(previousbet*upper))) then
  28.     nextbet    = previousbet*2
  29.     upper      = 4.9
  30.     downer     = 4.9
  31.     goodoldbal = belance
  32. end    
  33. if (belance<(goodoldbal-(previousbet*downer))) then
  34.     nextbet    = previousbet*2
  35.     upper      = 4.9
  36.     downer     = 4.9
  37.     goodoldbal = belance
  38. end
  39. if (((belance-(nextbet*40))<=(belance/40)) and (belance<(((math.floor(belance/tens))*tens)+sevens))) then
  40.     nextbet    = betbse
  41.     upper      = 6.9
  42.     downer     = 2.9
  43.     goodoldbal = ((math.floor(belance/tens))*tens)
  44. end
  45. if (((belance-(nextbet*40))<=(belance/40)) and (belance>(((math.floor(belance/tens))*tens)+sevens)) and (belance<(((math.floor(belance/tens))*tens)+eights))) then
  46.     nextbet    = betbse*2
  47.     upper      = 4.9
  48.     downer     = 4.9
  49.     goodoldbal = belance
  50. end
  51. if (((belance-(nextbet*40))<=(belance/40)) and (belance>(((math.floor(belance/tens))*tens)+eights))) then
  52.     nextbet    = betbse
  53.     upper      = 6.9
  54.     downer     = 2.9
  55.     goodoldbal = ((math.floor(belance/tens))*tens)
  56. end
  57. if (((original-(nextbet*10))<=(original/10)) and (belance<(((math.floor(belance/tens))*tens)+sevens))) then
  58.     nextbet    = betbse
  59.     upper      = 6.9
  60.     downer     = 2.9
  61.     goodoldbal = ((math.floor(belance/tens))*tens)
  62. end
  63. if (((original-(nextbet*10))<=(original/10)) and (belance>(((math.floor(belance/tens))*tens)+sevens)) and (belance<(((math.floor(belance/tens))*tens)+eights))) then
  64.     nextbet    = betbse*2
  65.     upper      = 4.9
  66.     downer     = 4.9
  67.     goodoldbal = belance
  68. end
  69. if (((original-(nextbet*10))<=(original/10)) and (belance>(((math.floor(belance/tens))*tens)+eights))) then
  70.     nextbet    = betbse
  71.     upper      = 6.9
  72.     downer     = 2.9
  73.     goodoldbal = ((math.floor(belance/tens))*tens)
  74. end
  75. if (nextbet==null) then
  76.     nextbet = previousbet
  77. end
  78. if (belance<nextbet) then
  79.     stop()
  80. end
  81. if (balance>=chickendinner) then
  82. print("winner winner chicken dinner")
  83. stop()
  84. end
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement