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

20 lines
661 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// q_bounty_complet - The quest is completed
// By Deva B. Winblood. September, 30th, 2008
////////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nBQ=GetLocalInt(oPC,"nBountyQuest");
object oItem=GetObjectByTag("qbounty"+IntToString(nBQ));
if (GetIsObjectValid(oItem)&&GetItemPossessor(oItem)==oPC)
{ // has
GiveGoldToCreature(oPC,500);
DestroyObject(oItem);
DeleteLocalInt(oPC,"nBountyQuest");
return TRUE;
} // has
return FALSE;
}