Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
20 lines
622 B
Plaintext
20 lines
622 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 "inc_eventhook"
|
|
|
|
void main()
|
|
{
|
|
if(GetListenPatternNumber() == -1)
|
|
BeginConversation();
|
|
ExecuteAllScriptsHookedToEvent(OBJECT_SELF, EVENT_VIRTUAL_ONCONVERSATION);
|
|
}
|