Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. -- Dice Script
  2. -- For: Ultra
  3. -- Author: MB1
  4.  
  5.  
  6. BaseBet = 0.00000100
  7. BetIncreaseRate = 18 --%
  8. -- BetIncreaseRate applies when LowestChance
  9. -- is reached.
  10.  
  11. ExtraProfitDuringRecovery = 5 -- %
  12. -- This % would be of the amount
  13. -- lost so far.
  14.  
  15. HighChance = 95
  16. DecreaseChanceBy = 1.00
  17. LowestChance = 9.90
  18.  
  19. --------------------------------------------
  20.  
  21. nextbet = BaseBet
  22. chance = HighChance
  23.  
  24. extraprofit = 1 + (ExtraProfitDuringRecovery / 100)
  25.  
  26. losses = 0
  27.  
  28. --------------------------------------------
  29.  
  30. function dobet()
  31.  
  32. if (win) then
  33.  
  34. nextbet = BaseBet
  35. chance = HighChance
  36. losses = 0
  37. else
  38.  
  39. losses += previousbet
  40. chance -= DecreaseChanceBy
  41.  
  42. if (chance <= LowestChance) then
  43.  
  44. chance = LowestChance
  45. nextbet = previousbet * (1 + (BetIncreaseRate / 100))
  46. else
  47.  
  48. nextbet = (losses * extraprofit) / (chance / 100)
  49. end
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement