NWNDS/nwnds_module/ss_key_destroy.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -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"));
}