24 lines
484 B
Plaintext
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;
|
|
}
|