Results 1 to 18 of 18

Thread: Account maker using gmail

  1. #1
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default Account maker using gmail

    so most scripters don't want to make an account maker, simply because its hard to get around the email. However i think we could use gmail to get around it.
    check out this vid to see the method:

    http://www.youtube.com/watch?v=rMuY6vjQObY

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    We dont make it because we dont support goldfarming.
    If you are creating email address manually then it's never anything difficult to make an account maker. Making randomized email address isn't hard either but most ppl dont like having a login ID like: askjasddhj@gmail.com

    Besides, it doesn't take >2min to manually make an account? Unless you are making 100 accounts/day?

  3. #3
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    We dont make it because we dont support goldfarming.
    If you are creating email address manually then it's never anything difficult to make an account maker. Making randomized email address isn't hard either but most ppl dont like having a login ID like: askjasddhj@gmail.com

    Besides, it doesn't take >2min to manually make an account? Unless you are making 100 accounts/day?
    Takes more time than that. You first need to set up the email, then you make the account, then you confirm email, then you you chose a name...

    It's annoying. Just 2 days ago, I needed about 20 account so that I could get each one of them in every random possible (for OGL testing), took me quite a while.

    I didn't knew about that trick OP so thank you.


    EDIT: It works, just too very long for the email to come in.
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  4. #4
    Join Date
    Aug 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I wish I knew this before making 4 accounts and emails. 1 str pure, 2 mage/range tanks, and a skiller to fuel it all.

  5. #5
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    If you are signed into your gmail account you can go here: https://mail.google.com/mail/feed/atom
    it will show all your mail, simba can easily get that and grab the link you need to click, then grab the page

    The only problem is getting simba to sign into your gmail account...

  6. #6
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    You can use APPA for that, IIRC, it uses cookies.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  7. #7
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by Kyle Undefined View Post
    You can use APPA for that, IIRC, it uses cookies.
    Nah. You can just do this.

    Simba Code:
    function RegisterAccount :Boolean;
    var
      Client : integer;
      Page : string;
    begin
      NName := Name + IntToStr(Random(100000))
      eMail := NName + '@mailinator.com';
      Client := InitializeHTTPClientWrap(True);
      SetHTTPUserAgent(Client,'Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.1');
      AddPostVariable(Client, 'version', '6');
      AddPostVariable(Client, 'onlyOneEmail', '1');
      AddPostVariable(Client, 'version', '6');
      AddPostVariable(Client, 'email1', eMail);
      AddPostVariable(Client, 'password1', 'password');
      AddPostVariable(Client, 'password2', 'password');
      AddPostVariable(Client, 'age', IntToStr(RandomRange(19, 32)));
      AddPostVariable(Client, 'agree_email', 'on');
      AddPostVariable(Client, 'agree_pp_and_tac', '1');
      AddPostVariable(Client, 'submit', 'Cr%E9er+un+compte');
      Page := PostHTTPPageEx(Client, 'https://secure.runescape.com/m=account-creation/l=2/create_account_funnel.ws?version=6');
      FreeHTTPClient(Client);
    end;


    ~Home

  8. #8
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Mailinator is blacklisted.

    In fact 99% of all temp email are blacklisted.
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  9. #9
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by eska View Post
    Mailinator is blacklisted.

    In fact 99% of all temp email are blacklisted.
    Yeah, but back then I knew way around it





    ~Home

  10. #10
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Mailinator's alt domains are not blacklisted. I use them for every single botting account.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  11. #11
    Join Date
    Nov 2011
    Location
    Louisiana
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Home View Post
    Yeah, but back then I knew way around it




    ~Home
    LOL, the scroll bar on that file!

  12. #12
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    I made a script that creates accounts. :I

  13. #13
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by NKN View Post
    I made a script that creates accounts. :I
    Same
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  14. #14
    Join Date
    Feb 2007
    Location
    Colorado, USA
    Posts
    3,716
    Mentioned
    51 Post(s)
    Quoted
    624 Post(s)

    Default

    Quote Originally Posted by NKN View Post
    I made a script that creates accounts. :I
    Yea and auto sent them to my web database, and then he got banned from making accounts but it kept trying so we had like a million extra accounts that don't work, lol
    The only true authority stems from knowledge, not from position.

    You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.

  15. #15
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Quote Originally Posted by grats View Post
    Yea and auto sent them to my web database, and then he got banned from making accounts but it kept trying so we had like a million extra accounts that don't work, lol
    Yepp

  16. #16
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    Quote Originally Posted by eska View Post
    Takes more time than that. You first need to set up the email, then you make the account, then you confirm email, then you you chose a name...

    It's annoying. Just 2 days ago, I needed about 20 account so that I could get each one of them in every random possible (for OGL testing), took me quite a while.

    I didn't knew about that trick OP so thank you.


    EDIT: It works, just too very long for the email to come in.
    ye i supose but u can make multiply accounts at once, you don't have to wait for verification email before making the second account

  17. #17
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by The Killer View Post
    ye i supose but u can make multiply accounts at once, you don't have to wait for verification email before making the second account
    I know, already made a script that just makes account.

    Then later in the day I can just go in my gmail and activate them all at once.
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  18. #18
    Join Date
    May 2012
    Location
    Somewhere in, PA
    Posts
    1,810
    Mentioned
    9 Post(s)
    Quoted
    226 Post(s)

    Default

    Good tips, thanks
    My First Build!, Selling Downloadable Games
    -------------------------------------

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
  •