PoA_PRC8/_module/nss/horsecrettrig2.nss

13 lines
261 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oPC = GetEnteringObject();
if (GetHasSkill(SKILL_SPOT,oPC)){
int skill = GetSkillRank(SKILL_SPOT, oPC);
int roll = d20(1);
if (roll <= skill){
object crack = GetObjectByTag("Knob");
AssignCommand(oPC, ActionStartConversation(crack));
}}
}