Advertisement
Guest User

Untitled

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