• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

Every system can win in the short-term. It just depends on the spins you play.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

JavaScript to code a Roulette Bot - 2019

Started by webstars, Apr 15, 02:32 PM 2019

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

webstars

Hello friends,

after many years of using flashplayer to view a live roulette table it is now available via HTML5  :twisted:

So this means every number on the table can be read by javascript in the Web-Developer Console.
Maybe anyone have not figured it out yet how to do it.

So you dont need any text recognition or some other things to get statistics/last numbers from a table.
I can get the last 500 spins with one jQuery javascript command:
$('div[data-role="statistics"]')


And clicking is also no problem. It is like this:
$('number36').click()

I show you small session of my javascript bot that runs directly in the browser:


If you have any questions feel free to ask.

Best regards

webstars

Here is my javascript function that makes me money in JavaScript. No bot or anything needed. :)
It runs without problems of screensize or you dont need to have tab open and you dont need mouse free to click on thinks. Everything is done by javascript :)

Have fun :)

async function goBabyMakeCash() {
  console.log("OK $$$ ",$("div[data-role='status-text']").textContent);
  while(1) {
  if ($("div[data-role='status-text']").textContent == "PLACE YOUR BETS"){
    var lastGame = $(".title--31zOh").textContent;
    if (lastGame=="LAST WIN") {

        console.log("WIN");
        if(rebet<0){
          console.log("Rebet WIN");
          if(lastbet==0){
              lastbet=currentBet;
              currentBet *= 1.5;
              console.log("lastbet ",lastbet,"currentBet ",currentBet);
          }else{
              currentBet *= 1.5;
              console.log("lastbet ",lastbet,"currentBet ",currentBet);
          }
          rebet += 1;
        }else{
          rebet=0;
          lastbet=0;
          currentBet = startBet;
          console.log("Reset lastbet ",lastbet,"currentBet ",currentBet);
        }
      console.log('We won, so next bet will be', currentBet, 'bits'  );
      console.log('Rebet ',rebet,'Lastbet',lastbet);
      //rand = randomNumber();
      var minBet= checkBetMin();
      var maxBet= checkBetMax();
      for(var i=1;i<currentBet+1;i++){
        $('ul.percent-bar--ttjXS:nth-child(2) > li:nth-child('+(minBet+1)+') > div:nth-child(2)').click();
        //$('ul.percent-bar--ttjXS:nth-child(2) > li:nth-child('+(maxBet+1)+') > div:nth-child(2)').click();
        console.log("click",(minBet+1), " and ", (maxBet+1));
      }
     
      await Sleep(20000); // Pausiert die Funktion für 3 Sekunden
    } else {
      // damn, looks like we lost :(
     
        console.log('Rebet ',rebet,'Lastbet',lastbet);
        if(rebet>0){
          currentBet=lastbet;
          currentBet *= 1.45;
          lastbet=0;
          console.log("lastbet ",lastbet,"currentBet ",currentBet);
        }else{
          currentBet *= 1.45; 
          console.log("lastbet ",lastbet,"currentBet ",currentBet);
        }
        rebet=0;
     
      console.log('We lost, so next bet will be', currentBet, 'bits');
      if (currentBet > stopLoss) {
        console.log('Was about to bet', currentBet, 'which triggers the stop');
        currentBet = startBet;
      }
      var minBet= checkBetMin();
      var maxBet= checkBetMax();
      for(var i=1;i<currentBet+1;i++){
        $('ul.percent-bar--ttjXS:nth-child(2) > li:nth-child('+(minBet+1)+') > div:nth-child(2)').click();
        //$('ul.percent-bar--ttjXS:nth-child(2) > li:nth-child('+(maxBet+1)+') > div:nth-child(2)').click();
        console.log("click",(minBet+1), " and ", (maxBet+1));
      }
     await Sleep(20000); // Pausiert die Funktion für 3 Sekunden
   
    }
  }
  await Sleep(2000); // Pausiert die Funktion für 3 Sekunden
  }
}

webstars

Everything works automaticly in Firefox or Chrome. No other programs needed.

Just use your browser to make automatic Bets and read stats from the table your playing.

THIS IS REVOLUTIONARY FRIENDS!!!!!!!!!!!!!!!!!!!!!11111111!!!!!!!!!!!!!!1

:)

webstars


webstars


Herby

Hi webstars,
great work.

Could you show us a script to gather only fallen numbers, no bets ? 

Would be superb.
TNX
Herby

webstars

I will make a quick video for you :)

Quote from: Herby on Apr 15, 04:20 PM 2019
Hi webstars,
great work.

Could you show us a script to gather only fallen numbers, no bets ? 

Would be superb.
TNX
Herby

webstars

i will make a video later.
Just go in your browser, go to your roulette table.
Press F12 to open web developer console.
Go to "Console tab" and type:

$("div[data-role='recent-number']").textContent


output:
$("div[data-role='recent-number']").textContent
"20"

Viola

IS THIS AWESOME?

webstars


webstars

My next todo is:

  • Make a bot for automatic withdraw :D
Best regards

webstars


Steve

"The only way to beat roulette is by increasing the accuracy of predictions"
Roulettephysics.com ← Professional roulette tips
Roulette-computers.com ← Hidden electronics that predicts the winning number
Roulettephysics.com/roulette-strategy ← Why most systems lose


webstars

My withdrawals today

Herby

Quote from: webstars on Apr 15, 05:01 PM 2019
Code: [Select]

$("div[data-role='recent-number']").textContent

Hi webstars,
I'm totally new to JavaScript. It didn't work for my online casino.

I try to find out their variable names. You have a tip how to do fast ?
TNX

-