16 lines
515 B
Plaintext
16 lines
515 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: Created By: Cuprius
|
|
//:: Created On: 12/20/2007
|
|
//:: Based on similar original LCS scripts by Lilista
|
|
//:://////////////////////////////////////////////
|
|
#include "lcs_clk_include"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oItem = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC);
|
|
int nNewLine = lcs_GetPreviousValidColor(oItem, ITEM_APPR_ARMOR_COLOR_METAL2);
|
|
|
|
lcs_ModifyColorandEquipNewCloak(oItem, ITEM_APPR_ARMOR_COLOR_METAL2, nNewLine);
|
|
}
|