13 lines
296 B
Plaintext
13 lines
296 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(!HasItem(GetPCSpeaker(), "dryadboots")) // Item ResRef here
|
||
|
(GetLocalInt(GetPCSpeaker(),"DryadQuest")==2);
|
||
|
return FALSE;
|
||
|
return iResult;
|
||
|
}
|