generated from Jaysyn/ModuleTemplate
21 lines
521 B
Plaintext
21 lines
521 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Tailoring - Decrease Helm
|
|
//:: tlr_decreasehelm.nss
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Stacy L. Ropella
|
|
//:: from Mandragon's mil_tailor
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "tlr_items_inc"
|
|
|
|
void main()
|
|
{
|
|
object oModel = OBJECT_SELF;
|
|
object oHelmet = GetItemInSlot(INVENTORY_SLOT_HEAD, oModel);
|
|
RemakeHelm(oModel, oHelmet, PART_PREV);
|
|
}
|