11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the player has the required skills
|
|
if(!GetHasSkill(SKILL_TUMBLE, GetPCSpeaker()))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|