15 lines
191 B
Plaintext
15 lines
191 B
Plaintext
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
string sTag;
|
|
|
|
iResult = FALSE;
|
|
sTag = "en4_cubeooze";
|
|
if (HasItem(GetPCSpeaker(),sTag))
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|