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

16 lines
352 B
Plaintext

// 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);
}