WoR_PRC8/_module/nss/rude_sandonpotr.nss

17 lines
529 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName rude_sandonpotr
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 22/10/2004 4:27:25 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "MysteriousPotion");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}