23 lines
548 B
Plaintext
23 lines
548 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_illthidq
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Shayan
|
||
|
//:: Created On: 10/8/2004 12:44:06 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(HasItem(GetPCSpeaker(), "sha_illthid_qitem4"))
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
}
|