Added PnP Dire Rat.
Added PnP Dire Rat.
This commit is contained in:
15
nwn_dark_sun/trm_tyrpass.nss
Normal file
15
nwn_dark_sun/trm_tyrpass.nss
Normal file
@@ -0,0 +1,15 @@
|
||||
// Put this script OnEnter.
|
||||
|
||||
|
||||
void main()
|
||||
{
|
||||
// Get the creature who triggered this event.
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
// Only fire for (real) PCs.
|
||||
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
|
||||
return;
|
||||
|
||||
// Have us strike up a conversation with the PC.
|
||||
ActionStartConversation(oPC, "trm_tyrpass", TRUE, FALSE);
|
||||
}
|
Reference in New Issue
Block a user