WoR_PRC8/_module/nss/s_takehjnote.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

22 lines
618 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName s_takehjnote
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 12/17/2004 1:17:42 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "SHA_MARIN_NOTE_HJALMAR");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
RewardPartyXP(200,GetPCSpeaker());
}