Advertisement
coinwalk

lol

Jul 16th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. more = balance
  2. long = balance
  3. fraction = 5
  4. bethigh = false
  5. chance = 49.95
  6. basebet = balance/fraction
  7. nextbet = basebet
  8. toss = 0
  9. tossy = 0
  10. lossy = 0
  11. function dobet()
  12. if (balance<=(more/(basebet*4))) then
  13. more=balance
  14. end
  15. if (balance>=(more+(basebet*4))) then
  16. nextbet = previousbet*2
  17. more = balance
  18. end
  19. if (balance>=(long+(basebet*8))) then
  20. nextbet = basebet
  21. long = balance
  22. more = balance
  23. end
  24. if (nextbet==nil) then
  25. nextbet = previousbet
  26. end
  27. if lastBet.Roll < 49.95 then
  28. bethigh = false
  29. else
  30. bethigh = true
  31. end
  32. if !win then
  33. toss+=1
  34. tossy+=1
  35. lossy+=1
  36. else
  37. toss = 0
  38. tossy = 0
  39. lossy = 0
  40. end
  41.  
  42. if lastBet.Roll < 49.95 and lossy == 1 then
  43. bethigh = false
  44. lossy = 0
  45. end
  46. if lastBet.Roll > 49.95 and lossy == 1 then
  47. bethigh = false
  48. lossy = 0
  49. bethigh = true
  50. end
  51. if (toss == 2) then
  52. if (bethigh==false) or (bethigh==true) then bethigh=!bethigh
  53. toss = 0
  54. end
  55. end
  56. if (tossy == 5) then
  57. if (bethigh==false) or (bethigh==true) then bethigh=!bethigh
  58. tossy = 0
  59. end
  60. end
  61. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement