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 Create Char :( !!

Initiate Mage
Joined
Jul 5, 2014
Messages
9
Reaction score
0
Hi My Friend , I Need Help to Create Char Whit Clothes. no Nude..
wxbkevt - Help Create Char :( !! - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Nov 20, 2017
Messages
146
Reaction score
19
Hey,
go to SQL and find
dbo.spInsertChar (Stored Produces)
right click > modify >
Search for
SET@ChestItemID =
In the
CASE
WHEN 0 THEN 21501
WHEN 1 THEN 21501
WHEN 2 THEN 21501
WHEN 3 THEN 21501
WHEN 4 THEN 21501
WHEN 5 THEN 21501
in THEN change to itemID if u want, example:
WHEN 0 THEN 35014
do it for @LegsItemID & @ChestItemID.
SORRY FOR THE BAD ENGLISH
 
Upvote 0
Initiate Mage
Joined
Jul 5, 2014
Messages
9
Reaction score
0
no is the solution , the clothes must be at the moment of creating the char not after it has already been created
 
Upvote 0
Initiate Mage
Joined
Feb 8, 2012
Messages
79
Reaction score
6
Go to mmatchobject.h
Search for: const MINITIALCOSTUME g_InitialCostume[MAX_COSTUME_TEMPLATE][2] =

And replace current code underneath it with this:
{
{{1, 5001, 4001, 30301, 0, 21001, 0, 23001, 0}, {1, 5001, 4001, 30301, 0, 21501, 0, 23501, 0}}, // 건나이트
{{2, 5002, 0, 30301, 0, 21001, 0, 23001, 0}, {2, 5002, 0, 30301, 0, 21501, 0, 23501, 0}}, // 건파이터
{{1, 4005, 5001, 30401, 0, 21001, 0, 23001, 0}, {1, 4005, 5001, 30401, 0, 21501, 0, 23501, 0}}, // 애서신
{{2, 4001, 0, 30401, 0, 21001, 0, 23001, 0}, {2, 4001, 0, 30401, 0, 21501, 0, 23501, 0}}, // 스카우트
{{2, 4002, 0, 30401, 30001, 21001, 0, 23001, 0}, {2, 4002, 0, 30401, 30001, 21501, 0, 23501, 0}}, // 건프리스트
{{1, 4006, 0, 30101, 30001, 21001, 0, 23001, 0}, {1, 4006, 4006, 30101, 30001, 21501, 0, 23501, 0}} // 닥터
};
 
Upvote 0
Back
Top