Warlight Trollserscript

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

Verze ze dne 21. 05. 2016. Zobrazit nejnovější verzi.

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.greasyfork.org/scripts/19845/126911/Warlight%20Trollserscript.js

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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);
    }
}