Sansasyonel 8 #1 Posted March 6, 2022 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. Quote Share this post Link to post Share on other sites
Ghostnipple 35 #2 Posted March 7, 2022 Good luck with your strategy. When you say... "I note where the system is going with the first 100 bets" Do you mean the first 100 bets on a seed? Quote Share this post Link to post Share on other sites
Sansasyonel 8 #3 Posted March 7, 2022 (edited) yes exactly like that. You can do this longer. Be careful not to change seeds. Every seed is a different system. Edited March 7, 2022 by Sansasyonel Quote Share this post Link to post Share on other sites
Burberry666 0 #4 Posted March 7, 2022 Thank you, I didn't think about it, I'll use it) Quote Share this post Link to post Share on other sites
Sansasyonel 8 #5 Posted March 7, 2022 If you really want to win try recognizing their seeds instead of playing randomly. Quote Share this post Link to post Share on other sites
Burberry666 0 #6 Posted March 7, 2022 3 minutes ago, Sansasyonel said: If you really want to win try recognizing their seeds instead of playing randomly. How can they be recognized? I think it's not possible, did you manage to do it? Quote Share this post Link to post Share on other sites
Sansasyonel 8 #7 Posted March 7, 2022 (edited) 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 March 7, 2022 by Sansasyonel Quote Share this post Link to post Share on other sites
Burberry666 0 #8 Posted March 7, 2022 Thank you, I wrote down your strategy, I'll try to play on it Quote Share this post Link to post Share on other sites
Sansasyonel 8 #9 Posted March 7, 2022 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 Quote Share this post Link to post Share on other sites
Burberry666 0 #10 Posted March 7, 2022 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? Quote Share this post Link to post Share on other sites
Sansasyonel 8 #11 Posted March 7, 2022 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. Lastly, I worked on 7 consecutive numbers related to this. and the result is as you can see. Quote Share this post Link to post Share on other sites
Sansasyonel 8 #12 Posted March 8, 2022 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 And most importantly remember to return to the first iteration after all. Quote Share this post Link to post Share on other sites
SSadaf 2 #13 Posted March 8, 2022 thanks for sharing, will try it XD Quote Share this post Link to post Share on other sites
NoDrama 1 #14 Posted March 9, 2022 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. thanks for the advice but as for me, the system cannot be deceived) especially in a casino) Quote Share this post Link to post Share on other sites
Sansasyonel 8 #15 Posted March 9, 2022 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. 🎡 1 NoDrama reacted to this Quote Share this post Link to post Share on other sites
NoDrama 1 #16 Posted March 9, 2022 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! Quote Share this post Link to post Share on other sites
SSadaf 2 #17 Posted March 9, 2022 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. whynot share the script with us for this strategy On 08/03/2022 at 17:31, Sansasyonel said: 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 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! Quote Share this post Link to post Share on other sites
Sansasyonel 8 #18 Posted March 9, 2022 I shared it with you as an example. You have to create for each seed. If you want to know more about what to do, you can write. All you have to do is edit the codes for yourself. 1 dznuts8585 reacted to this Quote Share this post Link to post Share on other sites
dznuts8585 12 #19 Posted March 10, 2022 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 Quote Share this post Link to post Share on other sites
mshepsss 0 #20 Posted March 11, 2022 Looks like an interesting way to approach strategy on this. Quote Share this post Link to post Share on other sites
Sansasyonel 8 #21 Posted March 12, 2022 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 1 dznuts8585 reacted to this Quote Share this post Link to post Share on other sites
jakobdi12 1 #22 Posted March 13, 2022 thank you body, i'll download a bot and will try to test it Quote Share this post Link to post Share on other sites
Sansasyonel 8 #23 Posted March 13, 2022 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. Quote Share this post Link to post Share on other sites
jaspinky 1 #24 Posted September 6, 2022 I have no idea for now. 1 backload921 reacted to this Quote Share this post Link to post Share on other sites
backload921 1 #25 Posted September 29, 2022 for me hard to understand On 06/09/2022 at 15:33, jaspinky said: I have no idea for now. do you have any idea right now..... Quote Share this post Link to post Share on other sites