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!

Deleting items from inventory

Newbie Spellweaver
Joined
Jun 29, 2008
Messages
65
Reaction score
0
i have 4 AStral Boards X Green (acount binding + Selling not allowet) how can i delete this items ;/ ?? plz help
 
Newbie Spellweaver
Joined
Jul 6, 2008
Messages
91
Reaction score
2
Same here, i have alote of other items... any one knows ? :\

Delete char ? no no i have many quest done :\
 
Upvote 0
The Dinosaur
Loyal Member
Joined
Jun 29, 2008
Messages
5,021
Reaction score
999
The items have an attribute set and changing them is harder than wiping storage. Just put everything you want to keep in your inventory and set storage to 0x0 as endar says.
 
Upvote 0
Junior Spellweaver
Joined
Jan 21, 2008
Messages
123
Reaction score
0
0x0 will couse an error in your server and will couse your client to halt (done that know that :) ) the better way is to set the data field of character to
0x03000000000005000000000000000000
it will erase all inventory and put a lvl1 healing potion in first slot.
Sql:

Code:
update dbo.cabal_Inventory_table set data  = 0x03000000000005000000000000000000 where characteridx = YOUR_CHAR_ID

and before querying the query ensure that u selected GAMEDB in your query analyzer


and one more thing character ids are located at cabal_character_table
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jun 29, 2008
Messages
65
Reaction score
0
that option remowe all my Inventory from slot I II and III but no remowe my warehouse???
 
Upvote 0
Junior Spellweaver
Joined
Jan 21, 2008
Messages
123
Reaction score
0
yes it just removes from your inventory, not equipped items not items in warehouse

if u wanna remove items from warehouse just change the table in the query to dbo.cabal_warehouse_table
 
Upvote 0
Back
Top