HiddenTradition_PRC8/_module/nss/sc_hassmithring.nss
2024-06-20 15:47:42 -04:00

23 lines
601 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_hassmithring
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 4/12/2003 10:05:09 AM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "it_WeddingRing"))
return FALSE;
// Inspect local variables
if(!(GetLocalInt(GetPCSpeaker(), "smithquest") < 1))
return FALSE;
return TRUE;
}