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

New System...eager to see tested

Started by Tate, November 25, 2008, 04:57:20 PM

0 Members and 1 Guest are viewing this topic.

Tate

I'm new to this forum (been reading for about a week now) but have learned a lot already.
I am also fairly new to online gambling and ran across a free ebook betting system and I would like to see if someone could code for me.  I have tried myself but am OBVIOUSLY no coder.

Also looking to see if anyone has any advice or experience with this type of play

Here's how it works:it has 2 parts

Part one:
Bet $1 on red and $1 on black evenly while keeping track of the dozens (I use H(igh), M(iddle), L(ow) for tracking). 
After 9 consecutive spins where a field does not show up, then bet that field using the following sequence starting on the 10th spin:
$8, 12. 16, 24, 36, 52, 78, 117, 175.

Part two: 
While tracking the fields, also track the columns.  After 9 consecutive spins and the column does not hit, use the same betting sequence as above for the column bets. 

Only do one bet at a time until you win.

Now, I have tediously tested this manually for 4K spins that I used a RNG to generate.  And the results were as follows:

Hits/wins:  Both Dozen Field and Column betting
10th spin: 73
11th: 44
12: 25
13th:14
14th: 16
15th:10
16th: 7
17th: 2
18th: 1
19th:  2 (BUST) Spin # 1381 and 3857
20th:  1 (BUST) Spin# 2147
21st:  0
22nd: 1 (BUST) Spin#3654
23rd:  1 (BUST) Spin #3271

Starting with a $600 BR, playing $1 chips and table max of $250.
Profit thru 4K spins and playing to 18th spin:  $1655 net

If I was to place a 19th bet of the table max of $250 and it hit, then I would net $2655
BUT, if went beyond 19th Spin then I would only net $387


To try to minimize the BUST spisn, I have considered starting my progression after spin # 10 or as high as 12.  However, as you can see above, this can leave a lot of money on the table as #10 thru 12 seem to hit the most frequent.  Of course, you can LOSE alot of money if you go beyond the 18th or 19th spin as well....guess that's why they call it gambling. ;D

I have considered placing smaller bets and having a longer string of progressions so I can survive a longer string of spins with no hits but have not yet calculated the possible results.

Like I mentioned in the beginning, just looking for help either with coding I can use in RX or any advice.

Happy to answer any questions if I can....

Thx








Tiago2

Hi tate, there may be a roulette coders showdown between myself and Breeze88. We need a system to code so I've sugested this one.

You can read about the showdown here >> nolinks://vlsroulette.com/other-software-for-roulette/nwrscripter-free-automated-roulette-program-create-any-system-you-want/

If the showdown happens and we code this system I'll post the script here so all can use. 4K spins mustta been a nightmare for you. Don't worry, having it automated you'll be able to get 10,000s very quickly.

-Tiago2

Tiago2

I've coded a script for this system to work with NWRScripter ( nolinks://vlsroulette.com/downloads/?sa=view;id=249 ).
I haven't included the placing $1 units on red and black. Playtech casino's offer free spins so I didn't think it was nessesary.

U will need to create a configuration for a Playtech casino first here's a video that shows u how >> nolinks://rapidshare.com/files/168636403/Untitled.wmv.html

Once the the configuration is complete. Load it from NWRScripter > Casino menu. Paste the below code into NWRScripter and click the green button to start playing. Have fun!


Uses
  ScriptUtils;
 
begin                               
  FieldCounters := [0,0,0,0,0,0];      //..This will keep track of the consecutive fields that don't show up. (Dozens and Columns)
  ProgrIdx := [0,0,0,0,0,0];           //..Progression Indexes for each category.
  Progr := [8,12,24,36,52,78,117,175]; //..Progressions
 
  TotalBets  := 0;  //..Used to only allow one bet at a time
  for i := 0 to 500 do
  Begin
    Click_Spin;                                        //..Spin the roulette wheel
   
    for Cat := Fst_Dozen to Thrd_Column do             //..Cycle throught the Dozens and Columns
    Begin                                             
      if NumInCat(NumberSpun,Cat) then                 //..If the number spun is in a particular Dozen or Column
      Begin             
        FieldCounters[Cat] := 0;                       //..Reset that Dozen or Column counters to 0
        if ProgrIdx[Cat] > 0 then                      //..Incase that category was betting and won   
        Begin                                                                                     
          ProgrIdx[Cat] := 0;                          //..Reset its progression Idx
          TotalBets := 0;                              //..Reset the total bets count                           
        End;
      End
      else FieldCounters[Cat] := FieldCounters[Cat]+1; //..Else Increase it by 1
         
      if FieldCounters[Cat] > 9 then                   //..If we have reached over 9 copnsecutive misses for that category
      Begin
        if ProgrIdx[Cat] > 0 then                      //..If that category is already betting
        Begin                                                                               
          if ProgrIdx[Cat] > 7 then                    //..If the category has reached the end of it progression without a win                                   
          Begin   
            Print('Progression have finished for '+CatToStr(Cat)+'. Betting system will no stop');  //..Let user knowprogression has ended
            Exit;                                                                                   //..Exit the betting system                                     
          End else                                     //..else if the progression hasn't ended yet
          Begin                                                                                   
            PlaceBet(Cat,Progr[ProgrIdx[Cat]]);        //..Place the a bet according to the progressions                                               
            ProgrIdx[Cat] := ProgrIdx[Cat]+1;          //..Increase the progression Idx ready for next round
          End;             
        End else if TotalBets = 0 then                 //..Else if category isn't already betting and total bets is 0
        Begin
          TotalBets := 1;                            //..Incease the Total bets to 1 as not to allow more then one bet at  a time                         
          PlaceBet(Cat,Progr[ProgrIdx[Cat]]);        //..Place a bet according to the progressions                                               
          ProgrIdx[Cat] := ProgrIdx[Cat]+1;          //..Increase the progression Idx ready for next round
        End;                                                                                       
      End;  //<- End of FieldCounters[Cat] > 9                                                   
    End; //<- End of Cat := Fst_Dozen to Thrd_Column
  End;  //<- End of
End;   

Tate

 ;D

Very cool.  Cant wait to see how it turns out.  Thx in advance for the help and I will be sure to share what I find out.  And yes, 4K spins manually was really no fun....

Tate

Just downloaded the video but for some reason can't get any sound.  I will try again on Tuesday at another computer and hope that helps.  Thx again for your time...

Also, I just use the internal RNG to do this correct?  I dont have to go to an online casino and run 10K spins do I?  Like I mentioned, fairly new and really new to system testing.  so if you can "idiot proof" any other items/steps I may need to take, much appreciated.  Im sure the video will help but some sound would really help...cant figure out why I cant get any sound when I can on other website videos and video attachments that I have to download

All my questions for now but no promises there wont be more...   :-\

VLSroulette


Tate

Okay, I am no computer genius but I can follow direction decently well...

BUT I STILL CANNOT GET ANY SOUND!!   >:(

I downloaded the K-lite Codex Full Version...I even downloaded VLC player and tried it there, no success... none with WMC, Real player, Media Player Classic...

I trully appreciate the help but what else can I do????


Tiago2

Lol, there is no sound to the video Im afraid. Its meant to just be a watch and follow video. Sorry this did your head in a bit.

KevinNash

Quote from: Tiago2 on January 23, 2009, 03:50:26 AM
Lol, there is no sound to the video Im afraid. Its meant to just be a watch and follow video. Sorry this did your head in a bit.

;D lol

KevinNash

-