20 lines
668 B
Plaintext
20 lines
668 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: NPC Statue OnConversation
|
|
//:: statue_onconvers
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Hillary Anne Skeryanc-Mann
|
|
//:: Created On: Monday, January 26, 2004
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oStatue = OBJECT_SELF;
|
|
string sStatue = GetTag(oStatue);
|
|
object oToFace = GetWaypointByTag("STATUE_" + sStatue);
|
|
|
|
ClearAllActions(TRUE);
|
|
BeginConversation();
|
|
AssignCommand(oStatue, SetFacingPoint(GetPosition(oToFace)));
|
|
ActionPlayAnimation(ANIMATION_LOOPING_PAUSE2, 500.0f, 999999.0f);
|
|
}
|