Help Launcher C4 Warrock ?
http://i60.tinypic.com/28cprhl.jpg
why not open my Launcher?
What do I have to do a tutorial or file I have replaces, please thank! ?
Re: Help Launcher C4 Warrock ?
You'll have to implement the launcher packet inside of the login server. If I've posted a solution in an other thread you should take a look at it :)
Re: Help Launcher C4 Warrock ?
Re: Help Launcher C4 Warrock ?
Quote:
Originally Posted by
edivan3213
okay , topic link ?
Take a look at this ;)
Quote:
Originally Posted by
CodeDragon
As I said in a other thread: You'll have to implement to launcher packets into the login server in order to get it working.
Some server files have it. It's a basic packet.
You'll have to add a new handler to the handler list. With the packet id: 4112
The handler just needs to send the game versions back. Here is a example of the packet:
Code:
namespace Authorization.Packets { class Launcher : Core.Networking.OutPacket {
public Launcher()
: base(4112) {
Append(0); // Format
Append(0); // Launcher Version
Append(0); // Updater Version
Append(0); // Client Version
Append(0); // Sub Version
Append(0); // Option
Append("http://"); // URL
}
}
}
Good luck implementing it.