generated from Jaysyn/ModuleTemplate
15 lines
384 B
Plaintext
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);
|
|
}
|
|
}
|