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!

Understanding Item HEX Code

Newbie Spellweaver
Joined
Aug 9, 2008
Messages
6
Reaction score
0
Re: [Guide] Understanding Item HEX Code

Hello! I want to ask you how i can add items in character inventory emptyslot not to weapon place?

Thank You
 

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
Hello, how about if the Item has 3 Digits, Like 7 314 or Apocalypse Helm.
$this->item_type = hexdec(substr($item, 18, 2)); // Item Type
$this->item_type = $this->item_type / 16;
 
Back
Top