generated from Jaysyn/ModuleTemplate
19 lines
562 B
Plaintext
19 lines
562 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: 07_castanim
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
OnActionTaken event that makes the PC do a conjuring
|
|
animation
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: ruelk
|
|
//:: Created On: 2/21/04
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
ActionPauseConversation();
|
|
AssignCommand(GetPCSpeaker(),ActionPlayAnimation(ANIMATION_LOOPING_CONJURE1,1.0,3.0));
|
|
DelayCommand(3.0, ActionResumeConversation());
|
|
}
|