Need help with the bot or want someone to talk to?
FORUM.SEUNTJIE.COM

The forum is a good platform for asking or offering help with programmer mode scripts

LUA Scripts

Download a script for your bot, or upload your own to share with other users. Login or Register to upload

How do I use this?


Name:Tier et Tout
Uploaded by: StarBuck
Discription:
This script follows the Tier et Tout betting strategy explained here: http://www.roulette30.com/2010/04/tier-et-tout.html

A bet amount (preferably divisible by 3) is used, the first third is bet at 2x payout. If it wins, the profit from that win is divided by three, and is added onto the original base bet. This goes on until the profit target or profit limit is reached. If the profit target is reached, the bot resets back to the base bet. If the profit limit is reached, the bot outputs the profit won, resets bet to base bet, and stops automatically. If there is a loss, the last two thirds of the current bet amount is bet, switching the roll from high to low or from low to high. The bot is smart, during a loss streak, it only bets the first third until a win occurs.

Here is an example:

Starting Bet Amount: 9

Bet  Result  Profit  Balance
3     Win      +3      12
4     Win      +7      16 (16/3 = 5.33, bot keeps 1 unit)
5     Loss     +2      11
10    Win      +12     21
7     Win      +19     28

This is a favorable session. Risking 9 units gave 28.

Because the bot wins a lot of units on a long streak, a high profit target or limit will allow safe increase in balance.








CommentsLogin or Register
spiritual315:08:2016 03:11
The bot is excellent. But it is not stopping when the  profit limit is reached
    Login or Register
StarBuck15:08:2016 23:22
Script has been patched, PM me on PD for updates. Will upload patched version to here soon.
    Login or Register
bitcoinreviews25:08:2016 04:37
Hello, awesome script! When can you upload patched version? Thanks! 
    Login or Register
whipzman29:09:2016 10:10
Can you please upload it ?
    Login or Register
bitcoinreviews25:08:2016 04:37
This comment has been removed.
    Login or Register
bitcoinreviews25:08:2016 04:38
Re: Spiritual3	
I have had this problem with other scripts as well. Is it the script or the bot?
    Login or Register
seuntjie26:08:2016 07:45
It's a problem in the script
    Login or Register
AdriusMan19:09:2016 17:56
I updated the script. Now it's stop according to the profitlimit

http://nopaste.nl/IdDelCGX9U
    Login or Register
seuntjie20:09:2016 15:50
Why not just upload the script here?
    Login or Register
luwa02:10:2016 15:08
Hi guys.... how do i change the profit limit?
    Login or Register
fungraphic25:11:2016 22:58
Someone has the code corrected?
    Login or Register
laughcry27:02:2017 15:11
 Perhaps this if statement should look like this:

   if profitamount >= profittarget then
        sessionprofit = sessionprofit + profitamount 
	profitamount = 0
	nextbet = basebet
   end
    Login or Register