22 lines
579 B
Plaintext
22 lines
579 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
//:: FileName lcs_cloak_cond
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Conditional for x0_skill_ctrap dialog for use
|
||
|
with Lilista's Crafting System updated for
|
||
|
CEP 2.0 by Cuprius
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Cuprius
|
||
|
//:: Created On: 12/20/2007
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
object oItem = GetItemInSlot(INVENTORY_SLOT_CLOAK);
|
||
|
|
||
|
iResult = GetIsObjectValid(oItem);
|
||
|
return iResult;
|
||
|
}
|