int StartingConditional() { // This sets the number of the rumor that the PC will hear SetLocalInt(GetPCSpeaker(),"RUMORD31",d3(1)); // 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; } }