6-6-2018


SUBMITTED BY: jasonmiville

DATE: June 6, 2018, 3:25 p.m.

FORMAT: Text only

SIZE: 681 Bytes

HITS: 415

  1. --95%
  2. chance=95--sets your chance for placing a bet
  3. base=0.000010
  4. nextbet=base --sets your first bet.
  5. bethigh=true --bet high when true, bet low when false
  6. addlimit=0.001
  7. limite=balance+addlimit
  8. multiply=10
  9. moneyvalue=0.003639
  10. enablezz=false --set to true to use high/low switching
  11. --settings from advanced mode
  12. enablesrc=false --set to true to use stop/reset conditions
  13. --settings from advanced mode
  14. function dobet()
  15. chance=95
  16. if win then
  17. if balance > limite then
  18. nextbet=base
  19. limite=limite+addlimit
  20. end
  21. else
  22. nextbet=nextbet*multiply
  23. end
  24. print("")
  25. cash=balance*moneyvalue
  26. print("Cash: "..cash )
  27. print("Next limit: "..limite)
  28. print("")
  29. end

comments powered by Disqus