27 lines
380 B
Plaintext
27 lines
380 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional();
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
object oPCX= OBJECT_SELF;
|
||
|
|
||
|
int iDC = 29;
|
||
|
int iBonus = GetSkillRank(SKILL_SEARCH,oPC);
|
||
|
|
||
|
|
||
|
if ((d20() + iBonus) >= iDC)
|
||
|
{
|
||
|
AssignCommand(GetObjectByTag("fr_invisible02"), ActionStartConversation(oPC));
|
||
|
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|