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!

Gs Editor

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 28, 2013
Messages
59
Reaction score
4
I want to enable+15 items but still not working..
I config in MuServer enable+15 items but when i enter in game item is +0...
I try to make with hex but i don't find the line...
Anyone have a gameserver editor?
MuServer 97d
 
Joined
Oct 8, 2006
Messages
740
Reaction score
289
Your client's main does support +15 items?

There are situations that when your GameServer supports +15 items, your client doesn't, so you would need to have the client's main source code in order to "enable" that in your client.

The client is seeing that +15 items are not valid.
E.g. for a client item level check:

Code:
if(myItem->level > [COLOR=#ff0000]11[/COLOR])
{
  return [COLOR=#0000ff]0[/COLOR];
}

This way it will tell the server to correct the item level and it will set it to 0.
 
Upvote 0
Status
Not open for further replies.
Back
Top