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

News:

Progression bets are nothing more than different size bets on different spins. You could get lucky and win big, or unlucky and lose even more.

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

Repeated condition

Started by friend76, Feb 03, 10:57 AM 2011

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

friend76

Hi all forum,
a few weeks ago I started to study the programming language Roulette Xtreme.     
I apologize for my bad English, I would ask your help to solve a problem that captures many of my programs.     

Let me give an example to clarify my problem:

- I believe a condition of play, called that by using the "call"
If the streets (1-3) - (4-6) - (7-9) occur 3 times add value to record a "count"
Then the method "unit" determines the conditions of betting, add "1" to record "count".     
So far everything is ok.     
The problem is that once the system is the condition and executes the various playing conditions that I set, you can repeat the same conditions and in that case the record "number" jumps "more records, assigning a progression wrong.     

-------------------------------------------------- -------------------------------------------------- ------------------------------------------

method "main"
begin

call "unit"

/ / Create the record count.     
if record "number" data = 1 begin put 1 unit on low end
if record "number" data = 2 begin put 2 units on low end
if record "number" data = 3 begin put 4 units on low end

etc.      .     .      etc .     .     .      etc .     .     .     

end

method "unit"

begin

if street(1-3) hit 3 time  or street (4-6) hit 3 time  or street(7-9) hit 3 time begin
add 1 record on "number" data end

end

-------------------------------------------------- -------------------------------------------------- -------------------------------------

I take a practical example on a permanent invented:

Number:

7 (3 Street)
8 (3 Street)
9 (3 Street)

Condition found, now Please add a value "1" record "number"
Are performed by focusing on low for several times (at least 15) but during that episodes of new shows another condition like this: 3 numbers belonging to the same triplet.     
At that point the record "number" are added to other values "1" and the progression of jumps.      This is my problem.     

I should do so as long as the game does not stop progression of the condition of the game from within function "call" is no longer performed.     
Once the progression of play 1-2-4 - etc etc .     .     .      then reconsider the method "unit".     

I hope I was clear and to receive your help.     
Thank you all.     

friend76

I would like to do so until the progression is not finished, the condition created is not taken reconsider. 
So, you have found the condition to execute the progression and only once over the progression, return to the condition to find. 
How can I do such a thing with the programming code of Roulette Xtreme?

Thank you all. 

Regards. 

ophis

Create additional varriable....

Condition found new variable: CONDITION1=TURE Please add a value "1" record "number" Are performed by focusing on low for several times (at least 15) but during that episodes of new shows another condition like this: IF CONDITION1=FALSE then 3 numbers belonging to the same triplet.     
At that point the record "number" are added to other values "1" and the progression of jumps.      This is my problem."
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

friend76

Ophis Sorry, could you be so kind as to explain the procedure more simple.    Unfortunately they are just starting out with Roulette Xtreme.   

Basically I wish that the condition imposed by me, it was considered only once until the end of progression.    Only after the progression of the game is finished, then the program will check the new condition.   

Thank you for your attention.   

See you soon.   

Greetings

ophis

Quote from: friend76 on Feb 03, 02:17 PM 2011
Ophis Sorry, could you be so kind as to explain the procedure more simple.    Unfortunately they are just starting out with Roulette Xtreme.   

Basically I wish that the condition imposed by me, it was considered only once until the end of progression.    Only after the progression of the game is finished, then the program will check the new condition.   

Thank you for your attention.   

See you soon.   

Greetings



i dont know how more simple could i tell this.

"Use additional Variable"

check my previous post. The only think i have written down is in RED... rest of it is your quoted sentence. Ehh lets try again.

Quote from: ophis on Feb 03, 11:46 AM 2011

Condition found make some variable and turn it on/mark-it if u have condition 1 CONDITION1=TURE Please add a value "1" record "number" Are performed by focusing on low for several times (at least 15) but during that episodes of new shows another condition like this: now before doing condition2 check if this variable from condition1 isint turned on (only if its not then do condition2)) IF CONDITION1=FALSE then 3 numbers belonging to the same triplet.     
At that point the record "number" are added to other values "1" and the progression of jumps.      This is my problem."

I cant help you exacly because i dont know RX.
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

chrisbis

@Ophis
Hi.

I'm following these threads, because I'm interested in coding.  :smile:

In this quote of Ur's and the original, (I did wonder then!), do U mean "TRUE"?
[attachimg=#]

ophis

its from coding.

if you define variable as Boolean you have 2 possible values True or False.

the same way you could define variable as a Byte then you can assign to it 0 or 1 and would make the same purpose... to indicate if its ON or OFF ;)
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

ophis

oh lol yeah TRUE sorry for that :P
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

friend76

Unfortunately my poor English does not help me understand.

We see the problem from another point of view:

Once I have created a record date, I can make this increases to a maximum value at a time?

Example:

//Condition

If black hit each time then begin
add 1 on record "test" data end

// Run

If record "test" data = 1 then begin
put 1 unit on line(1-6) end

Now I want to make sure that whatever the conditions found, the record "test" does not increase no more than 1 value at a time.

(1-2-3-4-5 - etc etc)

If the record increases in value greater than 1 then go back to the first minimum value valid.

1-2-3 - (5)

(5) No two are value, value of 4 and back

E 'can do such a thing?

If you can help me, thanks.

-