PWE_PRC8/_module/nss/for_clesreward.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

22 lines
669 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName for_clesreward
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 12/29/2003 8:11:14 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
// Give the speaker some gold
RewardPartyGP(100, GetPCSpeaker());
// Give the speaker some XP
RewardPartyXP(100, GetPCSpeaker());
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "BakhnaRakhnaHead");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}