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

IT & Software => Coding for Roulette => Topic started by: webstars on Apr 15, 02:32 PM 2019

Title: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 02:32 PM 2019
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
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 02:45 PM 2019
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
  }
}
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 03:55 PM 2019
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

:)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 03:59 PM 2019
Cashed 3000mBTC out:
(link:://:.pichost.org/images/2019/04/15/sourcee3913.png) (link:://:.pichost.org/image/e0I6F)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 04:02 PM 2019
Anyone need another video? :D
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: 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
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 04:30 PM 2019
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
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 05:01 PM 2019
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?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 15, 05:54 PM 2019
Here a quick video for you all :)

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 12:41 AM 2019
My next todo is:
Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 01:40 AM 2019
(link:://:.pichost.org/images/2019/04/16/source.png) (link:://:.pichost.org/image/e6wml)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on Apr 16, 02:32 AM 2019
(link:://:.pichost.org/images/2019/04/16/source7691b.png) (link:://:.pichost.org/image/e6Sqi)

3000 BTC? You're loaded.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 02:53 AM 2019
Quote from: Steve on Apr 16, 02:32 AM 2019
(link:://:.pichost.org/images/2019/04/16/source7691b.png)[/url

3000 BTC? You're loaded.
(link:://:.pichost.org/image/e6Sqi)

Of course  :wink:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 12:19 PM 2019
My withdrawals today
(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=25987.0;attach=40290;image)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 16, 12:45 PM 2019
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
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 01:28 PM 2019
looks like no one interested in this thread,
i close this thread if no one is interested.

For me, its a Revolution in Online casino.
Maybe you like to play with your old style by reading TCP Packets or using any OCR to get the actual numbers. Old School gamblers :twisted:

Is only Herby interested in this?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 16, 01:34 PM 2019
Hi webstars,

if one never tried to write programms this stuff is not so easy.
So many are just interested readers.
I'd say: keep on going  :thumbsup:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 01:34 PM 2019
Profit today so far 15000mBTC
i had 1 loosing streak -2300mBTC

Total Profit: 12700mBTC

(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=25987.0;attach=40290;image)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 16, 01:42 PM 2019
I underestimated the possibilities of JS too, 
So thanks again to show them.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 01:57 PM 2019
Quote from: Herby on Apr 16, 01:42 PM 2019
I underestimated the possibilities of JS too, 
So thanks again to show them.

The thing is: flashplayer is obsolete, so soon every casino will use HTML to view the Roulette tables.
Most of them allready did, yours too.
The Problem is no  one use it :D.

I havnt found this in the internet in any dark place. I just tried myself, as iam familiar with a lot of Programming languages, it is my job ;)

Now i try to share it with anyone who still use some old programming styles to get numbers from a table or placing bet by win32:gui

I think in 2 years every roulette bot will be written in Javascript.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 16, 02:30 PM 2019
Quote from: webstars on Apr 16, 01:57 PM 2019Now i try to share it with anyone who still use some old programming styles to get numbers from a table or placing bet by win32:gui

I contacted you by email;
If I get it running we can exchange casino numbers
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: RiseAgainst on Apr 16, 03:42 PM 2019
Hey webstar,

this is indeed a very nice method to automate betting. Cheers for that.

However i dont get it to work. I tried it also with Evolution Auto Roulette but i get an error.

$("div[data-role='recent-number']").textContent
TypeError: $(...) is null
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: shoust on Apr 16, 04:11 PM 2019
Quote from: RiseAgainst on Apr 16, 03:42 PM 2019
Hey webstar,

this is indeed a very nice method to automate betting. Cheers for that.

However i dont get it to work. I tried it also with Evolution Auto Roulette but i get an error.

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

Make sure you know the frame you're focusing on is the correct one. If you're on the Videoslots.com site for example and you have an account , the frame is the one called "undefined (livecasino.videoslots.com/)"

You can change the frame by clicking the dropdown named "top" in the console tab in Chrome.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 04:28 PM 2019
Quote from: shoust on Apr 16, 04:11 PM 2019
Make sure you know the frame you're focusing on is the correct one. If you're on the Videoslots.com site for example and you have an account , the frame is the one called "undefined (livecasino.videoslots.com/)"

You can change the frame by clicking the dropdown named "top" in the console tab in Chrome.

Hi shoust,

thanks for your advice
you are right:
If you are using casino which use "iframe" to embed the table, you need to open the iframe url in a new tab or do what shout said.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 16, 04:34 PM 2019
Quote from: RiseAgainst on Apr 16, 03:42 PM 2019
Hey webstar,

this is indeed a very nice method to automate betting. Cheers for that.

However i dont get it to work. I tried it also with Evolution Auto Roulette but i get an error.

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

open the iframe url in a  new tab and it will work :)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: RiseAgainst on Apr 16, 06:18 PM 2019
Quote from: webstars on Apr 16, 04:34 PM 2019
open the iframe url in a  new tab and it will work :)

Thanks that helped!
However the script just stops at following point now

OK $$$  IHRE EINSÃ,,TZE BITTE mobile:1:1254
Promise { <state>: "pending" }

no more output after this
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: shoust on Apr 16, 06:59 PM 2019
Quote from: webstars on Apr 15, 02:45 PM 2019
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 :)



How do you trigger the function? I'm guessing this is only part of the script? Also do you happen to be using a User Script extension like Greasemonkey/Tampermonkey for this?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 12:05 AM 2019
Quote from: RiseAgainst on Apr 16, 06:18 PM 2019
Thanks that helped!
However the script just stops at following point now

OK $$$  IHRE EINSÃ,,TZE BITTE mobile:1:1254
Promise { <state>: "pending" }

no more output after this

Thats perfect, so it did read the status of the table "IHRE EINSÃ,,TZE BITTE".
:thumbsup:
The Script i posted is just an example not a complete system.

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 12:11 AM 2019
Quote from: shoust on Apr 16, 06:59 PM 2019


How do you trigger the function? I'm guessing this is only part of the script? Also do you happen to be using a User Script extension like Greasemonkey/Tampermonkey for this?

I trigger the function by calling it after pasting my function in the console:
example:
function goMakeCash() {
   while (1) {
     if (WIN)
      console.log("WIN");
     } else {
      console.log("LOS");
     }
   }
}


then call it by: goMakeCash()


i did not use an User Scripts like Greasemonkey.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 12:19 AM 2019
check here:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 01:07 AM 2019
My bot runs since 48 hours non stop and i do cash!


(link:://:.pichost.org/images/2019/04/17/source.png) (link:://:.pichost.org/image/e9JWL)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 01:13 AM 2019
i bet every round not waiting for any patterns :)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Maui13 on Apr 17, 06:52 AM 2019
Hi hi,

Sent you a PM.   :thumbsup:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 01:22 PM 2019
Hi all,
I get a lot of pm.
Please ask your question in here so everyone know the answer

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 17, 01:22 PM 2019
Double post
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: quos on Apr 17, 03:23 PM 2019
Hello webstar, could you explain step by step your method please?

What calculations do I need to make in each step?

Thanks in advance!!!!
Regards!!
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Maui13 on Apr 18, 05:47 AM 2019
Quote from: webstars on Apr 17, 01:22 PM 2019
Hi all,
I get a lot of pm.
Please ask your question in here so everyone know the answer

Best regards

Hi,

You said you'll code our method, just wanted to follow up if you made some progress or not?

Regards,
Mauricio
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on Apr 18, 06:14 AM 2019
Quote from: Maui13 on Apr 18, 05:47 AM 2019
Hi,

You said you'll code our method, just wanted to follow up if you made some progress or not?

Regards,
Mauricio

Ciao Mauricio

I really hope that Webmaster shares with you the HG, you have waited long for it !

:xd:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Maui13 on Apr 18, 06:43 AM 2019
Quote from: Roulettebeater on Apr 18, 06:14 AM 2019
Ciao Mauricio

I really hope that Webmaster shares with you the HG, you have waited long for it !

:xd:

You truly amuse me, and for that I would like to thank you! The world needs people like you, otherwise it would be perfect and who wants to live in a perfect world. Would be boring. So thank you, for being YOU!
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: ahlidap on Apr 18, 12:26 PM 2019
Hi,

where can I find the complete code?
I can't see all code in the forst posts... it misses functions like checkBetMin, checkBetMax, Sleep...


I would like to test and if possible help improving.
Thanks
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 18, 02:10 PM 2019
Quote from: Roulettebeater on Apr 18, 06:15 AM 2019
Are you the new moron of roulette ?
Go to another thread my son.  8)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 18, 02:17 PM 2019
I just wanted to share the coding possibilties in the new world of roulette tables with Javascript.

I dont wanted to sell my system or anything.

But if you are really interested you can have it for 1 BTC :)

I LOVE TO CODE  :love:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 19, 02:47 AM 2019
Quote from: webstars on Apr 18, 02:17 PM 2019I just wanted to share the coding possibilties in the new world of roulette tables with Javascript.

Hi webstars,
you had a good start with the beginning of sharing JS code.
It's interesting, but now it gets a little bit thin with content.

So, I await you are  continuing to show code peaces as you are saying with the headline.
Tnx
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 19, 03:27 AM 2019
Quote from: Herby on Apr 19, 02:47 AM 2019
Hi webstars,
you had a good start with the beginning of sharing JS code.
It's interesting, but now it gets a little bit thin with content.

So, I await you are  continuing to show code peaces as you are saying with the headline.
Tnx

Hi,
i think i showed enough, if you know how to programm, you can code your own strategy.
Javascript is the easist language out there.
Google for jquery and javascript and you figure it out.
I will not share my strategy here, because this is also the wrong section to post a strategy :)

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 19, 03:37 AM 2019
I can also tell you.
There is NO STRATEGY for roulette. 
The Key is MoneyManagement and a good progression win ratio.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Apr 19, 03:38 AM 2019
Thanks for starting the topic.  :thumbsup:
I'm already middle in the stuff, there is enough out there.
I never expected that you show your strategy.

Happy Easter
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 19, 03:39 AM 2019
Quote from: Herby on Apr 19, 03:38 AM 2019
Thanks for starting the topic.  :thumbsup:
I'm already middle in the stuff, there is enough out there.
I never expected that you show your strategy.

Happy Easter

There is NO STRATEGY for roulette. 
The Key is MoneyManagement and a good progression win ratio.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 21, 03:52 AM 2019
My bot in action.
Watch how it make 1000mBTC in 5 minutes:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: quos on Apr 21, 09:27 AM 2019
Hello webstar, what is your keymanagement used and your progression? . do you share it?

Thanks!!!!!
Regards!!
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: ozon on Apr 21, 01:28 PM 2019
Question from a different side
I have been playing this casino feed for some time and I know perfectly well if you are using airball or live dealer and progression there
And you are profitable they are starting to  not accept your bets
What is your advice on it
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 24, 03:19 PM 2019
Quote from: ozon on Apr 21, 01:28 PM 2019
Question from a different side
I have been playing this casino feed for some time and I know perfectly well if you are using airball or live dealer and progression there
And you are profitable they are starting to  not accept your bets
What is your advice on it

So far i had no problems placing bets.  It happen 1 time every 100 bets.
It depents on the casino software you use i think.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on Apr 30, 09:24 AM 2019
Another Session with JavaScript bot

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Cristal2000 on Apr 30, 04:42 PM 2019
Quote from: webstars on Apr 30, 09:24 AM 2019
Another Session with JavaScript bot



Great job, congratulations!  Would it be possible to learn something?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on Apr 30, 04:57 PM 2019
Are you going to reveal your system or bot? If not, why post videos?

I suspect you are leading up to selling it.

And please stop spamming your video on unrelated threads.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on Apr 30, 05:28 PM 2019
Quote from: Steve on Apr 30, 04:57 PM 2019
Are you going to reveal your system or bot? If not, why post videos?

I suspect you are leading up to selling it.

And please stop spamming your video on unrelated threads.

he just bets rare events !
his bot is tracking different wheels

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on Apr 30, 06:06 PM 2019
You can't beat roulette with rare events. Your accuracy is unchanged. Its like seeing 10 reds in a row then betting red again.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on Apr 30, 06:07 PM 2019
I find it amazing this is still not understood.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Firefox on Apr 30, 06:22 PM 2019
Yep, rare events, pigeonholes, repeaters  etc ... all completely useless to gain any advantage.

To be fair he's said as much. There's no totally winning strategy. Just money management and progression. You can win for a fair while with that, with a bit of luck, before it goes tits up and crashes out.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 03:07 AM 2019
Quote from: Firefox on Apr 30, 06:22 PM 2019
Yep, rare events, pigeonholes, repeaters  etc ... all completely useless to gain any advantage.



To be fair he's said as much. There's no totally winning strategy. Just money management and progression. You can win for a fair while with that, with a bit of luck, before it goes tits up and crashes out.

Hi, yes rare events... i think i have an advandage with it, because i make a lot of money :)


How often do you see 6 times same dozen?
How often do you see RBRBRBRBRBRB or ODD EVEN ODD EVEN ODD EVEN ODD EVEN ODD EVEN?
It happens almost never. Nature is not balanced.

I bet on RED if the history shows 10 flipping numbers last 10 rounds like:
RED BLACK RED BLACK RED BLACK RED BLACK RED BLACK RED

This is rare events for example, and to wait on it on 1 table can take hours. So i play it on 22 tables :)

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 03:19 AM 2019
Quote from: Steve on Apr 30, 04:57 PM 2019
Are you going to reveal your system or bot? If not, why post videos?

I suspect you are leading up to selling it.

And please stop spamming your video on unrelated threads.

Hi, i allready show how i play. I just want to show the possibilities with JavaScript.

You can be happy that i share this, i think some people here, know how to use this.

Iam not up to selling something.

I spam because i needed attention. I have no friends neither online or offline. I didnt even have a cat. :)

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Firefox on May 01, 03:44 AM 2019
Quote from: webstars on May 01, 03:07 AM 2019I bet on RED if the history shows 10 flipping numbers last 10 rounds like:
RED BLACK RED BLACK RED BLACK RED BLACK RED BLACK RED

That's just fallacy territory.  Red or black are equally likely after this or any other sequence.

I'm surprised you are subscribing to such ideas, as you obviously have talents on the programming side.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 03:48 AM 2019
Quote from: Firefox on May 01, 03:44 AM 2019

That's just fallacy territory.  Red or black are equally likely after this or any other sequence.

I'm surprised you are subscribing to such ideas, as you obviously have talents on the programming side.

If anyone, have more experience in a good stable method to play, you can share it here, so i will make a bot and share it here.

But coming here and hating and saying the the method is shit, is unproductive. Why we all are here?

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 03:59 AM 2019
Anyway.

My Laptop currently has only 4GB RAM, thats why my computer lags a bit in recording. So i can do not much on my PC simultanesly. I can only play or scripting, but not at the same time atm. :)
   
I have made enough money that i have bought 16GB RAM and a SSD, which i get TOMORROW.   :smile:
Then i will start to work more on my bot and expand it.  :love:

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 04:07 AM 2019
Quote from: webstars on May 01, 03:48 AM 2019
But coming here and hating and saying the the method is shit, is unproductive. Why we all are here?

What If the method really is shit?
Call it awesome, to be polite?

What If it's so old and proven to fail, and has been posting here thousands of times before?

You won enough for 16gb ram. For many players that amount is a wager on 1 spin. Any winning is good, but you need more testing and learning. There are some experienced players here to help. The forum could use more coders.

Focus on coding systems for rapid testing.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 04:14 AM 2019
Quote from: Steve on May 01, 04:07 AM 2019
What If the method really is shit?
Call it awesome, to be polite?

What If it's so old and proven to fail, and has been posting here thousands of times before?

You won enough for 16gb ram. For many players that amount is a wager on 1 spin. Any winning is good, but you need more testing and learning. There are some experienced players here to help. The forum could use more coders.

Focus on coding systems for rapid testing.

Thanks for your kind response.
So far my method works well for me, i have some experience. And maybe you can see it in the topic that this is not a system that i share. I share knowledge for the programmers here.

I have 8 Methods in my bot currently.


If someone has a good method that i could program, please write here or contact me.
(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=25987.0;attach=40589;image)
Till now 4 GB was enough for me. I thought its a good a reason to upgrade my laptop :)
16GB ram + SSD = 130â,¬
This is my current winnings in 1 day Starting balance 50â,¬ end balance: 180â,¬

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 04:32 AM 2019
LAGGGGGIIIIINNNGGGG
(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=25987.0;attach=40591;image)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Firefox on May 01, 04:46 AM 2019
I didn't say it was shit. I said it was a fallacy method. That's just an accurate statement. It's the exact definition of a fallacy bet, LOL.

It's not shit, but offers you no advantage over any other random EC bet after any other sequence you care to mention, be it a rare or common one  :smile:
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Joe on May 01, 06:18 AM 2019
Quote from: Firefox on May 01, 03:44 AM 2019I'm surprised you are subscribing to such ideas, as you obviously have talents on the programming side.

I don't see why this should be so; you can be an ace programmer but be clueless when it comes to statistics and probability.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Firefox on May 01, 06:36 AM 2019
You can be, but it's more unlikely than likely. Programmers are generally logical, have a good grasp of  mathematics, and statistics too.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 06:44 AM 2019
If you have an idea, code it.
Running the program will tell you if your idea was shit.

That's why coders usually have good logic. But still if the programmer hasnt coded their understanding and tested,  they probably won't know better.

The result isn't opinion. Just like what does and doesn't work.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Joe on May 01, 07:04 AM 2019
I don't think it's helpful to criticize system players by saying they're not logical. Even though they may agree that the next spin is independent from the last and all outcomes are equally likely probability-wise, they see that (for instance) longer streaks are relatively rare, so "logically" it seems to make sense to bet that a short or medium length streak won't become a long one. The logic of independent and equally likely outcomes seems like mere theory whereas what you actually SEE is that there is a regularity (long streaks are "rare") so this becomes one of the favored MO's for system players. I'm not defending it, just saying that it only seems to be long experience which finally convinces people that those methods don't work.

And it doesn't help that most don't understand how to test properly. If you want to know whether your hypothesis is true you need  a "control" group, but most don't use one. If they ran a  parallel test betting randomly they would quickly see that there is no difference in the results.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 07:22 AM 2019
Quote from: Steve on May 01, 06:44 AM 2019
If you have an idea, code it.
Running the program will tell you if your idea was shit.

That's why coders usually have good logic. But still if the programmer hasnt coded their understanding and tested,  they probably won't know better.

The result isn't opinion. Just like what does and doesn't work.

I have allready coded and making money consistently with almost no progression... :)

I use 8 strategies on 22 tables :)
I look for patterns that almost "never" happen.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 07:25 AM 2019
Yes, you told us. You paid for new pc ram.

Your system works.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 07:26 AM 2019
Quote from: Steve on May 01, 07:25 AM 2019
Yes, you told us. You paid for new pc ram.

Your system works.

and a SSD. I use 8 systems and all over i make money :)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Joe on May 01, 07:34 AM 2019
Quote from: webstars on May 01, 07:22 AM 2019I look for patterns that almost "never" happen.

Can you show us some of these patterns? Just one will do.

Every pattern of the same length has the same probability as any other pattern. RRRRRR has the same chance as RRBRBB which looks more "random".
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 07:37 AM 2019
If you make money, keep doing it. But be open to the possibility it's just luck, and will run out.

You can prevent loss by properly testing first.

Based on what you've said about your system, it doesn't work. Pattern that never happen is classic fallacy.

RBRBRB happens just as often as RBRBBR and so on.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 07:39 AM 2019
Joe, some things appear to be true, based on a gut feeling. We are all human and have incorrect perceptions. Reality can be completely different. Testing reveals the truth. Proper testing.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 07:48 AM 2019
I tell you all my patterns:

In fact i use 7 systems.
They are:

1. i wait for 10 times where the color switch like: RBRBRBRBRB Then i bet on the last color. And progress 3 times
2. i wait for 10 times where the Over 18 and Under 19 switching like: OverUnderOverUnderOverUnderOverUnderOverUnder Then i bet on the last that hit. And progress 3 times
3. i wait for 10 times where the number change Odd and Even like:OddEvenOddEvenOddEvenOddEvenOddEven Then i bet on the last that hit. And progress 3 times
4. i wait for 6 dozens in a row and bet on the other 2
5. i wait for 6 columns in a row and bet on the other 2
6. i wait for 2 changing dozens 6 times like: dozen 1, dozen2,dozen 1, dozen2,dozen 1, dozen2, Then i bet on the last dozen and the one that never hit in this example last dozen is 1 i bet dozen 1 + 3. if lose 1 progression only
7. i wait for 2 changing columns 6 times like: columns 1, columns 2,columns 1, columns 2,columns 1, columns 2, Then i bet on the last columns and the one that never hit in this example last columns is 1 i bet columns 1 + 3. if lose 1, progression only.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 07:55 AM 2019
Quote from: Joe on May 01, 07:34 AM 2019
Can you show us some of these patterns? Just one will do.

Every pattern of the same length has the same probability as any other pattern. RRRRRR has the same chance as RRBRBB which looks more "random".

See above post :)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:02 AM 2019
Thanks for sharing webstars. But none of those work because the odds haven't changed. See my earlier example.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on May 01, 08:05 AM 2019
Quote from: Steve on May 01, 08:02 AM 2019
Thanks for sharing webstars. But none of those work because the odds haven't changed. See my earlier example.

Yes but only long term, if webstar plays 24 hours a day he will lose

But if he plays for short time, he might build up some good money
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:07 AM 2019
Quote from: Steve on May 01, 08:02 AM 2019
Thanks for sharing webstars. But none of those work because the odds haven't changed. See my earlier example.
please try before posting any anti post. Only because you are admin you are not knowing everything
Show me where you get your experience on this?

It works very well!!!
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:11 AM 2019
Roulettebeater, that's not quite correct. The truth is those systems change nothing. The short and long term results are NO DIFFERENT TO RANDOM BETS.

webstars, I believe you have won. That doesn't mean the system works.

I have a bit of experience. But don't just take my or anyone's word. Just do proper testing.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:16 AM 2019
Quote from: Steve on May 01, 08:11 AM 2019
Roulettebeater, that's not quite correct. The truth is those systems change nothing. The short and long term results are NO DIFFERENT TO RANDOM BETS.

webstars, I believe you have won. That doesn't mean the system works.

I have a bit of experience. But don't just take my or anyone's word. Just do proper testing.

Can you code the system in roulette xtreme and show me the results.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:19 AM 2019
I have other software. But there's also other software I published free so you can test for yourself. See link:s://:.roulettephysics.com/testing/
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:20 AM 2019
Use reputable spins to test, not excel as it has serious flaws. I suggest random.org

And besides, once you understand the principles, you understand what won't work and why. Roulette had lots of illusions.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: s813n0 on May 01, 08:27 AM 2019
Webstars, hi.
I just registered only to tell you I’ve unsuccessfully tested a system very similar to yours last month: Won 1019â,¬ by placing 0.10â,¬ bets in one day, lost everything in 2 hours the day after.

I can only suggest to simulate your theories on a very large dataset before you start losing money.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:31 AM 2019
Quote from: Steve on May 01, 08:20 AM 2019
Use reputable spins to test, not excel as it has serious flaws. I suggest random.org

And besides, once you understand the principles, you understand what won't work and why. Roulette had lots of illusions.

Hi thanks for your suggestion, but i dont play any numbers generated random from a computer.

I play real live roulette 22 tables, i think there is no software to test this, only by real playing.

My test last few days are very good making daily 50% - 100% profit

Also i use Linux. So i cant run your software.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:38 AM 2019
Quote from: webstars on May 01, 08:31 AM 2019
Hi thanks for your suggestion, but i dont play any numbers generated random from a computer

even i can do my own :)
Math.rand(0,36).
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:40 AM 2019
You're assuming the API is suitable. Im sure it's not what an online casino with RNG would use, for a reason.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 08:43 AM 2019
Also testing manually takes far too long to have enough data. You need suitable software to test.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:45 AM 2019
Quote from: webstars on May 01, 08:31 AM 2019
Hi thanks for your suggestion, but i dont play any numbers generated random from a computer.

I play real live roulette 22 tables, i think there is no software to test this, only by real playing.

My test last few days are very good making daily 50% - 100% profit

Also i use Linux. So i cant run your software.

What is RNG?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 01, 08:46 AM 2019
Quote from: Steve on May 01, 08:43 AM 2019Also testing manually takes far too long to have enough data. You need suitable software to test. 
i can do my own software.
Look:
$('div:[data-role="statistics"]').textContent

gives me last 500 spins from any live roulette table :)
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 01, 09:12 AM 2019
Quote from: webstars on May 01, 08:45 AM 2019
What is RNG?

Season 2 of Red vs Blue is on. Google RNG for now.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Firefox on May 01, 03:27 PM 2019
Quote from: webstars on May 01, 08:07 AM 2019
please try before posting any anti post. Only because you are admin you are not knowing everything
Show me where you get your experience on this?

It works very well!!!

It's  nothing to do with him being admin.

Simulate these type of system bets over 50,000 or 100,000 spins and you will be a big loser.

Yes over a few hundred or even thousand spins anything may happen including being ahead of the game.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 12:58 PM 2019
I want to share with you that i get from

4GB RAM to 16GB RAM now.
:smile: :love: :wink: :girl_to: :twisted: :lol:

(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=25987.0;attach=40646;image)
The world is mine. :D
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 01:13 PM 2019
Quote from: Firefox on May 01, 03:27 PM 2019
It's  nothing to do with him being admin.

Simulate these type of system bets over 50,000 or 100,000 spins and you will be a big loser.

Yes over a few hundred or even thousand spins anything may happen including being ahead of the game.

Please show where you get your meanings, dont repeat any admin or are you the bodyguard of him talking such a bs...

You cant test this because you cant! You are unable to test my system.
Because you cant do what i do!
Sorry, but you are to dumb maybe, because you repeat everyone who has more posts then you...
Just talking BS and promoting Roulette Xtreme  8)

Yesterday withdraw 9000mBTC
Today so far 5000mBTC in 1 hour


SHOW ME ONE TEST WITH 10.000 SPINS OF MY SYSTEM AND I WILL BELIEVE YOU!


Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 01:39 PM 2019
If you want to test my system you have to:
Get spins from time "x" to "y" from 22 tables.
Then test each table and calculate the Profit/Lose.
If you can do this. Come here and show me your results. If not: stfu please.

I think no one here can do this. Just blaming and talking bs, also the admin "Steve" cant do it.
He just trying to sell something from roulette-pysics. com

And the User "Firefox" tries to get a moderator, because he always repeat what "Steve" say.


Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on May 02, 01:46 PM 2019
Quote from: webstars on May 01, 08:38 AM 2019
even i can do my own :)
Math.rand(0,36).

You didn’t tell me how i implement this setting !
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on May 02, 01:48 PM 2019
Quote from: webstars on May 02, 01:39 PM 2019
If you want to test my system you have to:
Get spins from time "x" to "y" from 22 tables.
Then test each table and calculate the Profit/Lose.
If you can do this. Come here and show me your results. If not: stfu please.

I think no one here can do this. Just blaming and talking bs, also the admin "Steve" cant do it.
He just trying to sell something from roulette-pysics. com

And the User "Firefox" tries to get a moderator, because he always repeat what "Steve" say.

Webstars
If you method working for you, keep earning money and try to give less attention to what some people write !

Just my 2 cents !
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 01:57 PM 2019
Quote from: Roulettebeater on May 02, 01:48 PM 2019
Webstars
If you method working for you, keep earning money and try to give less attention to what some people write !

Just my 2 cents !

I just hate liar like Steve and Firefox

Trying to sell BS Roulette Xtreme where you can program with a 50 old programming language "Visual Basic" which is already obsolete.

VBA has nothing to do with WEB Programming.
All Casinos runs in WEB.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 02:39 PM 2019
Quote from: Roulettebeater on May 02, 01:46 PM 2019
You didn’t tell me how i implement this setting !

Here you have your own random number generator.

1. Open your WebConsole (F12)
2. Paste following code:
function createNumbers(needed) {
  for(var i=0;i<needed;i++) {
  console.log(Math.floor(Math.random() * 37));
  }
}

3. Call the function with the amount of numbers you want, example to generate 10 Random Numbers:
createNumbers(10)
Output:
createNumbers(10)
7
12
20
11
2
7
2
10
22
31

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 02, 04:44 PM 2019
Quote from: webstars on May 02, 01:39 PM 2019And the User "Firefox" tries to get a moderator, because he always repeat what "Steve" say.

Could it be we say the same thing because we're both correct?


Quote from: webstars on May 02, 01:57 PM 2019I just hate liar like Steve and Firefox Trying to sell BS Roulette Xtreme

Suggesting you use software for bulk testing makes us liars? Neither of us have any affiliation with rx. Be careful when you call people liars.

If you can code your own software for bulk testing, do it. Then you'll better understand you have the problem, not people with understanding of basics.

Why do many people lose their shit when they're told they're making a mistake? You know it's not just us saying the same thing. Its every educated mathematician and gaming professional in the world. Are we all selling rx? Wake up.  You have the problem not us.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 05:06 PM 2019
Quote from: Steve on May 02, 04:44 PM 2019
Could it be we say the same thing because we're both correct?


Suggesting you use software for bulk testing makes us liars? Neither of us have any affiliation with rx. Be careful when you call people liars.

If you can code your own software for bulk testing, do it. Then you'll better understand you have the problem, not people with understanding of basics.

Why do many people lose their shit when they're told they're making a mistake? You know it's not just us saying the same thing. Its every educated mathematician and gaming professional in the world. Are we all selling rx? Wake up.  You have the problem not us.

Ok,
Maybe i shouldnt call you liars, sorry.
Its ok what you do here. Making peoples to someone like you, who has no clue.
I have 16GB RAM and a SSD now. You will see soon something special from me :)
It will blow your mind.

Best regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: webstars on May 02, 06:06 PM 2019
Here a quick intro.

No lags now with my 16GB Ram :D

2 Tables +20% in 10Minutes.

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 02, 06:46 PM 2019
Webstars, are you selling anything related to roulette, or will you be selling anything? Selling is ok, but it must be done in the correct section.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Steve on May 02, 06:49 PM 2019
Quote from: webstars on May 02, 01:39 PM 2019I think no one here can do this. Just blaming and talking bs, also the admin "Steve" cant do it.

Sorry, I'm not clear on this. What cant I do?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: s813n0 on May 02, 07:59 PM 2019
If I can share my opinion too...

I think webstar’s idea of having a bot (even playing on multiple tables simultaneously) it’s a pretty good idea.

A natural evolution of this idea could be to develop this script as a chrome plugin. It shouldn’t take much effort, and it’s also Javascript-friendly.

..but I’m afraid that if and when this bot is going to be used witch the current strategy, it could be very harmful.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on May 03, 05:05 AM 2019
Quote from: webstars on May 02, 02:39 PM 20191. Open your WebConsole (F12)
2. Paste following code:

Hi Webstars,
mission completed, show us more from your code. I'm with it.
Could be a better invest of your energies.
Tnx

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: MrGagarin11 on May 06, 02:10 PM 2019
That's very impressive. Are you selling the script? 
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: pistolnoob on Jun 07, 07:11 AM 2019
Seems cool .Great job dude.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: 6th-sense on Jun 07, 08:30 AM 2019
Totally awesome..herby are you close to making something like this ? And Webstar could you actually use a different system to put in if you understood it ?
How complicated can you get to make choices for betting or is it limited to basic methods
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: pentalima on Jun 07, 09:37 AM 2019
I try it but can't read anything from local online casino here (Asia). Don't really understand javaScript.
I made one script for personal use though (python) using OCR. Getting old, too many programming language.
Try to sell my program, but offer is too low, custom software always more expensive.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jun 08, 12:53 AM 2019
Quote from: 6th-sense on Jun 07, 08:30 AM 2019herby are you close to making something like this ? And Webstar could you actually use a different system to put in if you understood it ?
How complicated can you get to make choices for betting or is it limited to basic methods
Hi 6th,
after more than 2 months studiing JavaScript almost from the scratch I'm ready to get the data and save them to a database.
There are no limitations for betting choices, except phantasy.
Webstars described a automated clicking problem which he solved with python. Here I have no knowledge until now.
It can all be done like webstars describes.
Cheers
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Joe on Jun 08, 08:08 AM 2019
I don't really see the point of a bot if you don't have a winning system. With a bot you'll just lose faster.  ::)

This is the way that Webstars plays :

QuoteIn fact i use 7 systems.
They are:

1. i wait for 10 times where the color switch like: RBRBRBRBRB Then i bet on the last color. And progress 3 times
2. i wait for 10 times where the Over 18 and Under 19 switching like: OverUnderOverUnderOverUnderOverUnderOverUnder Then i bet on the last that hit. And progress 3 times
3. i wait for 10 times where the number change Odd and Even like:OddEvenOddEvenOddEvenOddEvenOddEven Then i bet on the last that hit. And progress 3 times
4. i wait for 6 dozens in a row and bet on the other 2
5. i wait for 6 columns in a row and bet on the other 2
6. i wait for 2 changing dozens 6 times like: dozen 1, dozen2,dozen 1, dozen2,dozen 1, dozen2, Then i bet on the last dozen and the one that never hit in this example last dozen is 1 i bet dozen 1 + 3. if lose 1 progression only
7. i wait for 2 changing columns 6 times like: columns 1, columns 2,columns 1, columns 2,columns 1, columns 2, Then i bet on the last columns and the one that never hit in this example last columns is 1 i bet columns 1 + 3. if lose 1, progression only.

Surely the priority is to find a winning system and only then implement a bot. Does the above system win? I can't think of any reason why it should.  :-\
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: 6th-sense on Jun 08, 08:49 AM 2019
i,m not asking for to use his system..but maybe implement my own ..free up my time
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jun 08, 08:57 AM 2019
Quote from: Joe on Jun 08, 08:08 AM 2019I don't really see the point of a bot if you don't have a winning system. With a bot you'll just lose faster.
Hi Joe,
you are totally right.
I'm just fascinated about the possibilities of web programming with Java Script.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: byzel on Jul 10, 09:20 AM 2019
i was curious on the last 500 spins in the first post, but webstars never delivered a snippet to make it happen, so here is my version, for anyone actually collecting spins.
it does require the statistics tab to be open already

function last() {
var i;
var s="";
console.clear();
for (i=492;i>0;i--){
try { s+=$("div[data-role='statistics']:nth-child("+i+")").textContent;
s+="\n"; } catch{}
}
for (i=15;i>0;i--){
try{ s+=$("div[data-role='recent-number']:nth-child("+i+")").textContent;
s+="\n"; } catch{}
}
console.log(s);
}
last()

ps: if i add code in brackets, i'm posting external links?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: RayManZ on Jul 10, 01:15 PM 2019
I must say it's pretty awesome. But the longer the bot is active the more memory and cpu it takes. Kinda sucks. Can't run it 24/7. Any solutions?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jul 11, 05:34 AM 2019
Quote from: RayManZ on Jul 10, 01:15 PM 2019the longer the bot is active the more memory and cpu it takes
Hi RayManZ ,
which bot are you talking about ?
Did you program a bot on your own ?
I'm still in learning the depth of several programming languages and how to combine (communication) them effectively.
Greets
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: RayManZ on Jul 11, 06:34 AM 2019
Quote from: Herby on Jul 11, 05:34 AM 2019
Hi RayManZ ,
which bot are you talking about ?
Did you program a bot on your own ?
I'm still in learning the depth of several programming languages and how to combine (communication) them effectively.
Greets

Yes, made a bot. 131 lines of code. But it keeps eating ram. Maybe javascript is not the best solution for a 24/7 bot.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jul 11, 08:42 AM 2019
Quote from: RayManZ on Jul 11, 06:34 AM 2019131 lines of javascript code
Looks great.
How did you solve the click problem ?

If you asked me, I wouldn't run a bot 24/7.
If you loose - no problem.
If you win, you used unallowed help - no money ...
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jul 12, 06:48 AM 2019
RayManZ with Super Forces:

Local time: 6:37
Last Active: 6:50    >:D

(link:://:.pichost.org/images/2019/07/12/source.png) (link:://:.pichost.org/image/wRQ2L)

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jul 26, 08:22 AM 2019
Hi Webstars,
3 1/2 months later , success.
Automated gathering of data, calculation, click on the website at the right  :thumbsup: positions.
For convenience reasons I work with 4 interacting programms.

Now the bot can loose for me, I don't have to play this boring game.
Credit to webstars
Good luck
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: adilkldrm on Oct 18, 11:47 PM 2019
do you share codes
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Oct 20, 11:12 AM 2019
Quote from: adilkldrm on Oct 18, 11:47 PM 2019do you share codes
I needed 4 programs, 3 different programming languages to get a result for one gaming site.
So raymanz and/or webstars are the better source.
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Roulettebeater on Feb 05, 01:14 PM 2020
Hey Webstars,

i just saw your youtube videos!
Man, you are a legend! 
i have an infallible system, the only thing is that it takes long to place bet
i would like to automate it with one of your Bot..

Could you please help? if you help me, you will be the only one who knows how my strategy works.. i can assure you it 100% profitable.

Looking forward to your reply.

Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: nakhoda on Apr 13, 04:58 PM 2020
(//)

Why i have Error?
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jun 21, 06:45 AM 2020
Quote from: azertyuioprout on Jun 21, 05:24 AM 2020if you interested you can look at our script

Hi ,
I just saw the results of your working script , but not the script itself (I didn't watch all of the video, only parts).
I would be interested to look at your script.
Regards
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Clf7 on Jun 21, 08:17 AM 2020
Quote from: azertyuioprout on Jun 21, 05:24 AM 2020
Hello there, if you interested you can look at our script :



If you have some suggestion feel free to contact me (mail in the description)

You need first a winning method, but as i understand you make money with your services
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: ms on Jul 17, 11:46 PM 2020
New to JavaScript.
Anyone know how to click on a certain number, let’s say I want to bet on number 36, I can’t get right syntax.
Probably missing by a mile in the chrome F12 console on evolution gaming:
$(‘div[data-bet-spot-id=‘36’]’.click();
Any advice? Thanks
Title: Re: JavaScript to code a Roulette Bot - 2019
Post by: Herby on Jul 25, 03:09 AM 2020
Quote from: ms on Jul 17, 11:46 PM 2020click on a certain number

I got the working tip from "webstars" to click with the programming language Python.

But as CLF7 writes: "You need ... a winning method"

otherwise its just the fun to get something to work