HoS_PRC8/_mod/_module/nss/cv_grth_hpersuas.nss

9 lines
230 B
Plaintext
Raw Normal View History

2024-11-25 19:36:07 -05:00
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nQuest=GetLocalInt(oPC,"nGrubbinsQuest");
int nPersuasion=GetSkillRank(SKILL_PERSUADE,oPC);
if (nQuest==1&&nPersuasion>0) return TRUE;
return FALSE;
}