Ancordia_PRC8/_module/nss/bluff_check.nss

9 lines
207 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
#include "quest_inc"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nDC = GetAdjustedSkillDC(oPC);
if (GetIsSkillSuccessful(oPC, SKILL_BLUFF, nDC)) return TRUE;
return FALSE;
}