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

IT & Software => Coding for Roulette => Topic started by: Big EZ on Dec 07, 01:57 AM 2010

Title: Question for RX Coding.
Post by: Big EZ on Dec 07, 01:57 AM 2010
As I am not a very technically inclined person, I have a question that may be simple for a "programmer" to answer. 

I would like to try and test some methods I have come up with in RX extreme instead of by hand.   The method itself is not complex and I can figure out how to do that part.  What I can not figure out how to do is program a simple progression.  Its not a martingale progression its one that uses a set list

ex: 1-1-2-2-3-3-4-4-5-5etc

On a loss it moves to right and on a win it moves to the left and resets when you are equal to or greater then your current profit.

Would someone be able to help me with this.  If you can not understand please let me know and I will try and explain myself better.  Thanks!
Title: Re: Question for RX Coding.
Post by: superman on Dec 07, 03:29 AM 2010
Hi BigEZ

Set a list for the progression at the top of the script, in your area that checks for win/loss on a loss you would increment +1 and on a win decrease by -1

I havent installed rx on my new machine and all scripts I made in the past are gone so I cant give you the code, just going on memory
Title: Re: Question for RX Coding.
Post by: Big EZ on Dec 07, 12:35 PM 2010
Superman, thanks for the reply.

As I stated I am not to technically inclined lol.  What you said makes sense, and thats also what it says in the RX coding manual.  But how would that make it reset your progression if you are even or plus?
Title: Re: Question for RX Coding.
Post by: superman on Dec 07, 01:04 PM 2010
you would also need to add a section to check your balance

if any even bet win

put 1 to list 'progression' doodaa (cant remember the rest)

would reset it to the first number of your progression

now i wish i had kept my scripts, heck, I havent even re-downloaded rxtreme, I code straight into a bot now, sorry cant realy help much
Title: Re: Question for RX Coding.
Post by: Mikeo on Dec 08, 09:26 PM 2010
Hi Big EZ,

I think this is a simple example of what you want:


method "initialize"
begin
  Set List [1,1,2,2,3,3,4,4,5,5] to record "progression" data
  Put 1 to record "progression" data index
  put 0 to record "high_so_far" data
end

method "Get Bet"
begin
  if Net < 0                                 //on a loss
  begin
     add 1 to record "progression" data index
     if record "progression" data index > 10     //10 is number of prog. steps
     begin
        put 10 to record "progression" data index      //leave prog. at step 10
     end
  end
  if Net > 0                                 //on a win
  begin
     subtract 1 from record "progression" data index
     if record "progression" data index < 1
     begin
        put 1 to record "progression" data index
     end
  end
  if balance > record "high_so_far" data                     //a new high
  begin
     put 1 to record "progression" data index               //reset progression
     put 100% balance to record "high_so_far" data   //record new high balance
  end
end

put 100% record "progression" data on red     //example of bet


I hope that covers it.
Title: Re: Question for RX Coding.
Post by: Big EZ on Dec 09, 03:54 AM 2010
Thanks Mikeo.

I am going to plug it in and see how it goes. I appreciate the help