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

Kingspins Black and Red Magician.

Started by Kingspin, December 07, 2012, 03:00:28 PM

0 Members and 1 Guest are viewing this topic.

Kingspin

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.

RobbieD

What's the maximum progression you have reached so far?

Gaza001

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

verrengia

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..

Kingspin

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.

Kingspin

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.

Kingspin

-