How To Instantly Reconnect To A Match

We’ve all had this problem. You’re playing a match and you get a bug splat, your internet cuts out, your game crashes to force a patch or you bluescreen. This guide will help you to jump straight back into your match without going through the launcher log-in. Please read this guide to the end and take notice of the warnings and notes along the way.

There are two methods to doing this.

METHOD 1:

LoLFolder

  1. When you disconnect from the match don’t re-open the launcher. Navigate to your League of Legends install directory.
    The default install directory is: C:\Riot Games\League of Legends
    My install directory is: C:\Program Files (x86)\Riot Games\League of Legends
  2. Double-click on the folder called “rads“.
  3. Double-click on the folder called “solutions“.
  4. Double-click the folder called “lol_game_client_sln“.
  5. Double-click the folder called “releases“.
  6. The folders located in “releases” change depending on your current version of League of Legends. Double-click on folder for the latest version. At the time this guide was made my folder was called “0.0.0.204“.
  7. Double-click the folder called “deploy“.
  8. And finally, locate the application “League of Legends” within this folder and double click it. It should open straight into the loading screen for your game!

quickReconnect

My full path for this application is: C:\Program Files (x86)\Riot Games\League of Legends\rads\solutions\lol_game_client_sln\releases\0.0.0.204\deploy\League of Legends.exe ”C:\Program Files (x86)\Riot Games\League of Legends\rads\solutions\lol_game_client_sln\releases\0.0.0.204\deploy\League of Legends.exe 

Note: This path changes each patch and it may be located elsewhere depending on how you installed League of Legends.

quickReconnectShortcut

 

And to finish, lets make a shortcut on the desktop so we can find it easily!

Right click on the League of Legends application we just found, hover over “Send to…” and select “Desktop (Create shortcut)” from the sub-menu. Maybe give it a unique name like “Quick Reconnect” so you don’t try and open the launcher with it!

WARNING: DO NOT MOVE THE FILE TO YOUR DESKTOP OR RENAME THE FILE IN THE FOLDER.

To ensure that your desktop shortcut leads to the most up-to-date version of the launcher you can remake it after each patch. To do this simply right-click on the short cut and select “Open file location” then navigate up two folder levels until you are back in the “releases” folder. If there is a new folder there locate the “League of Legends” application using steps 67, and 8.

Note: If you’re not currently in a match when you double click this application you will receive an error message: “Unable to connect to the server”. Only use this application if you have disconnected from a game that is still in progress. If you want to start a new game you have to use the regular launcher.

METHOD 2:

A helpful comment on the Reddit thread for this guide offers a different method that requires no updating after each patch! This comment was posted by kalli04. You can go thank him on his Reddit profile HERE!

It’s even easier. Just do a .bat script, so you don’t need to search the file over and over again. Open a new .txt, and then paste this

@echo off
set curr=0
set target=c:\riot games\league of legends\rads\solutions\lol_game_client_sln\releases\
cd %target%
setlocal EnableDelayedExpansion 
for /f "tokens=*" %%G in ('dir /ad /b') do ( 
set str=%%G
set str=!str:~-3!
if !str! GTR %curr% ( set curr=!str! )
)
cd 0.0.0.%curr%
cd deploy
echo %CD%
"League of Legends.exe"

Then proceed to save as.. and type .bat at the end of the name of your choice. Have fun :)

 

Note: You must replace the target path with your releases folder path! You can also put this .bat file anywhere you want and create a shortcut on the desktop and give it a custom name and icon!

Special thanks to plankermaxx and kalli04 for helping me make this guide. Hope this helps a few people!

 

  • AJ

    I’d recommend referencing the default installation folder for LoL to minimize confusion. It’s C:Riot Games IIRC.

    • Ruaille

      Updated. Thanks AJ!

  • Spraking

    Thanks you ^^

  • Ziombel

    Pierwszy elo

  • Madguy

    Closed my game dont know what i did wrong but ive lost elo…..

  • jc

    says I am missing cg.dll from my computer and it wont work

  • Madguy

    Get back to me when you do please the sames happened to me

  • Ruaille

    OK, I made a couple of updates to this guide. I would like to point everyone to the last section of the guide. I added what I found to be the quickest way to remake the shortcut after each patch and I left a note telling people not to delete or move the application we just located. Doing so will cause you to not be able to enter games.

  • Ruaille

    If you moved the League of Legends application to the desktop instead of creating a shortcut, move it back into the folder you removed it from. Then right-click on it, hover over “Send to” and select “Desktop (create shortcut)” from the sub-menu. Moving the application or deleting it will mean you cannot load a match.

    • Madguy

      Ive fixed it, i moved it back and called it League of legends – (the original name) dunno why ‘FUCKDC’ doesnt work but heck

  • Ruaille

    None that I know of. If someone does figure out a way I will add it to the guide.

  • Ruaille

    Update: There is indeed a method for doing this. I have added it to the guide!

  • http://www.facebook.com/nikita.erochok Nikita Erochok

    awesome ty man

  • ryan

    if using the batch file method, you can easily make a “portable” version by changing set target=c:riot gamesleague of legendsradssolutionslol_game_client_slnreleases to set target=radssolutionslol_game_client_slnreleases and moving the batch file to the league of legends folder, and create a shortcut to the batch file and place it anywhere. allows you to move the folder without stuff breaking, or accross windows installation etc.

  • Attirow

    Can’r reconnect GG

  • http://hamster.com/ DisqusTestAccount

    Hey testing moderation.

  • http://www.facebook.com/sander.hansen.1232 Sander Hansen

    Can you make a youtube tutorial please?

  • Pingback: H2P Wiki – Sposób na natychmiastowy powrót (reconnect) do gry | Wszystko o grze League of Legends

  • DBACHRY13

    Shorter bat for ya:

    REM @ECHO OFF
    Setlocal EnableDelayedExpansion
    FOR /F %%A IN (‘DIR /B /OD “C:Riot GamesLeague of LegendsRADSprojectslol_game_clientreleases”‘) DO SET Version=%%A
    CD “C:Riot GamesLeague of LegendsRADSprojectslol_game_clientreleases!Version!deploy”
    “League of Legends.EXE”