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(), "dragonorb")) // Item ResRef here
|
|
(GetLocalInt(GetPCSpeaker(),"AngryDragon")==2);
|
|
return FALSE;
|
|
return iResult;
|
|
}
|