12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
|
//69_hench_creatureno
|
||
|
//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;
|
||
|
}
|