Files
HeroesStone_PRC8/_module/nss/sc_check50gp.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

19 lines
518 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_check50gp
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 7/2/2002 12:03:40 AM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oPlayer=GetPCSpeaker();
// Make sure the PC speaker has 50 GP in their inventory
if(GetGold(oPlayer)<50)
return FALSE;
return TRUE;
}