MasterPiece nr 4

betting script

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         MasterPiece nr 4
// @namespace    http://tampermonkey.net/
// @version      0.09
// @description  betting script
// @author       Sorte
// @match        https://www.betclic.pt/futebol-s1/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function(){ judge(); }, 1500);

    function judge(){
        var more = document.getElementsByClassName("seeMoreButton prebootFreeze ng-star-inserted");
        if(more.length > 0) more[0].click();

        setTimeout(function(){

            const queryString = window.location.search, params = new URLSearchParams(queryString), paramId = params.get('id'),
                  paramIndex = params.get('index');

            var content = document.getElementsByClassName("oddButtonWrapper prebootFreeze ng-trigger ng-trigger-oddsStateAnimation"),
                aux = -1, size = (content.length > 24)? 24 : 0, obj = parseFloat(localStorage.getItem("obj"));

            for(var j = 3; j < size; j++){

                var odd = parseFloat(content[j].getElementsByClassName("oddValue")[0].textContent.replace(',','.'));

                if( !((content[j].title).localeCompare("Abaixo de 3.5")) ){
                    obj = (isNaN(obj) || obj == 0)? 1 : parseFloat((2.05 / obj).toFixed(2));

                    if(obj == 1){
                       if( odd >= 1.45 ){ aux = j; break; }
                    }else{
                        if( odd >= obj && odd <= (obj+0.20) ){
                            aux = j; break;
                        }
                    }
                }
            }

            // click
            if(aux > -1){
                content[aux].click();
                localStorage.setItem(paramId, "set");

                var dot = parseFloat(localStorage.getItem("obj")), dir = 0;
                dot = (isNaN(dot) || dot == 0)? 1 * parseFloat(content[aux].textContent.replace(',','.')) : dot * parseFloat(content[aux].textContent.replace(',','.'));

                //alert(dot+" | "+obj+" | "+parseFloat(content[aux].textContent.replace(',','.'))+ " | "+typeof dot + " | "+typeof obj );
                if(dot >= 2){ localStorage.setItem("ctr_cl", 0); localStorage.setItem("obj", 0); dir = 1; }
                else{ localStorage.setItem("obj", dot); dir = 1; }

            }else{
                var ctr = parseInt(localStorage.getItem("ctr_cl"));
                if(ctr == 0){ localStorage.setItem("obj", 0); dir = 1; alert("MATH NOT FOUND. DELETE SELECTION AND TRY AGAIN! :("); }
            }

            if(dir) window.location.href = "https://www.betclic.pt/futebol-s1?mainPage=1";
            else window.location.href = "https://www.betclic.pt/futebol-s1?id="+paramId+"&index="+paramIndex+"&mainPage=1";

        }, 1000);
    }



})();