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!

New Characters with StartUp items with Expiraton Date

Experienced Elementalist
Joined
Jul 3, 2020
Messages
299
Reaction score
24
Hi, I have one Season 6 Episode 3 Server,
how i can make the NEWly created characters to start with SETS + WEAPONS + WINGS, and these items to have duration 7 days pls help me
for igcn server files
 
Joined
May 26, 2009
Messages
17,307
Reaction score
3,218
if you use essential tools and make for example add 1 set then in inventory + weapons + wings + whatever items u want with duration then save character with that state

then u go in SQL and check dbo character for this Character player check you added all items and 'Inventory' column has a big code with all this items you copy that big code and you add it for DK in defaultclasstype for DK Class Code

Use [MuOnline]
UPDATE DefaultClassType
SET Inventory = 0x04............................................. big code you copied of the DK character u created with all items inside
WHERE Class = '16'


then after u create new DK it should show all this items

class codes are for each starting character class type:

DK = 16
ELF = 32
WIZ = 0
MG = 48
DL = 64
SUM = 80
RF = 96

same for other classes
 
Upvote 0
Back
Top