• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Which table to delete item in the house? TFS 1.0

zetibia

Member
Joined
Jun 23, 2013
Messages
110
Reaction score
11
Hello people, I have a mysql command to delete item that is in the game, however this command worked on TFS 0.4 where the database was different, TILE ITEMS existed, and now no longer exists, and then to delete now where should I look?


Command used:

Tile_items DELETE FROM WHERE itemtype = 2160;
 
I think it is this table:
`tile_store` (
`house_id` int(11) NOT NULL,
`data` longblob NOT NULL,
FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE
)
 
how will I delete the item in tile_store, here is the table that way:

ss
 
Back
Top