24 lines
539 B
Plaintext
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);
|
|
|
|
}
|