22 lines
790 B
Plaintext
22 lines
790 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: Created By: Cuprius
|
|
//:: Created On: 2/18/08
|
|
//::///////////////////////////////////////////////
|
|
/*
|
|
TRUE if PC Speaker has wings and is wearing
|
|
a cloak that hides wings when worn, otherwise
|
|
FALSE.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oItem = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC);
|
|
if (!GetIsObjectValid(oItem)) return FALSE;
|
|
int nWingType = GetCreatureWingType(oPC);
|
|
int nAppearance = GetItemAppearance(oItem, ITEM_APPR_TYPE_SIMPLE_MODEL, 0);
|
|
int nHidewing = StringToInt(Get2DAString("cloakmodel", "HIDEWING", nAppearance));
|
|
if (nWingType != CREATURE_WING_TYPE_NONE && nHidewing == 1) return TRUE;
|
|
else return FALSE;
|
|
}
|