Advertisement
coinwalk

kashi 999dice

Sep 25th, 2019
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. chance = 95
  2. basebet = 0.0000002
  3. bethigh = true
  4. losecount = 0
  5. nextbet = 0.0000002
  6. function dobet()
  7.  
  8. if (win) then
  9. chance = 95
  10. nextbet = basebet
  11. losecount = 0
  12. end
  13. if (!win) then
  14. losecount += 1
  15. if (losecount > 0) then
  16. nextbet = previousbet*2.1
  17. chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
  18. if chance < 49.5 then
  19. chance = 49.5 end
  20. bethigh = true
  21. print ("LOSE")
  22. print(nextbet)
  23. print(chance)
  24. print(profit)
  25. print(bets)
  26. else
  27. nextbet = previousbet*2.1
  28. chance = (1/(((basebet+nextbet))/nextbet))*100
  29. if chance<49.5 then
  30. chance = 49.5 end
  31. bethigh = true
  32. print ("LOSE")
  33. print(nextbet)
  34. print(chance)
  35. print(profit)
  36. print(bets)
  37. end
  38. end
  39.  
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement