generated from Jaysyn/ModuleTemplate
15 lines
354 B
Plaintext
15 lines
354 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Used for conversation. The said conversation will appear if a 1 is taken
|
|
// from a 1D4 random dice roll.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (d4() == 1);
|
|
return iResult;
|
|
}
|