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 Character does not appear ;-;

Newbie Spellweaver
Joined
Aug 11, 2015
Messages
55
Reaction score
16
Help :c

If that is the java server so the problem is caused by CM_EQUIPMENT_LEAVE packet.

To fix
1) Go in CM_EQUIPMENT_LEAVE (RunImpl()) and find that
Code:
readEquipWeapons();
readEquipArmors();
2) Now you must invert that (because he must read first the armors and then the weapons)
Code:
readEquipArmors();
readEquipWeapons();
3) Now you need go in on the database and reset all the account (or just equip the starting item)

Now it will work and never will bug again, if will bug again is a database problem! :eek:tt1:
 
Upvote 0
Back
Top