Added Mine & Caverns raise & lower functionality. Revamped Level 1 events to match PnP. Updated Level 1: Core. Added new Footcatcher trap type. Added Underwater heartbeat to Glop Lake Underwater. Full compile.
28 lines
596 B
Plaintext
28 lines
596 B
Plaintext
//:: Returns true if PC passes a DC 10 search check
|
|
|
|
int StartingConditional()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
object oSelf = OBJECT_SELF;
|
|
|
|
string sTag =GetTag(oSelf);
|
|
|
|
if (GetLocalInt(oPC, "FoundCoins"+sTag) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// Check if the player's search skill check is successful against DC 10
|
|
if (GetIsSkillSuccessful(oPC, SKILL_SEARCH, 10))
|
|
{
|
|
//:: Player passed the search check
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
//:: Player failed the search check
|
|
return FALSE;
|
|
}
|
|
}
|