///////////////////////////////////// // Dragon's Edge // by Charly Carlos ///////////////////////////////////// // Check if the dealer's total in the Sword and Shields game is over 15. ///////////////////////////////////// int StartingConditional() { int iResult; int nDealerTotal = GetLocalInt(OBJECT_SELF, "nMyTotalDice"); iResult = (nDealerTotal > 15); return iResult; }