14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
string sTag = "dmfi_playerbook";
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), sTag))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|