Results 1 to 8 of 8

Thread: rs names are available now

  1. #1
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default rs names are available now

    just an fyi (only a-c available atm http://services.runescape.com/m=news...community_news )

    I got some nice ones, here's 1 of em
    http://i.gyazo.com/6a9eb4bf2edf71298f750c88bc7c4bb5.png

  2. #2
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

    Default

    Nice joe

    Hopefully those with 'rare names' have logged in within the previous 1-2 years so their usernames won't be released.

  3. #3
    Join Date
    Jul 2014
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    55 Post(s)

    Default

    Quote Originally Posted by Jake View Post
    Nice joe

    Hopefully those with 'rare names' have logged in within the previous 1-2 years so their usernames won't be released.
    Along with the new RS name release, it seems like it is causing a little stress on their servers.

    Anyone been able to register any new player accounts? I've tried on multiple ip's and keep getting "error contacting server" when I try to make a new account. Was able to create accounts ~9 hours ago, and then ever since 6 hours ago haven't been able to make a new one. Right now i'm attributing it to the new name change(on the RS forums lots of writing about server problems, but I didn't see any posts necessarily about new account creation problems).

  4. #4
    Join Date
    Dec 2011
    Location
    United States
    Posts
    960
    Mentioned
    21 Post(s)
    Quoted
    504 Post(s)

    Default

    Damn it jagex. My account creating script has encountered a flaw.


  5. #5
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Sshhhh, stop telling people! >.< I have a few I want to snipe for myself
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  6. #6
    Join Date
    Jun 2014
    Location
    Vancouver
    Posts
    150
    Mentioned
    1 Post(s)
    Quoted
    89 Post(s)

    Default

    Quote Originally Posted by Wetish View Post
    My account creating script
    That script sounds amazing! Pub release? I need this haha

  7. #7
    Join Date
    Dec 2011
    Location
    United States
    Posts
    960
    Mentioned
    21 Post(s)
    Quoted
    504 Post(s)

    Default

    Quote Originally Posted by TylerT View Post
    That script sounds amazing! Pub release? I need this haha
    Eh why not.

    Fill out the array with your account names you want to check. Go to https://secure.runescape.com/m=accou...#trackPageView Open the console in your web browser and paste the code and press enter.
    Inspect the elements of the webpage to see results. Taken names that were checked are in the div tags with the id top. Free names are in the div tags with the id bottom. It will attempt to create an account for the names in the bottom, but it may fail. All accounts are created with the email (username)@grr.la and a password of pass12345. The script will run a name every 5 seconds to prevent an ip blacklist from jagex. This script is very likely to get your ip blacklisted from creating accounts. If a bunch of errors pop up in the console you could try increasing the wait time between attempts. This is a very poor script and I do not recommend using it, but I thought I would post it anyway.

    Code:
    var array = ["account", "names"];
    
    
    var div = document.getElementById('bottom');
    var i = 0;
    function myLoop() {
        setTimeout(function() {
    
            $.ajax({
                type: "POST",
                url: "https://secure.runescape.com/m=account-creation/g=oldscape/check_displayname.ajax",
                data: "displayname=" + array[i],
                cache: false,
                async: false,
                success: function(html) {
                    if (html.indexOf("displayNameIsValid\":\"true\"") > -1) {
                        div.innerHTML = div.innerHTML + array[i] + " ";
    
                        $.ajax({
                            type: "POST",
                            url: "https://secure.runescape.com/m=account-creation/g=oldscape/create_account_funnel.ws",
                            data: "onlyOneEmail=1&age=20&displayname_present=true&displayname=" + array[i] + "&email1=" + array[i] + "%40grr.la&password1=pass12345&password2=pass12345&agree_email=on&agree_pp_and_tac=1&submit=Join+Now",
                            cache: false,
                            async: false,
                            success: function(html) {}
                        });
    
                    } else {
                        document.getElementById('top').innerHTML = document.getElementById('top').innerHTML + array[i] + " ";
                    }
                }
            });
    
            i++;
            if (i < array.length) {
                myLoop();
            }
        }, 5000)
    }
    
    myLoop();
    Last edited by Wetish; 08-06-2014 at 12:38 AM.

  8. #8
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

    Default

    Good guy wetish
    Posts the code for leechers
    Along with the fine print.
    :P
    Quote Originally Posted by Wetish View Post
    The script will run a name every 5 seconds to prevent an ip blacklist from jagex.

    This script is very likely to get your ip blacklisted from creating accounts.

    This is a very poor script and I do not recommend using it, but I thought I would post it anyway.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •