Files
HeroesStone_PRC8/_module/nss/de1_random_2fr3.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

15 lines
376 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// Used for conversation. The said conversation will appear if a 1 or 2 is taken
// from a 1D3 random dice roll.
/////////////////////////////////////
int StartingConditional()
{
int iResult;
iResult = ((d3() == 1) || (d3() == 2));
return iResult;
}