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

IT & Software => Coding for Roulette => Topic started by: Sp1N-D1zZy on Aug 11, 04:31 PM 2015

Title: Coding requests galore
Post by: Sp1N-D1zZy on Aug 11, 04:31 PM 2015
Hello gentlemen,

Sitting twiddling my thumbs looking for something to do. Feel free to ask for coding requests and I'll get to it!

Happy experimenting,
Spin.  8)
Title: Re: Coding requests galore
Post by: Sp1N-D1zZy on Aug 11, 04:41 PM 2015
Sp1N-D1zZy never charges anything for coding, never, free, no $$$, nada.

Spin.  8)
Title: Re: Coding requests galore
Post by: Rolletti on Aug 26, 04:31 AM 2015
Hi Sp1N-D1zZy,

may I request your coding service for RX?
I'm new to RX and find it a bit hard to learn the language. I'm still learning but would like to ask you for the favour of coding one of my systems for the bot.

System:
Track spin results until 1 number hits the third time.
Flat bet 1 unit on all numbers that have hit 3 times until one of them hits for a fourth time. Then reset and start from scratch.
If there did not hit any number for three times until spin 36, start from scratch.
If not any number of the 3 time hit numbers hits a fourth time until spin 37,  start from scratch.

Guess for you not hard to code but for me still horror.

Would appreciate your help very much.

Thx
Rolletti
Title: Re: Coding requests galore
Post by: Sp1N-D1zZy on Aug 26, 07:52 AM 2015

This should be just what you are after.

Happy experimenting,
Spin.  8)



system "Rolletti's Thirds"
{
*************************************
*         System by Rolletti        *
*         on rouletteforum.cc       *
*************************************
         Rx-ed by Sp1N-D1zZy
-------------------------------------
          not 00-c0mpatible
-------------------------------------
Track spin results until 1 number hits the third time.
Flat bet 1 unit on all numbers that have hit 3 times until one of them hits
for a fourth time. Then reset and start from scratch.
If there did not hit any number for three times until spin 36, start from scratch.
If not any number of the 3 time hit numbers hits a fourth time until spin 37,
start from scratch.
-------------------------------------
}
method "main"
begin
while starting new session
    begin
    call "Init"
    exit
    end
call "eval"
call "bet"
end

method "reset"
begin
clear all records
call "init"
exit
end

method "eval"
begin
if any number bet won each
    begin
    call "reset"
    end
end

method "track"
begin
add 1 record "Count2"data
if record"Count2"data = 37
    begin
    call "reset"
    end
put 1 record"Single Wheel"layout index
put 1 record"Track"data index
loop until record"Single Wheel"layout index > record"Single Wheel"layout count
    begin
    if record"Track"data >= 3
        begin
        put 1 record"Single Wheel"layout
        end
    add 1 record"Single Wheel"layout index
    add 1 record"Track"data index
    end
end

method "bet"
begin
add 1 record"Count"data
track last number for 1 record"LastN"layout
put 1 record"Single Wheel"layout index
put 1 record"Track"data index
loop until record"Single Wheel"layout index > record"Single Wheel"layout count
    begin
    copy record"Single Wheel"layout record"Temp"layout
    if record"Temp"layout list pattern match record"LastN"layout
        begin
        add 1 record"Track"data
        end
    add 1 record"Track"data index
    add 1 record"Single Wheel"layout index
    end
put 1 record"Track"data index
loop until record"Track"data index > record"Track"data count
    begin
    if record"Track"data = 3
        begin
        call "track"
        exit
        end
    add 1 record"Track"data index
    end
if record"Count"data = 36
    begin
    call "reset"
    end
end

method "Init"
begin
load single wheel
copy list [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,1,8,19,20,21,22,23,24,25,
26,27,28,29,30,31,32,33,34,35,36] record"Single Wheel"layout
end

Title: Re: Coding requests galore
Post by: Rolletti on Aug 26, 07:57 AM 2015
WOW!

Wish I could code that speedy.
Thanks a lot !!!

Will start to experiment.

Appreciate very much!

Rolletti
Title: Re: Coding requests galore
Post by: Sp1N-D1zZy on Aug 26, 07:58 AM 2015
Always a pleasure, my friend.

Spin.  8)
Title: Re: Coding requests galore
Post by: Sp1N-D1zZy on Aug 26, 09:54 AM 2015
There was a very small error when which I've fixed...

Happy experimenting,

Spin.  8)




system "Rolletti's Thirds"
{
*************************************
*         System by Rolletti        *
*         on rouletteforum.cc       *
*************************************
         Rx-ed by Sp1N-D1zZy
-------------------------------------
          not 00-c0mpatible
-------------------------------------
Track spin results until 1 number hits the third time.
Flat bet 1 unit on all numbers that have hit 3 times until one of them hits
for a fourth time. Then reset and start from scratch.
If there did not hit any number for three times until spin 36, start from scratch.
If not any number of the 3 time hit numbers hits a fourth time until spin 37,
start from scratch.
-------------------------------------
}
method "main"
begin
while starting new session
    begin
    call "Init"
    exit
    end
call "eval"
call "bet"
end

method "reset"
begin
clear all records
call "init"
exit
end

method "eval"
begin
if any number bet won each
    begin
    call "reset"
    end
end

method "track"
begin
add 1 record "Count2"data
if record"Count2"data = 37
    begin
    call "reset"
    end
put 1 record"Single Wheel"layout index
put 1 record"Track"data index
loop until record"Single Wheel"layout index > record"Single Wheel"layout count
    begin
    if record"Track"data >= 3
        begin
        put 1 record"Single Wheel"layout
        end
    add 1 record"Single Wheel"layout index
    add 1 record"Track"data index
    end
end

method "bet"
begin
add 1 record"Count"data
track last number for 1 record"LastN"layout
put 1 record"Single Wheel"layout index
put 1 record"Track"data index
loop until record"Single Wheel"layout index > record"Single Wheel"layout count
    begin
    copy record"Single Wheel"layout record"Temp"layout
    if record"Temp"layout list pattern match record"LastN"layout
        begin
        add 1 record"Track"data
        end
    add 1 record"Track"data index
    add 1 record"Single Wheel"layout index
    end
put 1 record"Track"data index
loop until record"Track"data index > record"Track"data count
    begin
    if record"Track"data = 3
        begin
        call "track"
        exit
        end
    add 1 record"Track"data index
    end
if record"Count"data = 36
    begin
    call "reset"
    end
end

method "Init"
begin
load single wheel
copy list [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,
26,27,28,29,30,31,32,33,34,35,36] record"Single Wheel"layout
end


Title: Re: Coding requests galore
Post by: Redherring on Sep 26, 04:20 PM 2015
Hi!

Are you able to write the code for this so it can be left to run?!

link:://:.rouletteforum.cc/index.php?topic=15810.0 (link:://:.rouletteforum.cc/index.php?topic=15810.0)

Thanks
Title: Re: Coding requests galore
Post by: spiderxro on Nov 30, 03:15 PM 2015
Hi,

I'm new to the forum and just found the RX software a few days ago.
I'm not good at coding so i would like to ask you if you could code a system for me.
I have tried this system on paper for more than 20000 live spins and i would like to test it with the RX software a bit more.
First: starting bet 1 unit, next bets are progressive 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048 (i will try with other type of bets, just please code it like this and i will change after)
bet limit 2500 units

we will bet on red or black, depending on outcome
(if at anytime we hit a zero or double zero or three we will bet the color that was before the zero)

we wait for 2 consecutive colours ex red red, then we place 1 unit on red,
if we win, we place 1 unit on same colour ( 1 on red)
if we lose we place 2 units on same colour (2 on red)
if we win we place 1 unit on same colour (1 red)
if we lose we place 4 units on the previous colour (4 black)
if we win we place 1 unit on black (1 black)
if we lose we place 8 units on black (8 black)
if we win we place 1 unit on black (1 black)
if we lose we place 16 units on red (16 red)
if we win we place a bet on 1 re (1 red)
if we lose we place 32 units on red (32 red)
if we win we place 1 unit on red (1 red)
if we lose we place 64 units on red (64 red)
if we lose we place 128 units on red (128 red)
if we win we place 1 unit on red (1 red)
if we lose we place 256 units on last colour (256 black)
if we win we place 1 unit on black (1 black)
if we lose we place 512 units on black (512 black)
if we win we place 1 unit on black ( 1 black)
if we lose we place 1024 unit on black (1024 black)
if we win we place 1 unit on black (1 black)
if we lose we place 2048 on red (2048 red)
if we win we place 1 unit on red
if we lose we end session


Example

red
red
1 unit on red (we lose)
2 units on red (we lose)
4 units on black (we lose)
8 units on black ( we lose)
16 unit on red ( we lose)
32 units on red ( we lose)
64 units on red (we lose)
128 units on red(we lose)
256 units on black ( we lose)
512 units on black ( we lose)
1024 units on black (we lose)
2048 units on red (we lose)

I know it sound a little weird but on paper it worked great, that's why i would like to test it more.
Basically for the worst case scenario we wait for 2 spins of same colour, we bet 2 time that colour, we bet 2 time the oposite colour that we lost to, again 4 bets on previous colour, next 3 previous colour, next 1 previous colour.
In case of any win we start from 1 unit.

i would like this system to work based on any starting colour.
Also , if there would be any way we could wait for 5 spins after 6 consecutive losses ( this would be a option that we could turn on or off

Thank you very much and i hope you understand what i have written
Title: Re: Coding requests galore
Post by: Normy2000 on Nov 30, 04:50 PM 2015
Quote from: spiderxro on Nov 30, 03:15 PM 2015
if we lose we place 2048 on red (2048 red)
if we win we place 1 unit on red
if we lose we end session
Good idea to stop after losing 4095 units trying to win 1 unit.  :o ;)
Title: Re: Coding requests galore
Post by: spiderxro on Nov 30, 05:40 PM 2015
Hi,

Just to let you know from over 20000 live spins i haven't reached a 2048 bet.... i know it sounds crazy, i just want to test and tweak this system more easily,
Title: Re: Coding requests galore
Post by: Normy2000 on Nov 30, 05:45 PM 2015
Glad to hear that!  :thumbsup:
Title: Re: Coding requests galore
Post by: spiderxro on Nov 30, 06:08 PM 2015
here is a printscreen of testing this system on a xls simulator today.
That's why i want an easier way to test this.
Hope you understand

I see that you have quite a knowledge of these systems, could i ask you if you know of a system to bet  on the opposite colour after 10-12 spins of the same colour? it would be nice to use such a system with a bot on a few tables, as waiting is quite boring.

Thank you!
Title: Re: Coding requests galore
Post by: woody59 on Jan 02, 01:45 AM 2016
Hi Sp1N-D1zZy,

I am looking for somebody to code my system that would hopefully be reasonably simple to do. It would simply involve counting the un-hit numbers over a certain number of spins. Once this number of spins has been reached it would show the un-hit numbers left to bet. Every subsequent number spun and recorded would create a new set of numbers to bet on based on the same 'x' number of spins.

Unfortunately I have been unemployed since May 2015 (too much time on my hands  :whistle:) so would be unable to pay you BUT obviously I would be more than happy to share the system. It is based on one of the few 'given facts' in roulette that happen 'more often than not' and involves waiting until the 'odds are positively in your favour'.

If you feel that this is a project you would like to take on then please PM me asap. As previously said it is a simple matter of counting input spins, further details/pictures can be sent by request.

Thank you for your time and I look forward to hopefully speaking to you soon.

Kind Regards,
Kevin.
Title: Re: Coding requests galore
Post by: icashbot on Mar 25, 09:20 PM 2016
hi spin how are you?
are you still coding could with some help

pm me please if so thanks

icashbot
Title: Re: Coding requests galore
Post by: oasislv on Jul 26, 04:47 PM 2016
I finished a program in basic and ran it through Zumma's 15k spins, my computer's own 15k random spins and a downloaded file of 2 million spins. profit consistently around 30%. recently purchased xtreme a few days ago to test system on it. Am still learning though! Any coders would be sincerely appreciated. it is a dozens system built around a 1 chip investment per spin...
Title: Re: Coding requests galore
Post by: FreeRoulette on Aug 29, 12:33 PM 2016
Do you think if someone filled out a form with keywords, that you could aitomatically create the rx program?

For example, very simple case. Bet 2 units on red.

In this case, the first spin will bet 2 on red. then nothing happens after.
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 29, 06:03 PM 2016
I code basic and Rx, contact me... "support at norcosoft dot com"
Title: Re: Coding requests galore
Post by: BellagioOwner on Aug 29, 08:32 PM 2016
I have a pretty easy system on my mind that would like to code if anyone is still actually coding in this thread :)
Title: Re: Coding requests galore
Post by: mogul397 on Aug 29, 08:48 PM 2016
Quote from: oasislv on Jul 26, 04:47 PM 2016
I finished a program in basic and ran it through Zumma's 15k spins, my computer's own 15k random spins and a downloaded file of 2 million spins. profit consistently around 30%. recently purchased xtreme a few days ago to test system on it. Am still learning though! Any coders would be sincerely appreciated. it is a dozens system built around a 1 chip investment per spin...

What is the system that profits 30%?
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 29, 10:55 PM 2016
Quote from: mogul397 on Aug 29, 08:48 PM 2016What is the system that profits 30%?
Quote from: BellagioOwner on Aug 29, 08:32 PM 2016I have a pretty easy system on my mind that would like to code if anyone is still actually coding in this thread
I do...
Title: Re: Coding requests galore
Post by: BellagioOwner on Aug 30, 06:42 PM 2016
Quote from: Normy2000 on Aug 29, 10:55 PM 2016I have a pretty easy system on my mind that would like to code if anyone is still actually coding in this thread
I do...

Nice to hear Normy. :) I have a very basic and one a bit more complicated. Both are pretty basic though. Let's just only speak about the very simple one. I have actually just posted a thread (Binary Long-Run System) about.

In simple words what I need is to wait for Red to come 2 times in a row and then bet Black for the next 6 spins after the RR. That's all folk. :)

Do I just import it somehow to Rx? I have no idea about it since most of my systems and ideas I just check them on excel. If you need I have some .txt files with millions of random spins. Like 10millions+
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 30, 07:08 PM 2016
Quote from: BellagioOwner on Aug 30, 06:42 PM 2016I have actually just posted a thread (Binary Long-Run System) about.

In simple words what I need is to wait for Red to come 2 times in a row and then bet Black for the next 6 spins after the RR. That's all folk.

Do I just import it somehow to Rx?
From the thread, i understand this:
i see RR, i play B 6 times in a row, flatbet, stop on a win ?, wait next trigger.
If this ok, 30$ (paypal to support at norcosoft dot com)

I will send oyu the Rx file, you save it to your Rx\designer folder and load it...
or i can also send you the code by email, then you copy and paste it into Rx system editor.

Regards, Normand


Title: Re: Coding requests galore
Post by: RouletteGhost on Aug 30, 07:24 PM 2016
Hey normy

I think its bet 6 times after RR on B for 6 full times regardless of wins and losses
Title: Re: Coding requests galore
Post by: Steve on Aug 30, 07:33 PM 2016
Normy if you publish email addresses on sites, spam bots will pick them up and you'll get heaps of spam.
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 30, 08:36 PM 2016
Quote from: Steve on Aug 30, 07:33 PM 2016Normy if you publish email addresses on sites, spam bots will pick them up and you'll get heaps of spam.
Thanks, i'll be carefull  :thumbsup:
Cant modify the post, can you remove it please?   :sad2:

Title: Re: Coding requests galore
Post by: BellagioOwner on Aug 30, 10:12 PM 2016
Yes.  It's as RG said. You wait for RR and then flat bet 6 times B. No matter wins or losses positive or negative balance you stop betting after 6B bets.  You then wait again for the RR trigger and repeat same  betting pattern on B etc  etc.

I thought I would get the results or a file with the results.  Sorry.  Have to download RX and see his it works first but once I'm done I can email you ;)

Title: Re: Coding requests galore
Post by: Normy2000 on Aug 31, 04:15 PM 2016
Does the bettting look ok:

(link:://:.pichost.org/images/2016/08/31/temp_192243.png) (link:://:.pichost.org/image/s6ZA)

If yes, it look bad:
(link:://:.pichost.org/images/2016/08/31/temp_922419.png) (link:://:.pichost.org/image/s0ui)

I did a 1Million test and it look the same...  :'(
Title: Re: Coding requests galore
Post by: BellagioOwner on Aug 31, 06:13 PM 2016
Yes.  It's (unfortunately   :P ) the exact pattern described.  O well.  I never said or claimed it could be holy grail.  I know it would defy logic and built-in house edge.

But though in theory that I explained I still can't see its flaw to be honest :/

Thanks for testing out for  1M . You saved me tons of time on excel. I never test with real money before having tested THOROUGHLY on paper :)
Title: Re: Coding requests galore
Post by: BellagioOwner on Aug 31, 06:16 PM 2016
PS: Are all these done and tested in RX?  Damn I must learn to code on that.  Hehe  :)
I think there is a manual, right?
Title: Re: Coding requests galore
Post by: Turner on Aug 31, 06:25 PM 2016
Quote from: Normy2000 on Aug 30, 08:36 PM 2016
Thanks, i'll be carefull  :thumbsup:
Cant modify the post, can you remove it please?   :sad2:

I modified it...people will get it...bots wont
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 31, 07:18 PM 2016
Thanks Turner  :thumbsup:

Quote from: BellagioOwner on Aug 31, 06:16 PM 2016
PS: Are all these done and tested in RX?  Damn I must learn to code on that.  Hehe  :)
I think there is a manual, right?
Yes there is a lot of examples, this is how i learned it.  >:D
Easy if you have a base in any other language.  O0

Sample code: This is your RR trigger coded:
(very short code, that's why it's free  ;D)
[reveal]
system "Bellagio RR Trigger"
// Coded by: nOrMy2o0o

method "main"
begin
    while starting a new session
    begin
        clear record "Last 2 red/black" layout
        set flag "BetStarted" to false
    end

    track last Black-Red for 2 spins to record "Last 2 red/black" layout

    if record "count-bets" data = 6
    begin
        clear record "Last 2 red/black" layout
        set flag "BetStarted" to false
        put 0 on record "count-bets" data
    end

    if flag "BetStarted" is false
    begin
        if number 0 hit 1 time
        begin
            clear record "Last 2 red/black" layout
        end

        if List [Red, Red] has a pattern match on record "Last 2 red/black" layout
        begin
            set flag "BetStarted" to true
        end
    end

    if flag "BetStarted" is true
    begin
           Put 1 on black
           add 1 on record "count-bets" data
    end
end
[/reveal]
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 31, 07:25 PM 2016
@Turner,
I just notice post #22 have my email too, would you please...  :embarrassed:
Title: Re: Coding requests galore
Post by: Normy2000 on Aug 31, 07:31 PM 2016
Quote from: BellagioOwner on Aug 31, 06:13 PM 2016But though in theory that I explained I still can't see its flaw to be honest :/
I agree, it was "theorycly" looking logic...  8)
Title: Re: Coding requests galore
Post by: Turner on Sep 01, 03:40 AM 2016
Quote from: Normy2000 on Aug 31, 07:25 PM 2016
@Turner,
I just notice post #22 have my email too, would you please...  :embarrassed:
Done :thumbsup: