Client Launcher (no more .bat)

Results 1 to 25 of 25
  1. #1
    Wut? Csharp? Kerelmans is offline
    MemberRank
    Apr 2008 Join Date
    Olalalala CityLocation
    417Posts

    Client Launcher (no more .bat)

    :smilie_xp MapleLauncher :smilie_xp

    This program launches your client to your IP (by editing the ini file)
    DOWNLOAD (scan yourself, if you don't trust :busted_co )

    Change your server settings in the .ini file
    the 3 files must be placed into your MS folder!
    If you wanna keep your own client, just change clientEXE in the .ini file
    You cn change:
    - registration page
    - server IP
    - server port

    SOURCE: http://forum.ragezone.com/attachment...8&d=1210778652
    No flames plz :p
    ~Enjoy
    Last edited by Kerelmans; 14-05-08 at 05:25 PM.


  2. #2
    Enthusiast Floaterguy is offline
    MemberRank
    Mar 2007 Join Date
    48Posts

    Re: [Release]Client Launcher (no more .bat)

    wow nice ill give it a shot

  3. #3
    Proficient Member s3m3L is offline
    MemberRank
    Jul 2005 Join Date
    150Posts

    Re: [Release]Client Launcher (no more .bat)

    Nice tool, works :)

  4. #4
    Proficient Member gogodr is offline
    MemberRank
    Apr 2008 Join Date
    161Posts

    Re: [Release]Client Launcher (no more .bat)

    lol, I made something like that a long time ago with boreland delphi
    I'm currently using this one, If anyone want to make one like this , just ask and I'll post a TuT on the guides section

  5. #5
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: [Release]Client Launcher (no more .bat)

    awesommeee this is like uber custom. THanks dude. i will do what i can to give improvements and advice

    EDIT: gogodr. post a tutorial please. i saw one lst time but i didn't get it at all. thanks dude.

  6. #6
    Account Upgraded | Title Enabled! daniel369 is offline
    MemberRank
    Aug 2007 Join Date
    Calgary , Canada.Location
    371Posts

    Re: [Release]Client Launcher (no more .bat)

    Wow awesome1!!!!!!
    Best release this week!

    nice

  7. #7
    Account Upgraded | Title Enabled! NMDanny is offline
    MemberRank
    Apr 2008 Join Date
    IsraelLocation
    342Posts

    Re: [Release]Client Launcher (no more .bat)

    nice, that could save much time

  8. #8
    Proficient Member gogodr is offline
    MemberRank
    Apr 2008 Join Date
    161Posts

    Re: [Release]Client Launcher (no more .bat)

    I was doing the TuT for my launcher but then I noticed that most people won't understand me when talking about delphi xP and I'll have to make a noobish language looooong TuT
    too lazy for that xP sorry

  9. #9
    Account Upgraded | Title Enabled! pakiboy is offline
    MemberRank
    Apr 2008 Join Date
    223Posts

    Re: [Release]Client Launcher (no more .bat)

    wow this looks owsome! ill test it real fast!

  10. #10
    Member WaffleGM is offline
    MemberRank
    May 2008 Join Date
    51Posts

    Re: [Release]Client Launcher (no more .bat)

    is there a way to make this work with Wampserevr websites?

    cuz its not working for me

  11. #11
    Account Upgraded | Title Enabled! DarkZero88 is offline
    MemberRank
    Apr 2008 Join Date
    357Posts

    Re: [Release]Client Launcher (no more .bat)

    gogodr just send off your tut, i know delphi, just add [NOT FOR NOOBS]

  12. #12
    Member nwongfeiying is offline
    MemberRank
    Apr 2008 Join Date
    Phoenix, ArizonaLocation
    53Posts

    Re: [Release]Client Launcher (no more .bat)

    I expected more out of you....at least cover up the .ini file with a form that asks for the information.

  13. #13
    Valued Member duke is offline
    MemberRank
    Nov 2007 Join Date
    145Posts

    Re: [Release]Client Launcher (no more .bat)

    thank you

  14. #14
    Member WaffleGM is offline
    MemberRank
    May 2008 Join Date
    51Posts

    Re: [Release]Client Launcher (no more .bat)

    Works beautifully = )

  15. #15
    Proficient Member gogodr is offline
    MemberRank
    Apr 2008 Join Date
    161Posts

    Re: [Release]Client Launcher (no more .bat)

    Quote Originally Posted by DarkZero88 View Post
    gogodr just send off your tut, i know delphi, just add [NOT FOR NOOBS]
    ok ok I'll

  16. #16
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: [Release]Client Launcher (no more .bat)

    Quote Originally Posted by gogodr View Post
    ok ok I'll
    Thanks, but i realize i found another guide and i got my own to work hehe.
    http://forum.cheatengine.org/viewtopic.php?t=225470

  17. #17
    Wut? Csharp? Kerelmans is offline
    MemberRank
    Apr 2008 Join Date
    Olalalala CityLocation
    417Posts

    Re: [Release]Client Launcher (no more .bat)

    Gimme some addons/mods for it :)

  18. #18
    Wut? Csharp? Kerelmans is offline
    MemberRank
    Apr 2008 Join Date
    Olalalala CityLocation
    417Posts

    Re: [Release]Client Launcher (no more .bat)

    SOURCE RELEASED BELOW :p

    I suggest VB6, to give some tips:
    Code:
    shell("Localhost.exe 123.45.65 8484",vbnormalfocus)  <= opens localhost to ip 123.45.65 at port 8484
    Now learn how ro read settings from an .ini

    Ini reading/writing module:
    Code:
    Option Explicit
    
    Private Declare Function WritePrivateProfileString Lib "kernel32" _
    Alias "WritePrivateProfileStringA" _
                            (ByVal lpApplicationName As String, _
                            ByVal lpKeyName As Any, _
                            ByVal lpString As Any, _
                            ByVal lpFileName As String) As Long
    
    Private Declare Function GetPrivateProfileString Lib "kernel32" _
    Alias "GetPrivateProfileStringA" _
                            (ByVal lpApplicationName As String, _
                            ByVal lpKeyName As Any, _
                            ByVal lpDefault As String, _
                            ByVal lpReturnedString As String, _
                            ByVal nSize As Long, _
                            ByVal lpFileName As String) As Long
                            
    Public Function INIWrite(sSection As String, sKeyName As String, sNewString As String, sINIFileName As String) As Boolean
      
      Call WritePrivateProfileString(sSection, sKeyName, sNewString, sINIFileName)
      INIWrite = (Err.Number = 0)
    End Function
    
    Public Function INIRead(sSection As String, sKeyName As String, sINIFileName As String) As String
    Dim sRet As String
    
      sRet = String(255, Chr(0))
      INIRead = Left(sRet, GetPrivateProfileString(sSection, ByVal sKeyName, "", sRet, Len(sRet), sINIFileName))
    End Function
    Code example:
    Code:
    textbox1.text = INIRead("Category","Stringname","C:\someinifile.ini")
    Category is in this case '[MapleStory]', stringname is 'ClientEXE=blabla' & someinifile is the path to the .ini (use ' app.path & "\settings.ini" ' to make it relative)

    I hope this wasn't to hard to understand :p
    If you want some modifications/addons, plz tell me!
    Attached Files Attached Files

  19. #19
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: [Release]Client Launcher (no more .bat)

    Quote Originally Posted by Kerelmans View Post
    SOURCE RELEASED BELOW :p

    I suggest VB6, to give some tips:
    Code:
    shell("Localhost.exe 123.45.65 8484",vbnormalfocus)  <= opens localhost to ip 123.45.65 at port 8484
    Now learn how ro read settings from an .ini

    Ini reading/writing module:
    Code:
    Option Explicit
     
    Private Declare Function WritePrivateProfileString Lib "kernel32" _
    Alias "WritePrivateProfileStringA" _
                            (ByVal lpApplicationName As String, _
                            ByVal lpKeyName As Any, _
                            ByVal lpString As Any, _
                            ByVal lpFileName As String) As Long
     
    Private Declare Function GetPrivateProfileString Lib "kernel32" _
    Alias "GetPrivateProfileStringA" _
                            (ByVal lpApplicationName As String, _
                            ByVal lpKeyName As Any, _
                            ByVal lpDefault As String, _
                            ByVal lpReturnedString As String, _
                            ByVal nSize As Long, _
                            ByVal lpFileName As String) As Long
     
    Public Function INIWrite(sSection As String, sKeyName As String, sNewString As String, sINIFileName As String) As Boolean
     
      Call WritePrivateProfileString(sSection, sKeyName, sNewString, sINIFileName)
      INIWrite = (Err.Number = 0)
    End Function
     
    Public Function INIRead(sSection As String, sKeyName As String, sINIFileName As String) As String
    Dim sRet As String
     
      sRet = String(255, Chr(0))
      INIRead = Left(sRet, GetPrivateProfileString(sSection, ByVal sKeyName, "", sRet, Len(sRet), sINIFileName))
    End Function
    Code example:
    Code:
    textbox1.text = INIRead("Category","Stringname","C:\someinifile.ini")
    Category is in this case '[MapleStory]', stringname is 'ClientEXE=blabla' & someinifile is the path to the .ini (use ' app.path & "\settings.ini" ' to make it relative)

    I hope this wasn't to hard to understand :p
    If you want some modifications/addons, plz tell me!
    thanks your previous post looks like double posting but it worked well. thanks dude for clarifying this.

    I thought of this addon that provides online status on the launcher itself and stops the launcher start button from being active and adding an exit button. I got the exit to work and status but cant get the start button to do like i said.

    http://www.microsoft.com/express/vb/default.aspx
    Im using vb express.

  20. #20
    Member razz91 is offline
    MemberRank
    Apr 2008 Join Date
    SwedenLocation
    69Posts

    Re: [Release]Client Launcher (no more .bat)

    give credits to Rot1 @ rot1blgwordpress.com and CEF!

  21. #21
    Wut? Csharp? Kerelmans is offline
    MemberRank
    Apr 2008 Join Date
    Olalalala CityLocation
    417Posts

    Re: [Release]Client Launcher (no more .bat)

    Quote Originally Posted by razz91 View Post
    give credits to Rot1 @ rot1blgwordpress.com and CEF!
    Dude, i wrote this ALL myself & made the launcher myself!

  22. #22
    Account Upgraded | Title Enabled! xnBlaze is offline
    MemberRank
    Apr 2008 Join Date
    860Posts

    Re: [Release]Client Launcher (no more .bat)

    Quote Originally Posted by pakiboy View Post
    wow this looks owsome! ill test it real fast!
    wth looks awsome? he didnt even provide a screenshot.

  23. #23
    The Omega Superfun is offline
    MemberRank
    Dec 2006 Join Date
    The NetherlandsLocation
    5,223Posts

    Re: [Release]Client Launcher (no more .bat)

    Its basic, just some buttums and an shell function

    Anyway verry nice job, would never came on the idea by my self :P

  24. #24
    Wut? Csharp? Kerelmans is offline
    MemberRank
    Apr 2008 Join Date
    Olalalala CityLocation
    417Posts

    Re: [Release]Client Launcher (no more .bat)

    Thx, but I dunno how to add a server checker, without using a winsock component (bcause much users don't have it), any ideas?

  25. #25
    Apprentice azncracker99 is offline
    MemberRank
    Dec 2007 Join Date
    9Posts

    Re: [Release]Client Launcher (no more .bat)

    Wow nice lol. It works for meh :D



Advertisement