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

15 lines
375 B
Plaintext

int StartingConditional()
{
// increment the position in the possible conversations
int temp = GetLocalInt(GetPCSpeaker(),"CURRENTRUMOR31");
temp++;
SetLocalInt(GetPCSpeaker(),"CURRENTRUMOR31",temp);
// see if this is the rumor selected
if(GetLocalInt(GetPCSpeaker(),"RUMORD31") == temp)
{
return TRUE;
}
else { return FALSE; }
}