Hi everybody, i'm new in this world and i need some help to code a little system that i'll try to explain to you:
I place a bet if there is a suite of 2 same colors, i don't want any progression, if it's win or if it's loose: the count is restarted.
This programme will help me to make some test. I hope someone could help me.
Regards.
Guillaume.
for exemple:
Red
Black
R
B
B => I place a bet on Black
B => I win
Finally, if it's possible i would like a progression and a system who say how many numbers I want to wait before place a bet
Thx
Hi!
This should do the trick.
Happy experimenting!
Dizzy. 8)
system "2 In A Row"
{
*************************************
* System by guillaumem4 *
* on VLS Roulette *
*************************************
Rx-ed by Sp1N-D1zZy
-------------------------------------
00-c0mpatible
-------------------------------------
Track the last two appearing colours.
If red+red then put 1 unit on red.
If black+black then put 1 unit on black.
-------------------------------------
}
method "main"
begin
call "Track"
if list [red, red] pattern match record"Last 2"layout
begin
put 1 red
end
if list [black, black] pattern match record"Last 2"layout
begin
put 1 black
end
end
method "Track"
begin
track last red-black for past 2 spins record"Last 2"layout
end
thank you very much, i'll test it!