AOC_PRC8/_removed/nw_g0_conversat.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

29 lines
817 B
Plaintext

////////////////////////////////////////////////////////////
// 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 "custom_set_lib"
#include "inc_eventhook"
void main()
{
ExecuteAllScriptsHookedToEvent(OBJECT_SELF, EVENT_VIRTUAL_ONCONVERSATION);
if(!GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM"))
{
if ( GetListenPatternNumber() == -1 )
{
BeginConversation();
}
}
else
{
ExecuteScript("custom_conv",OBJECT_SELF);
}
}