Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    GHB-LetItRock "Multi Game Launcher"


    Sil3nt
     Share

    Recommended Posts

    Ok The New "Multi-Game Launcher" By GHB-LetItRock Is Yet Again Released!

    Ijji desktop UNIVERSAL Launcher

    (Currently only for Internet Explorer, I'll try to make a version for firefox soon k? <3)

    Batchfile is at the end of this post.

    __________________________________________________ __________________________________________________

    Description: It allows you to access and play Ijji games listed below:

     

    +GunZ

    +Gunbound

    +Drift City

    +Soldier Front

    +Lunia

    +Luminary

     

    If Ijji publishes new games, I'll try my best to update the launcher

    __________________________________________________ __________________________________________________

     

    I'm not extremely good at batch file coding so if there're errors/bugs please post them in here

     

    Steps:

     

    1. Extract the batch file from the compressed .zip file.

    2. Right click the extracted batch file and press edit.

    3. Enter your Username and Password like shown:

     

    REM GHB-LetItRock's ijji desktop login
    REM =================================================
    SET USERNAME=Usernamehere
    SET PASSWORD=Passwordhere
    REM =================================================
    ...
    ...

     

    4. Save the file.

    5. Open and use.

     

    __________________________________________________ ____________

     

    If you want to use notepad and manually create the batchfile, here's the code.

     

    @ECHO OFF
    TITLE GHB-LetItRock Multi-Game Launcher v1
    
    REM GHB-LetItRock's ijji desktop login
    REM =================================================
    SET USERNAME=
    SET PASSWORD=
    REM =================================================
    Echo Oh Hai Thurr, LetItRock here. Please type in any number from 1 to 6 and press enter to launch your game.
    echo --------------------------------------
    Echo Please enter 1 for GunZ
    Echo Please enter 2 for Soldier Front
    Echo Please enter 3 for Gunbound
    Echo Please enter 4 for Drift City
    Echo Please enter 5 for Lunia
    Echo Please enter 6 for Luminary
    Set/p "Option=>"
    if %Option%==1 Goto 1
    if %Option%==2 Goto 2
    if %Option%==3 Goto 3
    if %Option%==4 Goto 4
    if %Option%==5 Goto 5
    if %Option%==6 Goto 6
    echo Invalid Choice Hey Hey Hey
    :1
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://gunz.ijji.com/common/prelaunch.nhn?gameId=u_gunz&subId="
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for GunzLauncher to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==gunzlauncher.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: GunzLauncher.exe has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT
    :2
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://sfront.ijji.com/common/prelaunch.nhn?gameId=u_sf&subId="
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for Soldier Front to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==PLauncher.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: Target Process Soldier Front has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT
    :3
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://gunbound.ijji.com/common/prelaunch.nhn?gameId=u_gbound"
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for Gunbound to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==ijjistarter2.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: Target Process Gunbound has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT
    :4
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://drift.ijji.com/common/prelaunch.nhn?gameId=u_skid"
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for Drift City to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==ijjistarter2.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: Target Process has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT
    :5
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://lunia.ijji.com/common/prelaunch.nhn?gameId=u_lunia"
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for Lunia to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==Lunia.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: Lunia has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT
    :6
    IF "%USERNAME%"=="" GOTO ERROR
    IF "%PASSWORD%"=="" GOTO ERROR
    GOTO LAUNCH
    :ERROR
    ECHO You must edit the logon details in this file!
    pause
    ECHO.
    GOTO EXIT
    :LAUNCH
    ECHO Opening Internet Explorer..
    START iexplore "http://login.ijji.com/login.nhn?m=login&memberid=%USERNAME%&password=%PASSWORD%&nextURL=http://luminary.ijji.com/common/prelaunch.nhn?gameId=u_goonzu"
    ECHO SUCCESS!
    ECHO.
    ECHO Waiting for Luminary to open..
    :LAUNCHERWAIT
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==ijjistarter2.exe GOTO FOUND
    GOTO LAUNCHERWAIT
    :FOUND
    ECHO SUCCESS: Target Process Luminary has been found!
    ECHO.
    ECHO Closing Internet Explorer..
    FOR /F %%I IN ('TASKLIST /V') DO IF %%I==iexplore.exe GOTO KILLIE
    ECHO Internet Explorer was not found!
    ECHO.
    ECHO Closing anyway..
    GOTO EXIT
    :KILLIE
    echo TASKKILL /IM iexplore.exe /F
    GOTO EXIT
    :EXIT
    REM PAUSE
    EXIT

     

    Credits:

    M3 ND' M3 ONLII" GHB-LetItRock \,,/0.xD

     

    Virus Scan - For The Haterz That Don't Trust!

     

     

    Download To Only The Kr3w Of LetItRock

     

    Luminary Does Not Work I Am Fixing That ATM!

    Edited by Sil3nt
    Link to comment
    Share on other sites

    work fine

    Link to comment
    Share on other sites

    • 5 months later...
    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...