EN6_PRC8/_module/nss/en6_fog_c.nss

17 lines
235 B
Plaintext
Raw Normal View History

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;
}