9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nDC = GetAdjustedSkillDC(oPC)*3/4;
|
|
if (GetIsSkillSuccessful(oPC, SKILL_PICK_POCKET, nDC)) return TRUE;
|
|
return FALSE;
|
|
}
|