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

15 lines
384 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// If Warden fratz hasn't given the XP for this quest, give it.
/////////////////////////////////////
void main()
{
if (GetLocalInt(OBJECT_SELF, "GaveXP")!=1)
{
GiveXPToCreature(GetPCSpeaker(), 300);
SetLocalInt(OBJECT_SELF, "GaveXP", 1);
}
}