Ancordia_PRC8/_module/nss/pickpocket_check.nss

9 lines
217 B
Plaintext
Raw Normal View History

2023-09-21 19:51:32 -04:00
#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;
}