UW2_PRC8/_module/nss/goldcheck2.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

19 lines
519 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_035
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/8/2007 5:37:23 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Make sure the PC speaker has these items in their inventory
if (GetGold(oPC) >= 100000)
return FALSE;
return TRUE;
}