20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name x2_def_onconv
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Default On Conversation script
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Keith Warner
|
|
//:: Created On: June 11/03
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
//:: Execute the default NPC OnConversation script
|
|
ExecuteScript("nw_c2_default4", OBJECT_SELF);
|
|
|
|
}
|