Our members are dedicated to PASSION and PURPOSE without drama!

Paranoic!!! mehods for Paranoic!

Started by Ralph, December 08, 2012, 05:01:24 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Ralph


This method is for those , who think the casino adopt the numbers reading the bets. I do not think BV do this, but I know a lot of people have suspections.


The Paranoic  method bet always a random number, and use a medium negative progression. If hit and goes to new high at the first win (almost sometimes it will need two hits to spare higher progressions, on a probally hot number).


You set the win target just one units over the starting bank, the bot is to stop at first hit, which in most cases are new high.


I use to publish the scripts, so anyone  how can improve it can do so.


Code (javascript) Select

var betcount = 0;

var winloss = 0;
   function extfunc(number,betsize,bet){
     var a = Math.floor((Math.random()*36)+0);
     var temp= bet.split(",");
     betcount++;
     if(a == number) winloss = winloss * 35;  else winloss = winloss -1;
     if(betcount % 27 == 0 && winloss < 0){ 
     


         ret="";
        for(i=0;i<temp.length+1;i++) {  ret = ret + a + "," };
         return  ret + "/" + betsize;
         alert("h");
     } else {
         ret="";
        for(i=0;i<temp.length;i++) {  ret = ret +  a + ","};
         return  ret + "/" + betsize;
     }


   }