Our members are dedicated to PASSION and PURPOSE without drama!

In Test an EC method

Started by Ralph, December 09, 2012, 05:49:03 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Ralph

The Test which currently is in the listbox (you may have to restart) is an EC method using negative progression. It is softer than double up, and will not recover a loss in  one spin. It follow the last.  It is for RED and BLACK only.


Start testing using 100 funs in game account and 10 to 20 more as win target.   Type  rr,rr if start with red otherwise bb,bb in the textfield, Click the metod Test in the listbox and check the checbox and start.


Tell me what you think, if it should be any change.


[code javascript]

var count=-1;
var rarr = new Array(1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36);
var pek = Array(3,3,5,5,8,8,13,13,21,21,34,34);
  function extfunc(number, betsize,bet){
    if(bet.substr(bet.length-1,1)==",") bet = bet.substr(0,bet.length-1);
win ="";
ret ="";
  if(count> pek.length-1) count= -1;
  bet = bet.split(',');
  if(bet[0]== "rr" && rarr.contains(number)){count=-1; return "rr,rr/" + betsize;} //win
  if(bet[0]== "bb" && !rarr.contains(number)){count=-1; return "bb,bb/" + betsize;} //win
  if(bet[0]== "rr" && !rarr.contains(number)) {count++; for(i=0;i<pek[count];i++){ret = ret + "bb,"} return ret + "/" + betsize;}
  if(bet[0]== "bb" && rarr.contains(number)) {count++; for(i=0;i<pek[count];i++){ret = ret + "rr,"} return ret + "/" + betsize;}
  }