VLS Roulette Forum

Main => Full Roulette Systems => Topic started by: Kingspin on December 07, 2012, 03:00:28 PM

Title: Kingspins Black and Red Magician.
Post by: Kingspin on December 07, 2012, 03:00:28 PM
This is a method I used today to win 100 chips. I bet only one column  at a time. When a red hits bet on column 3 when a black hits bet on column 2. I use the progression 1 2 3 4 5 6 7 8 9 10.
e.g. , Number 1 hits  (red) so I bet I chip on column 3 , I lose because number 11 hits (black) so I bet 2 chips on column 2 35 hits I win. Simple but can make profit.
Title: Re: Kingspins Black and Red Magician.
Post by: RobbieD on December 08, 2012, 08:54:48 AM
What's the maximum progression you have reached so far?
Title: Re: Kingspins Black and Red Magician.
Post by: Gaza001 on December 09, 2012, 10:32:51 AM
Quote from: Kingspin on December 07, 2012, 03:00:28 PM
This is a method I used today to win 100 chips. I bet only one column  at a time. When a red hits bet on column 3 when a black hits bet on column 2. I use the progression 1 2 3 4 5 6 7 8 9 10.
e.g. , Number 1 hits  (red) so I bet I chip on column 3 , I lose because number 11 hits (black) so I bet 2 chips on column 2 35 hits I win. Simple but can make profit.


Here is the system code Kingspin.  rx 2.0 copy & past

...



system "Gaza 001 red black Kingspin "

{System  how to follow the wheel
  to allow for a Progression Bet
}
method "main"
begin
    While Starting a New Session
    begin
       //Initial pointer to first progression
        Clear Record "Max. Bet" data;
        Clear Record "Win Goal total Bankroll" data;
        Clear Record "Loss Limit total Bankroll" data;
        Clear Record "Bet Progression List" data;
        put 5 on Record "Win Goal" data;
        put 10 on Record "Loss Goal" data;
        Put 100 % of Bankroll on Record "Starting Bankroll" data;
        //Table list of progression bets
        Set List [1,2,3,4,5,6,7,8,9,10] to
                                        record "Bet Progression List" Data;
        put 1 on Record "Bet Progression List" Data index;
        Call "Input Data";
        exit;
    end
   
    While On each Spin
    begin
        Call "Check Bet";
        Call "Check Win/Loss";
        Call "Make Bets";
    end
end

//Do Bet based on last number that came up
method "Make Bets"
begin
    While red has hit each time
    begin
        Put 100 % of Record "Bet Progression List" data on column c

    end
   
    While black has hit each time
    begin
       Put 100 % of Record "Bet Progression List" data on column b

     end
end

//Check last Bet to see if we Won or Loss
method "Check Bet"
begin
    While Any column Bet has won each time
    begin
        Put 1  on Record "Bet Progression List" Data index;
    end
    Else
    begin
        Add 1 on Record "Bet Progression List" Data index;
       
        While Record "Bet Progression List" Data index >
                                        Record "Max. Bet" Data
        begin
            Put 1  on Record "Bet Progression List" Data index;
        end
    end
end

method "Check Win/Loss"
begin
    While Bankroll > Record "Win Goal total Bankroll" data
    begin
        Display "Win Goal has been reached.
                  The Session will End.";
        Stop Session;
    end
   
    While Bankroll < Record "Loss Limit total Bankroll" data
    begin
        Display "Loss Goal has been reached.
                  The Session will End.";
        Stop Session;
    end
end

method "Input Data"
begin
    Group
    begin
        Input Data "Enter your starting Bankroll:" to Record "Starting Bankroll" data;
        Input Dropdown "What Table Layout do you want to use?
                 
                  1:=European Layout
                  2:=European Layout" to Record "layout" data;

        Input Data "Enter your Win Goal Units?" to Record "Win Goal" data;
        Input Data "Enter your Loss Goal Units?" to Record "Loss Goal" data;
        Input Dropdown "What Level do you want to  Progression Bet:
                 
                  1:=  1  Unit
                  2:=  2  Unit
                  3:=  3  Units
                  4:=  4  Units
                  5:=  5 Units
                  6:=  6  Units
                  7:=  7  Units
                  8:=  8  Units
                  9:=  9  Units
                  10:=  10  Units
                 

                  10:= 10 Units" to Record "Max. Bet" data;
    end
   
    Put 100 % of Record "Starting Bankroll" data on Bankroll;
    Put 100 % of Bankroll on Record "Loss Limit total Bankroll" data;
    Put 100 % of Bankroll on Record "Win Goal total Bankroll" data;
    Add 100 % of Record "Win Goal" data on Record "Win Goal total Bankroll" data;
    Subtract 100 % of Record "Loss Goal" data on Record "Loss Limit total Bankroll" data;

    While Record "layout" data = 1
    begin
        Load Single Wheel;
    end
    Else
    begin
        Load single Wheel;
    end
end
Title: Re: Kingspins Black and Red Magician.
Post by: verrengia on December 10, 2012, 08:28:36 AM
X ROBBIED.....System lose in the progression

best is too make a fibonacci progression till 1-1-1-2-3-5-8-13-21-34......when this lose go home!!!
and if you win 50 euro stand up and enjoy your win..
Title: Re: Kingspins Black and Red Magician.
Post by: Kingspin on December 11, 2012, 05:04:47 AM
You can get 16 misses and the progression 12345678910 does not work after furthur testing.  Worth a play for upto 20 - 30 chips profit only.
Title: Re: Kingspins Black and Red Magician.
Post by: Kingspin on February 24, 2013, 07:01:22 PM
I have been winning with this system lately , you can get some long winning runs that does not need a long progression .
Beats the wait till a dozen or column has missed x number of times before betting rubbish anyday. :)

  Note := Only works good on Single 0 wheel only.