Advertisement
coinwalk

prediction script

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