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