NWNDS/nwn_dark_sun/ss_key_destroy.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

13 lines
329 B
Plaintext

void main()
{
// Get the creature who triggered this event.
object oPC = GetExitingObject();
// Only fire for (real) PCs.
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
return;
// Destroy an object (not fully effective until this script ends).
DestroyObject(GetObjectByTag("SilverSpringKey"));
}