Tier et Tout Script V1.0


SUBMITTED BY: phroyd

DATE: Sept. 23, 2016, 11:06 p.m.

FORMAT: Lua

SIZE: 1.5 kB

HITS: 1791

  1. --Tier et Tout Script V1.0 by StarBruck
  2. --Tips appreciated - 18VDunYm9EAdAHU2fhGUEVbDe1WdPmGr6, or tip "StarBruck" on PrimeDice
  3. --More strategy info at http://www.roulette30.com/2010/04/tier-et-tout.html
  4. startingbet = balance / 1375 --This is the total amount when
  5. basebet = balance / 1375 / 3 --Bets work better when basebet is divisible by 3. Try 3, 9, 12 , 15 , 18, etc.
  6. nextbet = basebet
  7. sessionprofit = 0 --How much you made in total.
  8. profitamount = 0 --How much you made until a reset.
  9. profittarget = 0.00000020 --Bot resets after this profit target is reached.
  10. profitlimit = 0.00010200 --Bot stops after this profit limit is reached.
  11. chance = 49.50 --MUST be 49.50
  12. won = 0
  13. lost = 0
  14. maxbet = 0
  15. minbalance = balance
  16. function dobet()
  17. print( "bln: " .. balance .. " pb: " .. previousbet )
  18. if (win) then
  19. nextbet = previousbet + previousbet / 3
  20. profitamount = profitamount + currentprofit
  21. won = won + 1
  22. lost = 0
  23. if profitamount >= profittarget then
  24. sessionprofit = sessionprofit + profitamount
  25. profitamount = 0
  26. nextbet = basebet
  27. end
  28. if sessionprofit >= profitlimit then
  29. print( "Profit Limit reached. Stopping now..." )
  30. print( "Session Profit: " .. sessionprofit )
  31. sessionprofit = 0
  32. nextbet = basebet
  33. stop()
  34. end
  35. else
  36. nextbet = previousbet * 2
  37. profitamount = profitamount + currentprofit
  38. lost = lost + 1
  39. won = 0
  40. bethigh = !bethigh
  41. if lost >= 2 then
  42. nextbet = basebet
  43. end
  44. end
  45. basebet = balance / 1375 / 3
  46. end

comments powered by Disqus