Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Luna online classic thai launcher?

Initiate Mage
Joined
Nov 21, 2020
Messages
2
Reaction score
0
Can someone provide me with an actual link for the Luna classic thai launcher? can't find it anywhere and all links are dead :(
 
Newbie Spellweaver
Joined
Jul 30, 2009
Messages
64
Reaction score
4
I can get you a copy of the launcher itself, in fact you may already have it, the official launcher itself isn't region based, it is the same exe regardless of the region, the urls for the patches are hard coded into the launcher and the region is set from the "System\Settings.cfg" by the line that is "Local ="
example:
Code:
local = USA.Plus
to use the launcher with your own url you will have to hex edit the launcher itself and change the url, an easy way to find the urls is searching for
Code:
68 00 74 00 74 00 70
The launcher puts null characters in between the letters in the url so http comes out as "68 74 74 70" so you add "00" in between the hex for the letters coming out as "68 00 74 00 74 00 70".

The text in the launcher is also controlled in the "System\Settings.cfg" file, for example the text on top is
Code:
text_caption = "Luna Plus"

The part that gets more complicated is the launcher's look, that is controlled by a tif file and set in the same file like so
Code:
image = data\interface\2dimage\Launcher\c_launcher.tif
 
Last edited:
Back
Top