10 lines
211 B
Plaintext
10 lines
211 B
Plaintext
//Only proceed if PC actually paid for the henchman
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if ( GetLocalInt(oPC, "hench_notaffordable") != 0 )
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|