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:
http://www.sendspace.com/file/mu1b51
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]
Just save the snippet as realms.xml and put in the app root folder(or Launcher GUI project).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>





