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

News:

The only way to beat roulette is by increasing accuracy of predictions (changing the odds). This is possible on many real wheels.

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

Roulette Extreme code

Started by Wimperd, Nov 16, 01:31 AM 2014

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Wimperd

Hi,

I have a question regarding Roulette Extreme coding. Could somebody help me with the following:
I want to place a bet on the following numbers [22, 18, 29, 12, 35, 3, 26, 0, 32, 15, 19, 4, 21, 2, 25], if these numbers are NOT hit in the last 2/3 rounds.
However with below coding the following occurs:
1: If 1 of the numbers got hit, followed by another number not in my list, bets are placed.
2: After 3 spins no bets are placed


System “Buren”

method “main”
  Begin
      While starting a new session
      Begin
      Copy List [22, 18, 29, 12, 35, 3, 26, 0, 32, 15, 19, 4, 21, 2, 25] to Record “Serie 1” Layout
      End
      While on each spin
      Begin
      If Record “Serie 1” Layout has Not Hit 2 times
      Begin
      Put 10 on number 22
      Put 10 on number 18
      Put 10 on number 29
      Put 10 on number 7
      Put 10 on number 28
      Put 10 on number 12
      Put 10 on number 35
      Put 10 on number 3
      Put 10 on number 26
      Put 10 on number 0
      Put 10 on number 32
      Put 10 on number 15
      Put 10 on number 19
      Put 10 on number 4
      Put 10 on number 21
      Put 10 on number 2
      Put 10 on number 25
  End
  If Record “Serie 1” Layout has Not Hit 3 times
  Begin
      Put 15 on number 22
      Put 15 on number 18
      Put 15 on number 29
      Put 15 on number 7
      Put 15 on number 28
      Put 15 on number 12
      Put 15 on number 35
      Put 15 on number 3
      Put 15 on number 26
      Put 15 on number 0
      Put 15 on number 32
      Put 15 on number 15
      Put 15 on number 19
      Put 15 on number 4
      Put 15 on number 21
      Put 15 on number 2
      Put 15 on number 25
  End
  End
  End

Could somebody tell me what I’m missing? Thanks in advance.

Normy2000

Try this.


System "Buren"

method "main"
Begin
    While starting a new session
    Begin
        Copy List [22, 18, 29, 7, 28, 12, 35, 3, 26, 0, 32, 15, 19, 4, 21, 2, 25] to Record "Serie 1" Layout
        put 0 to record "Hit Count" data
    End

    While on each spin
    Begin
        Copy last number to record "Last #" layout
   
        If record "Last #" layout is not found in Record "Serie 1" Layout
        Begin
            add 1 to record "Hit Count" data
        End
        Else
        Begin
            Put 0 to record "Hit Count" data
        End
       
        if record "Hit Count" data = 2
        Begin
            Put 10 on Record "Serie 1" Layout list
        End
       
        if record "Hit Count" data = 3
        Begin
            Put 15 on Record "Serie 1" Layout list
        End
    End
End
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

-