13 lines
198 B
Plaintext
13 lines
198 B
Plaintext
//checks if PC already has henchman
|
|
|
|
int StartingConditional()
|
|
{
|
|
// Inspect local variables
|
|
|
|
if (!(GetIsObjectValid(GetHenchman(GetPCSpeaker()))))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|