18 lines
238 B
Plaintext
18 lines
238 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC;
|
|
|
|
iResult = FALSE;
|
|
|
|
oPC = GetPCSpeaker();
|
|
|
|
if (GetSkillRank(SKILL_BLUFF,oPC) > 6)
|
|
iResult = TRUE;
|
|
|
|
if (GetLocalInt(oPC,"DMerchantBluff") ==1)
|
|
iResult = FALSE;
|
|
|
|
return iResult;
|
|
}
|