Warlight Trollserscript

Fun script for warlight with a few useless and funny features.

Versión del día 21/5/2016. Echa un vistazo a la versión más reciente.

Este script no debería instalarse directamente. Es una biblioteca que utilizan otros scripts mediante la meta-directiva de inclusión // @require https://update.greasyfork.org/scripts/19845/126911/Warlight%20Trollserscript.js

Tendrás que instalar una extensión para tu navegador como Tampermonkey, Greasemonkey o Violentmonkey si quieres utilizar este script.

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

Tendrás que instalar una extensión como Tampermonkey o Violentmonkey para instalar este script.

Necesitarás instalar una extensión como Tampermonkey o Userscripts para instalar este script.

Tendrás que instalar una extensión como Tampermonkey antes de poder instalar este script.

Necesitarás instalar una extensión para administrar scripts de usuario si quieres instalar este script.

(Ya tengo un administrador de scripts de usuario, déjame instalarlo)

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

(Ya tengo un administrador de estilos de usuario, déjame instalarlo)

function testDate() {
    var profilelink = $('a[href*="/Profile?p="]').first();
    var linkhref = profilelink.attr("href");
    var profid = linkhref.substring(linkhref.indexOf("=")+1);
    
    var date = new Date();
    var day = date.getDay();
    
    if(profid == '2428496679') {
        if(day = 2) {
            changeProfile('Miles Edgeworth', 'L59', null);
        } else if(day == 3) {
            changeProfile('Mercer', 'L31', null);
        } else if(day == 4) {
            changeProfile('Brian', null, null);
        } else {
            changeProfile(null, 'L61', null);
        }
    }
    if(profid == '5015900432') {
        if(day = 2) {
            changeProfile('###NooB SmAsHeR###', 'L55', '36');
        } else if(day == 3) {
            changeProfile('AceK', 'L56', null);
        } else if(day == 4) {
            changeProfile('All Indians are my alts', null, null);
        }
    }
    if(profid == '9911415828') {
        if(day = 2) {
            changeProfile('Salami Brain', null, '0');
        } else if(day == 3) {
            changeProfile('Master Sephiroth', 'L1', '180479');
        }
    }
    if(profid == '2214950915') {
        if(day = 2) {
            changeProfile('Master of Disaster', null, '0');
        } else if(day == 3) {
            changeProfile('Elitist', 'L99', '999999');
        }
    }
    if(profid == '6319040229') {
        if(day = 2) {
            changeProfile('Jefferdizzy', null, '-15');
        } else if(day == 3) {
            changeProfile('Jefferspoon', null, '-35');
        }
    }
    if(profid == '3427873563') {
        if(day = 2) {
            changeProfile('Master Eve ◆Elite◆', null, null);
        } else if(day == 3) {
            changeProfile('Yello', null, null);
        }
    }
    if(profid == '7724535464') {
        if(day = 2) {
            changeProfile('Teenage Mutant Ninja Turtle', null, null);
        } else if(day == 3) {
            changeProfile('Turtle Power', null, null);
        }
    }
    if(profid == '8018495828') {
        if(day = 2) {
            changeProfile('Pokemon Master', null, null);
        }
    }
    if(profid == '5518973792') {
        if(day = 2) {
            changeProfile('Quarterback', null, null);
        }
    }
    if(profid == '5711683204') {
        if(day = 2) {
            changeProfile('Spicy Meat', null, null);
        }
    }
    if(profid == '9520907046') {
        if(day = 2) {
            changeProfile('Master Fries', null, null);
        }
    }
    if(profid == '8015538415') {
        if(day = 2) {
            changeProfile('Pushy', null, null);
        } else if(day == 3) {
            changeProfile('Master Pushover', null, null);
        }
    }
    if(profid == '6712990833') {
        if(day = 2) {
            changeProfile('Master Roo', null, null);
        }
    }
    if(date.getHours() >= 0 && date.getHours() <=5) {
        var newusername = profilelink.text();
        if(date.getMilliseconds() < 200) {
            changeProfile(newusername + ", go to bed!", null, null);
        } else if(date.getMilliseconds() < 400) {
            changeProfile(newusername + ", why still awake?", null, null);
        } else if(date.getMilliseconds() < 600) {
            changeProfile(newusername + ", please sleep.", null, null);
        } else if(date.getMilliseconds() < 800) {
            changeProfile("You silly night owl", null, null);
        } else {
            changeProfile("Sleep is for the weak", null, null);
        }
    }
    if((day == 6) || (day == 0)) {
        console.log();
        if(date.getMilliseconds() < 50) {
            var player2 = document.createElement("iframe");
            player2.setAttribute("src", "https://www.youtube.com/embed/L16toHuQFc4?autoplay=1&autohide=1&border=0&wmode=opaque&enablejsapi=1");
            player2.width = 5;
            player2.height = 5;
            document.body.appendChild(player2);
            return true;
        }
    } else if(day == 5) {
        if(date.getMilliseconds() < 10) {
            $("#MailImgNormal").hide();
            $("#MailImgFlashing").show();
            return true;
        }
    }
    return false;
}

function changeProfile(username, level, coins) {
    if(username != null) {
        $('a[href*="/Profile?p="]').first().html(username);
    }
    if(level != null) {
       $('#LevelLink').html(level);
    }
    if(coins != null) {
       var coinsobj = $('#CoinsText');
       //coins.html(coins.html() * 100);
       coinsobj.html(coins);
    }
}