Weclock: I always wanted to make my own text adventure..
Do you know enough programming to do an if/then/else? That's quite literally all you need (aside from the story) to make a choose your own adventure style text adventure. If you want an inventory of some sort then you'll have to get advanced and start using scary variables, it might take up to 2 minutes longer!!
function Page1
"It's morning, you look out upon your bedroom. Light is spread out across the floor. Your things shine in the light.
Do you:
1: Get out of bed?
2: Sleep in!"
If input=1 then call page2
if input=2 then call page5
else call page 1
end function
Can't remember off the top of my head how to print to screen in vbs but that's basically your text adventure done