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

17 lines
475 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// Sets the variable to 1 meaning the player knows the quest of talking to Perudoc,
// for Amand.
/////////////////////////////////////
void main()
{
if (GetLocalInt(GetModule(), "nPerudocQuest")< 1)
{
object oPC = GetPCSpeaker();
SetLocalInt(GetModule(), "nPerudocQuest", 1);
CreateItemOnObject("bagofstrangepowd", oPC);
}
}