EN4_PRC8/_module/nss/en4_dmbluff1.nss

18 lines
238 B
Plaintext
Raw Permalink Normal View History

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;
}