Quote:
I'm making sense... You can still get the banners from alpha... That's what I meant...
Also removing the items doesn't seem that easy... Unless you have a procedure to server-wide wipe an item... You'd be dead without that since the inventory data is stored as binary in the database.
Is easy to do that... during maintenace with server off.
it works but have add a line for each inventory table there is 8 tables for inventory and 1 for Storage...
This a very simple way to do that...
Code:
/* for example that finds "test Orbs" and Delete*/ USE DBNAME SELECT * FROM Table_Name1 where item_type = '9' and item_id = '430'; DELETE FROM Table_Name1 where item_type = '9' and item_id = '430';