maths

try to take over the world!

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         maths
// @namespace    http://tampermonkey.net/
// @version      0.09
// @description  try to take over the world!
// @author       botclimber
// @match        https://www.flashscore.pt/
// @grant        none
// ==/UserScript==

/*

OBS:
- AROUND 70% OF THE TIME NR OF GOALS IS < 3.5 (TEST: MULT OF <3.5 = ODD( >= 2.00))

*/

(function() {
    'use strict';

    setInterval(function(){ exe(); }, 3000);
    function exe(){
        var data = document.getElementsByClassName("event__scores fontBold"), x = 0, y = 0, ctr = 0,
            math = [0,0,0,0,0,0,0], bothscore = 0, bothnoscore = 0;

        for(var i = 0; i < data.length; i++){
            var scores = data[i].getElementsByTagName("span"),
                res;

            if( data[i].textContent.localeCompare("-") ){
                var left = parseInt(scores[0].textContent), right = parseInt(scores[1].textContent);

                console.log(left+'-'+right)
                res = (left * 1) + (right * 1);

                // nr goals per game
                if(res > 3 ) y++;
                else x++;

                // both score or dont
                if(left > 0 && right > 0) bothscore++;
                else bothnoscore++;

                // more usual results
                for(var j = 0; j < math.length; j++){
                    if(j == res){
                        math[j]++;
                    }
                }

                ctr++;
            }

        }

        console.log(" < 3.5 : "+(x/ctr).toFixed(2)+" | > 3.5 : "+(y/ctr).toFixed(2)+" | Nr Results: "+ctr);

        var major = 0;
        for(var t = 0; t < math.length; t++){
            major = major + (math[t]/ctr);

            console.log(t+" goals: "+math[t]+" | "+(math[t]/ctr).toFixed(2)+"% | major: "+major.toFixed(2)+" | Nr Results: "+ctr);
        }
        console.log("Both Score: "+(bothscore/ctr).toFixed(2)+"% | Both no Score: "+(bothnoscore/ctr).toFixed(2)+"%");
    }
})();