WoR_PRC8/_module/nss/s_takearachnote1.nss

17 lines
527 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName s_takearachnote1
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/6/2005 1:01:15 AM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "SHA_ARACH_NOTE1");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}