18 lines
220 B
Plaintext
18 lines
220 B
Plaintext
#include "rd_questinc"
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC;
|
|
int iResult;
|
|
string sTag;
|
|
|
|
oPC = GetPCSpeaker();
|
|
|
|
iResult = FALSE;
|
|
if (HasItem(oPC,"en4_orb"))
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|