EN6_PRC8/_module/nss/en6_fog_c.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

17 lines
235 B
Plaintext

int StartingConditional()
{
int iResult;
int iRandom;
iResult = FALSE;
iRandom=GetLocalInt(OBJECT_SELF,"Random");
if (iRandom==0)
{
iRandom=Random(3)+1;
SetLocalInt(OBJECT_SELF,"Random",iRandom);
}
return iResult;
}