Can you date professors normally or is it really only fucking in the classroom and occasionally at their apartment if you meet them at a bar or something? I never had an option to ask for a number or anything.
Professor interaction in the future, will there phone #?
Sex interactions, be different, Like professor asks you to go to on errand,
During lunch break, you take professor out to lunch?
Sex might be different later updates?
Add the Professor to your phone by doing the following to CourseOfTemptation.html in Notepad++
1. CTRL F: setup.people.valid_phone_contact
2. You will see the following:
setup.people.valid_phone_contact = function(name)
{return this.is_known(name) && this.get_type(name) != "faculty" && this.get_type(name) != "outsider" && !this.is_removed(name);}
3. Remove != "faculty"
4. This will make it so that when the program is using the save file to set everything up from the game, the add phone contact function won't exclude faculty.
There are two Routes you can go from here. Either A. Automatically Add Professor to your Players Phone when Favor > A Certain Value (like 100) or B. Set it Manually in the save file.
Route A could potentionally be less stable and could potentionally ruin your save and game. Route B won't. I'll be using Route A because it's easier and automatic.
A. To Automatically Add Professor to the Player's Phone,
Replace:
<<link "Talk to <<dprofessor>>" AfterClassTalk>>
<<set $eventnpc to $professor>>
<<run setup.School.leave_class()>>
<</link>>
With:
<<link "Talk to <<dprofessor>>" AfterClassTalk>>
<<set $eventnpc to $professor>>
<<set _favor to setup.people.get_attitude($eventnpc, "favor"
>>
<<if _favor gte 100>>
<<givenumber $eventnpc>>
<</if>>
<<run setup.School.leave_class()>>
<</link>>
B. Set it Manually in the save file
1. Open up your save file, use CTRL F to find professors by name.
2. Then scroll down to "known": true, and under it paste "phone": true.
This will make it so the professors get added to your phone. Now, you should be able to do everything that you do with your friends with your professors, like hangout, and you can build friendship, spend time with them, etc. You should be able to get add relationship events to change your relationship with them, I guess.