20 lines
398 B
Plaintext
20 lines
398 B
Plaintext
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: sklchk_search20.nss
|
||
|
//::
|
||
|
//:: 20 DC Search check for conversations
|
||
|
//::
|
||
|
//::
|
||
|
//::
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (!GetIsSkillSuccessful(oPC, SKILL_SEARCH, 20)) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|