Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

20 lines
655 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName grant_level
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 7/30/2004 7:40:17 PM
//:://////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (!(GetXP(oPC) <= 5001))
return;
// Give the speaker some gold
GiveGoldToCreature(GetPCSpeaker(), 100);
// Give the speaker some XP
GiveXPToCreature(GetPCSpeaker(),1000);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_STRIKE_HOLY), oPC);
}