Our members are dedicated to PASSION and PURPOSE without drama!

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Ralph

#826
Ralph's Bot / Re: Last X number script.
December 09, 2012, 11:35:37 AM
Quote from: KingsRoulette on December 09, 2012, 11:02:35 AM
some numbers are wrongly coming in the bot as twice or thrice while they have come up once only.




Ho many numbers are you using? slow down the speed if using many numbers. I will try to fix this problem as soon as it is possible, it is not the script.
#827
Ralph's Bot / Re: Last X number script.
December 09, 2012, 10:37:01 AM



The bot can track and play. it can not only track.   The first set of numbers must be manually tracked, then the playimg bot will update the numbers.


I have a first version named Test in the bot now, if you not see it or it is an old test, restart the bot for updating.


The first manually tracked numbers are entered with comma as delimeter. The script will add the numbers during the play, and take away the oldest.


It is not tested very much, so you are testers, we may make changes.



Array.prototype.contains = function(obj) {
    var i = this.length;
    while (i--) {
        if (this == obj) {
            return true;
        }
    }
    return false;
}




  function extfunc(number,betsize, bet){
   if(bet.substr(bet.length-1,1)==",") bet = bet.substr(0,bet.length-1);
    bet = bet.split(",");
   
    var count = 0;
    if(!bet.contains(number)){
          bet[bet.length] = number;
          count= 1;
    }
    temp="";
 
    for(i=count;i<bet.length;i++){ temp = temp + bet  + ",";}
   
    return temp + "/" + betsize;
  }
#828
Quote from: Trebor on December 09, 2012, 09:00:59 AM
Ralph,

Your bot is a great piece of work.

One thing. If I increase the speed it starts recording the hit numbers twice. This is on single number.

Trebor
[/q[size=78%]uote][/size]

Yes all scripts can not run full speed, sometimes we have to slow down, depends on connections as well. 
#829
Ralph's Bot / Last X number script.
December 09, 2012, 08:36:17 AM
I have been asked if I could include a flat betting script betting the X last numbers spun as straight up.  I will try to fix it today.
#830
Straight-up / Re: Play just one number
December 09, 2012, 04:52:54 AM
I will leave this play for a while and investigating a good EC method.
#831
Quote from: KingsRoulette on December 09, 2012, 04:24:36 AM
This Martingale and Grand Martingale type of progressions are proven failures. We should try something lesser harmful.


If you are well informed sports betting has very low if any HE.   I would parly at 1.4 rate.
#832
General Discussion / What a difference in spins!!
December 09, 2012, 03:27:56 AM
Before I used a bot, I never did so many spins in short time, This is a long session betting EC more than 10000 spins. 


I have used the bot for about 90% of the spins.


They use to say, you will never worry for a method fail in a million spins, as nobody play millions of spins, but it is possible to do it in a month.
#833
Quote from: Buffalowizard on December 08, 2012, 08:12:43 PM
Ok no worries, thanks for the reply mate


may be but just maybe an upgrade of NET framework may help! Windows 7 is sure.
#834
Quote from: Buffalowizard on December 08, 2012, 08:01:13 PM
Hi Ralph, I have Vista.


When I try and open the bot file, I get a message that says "unable to find a version of the runtime to run this application"


Do you know if it is compatible with Vista at all?
Many thanks


Sorry Vista is a pain! An upgrade of Windows is needed to get it run.
#835
Straight-up / Re: Play just one number
December 08, 2012, 06:31:16 PM
Quote from: Juiced91 on December 08, 2012, 06:21:17 PM
I had a look at your bot but I don't know what to enter in all the open fields. Where can I find out? And also so let's say we start off on a 500 bankroll we have a hit so we now on 535 do we go to +2 or do we stay at 1??


Sam made a good video how to use the bot, look at my section for information.
#836
Straight-up / Re: Play just one number
December 08, 2012, 05:06:12 PM
Quote from: Superman on December 08, 2012, 04:33:29 PM
He adds 1 every win UNTIL ahead in bank then returns to 1 chip ....... I think, Ralph??


Yes!!!  Or lose the risking bankroll, which can happen, but not yet.


Play in fun mode using my bot  play real when you have got all knowlegde. The script is there.
#837
Straight-up / Re: Play just one number
December 08, 2012, 05:05:02 PM
Quote from: Bally6354 on December 08, 2012, 04:39:27 PM
It reminds me a bit of Winkel's 'win all you like' thread on the old VLS.

He was using the Fibonacci sequence however and betting DS.


Far from, I think you have not made a try
#838
Ralph's Bot / Paranoic!!! mehods for Paranoic!
December 08, 2012, 05:01:24 PM

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;
     }


   }







#839
Quote from: soggett on December 08, 2012, 01:04:45 PM
Thanks Ralph very much

I have 2 questions...
what is the name of the system where you bet just 1 number - is it the "single number"?

and I can't get the bot to place a chip on zero to start it
i can input rr and then it starts to bet red
but it kinda laggs and doesn't work right
I have framework 4.5 - maybe that it?


Some methods which track use red 0.01 while tracking, as BV not allow free spins.


If you want to play single mehod using one number  method, scroll down and you find it, put any number as start bet, that number you think will come frequent.


Net 4.5 is right it will work using that.
#840
Straight-up / Re: Play just one number
December 08, 2012, 12:38:24 PM
Quote from: subby on December 08, 2012, 11:38:44 AM
Ralph which option do I choose from the list to play this single number that this thread has shown.
[/quote


Pls scroll down and find "SingleNumber"