PDA

View Full Version : Remove Augmentation Sealers


strugglegenerator
05-26-2019, 10:18 AM
I was able to remove all LDON NPC's and tents/barrels/crates/carts/campfires from a zone, but I cannot get the Augmentation Sealer to remove. It doesn't appear in the "Doors" part of the database.

Does anyone know where it's located so I can delete it? Please let me know. Thanks!

Huppy
05-26-2019, 10:46 AM
In the 'object' table, objectname: IT10714_ACTORDEF (one for each zone it's in)

chrsschb
05-26-2019, 11:13 AM
Type 53 in the object table.

UPDATE object SET zpos = -1000 WHERE type = 53;

Will just hide them. Or you can run this

SELECT * FROM object WHERE type = 53;

and just delete them.