REO-EE/_module/nss/zzdlg_end_normal.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

19 lines
471 B
Plaintext

// zzdlg_end_normal
//
// Original filename under Z-Dialog: zdlg_end_normal
// Copyright (c) 2004 Paul Speed - BSD licensed.
// NWN Tools - http://nwntools.sf.net/
//
// Additions and changes from original copyright (c) 2005-2006 Greyhawk0
// Normal conversation end event script for the ZZ-Dialog system.
#include "zzdlg_tools_inc"
void main()
{
object oSpeaker = _dlgGetPcSpeaker();
_dlgSendEvent( oSpeaker, DLG_EVENT_END );
_CleanupDlg( oSpeaker );
}