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

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

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

Testing the bot using an EC flat bet method.

Started by Ralph, Oct 27, 07:50 AM 2012

Previous topic - Next topic

0 Members and 4 Guests are viewing this topic.

Ralph

In a session the EC hardly come out equal number. I have coded a method betting on all three EC:s.
The method is simple, bet on the most frequent of the three EC.s.

It do not need a script, it can be done using a pen and paper as well.

I will test using a win target of 5, and a stop at 25 as a beginning.

Did a few runs on both NoZero and Zero wheel with my bot. This won easy.
I will run a lot more  on both wheels, I use 0.01 on ZeroWheel and 0.5 on NoZero (he lowest).
It is flat betting, so it can not lose much fast, and if tests works, I will try with some higher value.

The bot can run, but it is still some to fix to make it easier to handle, I run it in debug mode, and check it during the play. What is to do is make it handle any malformed input, and make it more easy to understand how to use it.
The best way to fail, is not to try!

Stepkevh

Hi Ralph,

Mine is almost finished :-)

The only thing that i could'nt handle is that the roulette table itself is a flashgame.
And i cant get it forced in the webbrowser window, so i let it play in an openend explorer window
thats moved & resized over the webbrowser.

For the rest its completely okay  :thumbsup:
Just call me Stef ... its shorter then Stepkevh :-)

Tomla021

ralph are you switching bets  between the three e/c's?
"No Whining, just Winning"

Still

Quote from: Stepkevh on Oct 27, 08:08 AM 2012
Hi Ralph,

Mine is almost finished :-)

The only thing that i could'nt handle is that the roulette table itself is a flashgame.
And i can't get it forced in the webbrowser window, so i let it play in an openend explorer window
that's moved & resized over the webbrowser.

For the rest its completely okay  :thumbsup:

Hi Stephen,

Why can't a flashgame be handled?  Not sure what you mean by forced into the webrowser window.  You were not able to use the GUI? 

Still

Quote from: Ralph on Oct 27, 07:50 AM 2012
In a session the EC hardly come out equal number. I have coded a method betting on all three EC:s.
The method is simple, bet on the most frequent of the three EC.s.

It do not need a script, it can be done using a pen and paper as well.

I will test using a win target of 5, and a stop at 25 as a beginning.

Did a few runs on both NoZero and Zero wheel with my bot. This won easy.
I will run a lot more  on both wheels, I use 0.01 on ZeroWheel and 0.5 on NoZero (he lowest).
It is flat betting, so it can not lose much fast, and if tests works, I will try with some higher value.

The bot can run, but it is still some to fix to make it easier to handle, I run it in debug mode, and check it during the play. What is to do is make it handle any malformed input, and make it more easy to understand how to use it.

Hi Ralph,

What do you mean by malformed input? 

Ralph

Malformed input could be  betting number 37, try to bet over table limit, or  on line problems Anything unexpected must  be handled.
The best way to fail, is not to try!

Ralph

Quote from: Stepkevh on Oct 27, 08:08 AM 2012
Hi Ralph,

Mine is almost finished :-)

The only thing that i could'nt handle is that the roulette table itself is a flashgame.
And i can't get it forced in the webbrowser window, so i let it play in an openend explorer window
that's moved & resized over the webbrowser.

For the rest its completely okay  :thumbsup:

It is not easy, first I used the windownew event it was working for the demo only,
The extended window-newevent2  did help, but when its in the window it will crash on unload.
Had to write a extended class to override the problem, and set my own button for closing the game. In fact you can still not close the game from the bot, just close the casino down and next time the same session continue if starting again, the casino shut down the session after 24 hours or one week depending on game.. To end a session earlier we have to open the casino without the bot. I will soon deal with this problem. I never try to call the flash component, as I think we should never try to using the component and the HTTPSHeader.
The best way to fail, is not to try!

Ralph

Quote from: Tomla021 on Nov 01, 08:42 PM 2012
ralph are you switching bets  between the three e/c's?

I bet all three at the time, have done it many times, and it has not yet lost. It can however take many spins before winning 5 units.

A javascript below, can very easy be translated to any scripting bot.

Code (javascript) Select
var arr = new Array(6);
    var carr = new Array();
    arr[0] =0;
    arr[1] =0;
    arr[2] =0;
    arr[3] =0;
    arr[4] =0;
    arr[5] =0;
    var rarr=",1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36,";

    function extfunc(a,b,c){  //  a is the the winning last number, b is the amount bet, c is the bet.
          if(a == 0){return c + "/" + b;}
          carr= c.split(",");
          carr.sort();
          ret = "";
          var i=0;
          var ki=0;
          for(i==0;i<carr.length;i++){
              if(carr[i]== "ll"){
                  if(a<19){ arr[0] = arr[0] + 1;} else { arr[0] = arr[0]-1;}
              } else if(carr[i] == "ee" ){
                  if(a % 2 == 0) { arr[1] = arr[1] + 1;} else { arr[1] = arr[1]-1;}
              } else if (carr[i]== "rr"){
                  if(rarr.indexOf("," + a + ",") > -1){ arr[2] = arr[2] + 1; } else { arr[2] = arr[2]-1;}
              } else if(carr[i] == "bb"){
                     if(rarr.indexOf("," + a + ",") == -1){ arr[3] = arr[3] + 1;} else { arr[3] = arr[3]-1;}
              } else if(carr[i] == "oo"){
                      if(a % 2 == 1) { arr[4] = arr[4] + 1;} else { arr[4] = arr[4]-1;}
              } else if(carr[i]=="hh"){
                       if(a >18) { arr[5] = arr[5] + 1;} else { arr[5] = arr[5]-1;}
              }
          }
             
              if(arr[0]>arr[5]) ret = ret + "ll,"; else ret = ret + "hh,";
              if(arr[1]>arr[4]) ret = ret + "ee,"; else ret = ret + "oo,";
              if(arr[2]>arr[3]) ret = ret + "rr,"; else ret = ret + "bb,";
              ki = arr[0]+ arr[1]+arr[2] + arr[3] + arr[4] + arr[5];
           
         
         if(ret.length>0){
        if(ki<25 || ki>4){  // 25 is stop/loss  5 win target
              return ret + "/" + b; // return next bet and the value of the bet
          } else {
          return "XX/" + b;  // return a dummy bet which stops the bot
         }
     }
    }
The best way to fail, is not to try!

Tomla021

question 2. is there an amount that you look back and pick the majority? or is it Follow  the last on all 3?
I could see how this could be strong ---i was thinking of adding a positive progression ---get ahead a couple of units and restart
"No Whining, just Winning"

Ralph

It starts using the last outcome. I have thought of a positive progression, but wants to test it flat first.
The best way to fail, is not to try!

Tomla021

im looking thru 00 numbers and it clears fast w a positive --need a formula  where say one parlay or something breaks you even  or ahead, when you hit two of the 3 at the same time your way ahead and if all 3 hit at the same time your golden
"No Whining, just Winning"

-