Shargast_PRC8/_module/Chapter 2/nss/cnr_carp_anim.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

32 lines
1.0 KiB
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_carp_anim
//
// Desc: This script animates the PC when crafting
// at the carpenter's bench.
//
// Author: David Bobeck 26Jan03
//
/////////////////////////////////////////////////////////
void main()
{
object oPC = GetLocalObject(OBJECT_SELF, "oCnrCraftingPC");
if (GetIsPC(oPC))
{
// The animation delay should be set to the number of seconds it
// takes to complete this animation.
SetLocalFloat(oPC, "fCnrAnimationDelay", 6.0);
int bSuccess = GetLocalInt(oPC, "bCnrCraftingResult");
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID, 1.0, 2.0));
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_LOW, 1.0, 1.0));
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID, 1.0, 2.0));
PlaySound("as_cv_sawing1");
DelayCommand(1.5, PlaySound("as_cv_hammering1"));
DelayCommand(3.0, PlaySound("as_cv_sawing2"));
}
}