//:://///////////////////////////////////////////// //:: sc_order_any_1 //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* */ //::////////////////////////////////////////////// //:: Created By: Lysandius //:: Created On: 14-07-2002 //::////////////////////////////////////////////// int StartingConditional() { int nAle = GetLocalInt(OBJECT_SELF, "nAle"); int nWine = GetLocalInt(OBJECT_SELF, "nWine"); int nSpirits = GetLocalInt(OBJECT_SELF, "nSpirits"); if (nAle == 0 || nWine == 0 || nSpirits == 0) return TRUE; return FALSE; }