Crazy script


SUBMITTED BY: jasonmiville

DATE: June 9, 2018, 2:49 a.m.

FORMAT: Text only

SIZE: 543 Bytes

HITS: 1769

  1. chance=66
  2. greencount=1
  3. startbalance=balance
  4. base=0.001
  5. nextbet=base
  6. addlimit=0.01
  7. limite=balance+addlimit
  8. moneyvalue=0.003639
  9. function dobet()
  10. if win then
  11. if greencount % 3 ==0 then
  12. nextbet=nextbet*2
  13. end
  14. greencount=greencount+1
  15. if balance > limite then
  16. nextbet=base
  17. limite=balance+addlimit
  18. greencount=1
  19. end
  20. else
  21. greencount=1
  22. nextbet=nextbet*2.2
  23. end
  24. myprofit=balance-startbalance
  25. print("")
  26. cash=balance*moneyvalue
  27. print("Cash: "..cash )
  28. print("Next limit: "..limite)
  29. print("Profit: "..myprofit)
  30. print("")
  31. end

comments powered by Disqus