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]How do I put this char to be sold just like the others?

Junior Spellweaver
Joined
Jul 6, 2015
Messages
184
Reaction score
41
PrintScreen ->
its in db? at where?
 
☆Dying Dawn☆
Joined
Jan 30, 2012
Messages
971
Reaction score
727
to unlock any character go to -> CREATE PROCEDURE [dbo].[WZ_ACCOUNT_CREATE] -> click modify -> look into the code for this
Code:
 exec FN_AddItemToUser [USER=25895]Custom[/USER]erID, 20174, 2000
and paste your character code below like this
Code:
 exec FN_AddItemToUser [USER=25895]Custom[/USER]erID, 20202, 2000

======To fix the price as "999999999" use this==========
Items_Gear -> look for your character example 20201 and change the PriceP or GPriceP from 0 to any price

or use this small query
Code:
use warz;
go

update Items_Gear
set GPriceP = 5000 -- this is the price for GD 
where ItemID = 20201
--set PriceP = price for GC
 
Upvote 0
Back
Top