9 lines
178 B
Plaintext
9 lines
178 B
Plaintext
// checks to see if npc is henchman.
|
|
int StartingConditional()
|
|
{
|
|
object oMaster = GetMaster(OBJECT_SELF);
|
|
|
|
if(GetIsObjectValid(oMaster)) return FALSE;
|
|
return TRUE;
|
|
}
|