12 lines
263 B
Plaintext
12 lines
263 B
Plaintext
|
//69_hench_creatureno1
|
||
|
//Checks for no summoned creature (familiar)
|
||
|
//Created By: 69MEH69 MAR2005
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = (GetHasFeat(FEAT_SUMMON_FAMILIAR) && !GetLocalInt(OBJECT_SELF, "HasCompanion"));
|
||
|
return iResult;
|
||
|
}
|