12 lines
272 B
Plaintext
12 lines
272 B
Plaintext
//69_hench_creatureyes2
|
|
//Checks for no summoned creature (animal companion)
|
|
//Created By: 69MEH69 MAR2005
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetHasFeat(FEAT_ANIMAL_COMPANION) && GetLocalInt(OBJECT_SELF, "HasCompanion"));
|
|
return iResult;
|
|
}
|