Warlight Trollserscript

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

Per 21-05-2016. Zie de nieuwste versie.

Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @require https://update.greasyfork.org/scripts/19845/126911/Warlight%20Trollserscript.js

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

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