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.
27 lines
378 B
Plaintext
27 lines
378 B
Plaintext
#include "nw_i0_tool"
|
|
|
|
int StartingConditional();
|
|
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
|
|
object oPCX= OBJECT_SELF;
|
|
|
|
int iDC = 30;
|
|
int iBonus = GetSkillRank(SKILL_LORE,oPC);
|
|
|
|
|
|
if ((d20() + iBonus) >= iDC)
|
|
{
|
|
AssignCommand(GetObjectByTag("fr_invisible03"), ActionStartConversation(oPC));
|
|
|
|
}
|
|
else
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|