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!

[HELP] Where can I find this method?

Newbie Spellweaver
Joined
Jun 12, 2008
Messages
42
Reaction score
3
About-->C2S_TO219 in c# code

Type type = Type.GetType(string.Format("pConverter.Ox{0}", pHeader.wProtocol.ToString("X4")));
if (type != null)
{
object dClass = Activator.CreateInstance(type);
MethodInfo C2S_TO219 = type.GetMethod("C2S_TO219");
object[] args = new object[] { buffer };
C2S_TO219.Invoke(dClass, args);
buffer = (byte[])args[0];

}
else
{
Logger.NewPacket("C2S", buffer, cltIP, cVer);
}

Please help
Thank you sir.
 
Newbie Spellweaver
Joined
Jun 12, 2008
Messages
42
Reaction score
3
I tried it, I can see character list but the problem with Client error message.
I don't know how to translate packet when client send to server 219

returns client error with 219 server - [HELP] Where can I find this method? - RaGEZONE Forums 2018year 6month 25date 14hour 43minute 35second - [HELP] Where can I find this method? - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top