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