HiddenTradition_PRC8/_module/nss/at_givenorthorc.nss

17 lines
531 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: FileName at_givenorthorc
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 03/10/30 03:17:44
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "it_NorthlandChiefsHead");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}