Results 1 to 12 of 12
  1. #1
    Lui1995's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    192.168.1.1
    Posts
    544
    Reputation
    10
    Thanks
    37
    My Mood
    Buzzed

    Post Steam account maker

    I use a steam account maker here is the code, but is there a way to change it into making, writing down the password and username in a file?


    #singleinstance force
    setkeydelay 45 ;

    steampath = c:\program files (x86)\steam\ ; path to the steam folder, don't remove the "/" from the end
    launchtf2 = yes ; check the check box "launch tf2" by default (yes or no)
    launchoptions = -console -noborder -novid ; launch options for tf2, optional
    lmaobox = yes ; check the check box "lmaobox" by default (yes or no)
    lmaopath = %homepath%\documents\iexplore.exe ; path to lmaobox executable
    lmaoversion = free ; paid or free
    lmaouser = ; username for paid lmaobox
    lmaopass = ; password for paid lmaobox

    show_ip_box = yes ; check the check box "connect to ip address" by default (yes or no)

    gui:
    gui, destroy
    gui, add, edit, x90 y25 w290 h21 vahkname,
    gui, add, edit, x90 y56 w330 h21 vahkpass,
    gui, add, edit, x90 y141 w330 h84 vahkipstring,
    gui, add, checkbox, x90 y87 w70 h13 glmaocheck checked vahktf2, launch tf2
    if lmaobox = yes
    gui, add, checkbox, x170 y87 w70 h13 checked glmaocheck vahklmao, lmaobox
    else
    gui, add, checkbox, x170 y87 w70 h13 glmaocheck vahklmao, lmaobox
    gui, add, checkbox, x260 y87 w160 h13 gshowbox vshowbox, connect to ip address

    gui, add, button, x389 y24 w32 , new
    gui, add, button, x89 y109 w162 , create
    gui, add, button, x259 y109 w162 , cancel
    gui, add, text, x1 y28 w80 right, username
    gui, add, text, x1 y59 w80 right, password

    ifnotexist, %steampath%steam.exe
    {
    msgbox, steam not found! check the settings and try again
    exitapp
    }

    if show_ip_box = yes
    {
    guicontrol, show, ahkipstring
    guicontrol,, showbox, 1
    gui, show, w445 h250 x5 y5,account maker
    }

    if launchtf2 = no
    {
    guicontrol,, lmaobox, 0
    guicontrol, disable, lmaobox
    guicontrol,, ahktf2, 0
    }

    if show_ip_box = no
    {
    guicontrol, hide, ahkipstring
    gui, show, w445 h156 x5 y5,account maker
    }
    buttonnew:
    generatename: ;username
    ncharlist = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y, z,1,2,3,4,5,6,7,8,9,0
    stringsplit, chararray, ncharlist, `,
    nstr =
    random, nrand, 8, 16
    loop, %nrand%
    { random, pick, 1, %chararray0%
    item := chararray%pick%
    nstr = %nstr%%item%
    }
    generatemail: ;email address
    mcharlist = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y, z
    stringsplit, chararray, mcharlist, `,
    mstr =
    random, mrand, 8, 16
    loop, %mrand%
    { random, pick, 1, %chararray0%
    item := chararray%pick%
    mstr = %mstr%%item%
    }
    generatemailhost: ;email host or whatever
    mhcharlist = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y, z
    stringsplit, chararray, mhcharlist, `,
    mhstr =
    random, mhrand, 6, 10
    loop, %mhrand%
    { random, pick, 1, %chararray0%
    item := chararray%pick%
    mhstr = %mhstr%%item%
    }
    generatequestion: ;secret question
    qcharlist = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y, z, , , , , , , , ,
    stringsplit, chararray, qcharlist, `,
    qstr =
    random, qrand, 8, 16
    loop, %qrand%
    { random, pick, 1, %chararray0%
    item := chararray%pick%
    qstr = %qstr%%item%
    }
    generatepass: ;password
    pcharlist = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y, z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X, Y,Z,1,2,3,4,5,6,7,8,9,0
    stringsplit, chararray, pcharlist, `,
    pstr =
    random, prand, 10, 20
    loop, %prand%
    { random, pick, 1, %chararray0%
    item := chararray%pick%
    pstr = %pstr%%item%
    }
    ahkname = %nstr%
    ahkmail = %mstr%@%mhstr%.com
    ahksecret = %qstr%
    ahkpass = %pstr%
    guicontrol,, ahkname, %mstr%
    guicontrol,, ahkpass, %pstr%
    lmaocheck:
    gui, submit, nohide

    if ahktf2 = 0
    {
    guicontrol,, lmaobox, 0
    guicontrol, disable, lmaobox
    }
    if ahktf2 = 1
    {
    guicontrol, enable, lmaobox
    }
    if lmaobox = yes
    if ahktf2 = 0
    guicontrol,, lmaobox, 0
    return
    showbox:
    gui, submit, nohide
    if showbox = 1
    {

    show_ip_box = yes
    goto gui
    all = bad
    return
    }

    if showbox = 0
    {
    show_ip_box = no
    goto gui
    all = bad
    return
    }

    return

    buttoncancel:
    exitapp
    return ; you won't return from that

    buttoncreate:
    filedelete, %steampath%config\steamappdata.vdf
    process, close, hl2.exe
    process, close, gameoverlayui.exe
    process, close, steam.exe
    gui, submit, nohide
    ifwinexist, Windows Security
    winclose, Windows Security
    if ahklmao = 1
    if (lmaoversion == "free")
    {
    run, %lmaopath%
    winwaitactive, LMAOBOX PUBLIC
    winminimize, LMAOBOX PUBLIC
    }
    if ahklmao = 1
    if (lmaoversion == "paid")
    {
    run, %lmaopath%
    winwaitactive, Windows Security
    winminimize, Windows Security
    }

    if ahklmao = 1
    {
    ifnotexist, %lmaopath%
    {
    msgbox, lmaobox not found! check the settings and try again
    exitapp
    }
    }

    if ahktf2 = 1
    ahktf2 = -applaunch 440
    if ahktf2 = 0
    ahktf2 =

    regexmatch(ahkipstring, "(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\d{1,5})", ahkip)
    if (ahkip == "")
    {
    guicontrol,, ahkipstring, no ip found!
    connect =
    }

    if not (ahkip == "")
    {
    guicontrol,, ahkipstring, will connect to %ahkip%...
    connect = +connect %ahkip%
    }
    run, %steampath%steam.exe
    sleep, 1000
    winwaitactive, Steam
    sleep, 300
    send, {enter}
    sleep, 50
    send, {enter}
    send, {enter}
    sleep, 50
    send, %ahkname%{tab}
    sleep, 30
    send, %ahkpass%{tab}
    sleep, 30
    send, %ahkpass%
    sleep, 3010
    send, {enter}
    winwaitactive, Steam - working
    winwaitclose, Steam - working
    sleep, 30
    send, %ahkmail%{tab}
    sleep, 30
    send, %ahkmail%
    sleep, 30
    send, {enter}
    winwaitactive, Steam - working
    winwaitclose, Steam - working
    sleep, 30
    send, {downarrow}
    sleep, 30
    send, {tab}
    sleep, 30
    send, %ahksecret%
    sleep, 30
    send, {enter}
    winwaitactive, Steam - Working
    winwaitclose, Steam - Working
    sleep, 30
    send, {enter}
    sleep, 30
    send, {enter}
    if ahklmao = 1
    if (lmaoversion == "free")
    {
    winactivate, LMAOBOX PUBLIC
    winwaitactive, LMAOBOX PUBLIC
    send, {return}
    winactivate, Team Fortress 2
    }
    if ahklmao = 1
    if (lmaoversion == "paid")
    {
    winactivate, Windows Security
    winwaitactive, Windows Security
    sleep, 30
    send, %lmaouser%{tab}%lmaopass%{return}
    }
    run, %steampath%steam.exe %ahktf2% %launchoptions% %connect%
    winclose, Steam
    goto gui

  2. #2
    Daxsan's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    How do you use this?

  3. #3
    VaginaSlayer's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    2
    We have [ code ] tags for a reason you weeaboo

  4. The Following User Says Thank You to VaginaSlayer For This Useful Post:

    Gill Bates (05-05-2017)

  5. #4
    CwDirectly's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Location
    Arizona, USA
    Posts
    15
    Reputation
    10
    Thanks
    3
    To make things easier. I would just set it to use the same password for every account and a username with a number increment such as "SRT2017" "SRT2018" and so forth. I take it you don't understand how to make those changes since your asking. I'm questioning weather this program would even work. If you could, update the source code using the same tags as displayed below so the source code shows properly and is easier to view. I'll go ahead and make the changes and post it, you can test it out.

    Code:
    [ code ]
    source code goes between these tags to show properly. but there are no spaces on either side of "code" when making the tags.
    [/ code ]

  6. #5
    snotneus's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Arent there any program to create steam accounts ?

  7. #6
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by snotneus View Post
    Arent there any program to create steam accounts ?
    You would need to make a ai to read chapta text or what eva it is and thay would be hard asf unless you find a way to by pass that
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  8. #7
    snotneus's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    I already have a account maker new and makes and saves the login and password in 15 sec

  9. #8
    Adsvunu's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    search on google
    Posts
    78
    Reputation
    10
    Thanks
    33
    My Mood
    Cheerful
    Quote Originally Posted by Rob's Baby View Post
    You would need to make a ai to read chapta text or what eva it is and thay would be hard asf unless you find a way to by pass that
    i dont think you really need an ai to be honest one click captchas detects if you are a human accourding to mouse movements etc so the easier way is to make some smooths mouse_event and try the luck with it

  10. #9
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Adsvunu View Post
    i dont think you really need an ai to be honest one click captchas detects if you are a human accourding to mouse movements etc so the easier way is to make some smooths mouse_event and try the luck with it
    How would you read the captchas images?
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  11. #10
    Adsvunu's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    search on google
    Posts
    78
    Reputation
    10
    Thanks
    33
    My Mood
    Cheerful
    Quote Originally Posted by Rob's Baby View Post


    How would you read the captchas images?
    Reading memory/packets checking well i dont know how captcha actually checks if its right but if i reverse it i think i would able to do it


    /Edit: the images only appear if the captcha system suspect that you are a bot otherwise it will be one click CAPTCHA (i dont remember where i saw this information)
    Last edited by Adsvunu; 05-03-2017 at 10:59 AM.

  12. #11
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Adsvunu View Post
    Reading memory/packets checking well i dont know how captcha actually checks if its right but if i reverse it i think i would able to do it
    It's server-sided, nobody can reverse it.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  13. #12
    porgegaming's Avatar
    Join Date
    Feb 2017
    Gender
    female
    Location
    Karachi
    Posts
    324
    Reputation
    10
    Thanks
    62
    My Mood
    Mellow
    Quote Originally Posted by snotneus View Post
    I already have a account maker new and makes and saves the login and password in 15 sec
    i need xD thanks

Similar Threads

  1. [Release] autohotkey steam account maker
    By Osku958 in forum Team Fortress 2 Hacks
    Replies: 25
    Last Post: 09-16-2014, 12:29 PM
  2. [WTS] Steam Account with Game Maker Studio Professional and more!
    By MeisterJaeger in forum Selling Accounts/Keys/Items
    Replies: 9
    Last Post: 12-04-2013, 06:05 AM
  3. [Request] steam account maker/ auto item transferer
    By moneydeep in forum Team Fortress 2 Hacks
    Replies: 5
    Last Post: 03-16-2013, 12:14 AM
  4. Steam Account Generator released
    By Dave84311 in forum Hack/Release News
    Replies: 20
    Last Post: 08-25-2009, 08:23 PM