generated from Jaysyn/ModuleTemplate
15 lines
380 B
Plaintext
15 lines
380 B
Plaintext
/////////////////////////////////////
|
|
// 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;
|
|
}
|