• 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 1 Guest are viewing this topic.

webstars

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?

Herby

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:

webstars

Profit today so far 15000mBTC
i had 1 loosing streak -2300mBTC

Total Profit: 12700mBTC


Herby

I underestimated the possibilities of JS too, 
So thanks again to show them.

webstars

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

Herby

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

RiseAgainst

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

shoust

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.

webstars

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

webstars

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 :)

RiseAgainst

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

shoust

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?

webstars

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.


webstars

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

webstars


-