#1 Roulette Forum & Message Board | www.RouletteForum.cc

Roulette-focused => Bet selection => Topic started by: ignatus on Dec 07, 04:17 AM 2018

Title: FX2
Post by: ignatus on Dec 07, 04:17 AM 2018
(link:s://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTTmWnWpbbPwBNyULjLEbV_YrfVCX6jJihxKbxp_uH5fM_UXKwH)

FX2

BET: (See pic)

This *can* win flatbet (shot term) but way i play it, is with a short 2 numbers negative progressionline;

1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,4,4,4,4,5,5,5,5 STOP

TRIGGER: Place bet Anytime number 0 or number 2 Hits.

Gameplay: After a trigger, spin until Any hit (Then remove bets, and wait for a new trigger)


TEST 1-4 (chart 2, Random RX spins, chart 3-5 Live spins)

RX-code FX2


system "FX2"
// © ignatus 2018 ©

method "main"
begin
  while starting a new session
  begin
     put 0 to Record "Highest Bankroll" Data

     Set List[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
              2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,4,4,4,4,
              5,5,5,5]
      to Record "progression" Data

  end
    copy list[number 0, number 2, street(0-2),Street(0-3), split(2-0),split(1-2),
              split(2-3),split(2-5)]
    to Record "Bet" Layout


while on each spin
begin

  if Bankroll > Record "Highest Bankroll" Data
    begin
    clear Record "Highest Bankroll" Data
    put 100% Bankroll to Record "Highest Bankroll" Data

    clear Record "Bet" Layout
    Put 1 on Record "progression" Data Index
   end

IF number 0 has hit each
begin
if total inside bets count = 0 each
begin
put 1 on Record "progression" Data Index
Put 100% of Record "progression" Data to Record "Bet" Layout List
end
end

  IF number 2 has hit each
begin
if total inside bets count = 0 each
begin
put 1 on Record "progression" Data Index
Put 100% of Record "progression" Data to Record "Bet" Layout List
end
end

   IF Record "Bet" Layout List has lost each
begin
add 1 on Record "progression" Data Index
Put 100% of Record "progression" Data to Record "Bet" Layout List
end



if any inside bet won each
begin
   clear Record "Bet" layout
   Put 1 on Record "progression" Data Index
end



  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear Record "Bet" layout
    Put 1 on Record "progression" Data Index
   End


   
end
END