Jump to content

TheDude212

Members
  • Posts

    169
  • Joined

  • Last visited

  • Days Won

    1
  • Points

    450 [ Donate ]

Posts posted by TheDude212

  1. Hi guys.

     

    Since RLC's last refresh there's now a button inside the video which allows Free users to continue watching after the 20 minute limit.

    Also after a while there's a "Daily limit" which means the video will stop after 2/3 minutes and you have to refresh the page or change your IP.

     

    I've created a Userscript that detects the above events and automatically continues/refreshes the page. Feel free to use it if you wish.

    This isn't a hack, nor does it add "Unlimited" anything. It's just a tool to help with the video breaks.

     

    Just download Greasemonkey/Tampermonkey for any browser (excluding Internet Explorer) and create a new Userscript then paste this:
     

    Quote

    // ==UserScript==
    // @name     RLC AutoContinue
    // @include  http://www.reallifecam.com/*
    // @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
    // @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
    // @grant    GM_addStyle
    // ==/UserScript==


    waitForKeyElements ("'a.btn.btn-grey':contains('Continue watching')", clickThis);
    waitForKeyElements ("'.duration-limit-guest-day':contains('Daily playback is limited for non-members')", RefreshMe);

    function clickThis (jNode) {
        var clickEvent  = document.createEvent ('MouseEvents');
        clickEvent.initEvent ('click', true, true);
        jNode[0].dispatchEvent (clickEvent);
    }

    function RefreshMe (jNode) {
        location.reload();
    }

     

    Have Fun.

×
×
  • Create New...