32 lines
986 B
Plaintext
32 lines
986 B
Plaintext
//:: Returns true if the PC passes a DC 5 search check.
|
|
//:: Only allows one chance to search
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sPlacableTag = GetTag(OBJECT_SELF);
|
|
int nPlayerSearched = GetLocalInt(oPC, "PlayerSearched_" + sPlacableTag); // Unique flag for each player
|
|
|
|
// Check if the player has already attempted searching this placable
|
|
if (nPlayerSearched == 1)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// Check if the player's search skill check is successful against DC 10
|
|
if (GetIsSkillSuccessful(oPC, SKILL_SEARCH, 5))
|
|
{
|
|
// Set the flag on the player to ensure it's only run once per player
|
|
SetLocalInt(oPC, "PlayerSearched_" + sPlacableTag, 1);
|
|
|
|
return TRUE; // Condition met, continue with the conversation
|
|
}
|
|
else
|
|
{
|
|
// Set the flag on the player to ensure it's only run once per player
|
|
SetLocalInt(oPC, "PlayerSearched_" + sPlacableTag, 1);
|
|
return FALSE;
|
|
}
|
|
}
|
|
|