RATDOG/_module/nss/at_075.nss

17 lines
530 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName at_075
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/21/2005 9:51:54 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "KnoobsHead");
if(GetIsObjectValid(oItemToTake) != 0)
ActionTakeItem(oItemToTake, GetPCSpeaker());
}