7-6-2018


SUBMITTED BY: jasonmiville

DATE: June 7, 2018, 3:45 p.m.

FORMAT: Text only

SIZE: 834 Bytes

HITS: 441

  1. --77%
  2. chance=49.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.01
  7. limite=balance+addlimit
  8. multiply1=4.45
  9. multiply2=10
  10. moneyvalue=0.003639
  11. count=0
  12. enablezz=false --set to true to use high/low switching
  13. --settings from advanced mode
  14. enablesrc=false --set to true to use stop/reset conditions
  15. --settings from advanced mode
  16. function dobet()
  17. chance=49.95
  18. if win then
  19. if balance > limite then
  20. nextbet=base
  21. limite=limite+addlimit
  22. count=0
  23. chance=49.95
  24. end
  25. else
  26. if count<3 then
  27. chance=77
  28. nextbet=nextbet*multiply1
  29. count=count+1
  30. else
  31. chance=95
  32. nextbet=nextbet*multiply2
  33. end
  34. end
  35. print("")
  36. cash=balance*moneyvalue
  37. print("Cash: "..cash )
  38. print("Next limit: "..limite)
  39. print("")
  40. end

comments powered by Disqus