Added PnP Dire Rat.
Added PnP Dire Rat.
This commit is contained in:
12
nwn_dark_sun/ss_key_destroy.nss
Normal file
12
nwn_dark_sun/ss_key_destroy.nss
Normal file
@@ -0,0 +1,12 @@
|
||||
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"));
|
||||
}
|
Reference in New Issue
Block a user