Battledale_PRC8/_module/nss/persuade_check25.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

21 lines
507 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName persuade_check25
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 24/07/2002 19:56:31
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
int iDC = 25;
int iBonus = GetSkillRank(SKILL_PERSUADE, GetPCSpeaker());
if ((d20() + iBonus) >= iDC)
{
return TRUE;
}
return FALSE;
}