WoR_PRC8/_module/nss/s_hascystalmoon.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

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;
}
}