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