11 lines
183 B
Plaintext
11 lines
183 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_EVIL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|