RATDOG/_module/nss/sc_ra_rnd_rumors.nss
Jaysyn904 7f697d7467 Fixed randomized commoner dialog & rumors
Fixed randomized commoner dialog & rumors
2023-09-05 21:39:54 -04:00

24 lines
484 B
Plaintext

// sc_ra_rnd_rumors
// by: Tsurani.Nevericy
int StartingConditional()
{
object oSelf = OBJECT_SELF;
string sParam = GetScriptParam("iRumourNum");
int nCheck = GetLocalInt(oSelf, "iRumor");
//:: Set a random value if var doesn't exist
if (!nCheck)
SetLocalInt(oSelf, "iRumor", Random(60)+1);
int nVal = StringToInt(sParam);
if (nVal == nCheck)
{
DeleteLocalInt(oSelf, "iRumor");
return TRUE;
}
return FALSE;
}