Lazarus Magni wrote...
Thanks, Ghost, so would deleting an item or creature from the custom pallet in the toolset remove that blueprint then?
The pallet version IS the blueprint. I can't tell if you're clear on this, so I'll elaborate a bit. Objects come in two flavors - palette items, and instances. An instance is created from a palette copy, and can at that point be altered from the original. Once placed ingame, it has its own existence, independant of the palette version, whether you place it in the module while you are building, or it is spawned in when the module is running.
You only need to keep palette blueprints of objects for two main reasons:
1) You plan to do further building with that item. These are basically convenience objects, left in the palette so that you can put them in areas without having to remake them.
2) You plan to have it spawn in at some point during gameplay. Examples inclue:
a) encounter creatures
NPCs who spawn in and despawn when the player leaves
c) items spawned by loot systems instead of being placed in an area as an instance.
d) placeables you want to spawn in, or respawn some point after they are looted
and so on. If you aren't going to do 1 or 2 with a blueprint, you can remove the item from the palette. It's not always easy to tell, though, which is why resman is a convenient option, especially if its a mod that has had a lot of work done on it in the past. Those multiple copies of creatures in the palette may well be there for a reason - perhaps each has a different key? Resman can handle anything in category 2 except encounter creatures spawned with bioware triggers (it CAN hold palette copies for custom spawning systems).
There are ways to script around the need for so many palette items, as well. Suppose you have 10 creatures that hold different keys to different doors, but are otherwise identical to another palette resref. You could set up that palette resref to have a key spawn onto it at runtime if certain conditions are met, saving yourself 10 resources.
Hopefully this clears things up somewhat.
Funky