23 lines
565 B
Plaintext
23 lines
565 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// Olander's and 9Fires' Quest/Commodities/Bounties System
|
|
// o9f_chk_min9
|
|
// 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 >= 9) return TRUE;
|
|
else return FALSE;
|
|
}
|