RATDOG/_module/nss/cv_party_5k_xp.nss
Jaysyn904 4af27ed685 Quest persistence work
Quest persistence work.  Added new salamander model.
2022-07-03 23:23:03 -04:00

24 lines
539 B
Plaintext

//::///////////////////////////////////////////////
//:: cv_party_5k_xp.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Rewards the PC's party with 5000 XP.
*/
//:://////////////////////////////////////////////
//:: Created By: Tolen
//:: Created On: 7/30/2005 4:22:02 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: Give the PC's party XP.
RewardPartyXP(5000, oPC);
}