HoS_PRC8/_mod/_module/nss/q_bounty_gone.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

22 lines
714 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// q_bounty_gone - Return TRUE if the bounty you are after is already dead.
// By Deva B. Winblood. September, 30th 2008
////////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
object oPC=GetPCSpeaker();
object oItem;
int nBQ=GetLocalInt(oPC,"nBountyQuest");
if (nBQ>0)
{ // bounty quest
oItem=GetObjectByTag("qbounty"+IntToString(nBQ));
if (!GetIsObjectValid(oItem))
{ // already killed
DeleteLocalInt(oPC,"nBountyQuest");
return TRUE;
} // already killed
} // bounty quest
return FALSE;
}