12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!(GetHitDice(oPC) == 1)) return FALSE;
|
|
if (!(GetLocalInt(oPC, "talkquest") == 0)) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|