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

14 lines
320 B
Plaintext

///////////////////////////////
// Dragon's Edge
// by Charly Carlos
///////////////////////////////
// Used during conversation. Checking if the player has atleast 50 gold.
///////////////////////////////
int StartingConditional()
{
int iResult;
iResult = (GetGold(GetPCSpeaker())>= 50);
return iResult;
}