HoS_PRC8/_mod/_module/nss/npcact_cnv_exitn.nss

25 lines
667 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
///////////////////////////////////////////////////////////////////////////////
// NPCACT_CNV_EXITN - NPC ACTIVITIES 6.0 Conversation add-on
// Exit conversation - normal
// By Deva Bryson Winblood. 09/03/2004
///////////////////////////////////////////////////////////////////////////////
#include "npcact_h_cconv"
void fnTestForEnd(object oPC)
{ // see if okay to end
object oMod;
if (!IsInConversation(oPC))
{ // okay to terminate
fnConvCompleted(oPC);
} // okay to terminate
} // fnTestForEnd()
void main()
{
object oPC=GetPCSpeaker();
object oMe=OBJECT_SELF;
DelayCommand(1.0,fnTestForEnd(oPC));
ExecuteScript("npcact_wrapcn",oMe);
}