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

21 lines
636 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName tuck_reward
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 6/29/2002 1:00:21 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
// Give the speaker some gold
RewardPartyGP(250, GetPCSpeaker());
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "OrcShamanHead");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}