So I have a server and there are quite a few locked vehicles just sitting around taking up space, I want to put in an event like:
DELETE FROM `object_data` WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 30 DAY) AND `CharacterID` > 0 AND `Classname` NOT IN ('VaultStorage','LockboxStorage','VaultStorageLocked','LockboxStorageLocked') AND `Inventory` <> '[]' AND `Inventory` IS NOT NULL
But instead of deleting them, I want to teleport them to the volcano on the tavi map, as like a storage area, just incase someone wants their vehicle back. I would like to teleport them after about 60 days of inactivity, but i'm not too keen on deleting.
Can this be done?