Advertisement
Guest User

Untitled

a guest
Jan 11th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. chance=66.1333
  2. multiplier=2
  3. multiplyonloss=0.5
  4. base=10
  5.  
  6. function dobet()
  7. if win and nextbet*multiplyonloss < base then
  8.     nextbet=base
  9. elseif win and nextbet >= base then
  10.     nextbet=previousbet*multiplyonloss
  11. else
  12. nextbet=previousbet*multiplier
  13. end
  14.  
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement