I will include the file with this, but basically you will need a hex editor... I personally use HxD because it's straight forward...
HxD - Freeware Hex Editor and Disk Editor | mh-nexus
Download this launcher
https://mega.co.nz/#!jUVGCIRa!B_vlLV...QUjewLgYcX3Wto
You will open it with a hex editor and search either of these....
Offset
Hex-Values
The String and Hex will look something like this
Code:
String
http://10.0.0.4/launcher/servers/serlistenglis.en
Hex
68 74 74 70 3A 2F 2F 31 30 2E 30 2E 30 2E 34 2F 6C 61 75 6E 63 68 65 72 2F 73 65 72 76 65 72 73 2F 73 65 72 6C 69 73 74 65 6E 67 6C 69 73 2E 65 6E
The string is 49 characters long, generally keep it this way or you may make your launcher crash......
So if you want to change to localhost....
Replace it with this hex code
Code:
68 74 74 70 3A 2F 2F 6C 6F 63 61 6C 68 6F 73 74 2F 6C 61 75 6E 63 68 65 72 2F 73 65 72 76 65 72 2F 73 65 72 6C 69 73 74 65 6E 67 6C 69 73 2E 65 6E
Make sure you create a file called "serlistenglis.en" in a folder within the document root "launcher/server/"
post this data within serlistenglis.en
Code:
<?xml version="1.0" encoding="utf-8"?>
<serverlist>
<server>
<id>2</id>
<ip>127.0.0.1</ip>
<port>11101</port>
<category>PvE</category>
<name raw_name="Tera Intranet">
<=!=[=C=D=A=T=A=[ Tera Intranet ]=]=>
</name>
<crowdness sort="1">Average</crowdness>
<open sort="1">Open</open>
<permission_mask>0x00000000</permission_mask>
<server_stat>0x00000001</server_stat>
<popup>
<=!=[=C=D=A=T=A=[ Play Now. ]=]=>
</popup>
<language>en</language>
</server>
</serverlist>
Viola...
Connected to Localhost!