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

News:

Odds and payouts are different things. If either the odds or payouts don't change, then the result is the same - eventual loss.

Main Menu
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

PLS help me with this 1 line

Started by rayvelt, Feb 14, 10:08 AM 2023

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

rayvelt

Hello all coding wonders,

I'm struggeling with one line in my code.(shown below in red)

I need to replace it because now the Dozen bet or the Even bet must win 2 times but, i want to change that to any 2 wins in a row.
I tried the All Outside Bets line but didn't work.



system "Martingale X4 System"


After each loss of a bet, the system doubles your bet.

For 2 wins, the system reset back to 1
}
method "main"
begin
   If Bankroll < 10
   Or Bankroll >2215

   Begin
   Stop Session
   End

    While Starting a New Session
    begin
   Set List [1,4,16,64,256]
    to Record "progression" Data

    Put 300% of Record "progression" Data to Low
    Put 200% of Record "progression" Data to 3rd Dozen
End

 While on Each Spin
   Begin
   If Any Even Bet has Won 2 time
   Or Any Dozen Bet Won 2 time

   Begin
   Put 1 on Record "progression" Data Index
 End

 If Any Even Bet has Lost Each Time
 And Any Dozen Bet has Lost Each Time
   Begin
   Add 1 to Record "progression" Data Index

    If Record "progression" Data Index >
Record "progression" Data Count
Begin Stop Session
   End


End
   Put 300% of Record "progression" Data to Low
    Put 200% of Record "progression" Data to 3rd Dozen
End
End



Thanks in advance for the help

-