PWE_PRC8/_module/nss/zm_takegland.nss

17 lines
519 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
//::///////////////////////////////////////////////
//:: FileName zm_takegland
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 6/30/2002 12:35:02 AM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "Farxgland");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}