Alangara_PRC8/_module/nss/tlr_reset.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

26 lines
659 B
Plaintext

//::///////////////////////////////////////////////
//::MIL TAILOR: reset
//:: onconv mil_tailor
//:://////////////////////////////////////////////
/*
read the blueprint of our clothes
destroy clothes
create the standard blueprint and put it on
*/
//:://////////////////////////////////////////////
//:: Created By: bloodsong
//:://////////////////////////////////////////////
void main()
{
object oCloth = GetItemInSlot(INVENTORY_SLOT_CHEST);
string sBP = GetResRef(oCloth);
object oNew = CreateItemOnObject(sBP);
DelayCommand(0.5, ActionEquipItem(oNew, INVENTORY_SLOT_CHEST));
DestroyObject(oCloth, 0.8);
}