32 lines
861 B
Plaintext
32 lines
861 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName s_hascystalmoon
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/18/2004 12:01:15 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
#include "x0_i0_campaign"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC has Talked to Hjalmar
|
|
if(GetCampaignDBInt(GetPCSpeaker(), "sha_hjalmar_q1") == 100)
|
|
{ //And but has not heard/taken on this quest before. (Atleast not yet properly, IE: The PC did not walk out half way in between the conversation)
|
|
if(GetCampaignDBInt(GetPCSpeaker(), "sha_ladym_q1") == 100)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
return TRUE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|