Rune_PRC8/_module/nss/oqs_chk_min10.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

23 lines
567 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Olander's and 9Fires' Quest/Commodities/Bounties System
// o9f_chk_min10
// By Don Anderson
// dandersonru@msn.com
//
// Called from the NPC Commodity Convo
//
////////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
object oMod = GetModule();
int nQTY = GetLocalInt(oNPC,"BUY_TOTALITEMS");
//All Checks
if(nQTY >= 10) return TRUE;
else return FALSE;
}