10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentLawChaos(GetPCSpeaker()) != ALIGNMENT_LAWFUL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|