generated from Jaysyn/ModuleTemplate
15 lines
375 B
Plaintext
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; }
|
|
}
|