Grim the Austin example was terrific - too bad they dont have 'two thumbs up' icon here.

However there are few clarifications that can be made.
'Morning after' dialogues are pretty easy. You just have variable set on 'the night before' so either in the ###D.script or in the dialogue that is triggered from that script. And have that variable trigger a dialogue in the script. Therefore it should occur after the rest:
e.g.
AustinD.baf: (Austin's resting script)
IF
Global("G#LetsShag","GLOBAL",0)
THEN
RESPONSE #100
SetGloblal("LetsShag","GLOBAL",1)
Interact(Player1)
END
Firstly - you have Global("G#LetsShag","GLOBAL",1) at first and then switch to
SetGloblal("LetsShag","GLOBAL",1) - I am not sure if this is not just typo or you meant to have 2 different GLOBALS? The way it is now it won't work methinks.
Secondly-
The GabberD.bcs (or baf) governs the events that happen 'just before the rest' - not after. In this case after you click on the rest icon
Austin will offer to shag etc. However the other dialog might fire away before you had a chance to 'sleep' with your beloved, so it is better to actually insert a Timer.
A short interval of 10 seconds will do the trick. There is also a point of these scenes coinciding with the 'Dreams' - I discovered that the in-game dreams prevent the 'morning after dialogs' from happening in some cases, so the safeguards have to be put in.
As in
AustinD.bcs
IF
Global("LetsShag","GLOBAL",0)
THEN
RESPONSE #100
SetGloblal("LetsShag","GLOBAL",1)
RealSetGlobalTimer("TimeToShag","GLOBAL",10)
Interact(Player1)
END
and Austin.bcs
Austin.baf: (Austin's script)
IF
RealGlobalTimerExpired(("TimeToShag","GLOBAL")
Global("LetsShag","GLOBAL",1)
THEN
RESPONSE #100
SetGlobal("LetsShag","GLOBAL",2)
Interact(Player1)
END