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