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] Client Closes after equipping an item

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 5, 2020
Messages
39
Reaction score
5
Need some advise on this.

Added new item on my client

Spec_Item
Code:
14    II_CLO_WND_ANI_2    "Ani Wing 2"    1    1    IK1_ARMOR    IK2_CLOTH    IK3_ANI_WING    =    TRUE    =    =    1000000    =    =    =    =    =    PARTS_MASK    =    0    =    =    =    =    =    1    0    =    =    =    =    _NONE    0    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    XI_FLIGHT_READY    =    =    =    =    MTI_FSTAND1_D    =    =    =    =    =    =    =    =    =    =    =    =    =    0    0    0    0    0    0    =    =    =    =    =    0.0035    0.8    2    1    3000    12    =    1    =    =    =    """Itm_PhoenixBigwings.dds"""    0    """"""    "Floating Wing Masks!"    1    300    0    0    1    0    0    0    1    0    2    =    =    =    =    =    =    =    =    =    =    1    1    1    1    1    0    ITEM_GRADE_NORMAL    1    TYPE1_ALLEXCEPTION    TYPE2_ALLEXCEPTION_ALLEXCEPTION    1    0    0    0

DefineItem.h
Code:
#define II_CLO_WND_ANI_2         31450



mdlDyna.inc
Code:
"DiaboloWings"        II_CLO_WND_ANI_2    MODELTYPE_ANIMATED_MESH    ""    0    MD_FAR    0    1.0f    0    1    ATEX_NONE    1


The item shows up and works when viewing using model viewer
QTHMavI - [HELP] Client Closes after equipping an item - RaGEZONE Forums



The problem is when I tried to Equip the item the client crashes.


Here is the Error Log.

2022/ 4/ 7 08:51:24 GetItemProp range_error min:0, max:224898, index:-1


I also added codes on PropItem to match the Spec_item but still same problem.
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Jan 7, 2020
Messages
257
Reaction score
98
Tell me if this one works:
Code:
14    II_CLO_WND_ANI_2    "Ani Wing 2"    1    1    IK1_ARMOR    IK2_CLOTH    IK3_ANI_WING    =    1    =    =    2000    50000    =    =    =    =    PARTS_MASK    =    0    =    =    1    =    =    1    1    =    =    1    1    _NONE    0    0    0    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    =    0    0    0    0    0    0    =    =    =    =    =    =    =    =    =    =    =    =    1    =    =    =    """Itm_PhoenixBigwings.dds"""    0    """"""    "Floating Wing Masks!"    1    300    0    0    1    0    0    0    1    0    2    =    =    =    =    =    =    =    =    =    =    1    1    1    1    1    0    ITEM_GRADE_NORMAL    1    TYPE1_COSTUME    TYPE2_COSTUME_CLOAK    1    0    1    1
From where did you took the code of ANI_WING?
Check if in the code of the wings are set to "PARTS_CLOAK" and not mask, maybe.

My guess is that "MTI_FSTAND1_D" is causing your Client to crash.
I can be wrong however.
 
Upvote 0
Status
Not open for further replies.
Back
Top