15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
//This checks to see if they have completed the quest already,
|
|
|
|
#include "nw_i0_tool"
|
|
#include "apts_inc_ptok"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(GetTokenBool(GetPCSpeaker(), "weary_bag")==1)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|