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

14 lines
452 B
Plaintext

int StartingConditional()
{
// This sets the number of the rumor that the PC will hear
SetLocalInt(GetPCSpeaker(),"RUMORD31",d3());
// This is the current number of the conversation...
SetLocalInt(GetPCSpeaker(),"CURRENTRUMOR31",1);
// now check if it is this line
if(GetLocalInt(GetPCSpeaker(),"RUMORD31") == GetLocalInt(GetPCSpeaker(),"CURRENTRUMOR31"))
{
return TRUE;
} // end if
else { return FALSE; }
}