Should be inside your database in "items" Just look for the unique id for that rare and remove it.Hello,
So I want to reset everyones rares via database, but I'm not too sure how... Could someone help? Is there an sql or what?
Please help
That will delete everyones furni in room and inventory.Can I truncate the whole table to delete all items? or will it like delete the furni in the room
"[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM items where room_id = '0'' at line 1"This query will delete all furnitures in the inventory.
Code:DELETE * FROM items where room_id = '0';
Try this, should work now."[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM items where room_id = '0'' at line 1"
DELETE FROM items where room_id = '0';
If you have any questions just ask it.Thanks man! It worked