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

Roulette-focused => Bet selection => Topic started by: webstars on May 18, 07:10 AM 2019

Title: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 18, 07:10 AM 2019
Hello friends,

just want to share with you my newest bot enjoy !



Best regards
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: MrGagarin11 on May 18, 10:34 AM 2019
I like clever people  good job.  Silly question but does your work got price? Are you planning  to share with people?
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 18, 01:21 PM 2019
Hello friends,

here i share a +1000uBTC Session 10 Minutes :)

This time better  quality :)

Enjoy:



Best regards
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Loc on May 19, 07:51 AM 2019
First thing, can you get any edge in this game? Second thing, i am looking for people to work with me in roulette, i am trying to build a program for online roulette play, with physical wheels, are you interested?
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: meister245 on May 19, 10:01 AM 2019
edit: minified code

It's not impossible to simulate clicks on SVG objects, I took me forever to find an answer on stackoverflow, but it is possible.

function simulatedClick(t,e){let s=t.ownerDocument.createEvent("MouseEvents"),o=e||{},r={type:"click",canBubble:!0,cancelable:!0,view:t.ownerDocument.defaultView,detail:1,screenX:0,screenY:0,clientX:0,clientY:0,ctrlKey:!1,altKey:!1,shiftKey:!1,metaKey:!1,button:0,relatedTarget:null};for(let t in o)o.hasOwnProperty(t)&&(r[t]=o[t]);s.initMouseEvent(r.type,r.canBubble,r.cancelable,r.view,r.detail,r.screenX,r.screenY,r.clientX,r.clientY,r.ctrlKey,r.altKey,r.shiftKey,r.metaKey,r.button,r.relatedTarget),t.dispatchEvent(s)};
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Herby on May 20, 04:56 AM 2019
Quote from: meister245 on May 19, 10:01 AM 2019took me forever to find an answer on stackoverflow

Hi meister,
Many thanks for the code.
Do you still have the original link at stackoverflow. Would be great if you could post it.  :thumbsup:
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Firefox on May 20, 07:10 AM 2019
Quote from: Loc on May 19, 07:51 AM 2019
First thing, can you get any edge in this game? Second thing, i am looking for people to work with me in roulette, i am trying to build a program for online roulette play, with physical wheels, are you interested?

No way to get an edge at Sic Bo. Unless the dice are defective for some reason, but they replace them every session as they are low value items like cards. That's the attraction of a physical wheel as a RNG.

Also, nearly all the bets at Sic Bo are sucker bets with horrendous house edge of -10% or -20%.

The only thing you can sensibly bet on is high or low which has a similar edge to single 0 roulette.
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 20, 01:26 PM 2019
Quote from: meister245 on May 19, 10:01 AM 2019
edit: minified code

It's not impossible to simulate clicks on SVG objects, I took me forever to find an answer on stackoverflow, but it is possible.

function simulatedClick(t,e){let s=t.ownerDocument.createEvent("MouseEvents"),o=e||{},r={type:"click",canBubble:!0,cancelable:!0,view:t.ownerDocument.defaultView,detail:1,screenX:0,screenY:0,clientX:0,clientY:0,ctrlKey:!1,altKey:!1,shiftKey:!1,metaKey:!1,button:0,relatedTarget:null};for(let t in o)o.hasOwnProperty(t)&&(r[t]=o[t]);s.initMouseEvent(r.type,r.canBubble,r.cancelable,r.view,r.detail,r.screenX,r.screenY,r.clientX,r.clientY,r.ctrlKey,r.altKey,r.shiftKey,r.metaKey,r.button,r.relatedTarget),t.dispatchEvent(s)};

Thanks i will try :)

Did you try this? Where to pass the coordinates x and y?

The initMouseEvent is documented here: link:s://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/initMouseEvent

Unfortunally it did not work on SVG objects.
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: MrGagarin11 on May 20, 03:15 PM 2019
Mr Webstars, how i can reach you? I have send you few emails but no reply...
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Herby on May 20, 03:34 PM 2019
I found this but had no time to try:
Last answer:
link:s://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a (link:s://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a)
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 20, 07:44 PM 2019
Quote from: Herby on May 20, 03:34 PM 2019
I found this but had no time to try:
Last answer:
link:s://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a (link:s://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a)
This doesn't answer the question. I want to programmatically trigger a click event on an element. Not capture one.

I tried:
document.querySelector('#betspot_small').addEventListener('click', () => console.log('clicked'));
undefined
$('#betspot_small')
<rect id="betspot_small" x="0.5" y="0.5" width="128" height="114" rx="6">
$('#betspot_small').click()
TypeError: $(...).click is not a function[Weitere Informationen] debugger eval code:1:1
"get" oder "set" einer Eigenschaft mit [LenientThis] ignoriert, weil das "this"-Objekt fehlerhaft ist.
mobile
document.querySelector('#Gbetspot_odd').addEventListener('click', () => console.log('clicked'));
undefined
$('#Gbetspot_odd').click()
TypeError: $(...).click is not a function[Weitere Informationen] debugger eval code:1:1


Anyway clicking with python is not a problem :)
Title: JavaScript and Python Bot Making 100% every 6 hours
Post by: webstars on May 21, 03:24 PM 2019
Hello,

here a quick session of my system making 100% every 6 hours.

Running since 22 hours now non stop.

Enjoy.  :thumbsup:



Best regards
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 22, 12:53 AM 2019
I withdraw every 6 hours 50â,¬ to 75â,¬ with the system i show you above :)

There is 1â,¬ Withdrawal fee. :)

Starting Balance: 50â,¬

(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=26071.0;attach=41078;image)

Best regards
Title: Re: JavaScript and Python Bot Making 100% every 6 hours
Post by: webstars on May 22, 03:06 PM 2019
Quote from: webstars on May 21, 03:24 PM 2019
Hello,

here a quick session of my system making 100% every 6 hours.

Running since 22 hours now non stop.

Enjoy.  :thumbsup:



Best regards

great
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Loc on May 22, 04:42 PM 2019
Quote from: Firefox on May 20, 07:10 AM 2019
No way to get an edge at Sic Bo. Unless the dice are defective for some reason, but they replace them every session as they are low value items like cards. That's the attraction of a physical wheel as a RNG.

Also, nearly all the bets at Sic Bo are sucker bets with horrendous house edge of -10% or -20%.

The only thing you can sensibly bet on is high or low which has a similar edge to single 0 roulette.

I guessed it too, but i wanted to see what system they got. Why do people do some useless crap? I am sorry, but if you can't get the edge, what is the point to make a soft for it?
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Firefox on May 22, 05:52 PM 2019
Quote from: Loc on May 22, 04:42 PM 2019
I guessed it too, but i wanted to see what system they got. Why do people do some useless crap? I am sorry, but if you can't get the edge, what is the point to make a soft for it?

Yeah the roulette wheel is the only item that hangs around and could be exploited . All the dice and cards are history after a session. I think in Baccarat they shred the cards after just one shoe to prevent exploits.

But to answer your Q, some people genuinely believe they can get an edge in roulette by waiting for 5 reds in a row etc. So presumably they apply the same idea to Sic Bo and wait for 5 lows or highs or other infrequent event.

Some Sic Bo offers odd or even too, but it's similar payout to high/low. And no  way to predict with better than random accuracy.

I checked the house edge for most bets and it is really bad. Many from minus 10% to 20%. Some in Macau is minus 30% to 40% !!! People who make those bets would fall for anything.

I'm guessing the guys here would be betting Hi/lo at -2.78% and looking for "patterns".

link:s://en.m.wikipedia.org/wiki/Sic_bo

Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 22, 11:47 PM 2019
(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=26071.0;attach=41080;image)
:)
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 22, 11:59 PM 2019
Friends it is so awesome when you wake up and watch your account is +50â,¬ more and make a withdraw.

Last 3 Days
I go to sleep CASH OUT 50â,¬
Wake up and first thing what i do a coffee && CASH OUT 50â,¬ :)

(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=26071.0;attach=41080;image)

Best regard
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: Let Me Win on May 23, 01:59 AM 2019
Hi Mr Firefox

Yes, I would be looking for patterns  :xd:

But!  As all bet selections are equal mathematically then playing for patterns is also a mathematically correct fallacy  :xd:

Congratulations on your bot success Webstars too!
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 23, 04:10 PM 2019
Quote from: Let Me Win on May 23, 01:59 AM 2019
Hi Mr Firefox

Yes, I would be looking for patterns  :xd:

But!  As all bet selections are equal mathematically then playing for patterns is also a mathematically correct fallacy  :xd:

Congratulations on your bot success Webstars too!

Thanks :)
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 23, 04:20 PM 2019
Iam real with you.
Today, after 4 days/80 hours, i had my first lose and made a reload and allready recovered it.
(link:s://:.rouletteforum.cc/index.php?action=dlattach;topic=26071.0;attach=41083;image)
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: webstars on May 25, 01:11 AM 2019
Hi
Here my last 1237 Bets:
Format: to_bet (Betselection),(Betamount)
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 2,8
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 2,8
to_bet 2,16
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 2,8
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 2,8
to_bet 2,16
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 1,8
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 2,8
to_bet 2,1
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 1,8
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 2,8
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 1,8
to_bet 1,1
to_bet 2,2
to_bet undefined
to_bet 1,8
to_bet undefined
to_bet 2,1
to_bet 1,2
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 2,8
to_bet 2,16
to_bet 2,32
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 2,8
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet undefined
to_bet 1,16
to_bet undefined
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 2,1
to_bet 1,2
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 1,8
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 1,8
to_bet 1,16
to_bet 1,32
to_bet 2,64
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 1,1
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 2,8
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 1,8
to_bet 2,16
to_bet 2,32
to_bet 2,64
to_bet 2,1
to_bet undefined
to_bet undefined
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 1,8
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 1,8
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 1,1
to_bet 1,1
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 2,1
to_bet 1,2
to_bet 2,4
to_bet 2,8
to_bet 2,16
to_bet 2,1
to_bet 2,2
to_bet undefined
to_bet 2,8
to_bet 2,16
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 2,8
to_bet 2,16
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 1,8
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 1,1
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 2,8
to_bet 2,16
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 2,8
to_bet 2,16
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 1,8
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 1,8
to_bet 1,16
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 2,8
to_bet 1,16
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 1,8
to_bet 2,16
to_bet 2,32
to_bet 2,64
to_bet 1,1
to_bet 2,2
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 1,8
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 1,1
to_bet 1,2
to_bet 1,4
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 2,2
to_bet 2,4
to_bet 2,1
to_bet 1,1
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 1,2
to_bet 2,1
to_bet 2,2
to_bet 1,4
to_bet 1,1
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 2,8
to_bet 2,1
to_bet 2,2
to_bet 1,1
to_bet 1,2
to_bet 1,1
to_bet 2,1
to_bet 1,2
to_bet 1,1
to_bet 1,1
to_bet 1,1
to_bet 2,2
to_bet 2,4
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet undefined
to_bet 1,1
to_bet 1,2
to_bet 2,4
to_bet 1,8
to_bet 1,16
to_bet 2,32
to_bet 1,1
to_bet 2,1
to_bet 1,1
to_bet 2,1
to_bet 2,2
to_bet 2,1
to_bet undefined
to_bet 1,4
to_bet 1,8
to_bet 1,1
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 1,2
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 1,4
to_bet 2,1
to_bet 2,1
to_bet 1,1
to_bet 2,2
to_bet 2,1
to_bet 1,2
to_bet 1,4
to_bet 2,1
to_bet 2,2
Title: Re: Super Sic Bo . JavaScript and Python Bot
Post by: UncleLibs on Jun 08, 10:39 AM 2022
Hi,
I send you a email to give me more information abount the bot, but you not replay me.

regards