Skip to content

Instantly share code, notes, and snippets.

Created August 14, 2014 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c3cc48c221fcdcdb7117 to your computer and use it in GitHub Desktop.
Save anonymous/c3cc48c221fcdcdb7117 to your computer and use it in GitHub Desktop.
Here's how you play Garena's 1.2.0 in English.
1. Install PoE, garena client, register, etc. You should be able to do this.
2. Navigate to C:\Program Files (x86)\GarenaPoETW\GameData\Apps (or wherever it's installed to)
3. You should have POETW folder there. Rename it to POETW2
4. Create new folder, name it POETW
5. Drop this file: pathofexile.exe https://mega.co.nz/#!hJ9VmIBY!uRJFKdTAXjuKsq6Kk1TA7tdjSpFZ03XgJrBl1KWosjY to POETW
6. Launch PoE via Garena client, it should be in English now. Enjoy idling in queue!
Here's the source for pathofexile.exe:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
char command[4096] = {0};
sprintf(command, "cd ..\\POETW2 && PathOfExile.exe %s --language english", argv[1]);
system(command);
}
If you don't trust my binaries you can compile it yourself, any C compiler should do.
@fouf
Copy link

fouf commented Aug 14, 2014

Can't you just make a .bat file to launch it with that command, shouldn't have to bother with an exe.

@xyzz
Copy link

xyzz commented Aug 14, 2014

It should be named pathofexile.exe, I don't think if you renamed .bat to .exe it'll still work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment