14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
#include "x0_i0_campaign"
|
|
int StartingConditional()
|
|
{
|
|
//Marin has already given info for quest 1 but the PC has not yet completed it.
|
|
if((GetCampaignDBInt(GetPCSpeaker(), "sha_marin_q1")) == 100 && (GetCampaignDBInt(GetPCSpeaker(), "sha_marin_q2")) == 0)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|