void main()
{
    object oPC;
    string Speech;
    oPC = GetEnteringObject();
    if (GetTag(oPC)=="Roanna" & GetLocalInt(oPC, "BathEntered")==0)
        {
        SetLocalInt(oPC, "BathEntered",1);
        }

}