RATDOG/_module/nss/destroyspeaker.nss
Jaysyn904 ee912d2da9 Quest persistence work
Quest persistence work.
2022-07-06 00:35:22 -04:00

13 lines
334 B
Plaintext

void main()
{
// Set destroyable.
SetIsDestroyable(TRUE, FALSE, FALSE);
// Remove plot/immoral/lootable flags JUST in case.
SetPlotFlag(OBJECT_SELF, FALSE);
SetImmortal(OBJECT_SELF, FALSE);
SetLootable(OBJECT_SELF, FALSE);
// <span class="highlight">Destroy</span> ourselves
DestroyObject(OBJECT_SELF);
}