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