Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.
/ console-casino Public archive

Casino gambling bot for backtesting and automating online casino games using state machines in the browser developer console

Notifications You must be signed in to change notification settings

meister245/console-casino

Repository files navigation

console-casino

Casino gambling bot for backtesting and automating online casino games using state machines in the browser developer console

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description & Usage

Requirements

  • Modern web browser supporting ES7+
  • Personal account on online casino website that provides
  • Tested using Google Chrome Developer Tools Console (79.0.x)

Loading Script

const loadScript = (url) => {
    return new Promise((resolve, reject) => {
        const script = document.createElement('script')
        const headElement = document.getElementsByTagName('head')[0]

        script.onload = resolve
        script.onerror = reject
        script.src = url

        headElement.appendChild(script)
    })
}

loadScript('http://localhost:8080/client/')

Browser Settings

Some casinos kick sessions, if media to load, the browser should be configured to allow videos / audio by default. Some browsers will block media, until the window is in the foreground, that is an advanced config value.

Firefox config key:

  • media.block-autoplay-until-in-foreground

Supported Casinos

  • Any casino using Playtech gaming software
  • Tested on Betfair Live Casino

About

Casino gambling bot for backtesting and automating online casino games using state machines in the browser developer console

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published