Our members are dedicated to PASSION and PURPOSE without drama!

The script oneUpUntilPlus

Started by Ralph, December 11, 2012, 08:02:24 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Ralph

This is a simple script. It takes one kind of bet, and can take any kind. Like red a split or a line. It takes only one bet at the time. You can however start with more than one unit on the bet.


The script will add a chip to the bet every time a new spin will be done.  You add a chip until plus. To make the script run safe, you have to set the win target just ONE unit higher than the starting bank at the game account. Then the bot will run until you are plus or lost the risking balance.


Example   you start with two chips on EVEN(ee,ee), if you win the bot will stop. If you lose the first spin, the script will add a chip and bet one more, and continue so until you are on plus. It will add a chip every spin if it is a win or loss.


If you want to write script for the bot, this script is suited for study.


The script here will not check if you win or not, it just add a chip to the bet. It is the bot which check when you are on plus which terminate the session.
the script use the bet, split it up and fetch the first bet token, which it add to the incomming bet, and return.


The bet tokens are described in  http://betselection.cc/ralph's-bot/how-to-scripting-the-upcoming-bot/




The script:



function extfunc(number,betsize,bet){
      bet = bet.split(",");
     
       return bet + "," + bet[0] + "/" + betsize;
  }