PoA_PRC8/_module/nss/has5kgp.nss
Jaysyn904 85272d2008 Fixed gambling station
Fixed gambling station.
2023-08-14 19:54:13 -04:00

13 lines
292 B
Plaintext

int StartingConditional()
{
// Get the PC who is involved in this conversation
object oPC = GetPCSpeaker();
// The PC must have at least 10000 gold.
if ( GetGold(oPC) < 5000 )
return FALSE;
// If we make it this far, we have passed all tests.
return TRUE;
}