VLS Roulette Forum

Roulette System Development & Testing => Roulette Coding Zone => Topic started by: Lohnro on April 21, 2008, 08:39:12 AM

Title: Hey Sp1n
Post by: Lohnro on April 21, 2008, 08:39:12 AM
Hi mate, [smiley=vrolijk_26.gif]

Can you code a simple idea. This is not so much a system, but a way of testing events.

Can you have 4 options to choose at the start of the program:

Option 1:
After 1 dozen has spun, bet the other 2 dozens using a small progression 1 3 9 (on each dozen).

Option 2:
After 1 dozen has spun twice in a row, bet the other 2 dozens using a small progression 1 3 9 (on each dozen).

Option 3:
After 1 dozen has spun three times in a row, bet the other 2 dozens using a small progression 1 3 9 (on each dozen).

Option 4:
After 1 dozen has spun four times in a row, bet the other 2 dozens using a small progression 1 3 9 (on each dozen).

Thanks mate!  :thumbsup:
Title: Re: Hey Sp1n
Post by: TurboGenius on May 10, 2008, 10:25:21 AM
Hey Lohnro..

I'm not the coder than Spin is but I try :)
I knocked this one out, let me know if there's more options needed and I can
edit the code to work. (more steps, etc)
I'm famous for making 200 lines of code when Spin could do the same code
in 20 lines  :o
"but" - this works as you explained it.. which is all that matters in the end :)
Cheers

= copy/paste below this line into RX designer window and save ============


system "Lohnro's dozen repeat/progression tester"

/////////////////////////////////////////////////
// coded by TurboGenius (turbogenius@gmail.com)  /
// May 10, 2008                                   /
// *see VLS forum (VLSroulette.com) for details on this method.    /
/////////////////////////////////////////////////

{Can you have 4 options to choose at the start of the program:
Option 1:
After 1 dozen has spun, bet the other 2 dozens using a small
progression 1 3 9 (on each dozen).
Option 2:
After 1 dozen has spun twice in a row, bet the other 2 dozens
using a small progression 1 3 9 (on each dozen).
Option 3:
After 1 dozen has spun three times in a row, bet the other 2
dozens using a small progression 1 3 9 (on each dozen).
Option 4:
After 1 dozen has spun four times in a row, bet the other 2
dozens using a small progression 1 3 9 (on each dozen).}

method "main"
// set up initial values and user input options
begin
while starting new session begin
put 0 record "dozen1" data put 0 record "dozen2" data
put 0 record "dozen3" data
input dropdown "Which option to use :
1:=Begin betting after 1 show
2:=Begin betting after 2 shows
3:=Begin betting after 3 shows
4:=Begin betting after 4 shows" record "option" data end

// track outcomes :
if 1st dozen hit each begin
add 1 record "dozen1" data put 0 record "dozen2" data
put 0 record "dozen3" data end
if 2nd dozen hit each begin
add 1 record "dozen2" data put 0 record "dozen1" data
put 0 record "dozen3" data end
if 3rd dozen hit each begin
add 1 record "dozen3" data put 0 record "dozen1" data
put 0 record "dozen2" data end


// Option 1 area :
if record "option" data = 1 begin
// dozen 1 :
if record "dozen1" data = 1 begin
put 1 2nd dozen put 1 3rd dozen end
if record "dozen1" data = 2 begin
put 3 2nd dozen put 3 3rd dozen end
if record "dozen1" data = 3 begin
put 9 2nd dozen put 9 3rd dozen end
// dozen 2 :
if record "dozen2" data = 1 begin
put 1 1st dozen put 1 3rd dozen end
if record "dozen2" data = 2 begin
put 3 1st dozen put 3 3rd dozen end
if record "dozen2" data = 3 begin
put 9 1st dozen put 9 3rd dozen end
// dozen 3 :
if record "dozen3" data = 1 begin
put 1 1st dozen put 1 2nd dozen end
if record "dozen3" data = 2 begin
put 3 1st dozen put 3 2nd dozen end
if record "dozen3" data = 3 begin
put 9 1st dozen put 9 2nd dozen end end

// Option 2 area :
if record "option" data = 2 begin
// dozen 1 :
if record "dozen1" data = 2 begin
put 1 2nd dozen put 1 3rd dozen end
if record "dozen1" data = 3 begin
put 3 2nd dozen put 3 3rd dozen end
if record "dozen1" data = 4 begin
put 9 2nd dozen put 9 3rd dozen end
// dozen 2 :
if record "dozen2" data = 2 begin
put 1 1st dozen put 1 3rd dozen end
if record "dozen2" data = 3 begin
put 3 1st dozen put 3 3rd dozen end
if record "dozen2" data = 4 begin
put 9 1st dozen put 9 3rd dozen end
// dozen 3 :
if record "dozen3" data = 2 begin
put 1 1st dozen put 1 2nd dozen end
if record "dozen3" data = 3 begin
put 3 1st dozen put 3 2nd dozen end
if record "dozen3" data = 4 begin
put 9 1st dozen put 9 2nd dozen end end

// Option 3 area :
if record "option" data = 3 begin
// dozen 1 :
if record "dozen1" data = 3 begin
put 1 2nd dozen put 1 3rd dozen end
if record "dozen1" data = 4 begin
put 3 2nd dozen put 3 3rd dozen end
if record "dozen1" data = 5 begin
put 9 2nd dozen put 9 3rd dozen end
// dozen 2 :
if record "dozen2" data = 3 begin
put 1 1st dozen put 1 3rd dozen end
if record "dozen2" data = 4 begin
put 3 1st dozen put 3 3rd dozen end
if record "dozen2" data = 5 begin
put 9 1st dozen put 9 3rd dozen end
// dozen 3 :
if record "dozen3" data = 3 begin
put 1 1st dozen put 1 2nd dozen end
if record "dozen3" data = 4 begin
put 3 1st dozen put 3 2nd dozen end
if record "dozen3" data = 5 begin
put 9 1st dozen put 9 2nd dozen end end

// Option 4 area :
if record "option" data = 4 begin
// dozen 1 :
if record "dozen1" data = 4 begin
put 1 2nd dozen put 1 3rd dozen end
if record "dozen1" data = 5 begin
put 3 2nd dozen put 3 3rd dozen end
if record "dozen1" data = 6 begin
put 9 2nd dozen put 9 3rd dozen end
// dozen 2 :
if record "dozen2" data = 4 begin
put 1 1st dozen put 1 3rd dozen end
if record "dozen2" data = 5 begin
put 3 1st dozen put 3 3rd dozen end
if record "dozen2" data = 6 begin
put 9 1st dozen put 9 3rd dozen end
// dozen 3 :
if record "dozen3" data = 4 begin
put 1 1st dozen put 1 2nd dozen end
if record "dozen3" data = 5 begin
put 3 1st dozen put 3 2nd dozen end
if record "dozen3" data = 6 begin
put 9 1st dozen put 9 2nd dozen end end

// finished
end
Title: Re: Hey Sp1n
Post by: admin on May 10, 2008, 02:36:32 PM
Also mirrored here:
nolinks://vlsroulette.com/download/lohnro.dgt
Title: Re: Hey Sp1n
Post by: TurboGenius on May 10, 2008, 02:54:16 PM
Thanks for posting the link, I removed mine.
Much better to download it from here than to have the hassle and ads with the
file posting sites :)
Title: Re: Hey Sp1n
Post by: Lohnro on May 10, 2008, 08:12:59 PM
Cheers Turbo, good to see you here mate!!

Title: Re: Hey Sp1n
Post by: TurboGenius on May 10, 2008, 09:57:34 PM
thanks  :)
Title: Re: Hey Sp1n
Post by: dr-maks1 on May 14, 2008, 10:28:40 AM
woww, great...turbogenius has join VLS forum. Welcome man :thumbsup:
I like your way of creating systems, and your ideas.

You should have your own section here on the forum !
Title: Re: Hey Sp1n
Post by: TurboGenius on May 15, 2008, 11:33:42 PM
 :)