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!

Item not showing in inventory when wearing

Junior Spellweaver
Joined
Oct 12, 2015
Messages
148
Reaction score
1
Hello Goodmorning to All Ragezone Members. Can I Ask what code did i missed. why item is not showing when i try to wear it. I Already Check my code. No Compiling Error has shown.

[video]https://streamable.com/tka2s5[/video]

 
Experienced Elementalist
Joined
May 28, 2020
Messages
237
Reaction score
91
i think u forgot to input slot_ define
example
item_image0 using slot_headger
u can explore all item slot at glitemdef header

 
Upvote 0
Junior Spellweaver
Joined
Oct 12, 2015
Messages
148
Reaction score
1
yes this is adding at my stats

have you check your Character information (C) if you got the attribute stats from the item you wore , i think you problem came from GUI xml not in source.
 
Upvote 0
Junior Spellweaver
Joined
Jan 6, 2009
Messages
185
Reaction score
6
try searching this on your source
enum EMSLOT

then below that check the value of this variable
SLOT_NSIZE_S_2

make sure the value of the is the last slot value of your equip item + 1
example:
SLOT_CON = 20,

make it SLOT_NSIZE_S_2 = 21,
 
Upvote 0
Junior Spellweaver
Joined
Oct 12, 2015
Messages
148
Reaction score
1
try searching this on your source
enum EMSLOT

then below that check the value of this variable
SLOT_NSIZE_S_2



make sure the value of the is the last slot value of your equip item + 1
example:
SLOT_CON = 20,

make it SLOT_NSIZE_S_2 = 21,

i already did that :) , but no luck :)
 
Upvote 0
Junior Spellweaver
Joined
Jan 6, 2009
Messages
185
Reaction score
6
Ok then, you have to update the item_images also.
Check this files for your references:

InventoryPageWearEx.h
InventoryPageWearEx.cpp
InventoryPageWear.h
InventoryPageWear.cpp

If you have added new slots you must also add it in here.
Example: InventoryPageWear.h
this must be present:
//
ITEM_IMAGE18, // item con SLOT_CON
ITEM_IMAGE_SIZE = 19,

Goodluck!
 
Upvote 0
Junior Spellweaver
Joined
Oct 12, 2015
Messages
148
Reaction score
1
Ok then, you have to update the item_images also.
Check this files for your references:

InventoryPageWearEx.h
InventoryPageWearEx.cpp
InventoryPageWear.h
InventoryPageWear.cpp

If you have added new slots you must also add it in here.
Example: InventoryPageWear.h
this must be present:
//
ITEM_IMAGE18, // item con SLOT_CON
ITEM_IMAGE_SIZE = 19,

Goodluck!

I already did , Thank you Im gonna repeat to merge.
 
Upvote 0
Back
Top