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

21 lines
691 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// Causes the player to play music with the minstrels.
/////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
effect eSong = EffectVisualEffect(VFX_DUR_BARD_SONG);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSong, oPC, 7.0);
AssignCommand(oPC, ClearAllActions(TRUE));
SetCommandable(FALSE, oPC);
FadeToBlack(oPC);
DelayCommand(3.0, ClearAllActions(TRUE));
DelayCommand(4.0, FadeFromBlack(oPC));
DelayCommand(4.0, SetCommandable(TRUE, oPC));
DelayCommand(4.0, ActionStartConversation(oPC, "way_minstrel2"));
}