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 Fashion Problem

Status
Not open for further replies.
Junior Spellweaver
Joined
Sep 29, 2021
Messages
133
Reaction score
26
I've already added 3 CS Fashion from Nanus, but all the fashion hat looks like this (Hair show up when i used every fashion hat i add). does anyone know how to fix this? and i want to ask, how i can make Item Stack to 9999?
 
One word! Im Fawkin Pro!
Loyal Member
Joined
Jul 1, 2010
Messages
1,254
Reaction score
359
To remove the hair from character model you have to add "PARTS_HAIR" for those items.

Skärmbild 2021-11-09 145520 - HELP Fashion Problem - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
Ahhhh it works sir!!! Thankyou very much for helping me, 1 question sir, do you know how to make item stack like perin to 9999? Thanks again sir Xakzi

Change the value of dwPackMax in Spec_Item.txt for the specific item.
 
Upvote 0
One word! Im Fawkin Pro!
Loyal Member
Joined
Jul 1, 2010
Messages
1,254
Reaction score
359
Ahhhh it works sir!!! Thankyou very much for helping me, 1 question sir, do you know how to make item stack like perin to 9999? Thanks again sir Xakzi

Add this in source if you don't want to edit every single item in Spec_Item.txt

Add #define MAX_PACK_ITEM 9999 in Versioncommon.h

in ProjectCmn.cpp find prop.dwPackMax (you will find 2 of them, edit both)

change it to:

if( prop.dwPackMax > 1 )
prop.dwPackMax = MAX_PACK_ITEM;

Have fun :)
 
Upvote 0
Status
Not open for further replies.
Back
Top