RATDOG/_module/nss/destroyselfnofx.nss
Jaysyn904 0f13e6c538 Initial module commit
Initial module commit.
2021-08-29 23:34:48 -04:00

13 lines
338 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);
}