16 lines
455 B
Plaintext
16 lines
455 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_GetPreviousValidCloakModel(oItem);
|
||
|
|
||
|
lcs_ModifyandEquipNewCloak(oItem, nNewLine);
|
||
|
}
|