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

News:

WARNING: Forums often contain bad advice & systems that aren't properly tested. Do NOT believe everything. Read these links: The Facts About What Works & Why | How To Proplerly Test Systems | The Top 5 Proven Systems | Best Honest Online Casinos

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

need help "RX CODE"

Started by drenek, Oct 17, 04:22 AM 2016

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

drenek

hello,
I need help to finish a "code rx"

when a number of my list (1,2,3,4,5,6,7,8) out then I play all the numbers of my list for 6 spins
after 6 spins if no number is released, I expect again a number of my list so to play again.
This is what I did:

***************************************************
System "my sytem"

Method "main"
Begin
        copy last number to record "last number" layout
        copy list [1,2,3,4,5,6,7,8] to record "numbers" Layout
        IF record "last number" Layout is found within
            record "numbers" Layout
        begin
            call "place bets"
        end

end

Method "place bets"
begin
   put 1 unit Record "numbers" Layout list
end
****************************************************

I can not do:
play for 6 laps my list of numbers
thank you for your help, I am just beginning to program

stringbeanpc

drenek, try this.

I presumed that if a number within your list hit within the 6 spins, you would restart the betting process.

You can take the attached file and rename it from .txt to .dgt then place the file in your roulette xtreme designer folder.

Best wishes learning RX programming


**************

System "my sytem"

Method "main"
Begin
   While Starting a New Session
    Begin
     Call "Init"
     Exit
    End
   
   copy last number to record "last number" layout
   if flag "trigger" true
    begin
     if record "count" data >= 6
      begin
       call "reset"
      end
     else
      begin
       call "place bets"
      end
    end

   IF record "last number" Layout is found within record "numbers" Layout
    begin
     call "reset"
     call "place bets"
   end
end

Method "place bets"
begin
   put 1 unit Record "numbers" Layout list
   add 1 record "count" data
   set flag "trigger" true
end

method "reset"
begin
put 0 record "count" data
set flag "trigger" false
end

method "Init"
Begin
Clear All Records
Load Single Wheel Table
copy list [1,2,3,4,5,6,7,8] to record "numbers" Layout
call "reset"
End

**************

drenek

Hello,
A big thank you for your reply. This has been of great help.  :)
on method, not if I win the sixth spin before, I always play 6 spins hoping repeats.
with your help I could adapt the Programme to what I wanted. ;)

thanks for your encouragements.

stringbeanpc

Your welcome,

If you mean that you wish to stop betting on a win, and wait for a new trigger.

Then the RX code would have to be changed to call "reset" after your win.

To help you learn,  try to code this for yourself.

stringbeanpc

drenek

HI Stringbeanpc,

I have succeeded in do what I wanted
It's cool :)

stringbeanpc

Good,

why not post your new code here

drenek

HI StringbeanPC,

Yes
here it is :

************************************************
System "N° favoris"

Method "main"
Begin
    While starting a new session
    Begin
        Call "initialize"
    End
    copy last number to record "last number" layout
    copy list [16,19,25,26,27,28,30,31 ] to record "numbers" Layout

    While on each spin
    Begin
        if Flag "ready to bet" is True
        Begin
            Add 1 to Record "Spin counter" Data
            if Record "Spin counter" Data >=1
            and Record "Spin counter" Data <=6
            Begin
                Call "place bets"
            End
            Else
            Begin
                Set Flag "ready to bet" False
            End
        End

            IF record "last number" Layout is found within record "numbers" Layout
            begin
                Put 0 on Record "Spin counter" Data
                Add 1 to Record "Spin counter" Data
                Set Flag "ready to bet" is True
            End
            if Flag "ready to bet" is true
            Begin
                Call "place bets"
            End
           
        // poser une mise d'attente sur le casino pour ne pas être déconnecter
        Add 1 to Record "Compteur Attente" Data
        if record "Compteur Attente" Data = 5
        and flag "ready to bet" False
        Begin
            Put 1 unit on Corner(1:5)
            Put 0 on Record "Compteur Attente" Data
        End
    End
end

Method "place bets"
begin
   put 1 unit Record "numbers" Layout list
end

Method "initialize"
Begin
        Set Flag "ready to bet" to False
        put 0 on Record "Spin counter" Data
        Put 0 on Record "Compteur Attente" Data
End

*****************************************

-