Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

Need some help for a little code

Started by guillaumem4, February 16, 2009, 08:03:11 PM

0 Members and 1 Guest are viewing this topic.

guillaumem4

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.

guillaumem4

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



Sp1N-D1zZy

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

guillaumem4


guillaumem4

-