I describe the method more in detail in the section for straight up bets.
The script takes the number to play, and return the same number. It plays the same amount until a hit. If hit it checks if the bankroll is minus, and if add one more. As always the bot will automatic be updated for all users as soon a new script is published.
var winloss = 0;
function extfunc(number,betsize,bet){
var bet = bet.split(",");
if(number== bet[0]){
winloss = winloss + (35 * bet.length);
if(winloss>0){
return bet[0] + "/" + betsize;
} else {
return bet + "," + bet[0] + "/" + betsize;
}
} else {
winloss = winloss - bet.length;
return bet + "/" + betsize;
}
}
Hi Ralph
Is that a dgt file for RX ?
Dave.
Quote from: D1 on December 03, 2012, 08:29:52 AM
Hi Ralph
Is that a dgt file for RX ?
Dave.
Welcome, Dave!!
Mate, no it's not a dgt file.
It's Javascript so it can run in a browser.
If I've got that wrong my apologies, and I'm sure Ralph will correct me!!
It is javascript, and it is made for the bot I have made. The bot will soon be publish for all to download. It is on beta test at a few testers currently.
As the bot use the casino balance it is easy to make scripts for it. Javascript is running on almost any computer, and many know it due to it is used on the web as well. If you write VBScript that will do as well.
Hey Thank you Esoito
and thank you Ralph
Single number plays do interest me a lot so will look forward to your release Ralph
Dave.