Jump to content
Sansasyonel

To gain profit by treating the system as a system

Recommended Posts

I'm sorry for my bad english. I note where the system is going with the first 100 bets chance 49.50. then I create a script so that the same movements are done. It has been running successfully for 6 days. I wanted to give you a tip instead of a script. maybe you can come up with something better. It has been working with BTC for the last 1 and a half hours.

 

 

Screenshot_2.jpg

Screenshot_4.jpg

Share this post


Link to post
Share on other sites

Of course, it is impossible to predict the next number. but you can follow the footprint by recording your first bets. I encountered a maximum of 28 reds on 2 floors. I've only met 16 times by following footprints. To give an example, for the first 100 bets chance 49.50

1- 55.xx green

2- 65.xx green

3- 37.xx red

4- 81.xx green

5- 14.xx red

and keep it that way. For the next 101st bet, repeating the first 100 bets will increase your chances.

101- 50.49 press on

102- 50.49 press on

103- 49.50 press under

104- 50.49 press on

105- 49.50 press under

I will share the script, but it will need to be edited to its own seed.

Edited by Sansasyonel

Share this post


Link to post
Share on other sites

waiting for the numbers to come sequentially in another event. You can think about it too. The successive numbers that rise and fall within the seed have an end. if you find where the last is in your seed, you will have a very high chance of winning. I use this system for high multipliers. example x5 and above.

 

function dobet()

    if dec == true then
        if lastBet.roll < previousRoll then
            roll_sup = 0
            roll_inf +=1
        end
           
        if lastBet.roll > previousRoll then
            roll_inf = 0
            roll_sup +=1
        end
           
        if roll_inf >= 7-1 or roll_sup >= 7-1 then stop() end   
       
    else
        dec = true
    end
   
    previousRoll = lastBet.roll

end

Share this post


Link to post
Share on other sites
2 minutes ago, Sansasyonel said:

waiting for the numbers to come sequentially in another event. You can think about it too. The successive numbers that rise and fall within the seed have an end. if you find where the last is in your seed, you will have a very high chance of winning. I use this system for high multipliers. example x5 and above.

 

function dobet()

    if dec == true then
        if lastBet.roll < previousRoll then
            roll_sup = 0
            roll_inf +=1
        end
           
        if lastBet.roll > previousRoll then
            roll_inf = 0
            roll_sup +=1
        end
           
        if roll_inf >= 7-1 or roll_sup >= 7-1 then stop() end   
       
    else
        dec = true
    end
   
    previousRoll = lastBet.roll

end

Oh, I don’t understand anything in this script) what is it for at all?

Share this post


Link to post
Share on other sites

to stop when the sequential number you set comes up. Just part of the script. I shared it for you to consider. Stop when 3 consecutive numbers come in. and press the most recent number. 

Screenshot_15.jpg

Screenshot_296.png

Lastly, I worked on 7 consecutive numbers related to this.

 

and the result is as you can see.

Share this post


Link to post
Share on other sites

image.thumb.png.0c478ffd145fc5f1b3ac145d4a563fc4.png

chance     = math.random(4475, 5350) / 100
base       = 10.00 
prebet     = balance / 1215000 
preroll    = 0
profitX    = 25.00000000  
multiplier = 2.2       
seedreset  = 5000       

--DO NOT CHANGE BELOW--
r       = 1
sr      = 0  
nextbet = prebet

resetstats()
function dobet()
print("")

if sr >= seedreset then
    stop()
    print("100 times seed resets Done!")
end

chance = math.random(4475, 5350) / 100

        if (r == 1) then
            print("HIGH-1")
            bethigh = false
            r       = 2
        else
        if (r == 2) then
            print("LOW-2")
            bethigh = true
            r       = 3
        else
        if (r == 3) then
            print("HIGH-3")
            bethigh = false
            r       = 4
        else
            if (r == 4) then
            print("HIGH-4")
            bethigh = false
            r       = 5
        else
        if (r == 5) then
            print("LOW-5")
            bethigh = true
            r       = 6

end
end
end
end
end
end
    if (!win) then 
        if (currentstreak == -preroll) then
            nextbet = balance / 1215000
        end
            
        if (currentstreak < -preroll) then
            nextbet = previousbet*multiplier
        end
    else
        
        nextbet = balance / 1215000
    end
end   

 

Do not be lazy to complete this section up to 100.  I follow 150 bet replays.

        else
            if (r == 4) then
            print("HIGH-4")
            bethigh = false
            r       = 5
        else

image.thumb.png.57034a36591c5463b75274de2f62a2d8.png

And most importantly remember to return to the first iteration after all.

Share this post


Link to post
Share on other sites
On 06/03/2022 at 21:51, Sansasyonel said:

I'm sorry for my bad english. I note where the system is going with the first 100 bets chance 49.50. then I create a script so that the same movements are done. It has been running successfully for 6 days. I wanted to give you a tip instead of a script. maybe you can come up with something better. It has been working with BTC for the last 1 and a half hours.

 

 

Screenshot_2.jpg

Screenshot_4.jpg

thanks for the advice
but as for me, the system cannot be deceived) especially in a casino)

Share this post


Link to post
Share on other sites

there is always a way. I pay attention to the time I spend. And I'm just going with math and logic. At least I didn't lose for a long time. Casinos give first, then take it all back. Managing time is the trick, I think. Control yourself 😉, good luck. 🎡

Share this post


Link to post
Share on other sites
2 minutes ago, Sansasyonel said:

there is always a way. I pay attention to the time I spend. And I'm just going with math and logic. At least I didn't lose for a long time. Casinos give first, then take it all back. Managing time is the trick, I think. Control yourself 😉, good luck. 🎡

Happy for you!)
Maybe over time I will change my mind about these strategies)
Good luck!

Share this post


Link to post
Share on other sites
On 06/03/2022 at 23:51, Sansasyonel said:

I'm sorry for my bad english. I note where the system is going with the first 100 bets chance 49.50. then I create a script so that the same movements are done. It has been running successfully for 6 days. I wanted to give you a tip instead of a script. maybe you can come up with something better. It has been working with BTC for the last 1 and a half hours.

 

 

Screenshot_2.jpg

Screenshot_4.jpg

whynot share the script with us for this strategy ^_^

On 08/03/2022 at 17:31, Sansasyonel said:

image.thumb.png.0c478ffd145fc5f1b3ac145d4a563fc4.png

chance     = math.random(4475, 5350) / 100
base       = 10.00 
prebet     = balance / 1215000 
preroll    = 0
profitX    = 25.00000000  
multiplier = 2.2       
seedreset  = 5000       

--DO NOT CHANGE BELOW--
r       = 1
sr      = 0  
nextbet = prebet

resetstats()
function dobet()
print("")

if sr >= seedreset then
    stop()
    print("100 times seed resets Done!")
end

chance = math.random(4475, 5350) / 100

        if (r == 1) then
            print("HIGH-1")
            bethigh = false
            r       = 2
        else
        if (r == 2) then
            print("LOW-2")
            bethigh = true
            r       = 3
        else
        if (r == 3) then
            print("HIGH-3")
            bethigh = false
            r       = 4
        else
            if (r == 4) then
            print("HIGH-4")
            bethigh = false
            r       = 5
        else
        if (r == 5) then
            print("LOW-5")
            bethigh = true
            r       = 6

end
end
end
end
end
end
    if (!win) then 
        if (currentstreak == -preroll) then
            nextbet = balance / 1215000
        end
            
        if (currentstreak < -preroll) then
            nextbet = previousbet*multiplier
        end
    else
        
        nextbet = balance / 1215000
    end
end   

 

Do not be lazy to complete this section up to 100.  I follow 150 bet replays.

        else
            if (r == 4) then
            print("HIGH-4")
            bethigh = false
            r       = 5
        else

image.thumb.png.57034a36591c5463b75274de2f62a2d8.png

And most importantly remember to return to the first iteration after all.

imma try this for sure. lets hope i win some and i will definitely share with you 2!

Share this post


Link to post
Share on other sites
On 07/03/2022 at 16:54, Sansasyonel said:

waiting for the numbers to come sequentially in another event. You can think about it too. The successive numbers that rise and fall within the seed have an end. if you find where the last is in your seed, you will have a very high chance of winning. I use this system for high multipliers. example x5 and above.

 

function dobet()

    if dec == true then
        if lastBet.roll < previousRoll then
            roll_sup = 0
            roll_inf +=1
        end
           
        if lastBet.roll > previousRoll then
            roll_inf = 0
            roll_sup +=1
        end
           
        if roll_inf >= 7-1 or roll_sup >= 7-1 then stop() end   
       
    else
        dec = true
    end
   
    previousRoll = lastBet.roll

end

can you edit this script so that it can work with zero (0) base bet ? @Sansasyonel

Share this post


Link to post
Share on other sites
On 10.03.2022 at 17:41, dznuts8585 said:

Bu betiği sıfır (0) temel bahisle çalışacak şekilde düzenleyebilir misiniz?@sansasyonel

chance  = 90
nextbet = 0.00000000

enablezz=false 
 

enablesrc=false 
 

roll_sup = 0
roll_inf = 0

if lastBet == nil then
    dec = false
else
    previousRoll = lastBet.roll
    dec = true
end

function dobet()

    if dec == true then
        if lastBet.roll < previousRoll then
            roll_sup = 0
            roll_inf +=1
        end
           
        if lastBet.roll > previousRoll then
            roll_inf = 0
            roll_sup +=1
        end
           
        if roll_inf >= 3-1 or roll_sup >= 3-1 then stop() end   
       
    else
        dec = true
    end
   
    previousRoll = lastBet.roll

end

and the site is a real example

Screenshot_69.thumb.png.87bfa90b2f977021fd74881883d3c5e5.png

Screenshot_70.thumb.png.61cb1bb1d288931b44638379cd312d71.png

 

Share this post


Link to post
Share on other sites

It will take a long time, but you will be the winner. I saw a maximum of 10 in a row. Of course this will vary from seed to seed. The maximum I've seen in 4000 seed scans has been 10 in a row.

An example image from 7 consecutive calls.

Screenshot_49.png

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×