Files
HeroesStone_PRC8/_module/nss/07_castanim.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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());
}