19 lines
215 B
Plaintext
19 lines
215 B
Plaintext
|
#include "rd_questinc"
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC;
|
||
|
int iResult;
|
||
|
|
||
|
oPC = GetPCSpeaker();
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (HasItem(oPC, "en3_heirloom"))
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|
||
|
|
||
|
|