Files
HeroesStone_PRC8/_module/nss/tlr_removeleft.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

20 lines
543 B
Plaintext

//::///////////////////////////////////////////////
//:: Tailoring - Remove Offhand Item
//:: tlr_removeleft.nss
//:: Copyright (c) 2006 Stacy L. Ropella
//:://////////////////////////////////////////////
/*
Removes (destroys) the NPC's offhand item
*/
//:://////////////////////////////////////////////
//:: Created By: Stacy L. Ropella
//:: Created On: January 29, 2006
//:://////////////////////////////////////////////
void main()
{
object oItem = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, OBJECT_SELF);
DestroyObject(oItem);
}