PRC8/nwn/nwnprc/trunk/scripts/nw_g0_conversat.nss

20 lines
622 B
Plaintext
Raw Normal View History

////////////////////////////////////////////////////////////
// OnConversation
// g_ConversationDG.nss
// Copyright (c) 2001 Bioware Corp.
////////////////////////////////////////////////////////////
// Created By: Noel Borstad
// Created On: 04/25/02001
// Description: This is the default script that is called if
// no OnConversation script is specified.
////////////////////////////////////////////////////////////
#include "inc_eventhook"
void main()
{
if(GetListenPatternNumber() == -1)
BeginConversation();
ExecuteAllScriptsHookedToEvent(OBJECT_SELF, EVENT_VIRTUAL_ONCONVERSATION);
}