generated from Jaysyn/ModuleTemplate
25 lines
757 B
Plaintext
25 lines
757 B
Plaintext
//Created by 420 for the CEP
|
|
//Dye the cloak.
|
|
//Based on script tlr_dyeitem.nss by Jake E. Fitch
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
|
|
int iMaterialToDye = GetLocalInt(oPC, "MaterialToDye");
|
|
int iColorGroup = GetLocalInt(oPC, "ColorGroup");
|
|
int iColorToDye = GetLocalInt(oPC, "ColorToDye");
|
|
|
|
int iColor = (iColorGroup * 8) + iColorToDye;
|
|
object oItem = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC);
|
|
|
|
if (GetIsObjectValid(oItem)) {
|
|
// Dye the item
|
|
object oDyedItem = CopyItemAndModify(oItem, ITEM_APPR_TYPE_ARMOR_COLOR, iMaterialToDye, iColor, TRUE);
|
|
DestroyObject(oItem);
|
|
|
|
// Equip the armor
|
|
DelayCommand(0.5f, AssignCommand(oPC, ActionEquipItem(oDyedItem, INVENTORY_SLOT_CLOAK)));
|
|
}
|
|
}
|