• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Help Create Char :( !!

Newbie Spellweaver
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
Newbie Spellweaver
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
Newbie Spellweaver
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