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!

Create youre own custom WoW Launcher in .net

Status
Not open for further replies.
Junior Spellweaver
Joined
Mar 23, 2008
Messages
135
Reaction score
2
So you ever wanted to make youre own custom WoW launcher?
But are to lazy to do most of the coding?
u know a .net language?

i Created a set of DLL's with most of the functions a custom WoW launcher needs like:

* Multi Realmlist support
* Localisation Support
* Cache\wtf cleaning


So if u wanna give it a try, u can download the API here:



The readme is inside with all of the details, and test assemblies for nunit testing.


Have fun :)
If u want the source just dissasemble the DLL's or ask me for the full source.


[edit(forgot the realms.xml]

Code:
<?xml version="1.0" encoding="utf-8" ?>
<realms>
  <realm>
    <id>1</id>
    <name>Blizzard-enUS</name>
    <realmlist>set realmlist us.logon.worldofwarcraft.com</realmlist>
    <patchlist>set patchlist us.version.worldofwarcraft.com</patchlist>
    <realmlistbn>set realmlistbn ""</realmlistbn>
    <portal>set portal us</portal>
  </realm>
  <realm>
    <id>2</id>
    <name>Blizzard-enGB</name>
    <realmlist>set realmlist eu.logon.worldofwarcraft.com</realmlist>
    <patchlist>set patchlist eu.version.worldofwarcraft.com</patchlist>
    <realmlistbn>set realmlistbn ""</realmlistbn>
    <portal>set portal eu</portal>
  </realm>
  <realm>
    <id>3</id>
    <name>Local-WoW</name>
    <realmlist>set realmlist 127.0.0.1</realmlist>
    <patchlist> </patchlist>
    <realmlistbn> </realmlistbn>
    <portal> </portal>
  </realm>
  <realm>
    <id>4</id>
    <name>test dummy</name>
    <realmlist>set realmlist test dummy</realmlist>
    <patchlist> </patchlist>
    <realmlistbn> </realmlistbn>
    <portal> </portal>
  </realm>
</realms>

Just save the snippet as realms.xml and put in the app root folder(or Launcher GUI project).
 
Last edited:
Status
Not open for further replies.
Back
Top