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