Is there any way to edit the game so that my character wakes up at 6:00 AM or 7:00 AM?
as the others said, you can just skip the morning bj (assign someone first).
===
if you want to just edit the html file, try the following (haven't tested)
Normal wake changed to 7:00 AM
Find this
/* RESET HOURS */
<<if $dayend is true>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<<if _savecount gte 70>><<set $days+=1>><<adddays 1>><</if>>
<<set $daycount to 80>>
<</if>>
Change to this
/* RESET HOURS */
<<if $dayend is true>>
<<set $gameDate.setHours(7)>>
<<set $gameDate.setMinutes(0)>>
<<if _savecount gte 70>><<set $days+=1>><<adddays 1>><</if>>
<<set $daycount to 70>>
<</if>>
===
BJ wake up at 6:00 AM
Find this
<<set $gameDate.setHours(7)>>
<<set $daycount to 70>>
Change to this
<<set $gameDate.setHours(6)>>
<<set $daycount to 60>>
.