Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<table id=stuff>
<tr>
<td>
<img src="pics/locations/street.png">
</td>
<td>
<div id=content>
After finishing high school, you have decided to work in a summer club. You have to make some money and plans for the future...
and nowhere to go but up!
<hr>
<<link "Today is the first day of the rest of your life">>
<<goto "Home">>
<</link>>
</div>
</td>
</tr>
</table><<set $day = 1>>
<<set $time = 1>>
<<set $money = 100>>
<<set $energy = 100>>
<<set $style = 0>>
<<set $confidence = 0>>
<<set $beer = 0>>
<<set $rum = 0>><<widget "You">>
<span class=you>
"$args[0]"
</span>
<</widget>>
<<widget "MrsBrody">>
<span class=woman1>
"$args[0]"
</span>
<</widget>>
<<widget "MrsGreen">>
<span class=woman2>
"$args[0]"
</span>
<</widget>>
<<widget "Manager">>
<span class=boss>
"$args[0]"
</span>
<</widget>>
<<widget "MrBrody">>
<span class=man1>
"$args[0]"
</span>
<</widget>>
<<widget "man">>
<span class=man>
"$args[0]"
</span>
<</widget>>
<<widget "chance">>
<<set $chance = Math.min(Math.round(100*$style/$args[0]), 100)>>
<</widget>>
<<widget "time">>
''
<<set $time += 1>>
<<if $time gt 5>>
<<set $time = 1>>
<<set $day += 1>>
<<if $day gt 7>>
<<set $day = 1>>
<</if>>
<</if>>
Time passes...
''
<</widget>>
<<widget "money">>
<<set $money += $args[0]>>
''
<<if $args[0] gte 0>>
You've gained $<<print $args[0]>>.
<<else>>
You've lost $<<print Math.abs($args[0])>>.
<</if>>
''
<</widget>>
<<widget "energy">>
''
<<set $energy += $args[0]>>
<<if $args[0] gte 0>>
You've gained $args[0]% Energy.
<<else>>
You've lost <<print Math.abs($args[0])>>% Energy.
<</if>>
''
<</widget>>
<<widget "style">>
''
<<set $style += $args[0]>>
<<if $args[0] gte 0>>
You've gained $args[0] Style.
<<else>>
You've lost <<print Math.abs($args[0])>> Style.
<</if>>
''
<</widget>>
<<widget "confidence">>
''
<<set $confidence += $args[0]>>
<<if $args[0] gte 0>>
You've gained $args[0] Confidence.
<<else>>
You've lost <<print Math.abs($args[0])>> Confidence.
<</if>>
''
<</widget>>
<div id=header>
<table width=100%>
<tr>
<td class=headerimg>
<div>
<<back [img[pics/ui/back.png]]>>
</div>
</td>
<td width=148px>
<div class=centered>
<<link "Saves">>
<<script>>UI.saves()<</script>>
<</link>>
</div>
<div class=centered>
//Flamingo Club//
</div>
</td>
<td class=headerimg>
<div>
<<switch $time>>
<<case 1>>
<img src="pics/ui/morning.png">
<<case 2>>
<img src="pics/ui/noon.png">
<<case 3>>
<img src="pics/ui/afternoon.png">
<<case 4>>
<img src="pics/ui/evening.png">
<<case 5 6>>
<img src="pics/ui/night.png">
<</switch>>
</div>
</td>
<td width=148px>
<div class=centered>
<<switch $day>>
<<case 1>>
Monday
<<case 2>>
Tuesday
<<case 3>>
Wednesday
<<case 4>>
Thursday
<<case 5>>
Friday
<<case 6>>
Saturday
<<case 7>>
Sunday
<</switch>>
</div>
<div class=centered>
<<switch $time>>
<<case 1>>
Morning
<<case 2>>
Noon
<<case 3>>
Afternoon
<<case 4>>
Evening
<<case 5>>
Night
<</switch>>
</div>
</td>
<td width=213px>
<div class=stats>
Money:
<span>
$<<print $money>>
</span>
</div>
<div class=stats>
Energy:
<span>
$energy%
</span>
</div>
</td>
<td width=213px>
<div class=stats>
Style:
<span>
$style
</span>
</div>
<div class=stats>
Confidence:
<span>
$confidence
</span>
</div>
</td>
</tr>
</table>
</div><table id=stuff>
<tr>
<td>
<img src="pics/home/bedroom.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<link "Sleep">>
<<goto "Bedroom Sleep">>
<</link>>
<br>
<<if $energy gte 30>>
<<link "[E30] Work from home">>
<<goto "Bedroom Work">>
<</link>>
<<else>>
//[E30] Work from home//
<</if>>
<br>
<<link "Go online">>
<<goto "Bedroom Search">>
<</link>>
<br>
<<if hasVisited("Park Dealer Start")>>
Drink -
<<if $beer gte 1>>
<<link "Beer">>
<<goto "Bedroom Beer">>
<</link>>
<<else>>
//Beer//
<</if>>
($beer) |
<<if $rum gte 1>>
<<link "Rum">>
<<goto "Bedroom Rum">>
<</link>>
<<else>>
//Rum//
<</if>>
($rum)
<br>
<</if>>
<<link "Hallway">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/entrance.png">
</td>
<td>
<div id=content>
ENTRANCE
<br>
<<link "Get inside">>
<<goto "Hall">>
<</link>>
<br>
<hr>
</div>
</td>
</tr>
</table><<set $passage = passage()>>
<<if $money lt 0>>
<<set $money = 0>>
<</if>>
<<if $energy gt 100>>
<<set $energy = 100>>
<<elseif $energy lt 0>>
<<set $energy = 0>>
<</if>>
<<if $style lt 0>>
<<set $style = 0>>
<</if>>
<<if $confidence lt 0>>
<<set $confidence = 0>>
<</if>>
<<replace #header>><<display "PassageHeader">><</replace>><table id=stuff>
<tr>
<td>
<img src="pics/home/sleep.png">
</td>
<td>
<div id=content>
Zzz...
<hr>
''
<<set $time = 1>>
<<set $day += 1>>
<<if $day gt 7>>
<<set $day = 1>>
<</if>>
Time passes...
''
<br>
<<energy 100>>
<hr>
<<link "Wake up">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/kitchen.png">
</td>
<td>
<div id=content>
ROOM
<br>
<br>
<<link "Grab a snack">>
<<goto "Kitchen Snack">>
<</link>>
<br>
<<link "Hallway">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/livingroom.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<link "Watch TV">>
<<goto "Living Room TV">>
<</link>>
<br>
<<link "Hallway">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/bathroom.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<if hasVisited("Mother Chores First") and !hasVisited("Bathroom Laundry")>>
<<if $energy gte 30>>
<<link "[E30] Do the laundry">>
<<goto "Bathroom Laundry">>
<</link>>
<<else>>
//[E30] Do the laundry//
<</if>>
<br>
<</if>>
<<link "Take a shower">>
<<goto "Bathroom Shower">>
<</link>>
<br>
<<link "Hallway">>
<<goto "Hallway">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/snack.png">
</td>
<td>
<div id=content>
A great view of the ocean and a great snack.
Bon appetit!
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 10>>
<hr>
<<link "Hallway">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/tv.gif">
</td>
<td>
<div id=content>
Before you know it, it's already
<<switch $time>>
<<case 1>>
noon.
<<case 2>>
afternoon.
<<case 3>>
evening.
<<case 4>>
night.
<<case 5>>
morning.
<</switch>>
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 10>>
<hr>
<<link "Hallway">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/shower.png">
</td>
<td>
<div id=content>
Ah... much better.
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 10>>
<hr>
<<link "Hallway">>
<<goto "Hallway">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/town.png">
</td>
<td>
<div id=content>
SUBURBS
<br>
<<link "Home">>
<<goto "Hall">>
<</link>>
<br>
<<if $time lte 3>>
<<link "Mall">>
<<goto "Mall">>
<</link>>
<<else>>
//The mall is closed//
<</if>>
<br>
<<link "Park">>
<<goto "Park">>
<</link>>
<<if hasVisited("Sister Dealer First") and $time == 3>>
- the drug dealer is here
<</if>>
<hr>
DOWNTOWN
<br>
<<link "Gym">>
<<goto "Gym">>
<</link>>
<br>
<<if hasVisited("MrsBrody Phone") >>
<<if $time lte 3>>
<<link "MrsBrody House">>
<<goto "MrsBrody House">>
<</link>>
<<else>>
//MrsBrody's House//
<</if>>
<</if>>
<br>
<<if $time lte 4>>
<<link "Flamingo Country Club"$time == 3>>
<<goto "Club">>
<</link>>
<<else>>
//The Country Club is closed//
<</if>>
<hr>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/park.png">
</td>
<td>
<div id=content>
<<if hasVisited("Sister Dealer First") and $time == 3>>
DRUG DEALER
<br>
<<if !hasVisited("Park Dealer Start")>>
<<link "Find the drug dealer">>
<<goto "Park Dealer Start">>
<</link>>
<<else>>
<<if !hasVisited("Park Dealer Raise Bribe") or !hasVisited("Park Dealer Raise Success")>>
<<link "Ask the dealer to stop supplying your sister">>
<<goto "Park Dealer Raise">>
<</link>>
<br>
<</if>>
Buy beer ($10) -
<<if $money gte 10>>
<<link "x1">>
<<set $money -= 10>>
<<set $beer += 1>>
<</link>>
<<else>>
//x1//
<</if>>
|
<<if $money gte 50>>
<<link "x5">>
<<set $money -= 50>>
<<set $weed += 5>>
<</link>>
<<else>>
//x5//
<</if>>
|
<<if $money gte 100>>
<<link "x10">>
<<set $money -= 100>>
<<set $beer += 10>>
<</link>>
<<else>>
//x10//
<</if>>
<br>
Buy rum ($100)
<<if $money gte 100>>
<<link "x1">>
<<set $money -= 100>>
<<set $rum += 1>>
<</link>>
<<else>>
//x1//
<</if>>
|
<<if $money gte 500>>
<<link "x5">>
<<set $money -= 500>>
<<set $rum += 5>>
<</link>>
<<else>>
//x5//
<</if>>
|
<<if $money gte 1000>>
<<link "x10">>
<<set $money -= 1000>>
<<set $rum += 10>>
<</link>>
<<else>>
//x10//
<</if>>
<</if>>
<hr>
<</if>>
AREA
<br>
<<link "Go for a walk">>
<<goto "Park Walk">>
<</link>>
<br>
<<link "Leave the park">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/park/walk.png">
</td>
<td>
<div id=content>
A nice change of pace.
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 5>>
<hr>
<<link "Leave the park">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/gym.png">
</td>
<td>
<div id=content>
AREA
<br>
<<if $energy gte 50>>
<<link "[E50] Work out">>
<<goto "Gym Work Out">>
<</link>>
<<else>>
//[E50] Work out//
<</if>>
<br>
<<link "Leave the gym">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img @src="'pics/gym/gym' + random(1,5) + '.gif'">
</td>
<td>
<div id=content>
If you ever needed the motivation to keep working out... just look around.
<hr>
<<time>>
<br>
<<energy -50>>
<br>
<<style 20>>
<br>
<<confidence 20>>
<hr>
<<link "Leave the gym">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/rum.png">
</td>
<td>
<div id=content>
It's like you're drinking with the gods. Whoo!
<hr>
<<time>>
<br>
<<energy 50>>
<br>
<<confidence 50>>
<<set $rum -= 1>>
<hr>
<<link "Leave the room">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/beer.png">
</td>
<td>
<div id=content>
Perfect shot of refreshment!
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 30>>
<<set $beer -= 1>>
<hr>
<<link "Leave the room">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
AREA
<br>
<<if hasVisited("MrsBrody House First") and !hasVisited("Brerrands")>>
<<if $money gte 100>>
<<link "[$100] Buy stuff for MrsBrody">>
<<goto "Buy stuff for MrsBrody">>
<</link>>
<<else>>
//[$100] Buy stuff for MrsBrody//
<</if>>
<</if>>
<br>
<<if hasVisited("Cabana's AirCondition") and !hasVisited("Mall AirCondition")>>
<<if $money gte 100>>
<<link "[$100] Buy spare parts for the air condition">>
<<goto "Mall AirCondition">>
<</link>>
<<else>>
//[$100] Buy spare parts for cabana's air condition//
<</if>>
<br>
<</if>>
<<if hasVisited("Sister Recording Equipment First") and !hasVisited("Mall Recording Equipment")>>
<<if $money gte 1000>>
<<link "[$1000] Buy recording equipment for your sister">>
<<goto "Mall Recording Equipment">>
<</link>>
<<else>>
//[$1000] Buy recording equipment for your sister//
<</if>>
<br>
<</if>>
<<if hasVisited("Sister Dildos First") and !hasVisited("Mall Dildos")>>
<<if $money gte 200>>
<<link "[$200] Buy an assortment of dildos for your sister">>
<<goto "Mall Dildos">>
<</link>>
<<else>>
//[$200] Buy an assortment of dildos for your sister//
<</if>>
<br>
<</if>>
<<if hasVisited("M14")>>
<<if $money gte 60>>
<<link "[$60] Buy an erotic novel for MrsGreen">>
<<goto "Mall Erotic Novel">>
<</link>>
<<else>>
//[$60] Buy an erotic novel for MrsGreen//
<</if>>
<br>
<</if>>
<<if $money gte 150>>
<<link "[$150] Buy new clothes">>
<<goto "Mall Clothes">>
<</link>>
<<else>>
//[$150] Buy new clothes//
<</if>>
<br>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
The things needed are in the bags,you should take them to her.
<hr>
<<time>>
<br>
<<style -40>>
<hr>
<<link "Talk to Mrs Brody about the errands">>
<<goto "Brerrands">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
You spend the <<switch $time>>
<<case 1>>
morning
<<case 2>>
noon
<<case 3>>
afternoon
<</switch>>
picking out the fake dicks that soon will be going in and out of your sister's pussy. Is this really what your life has come to? If that's the case, your life certainly could have gone worse.
<hr>
<<time>>
<br>
<<money -200>>
<hr>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/bar.png">
</td>
<td>
<div id=content>
AREA
<br>
<<if $money gte 10>>
<<link "[$10] Buy yourself a drink">>
<<goto "Bar Drink">>
<</link>>
<<else>>
//[$10] Buy yourself a drink//
<</if>>
<br>
<<link "Leave the bar">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/bar/barman1.png">
</td>
<td>
<div id=content>
<<You "Can I have a rum and coke please?
And some advice would be welcome too about this place...">>
<br>
<<man "OK then here's your drink.....and...my advice is...
Never show surprise, never lose your cool." >>
<br>
<<if hasVisited("Air16") and !hasVisited("Lot0")>>
<<link "Hey,can I ask you a private question?">>
<<goto "Lot0">>
<</link>>
<<else>>
<</if>>
<br>
<br>
<<if hasVisited("Lot0")and !hasVisited("Lot2")>>
<<if $money gte 200>>
<<link "[$200, Oil] Get the oil and lubricant">>
<<goto "Lot2">>
<</link>>
<<else>>
//[$200, Oil] Get the oil and lubricant//
<</if>>
<</if>>
<br>
Nothing like a bit of liquid courage.
<hr>
<<time>>
<br>
<<money -10>>
<br>
<<energy 10>>
<br>
<<confidence 20>>
<hr>
<<link "Leave the bar">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
Picking the right bottle of wine for the occasion is an art. Now, whether you are an artist or an amateur remains to be seen.
<hr>
<<time>>
<br>
<<money -50>>
<hr>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
A camera, a tripod to hold it, a microphone to record sound, some lighting equipment... these devices don't come cheap, but you have a feeling that you'll recoup your investment in no time.
<hr>
<<time>>
<br>
<<money -1000>>
<hr>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool4.png">
</td>
<td>
<div id=content>
The woman is a little hesitant to say anything, but she can't come up with a good excuse fast enough, and so you're....
<br>
<<You "Well... Do you have a name, or can I just call you 'mam'?">>
<br>
Once again, she hesitates....but then....
<br>
<<MrsBrody "Actually young man I have a name for you to call me....Mrs Brody." >>
<br>
<<You "Please to meet you Mrs Brody...What's your favorite drink? I'm asking so I would get you one on our next meet up .">>
<br>
<<MrsBrody "OK then....I'm not sure what it is about you, but I feel like I have to get to know you.....See you" >>
<br>
She stood up and started leaving.
<br>
<hr>
<br>
<hr>
<<link "I hate to see you go, I love to watch you leave....">>
<<goto "MrsBrody Pool Success 2">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool2.png">
</td>
<td>
<div id=content>
You try to chat with the woman for a while, but she quickly makes up an excuse and prepares herself to leave the pool.
<hr>
<br>
<<energy -40>>
<br>
<<style -20>>
<br>
<<confidence -50>>
<hr>
<<time>>
<hr>
<<link "You'll have to try again some other time">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
Shopping for outfits is a tedious pastime, but if you want to look good, you gotta work for it.
<hr>
<<time>>
<br>
<<money -150>>
<br>
<<style 20>>
<hr>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/computer.png">
</td>
<td>
<div id=content>
What do you want to search for?
<br>
<<textbox "$considersubscribinganyway" "Enter your query" "Bedroom Search Result">>
<hr>
<<link "Leave the room">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/computer.png">
</td>
<td>
<div id=content>
<<if $considersubscribinganyway == "hehhehhehehe">>
Maybe replying to those Nigerian prince e-mails wasn't such a bad idea after all!
<hr>
<<money 1000000>>
<br>
<<style 10000>>
<br>
<<confidence 10000>>
<<else>>
Error! Try again.
<</if>>
<<if $considersubscribinganyway == "naughty">>
<hr>
<table id=stuff>
<tr>
<img src="pics/home/vid2.gif">
<div id=content>
Before you know it, it's already
<<switch $time>>
<<case 1>>
noon.
<<case 2>>
afternoon.
<<case 3>>
evening.
<<case 4>>
night.
<<case 5>>
morning.
<</switch>>
<hr>
<<time>>
<br>
<<energy 20>>
<br>
<<confidence 10>>
</div>
</tr>
</table>
<<else>>
<</if>>
<hr>
<<link "Leave the room">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/home/computer.png">
</td>
<td>
<div id=content>
The work is tedious and the pay is minimal, but at least you don't have a boss hanging over your head.
<hr>
<<time>>
<br>
<<money 20>>
<br>
<<energy -30>>
<hr>
<<link "Leave the room">>
<<goto "Hall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/street.png">
</div>
</td>
<td>
</tr>
</table><br>
<<link "Kitchen">>
<<goto "Kitchen">>
<</link>>
<br>
<<link "Living room">>
<<goto "Living Room">>
<</link>>
<br>
<hr>
OUTSIDE
<br>
<<link "Leave the house">>
<<goto "Town">>
<</link>>
<<link "Sleep">>
<<goto "Bedroom Sleep">>
<</link>>
<br>
<<if $energy gte 30>>
<<link "[E30] Work from home">>
<<goto "Bedroom Work">>
<</link>>
<<else>>
//[E30] Work from home//
<</if>>
<br>
<<link "Go online">>
<<goto "Bedroom Search">>
<</link>>
<br>
<<if hasVisited("Park Dealer Start")>>
Do drugs -
<<if $weed gte 1>>
<<link "Weed">>
<<goto "Bedroom Weed">>
<</link>>
<<else>>
//Weed//
<</if>>
($weed) |
<<if $drugs gte 1>>
<<link "Coke">>
<<goto "Bedroom Coke">>
<</link>>
<<else>>
//Coke//
<</if>>
($drugs)
<br>
<</if>>
<<link "Hallway">>
<<goto "Hallway">>
<</link>>
now you start getting all edgy around me.”
Um... thanks," she mumbled.
They have always been very respectful to me
Time will tell
you are going WAY too fast.
“I’ll bet you would LOVE to see those
she could feel the bulge in his pants
noticed HER nipples that were poking out the halter top
You could do that. . . but my husband really likes a technique I use on him in these situations.
Not to offend you Mrs. C
We must now move to another level of socializing . . . which is a bit more physical . . . but I know you will like it. And I have just the right outfits
"Why, how dare you!" she sputtered. her cheeks flushing crimson.
"How on earth can you say
I know how much you love me and I want you to indulge in your fantasy as much as possible.<table id=stuff>
<tr>
<td>
<img src="pics/home/hallway.png">
</td>
<td>
<div id=content>
HALLWAY
<br>
<<link "Kitchen">>
<<goto "Kitchen">>
<</link>>
<br>
<<link "Living room">>
<<goto "Living Room">>
<</link>>
<br>
<<link "Bedroom">>
<<goto "Bedroom">>
<</link>>
<br>
<hr>
OUTSIDE
<br>
<<link "Leave the house">>
<<goto "Town">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/flamingo.png">
</td>
<div id=content>
ENTRANCE
<hr>
The Flamingo Country Club an excellent establishment.....
<hr>
</div>
<br>
<br>
<div id=content>
<tr>
<td>
<br>
<<if hasVisited("Club First")>>
<<link "Get inside">>
<<goto "Entrance">>
<</link>>
<<else>>
<</if>>
<<if !hasVisited("Club First")>>
<<link "Let's get started">>
<<goto "Club First">>
<</link>>
<</if>>
</td>
</tr>
</div>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/pool/poolboy.png">
</td>
<td>
<div id=content>
Despite spending almost an entire hour cleaning the pool, you really don't feel so bad all this women lying around....you hear voices, too. Voices that say, 'If you don't kiss her soon, you're a chump.. Maybe you should have a better eye?
<hr>
<<time>>
<br>
<<energy -40>>
<br>
<<style -20>>
<br>
<<confidence 5>>
<br>
<<money 40>>
<hr>
<<link "Oh well">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/club/club.png">
</td>
<td>
<div id=content>
AREA
<br>
<<link "Pool">>
<<goto "Pool">>
<</link>>
<br>
<<link "Cabanas">>
<<goto "Cabanas">>
<</link>>
<br>
<<link "Bar">>
<<goto "Barr">>
<</link>>
<br>
<<link "Car Park">>
<<goto "Car Park">>
<</link>>
<br>
<br>
<hr>
<<link "Leave the Club">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/club/manager.png">
</td>
<td>
<div id=content>
<<Manager "Welcome and how are you today?">>
<br>
<<You "Hello,I would like to speak to the manager of this fine establishment, I'm here for the summer jod.">>
<br>
<<Manager "Well, that's really nice. I;m the manager Mr.Richard Vernon.I hope you'll found it entertaining, whimsical,productive and yet to be discreet with our clients , while performing your duties here with no emotional attachments." >>
<br>
<<You "Please accept my appreciation. I like to belong to any club that will have me as a part.">>
<br>
<<Manager "OK then let me show you around and fill you in things around here....Let’s just hope it’s got a happy ending." >>
<br>
I should say...please accept my resignation. I don't care to belong to any club that will have me as a member....and does Barry Manilow know that you raid his wardrobe?Nevertheless I need the job.
<hr>
<<time>>
<hr>
<<link "Something doesn't feel right here...">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/cabanasout.png">
</td>
<td>
<div id=content>
Life in a cabana can be even more generous, as you unwind in luxuriously designed day-use cabanas...
<hr>
<br>
<<if $energy gte 50 and hasVisited("Mall AirCondition") and !hasVisited("AirCondition Repair")>>
<<link "[E50, Spare Parts] Repair the air condition">>
<<goto "AirCondition Repair">>
<</link>>
<</if>>
<br>
<<if !hasVisited("Cabana's AirCondition")>>
<<link "Let's explore a bit">>
<<goto "Closer">>
<</link>>
<</if>>
<br>
<<if hasVisited("Mall AirCondition") and hasVisited("Air16") and !hasVisited("Lot2")>>
<<link "I have to buy oil">>
<<goto "Entrance">>
<</link>>
<<else>>
<</if>>
<br>
<<if hasVisited("Lot2") and !hasVisited("Mall Erotic Novel")>>
<<link "Let's visit MrsGreen">>
<<goto "MrsGreen Visit">>
<</link>>
<<else>>
<</if>>
<br>
<<if hasVisited("Mall AirCondition") and hasVisited("Air16") and hasVisited("Lot2") and hasVisited("M14") and !hasVisited("Mall Erotic Novel")>>
<<link "I have to buy an Erotic Novel">>
<<goto "Entrance">>
<</link>>
<<else>>
<</if>>
<br>
<<if hasVisited("Mall Erotic Novel")>>
<<link "Let's give the novel to MrsGreen">>
<<goto "MrsGreen novel">>
<</link>>
<<else>>
<</if>>
<br>
<<if hasVisited("Mall AirCondition") and hasVisited("Air16") and hasVisited("Lot2") and hasVisited("M14") and hasVisited("Mall Erotic Novel") and hasVisited("B6") and !hasVisited("Mall Lingerie")>>
<<link "I have to buy some Lingerie">>
<<goto "Entrance">>
<</link>>
<<else>>
<</if>>
<br>
<br>
<<link "Leave the Cabanas">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/locations/bar.png">
</td>
<td>
<div id=content>
<br>
<<You "Hello,I'm new here and I was hoping to have a drink just to relax cause I'm under a lot of pressure today.">>
<br>
<<man "Hi I'm Brian....Relax, you're in the perfect job.
There's no better way to make it
than working in a summer private club." >>
<br>
<<You "Nice to meet you...">>
<br>
<<man "Anything you might need just talk to me..." >>
<br>
<hr>
<<time>>
<div id=content>
<br>
<<if $money gte 10>>
<<link "[$10] Buy yourself a drink">>
<<goto "Bar Drink">>
<</link>>
<<else>>
//[$10] Buy yourself a drink//
<</if>>
<br>
<<link "Leave the bar">>
<<goto "Entrance">>
</tr>
</td>
</table>
<</link>>
</div>
<table id=stuff>
<tr>
<td>
<img @src="'pics/carpark/car' + random(1,4) + '.png'">
</td>
<td>
<div id=content>
This place is like a museum. It’s very beautiful and very cold, and you’re not allowed to touch anything.
<hr>
<br>
<<energy -10>>
<hr>
<<link "Leave the Car Park">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img @src="'pics/pool/pool' + random(1,5) + '.png'">
</td>
<td>
<div id=content>
How could I possibly be expected to handle work on a day like this?
<hr>
<<if !hasVisited("Unknown Woman")>>
<<link "Look further">>
<<goto "Unknown Woman">>
<</link>>
<</if>>
<<if hasVisited("Unknown Woman") and !hasVisited("Talk to her")>>
<<if $confidence gte 100 and $style gte 100>>
<<if $energy gte 40>>
<<link "Go and talk to her">>
<<goto "Talk to her">>
<</link>>
<<else>>
//[C100 S100] Go and talk to her//
<</if>>
<</if>>
<</if>>
<hr>
<<if hasVisited("Unknown Woman") and hasVisited("MrsBrody Pool Success 2") and !hasVisited("See her")>>
<<if $style gte 120>>
<<link "[S120] Greet her">>
<<goto "See her">>
<</link>>
<<else>>
//[S120] Greet her//
<</if>>
<</if>>
<<if hasVisited("See her")>>
<<if $style gte 120>>
<<link "[S120] Greet her">>
<<goto "See her">>
<</link>>
<<else>>
//[S120] Greet her//
<</if>>
<</if>>
<hr>
<br>
<<energy -10>>
<br>
<<confidence 5>>
<hr>
<br>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/pool/pool.png">
</td>
<td>
<div id=content>
AREA
<br>
<<if $energy gte 40>>
<<link "[E40] Work Pool">>
<<goto "Work Pool">>
<</link>>
<<else>>
//[E50] Work Pool//
<</if>>
<br>
<<link "Look Around">>
<<goto "Look Around">>
<</link>>
<br>
<hr>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<<if passage("BrLiving Room") $time == 3 and $confidence gte 250>>
<<link "[E30] Talk">>
<<goto "Talk">>
<</link>>
<</if>>
<<if hasVisited("Mother Massage Spy") and !hasVisited("Mother Wine First")>>
<<link "Your mother looks a bit tired today">>
<<goto "Mother Wine First")>>
<</link>>
<br>
<</if>>
<<if hasVisited("Mother Wine First") and !hasVisited("Mother Wine Success")>>
<<if visited("Mall Wine") gt visited("Mother Wine") and $time == 4 and $confidence gte 400>>
<<link "[C400, Wine, Evening] Open a bottle of wine">>
<<goto "Mother Wine")>>
<</link>>
<<else>>
//[C400, Wine, Evening] Open a bottle of wine//
<</if>>
<br>
<</if>>
<<if hasVisited("Mother Wine Blowjob") and !hasVisited("Mother Next Success")>>
<<if $confidence gte 500>>
<<link "[C500] Talk about her night of indiscretion">>
<<goto "Mother Next First")>>
<</link>>
<<else>>
//[C500] Talk about her night of indiscretion//
<</if>>
<br>
<</if>>
<</if>><table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool3.png">
</td>
<td>
<div id=content>
<br>
<<You "Excuse me, miss.....Hello,I'm new here and I was hoping to..">>
<br>
<<MrsBrody "Well, that's really nice.I don't know how to put this, but... I'm kind of relaxing here....sunbathing.... while you should be performing your duties here." >>
<br>
<<You "Please I like to get to know people who I am going to offer my services so I can be of more help.">>
<br>
<<MrsBrody "OK then let me tell you that it's dangerous for you to be here....with me...you know my husband...." >>
<hr>
<br>
<hr>
I should say...something clever....whaou...look at that white bikini...if it was wet I bet it would show off more of her breasts!
<hr>
<<time>>
<hr>
<<link "I was thinking that we gotta get you out of those wet swimsuit and into a dry martini.">>
<<goto "MrsBrody Pool Failure">>
<</link>>
<hr>
<<link "Now on the one hand, it's very difficult for someone like me to even speak to someone like you. But on the other hand, should that be a problem?">>
<<goto "MrsBrody Pool Success">>
<</link>>
</div>
</td>
</tr>
</table><<if passage() == "MrsBrody Phone" and $time == 1 or passage() == "BrLiving Room" and $time == 3>>
MrsBrody
<br>
<<display "MrsBrody Events">>
<<if passage("BrLiving Room") and $confidence gte 250>>
<<link "[E30] Talk">>
<<goto "Talk">>
<</link>>
<</if>>
<table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool02.gif">
</td>
<td>
<div id=content>
<br>
<<MrsBrody "Don't push your luck young man....." >>
<br>
She moved away...when.....
<br>
<<MrsBrody "And get that drink ready next time...." >>
<br>
She disappeared leaving you hunging there...
The good intentions were seemingly there, and that should perhaps count for something....
I should continue looking for her in the pool area...
<br>
<hr>
<br>
<<energy -40>>
<br>
<<style 10>>
<br>
<<confidence 30>>
<hr>
<<time>>
<br>
<hr>
<<link "Till next time then....">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrHouse.png">
</td>
<td>
<div id=content>
<<if hasVisited("MrsBrody House First")>>
<<link "Enter">>
<<goto "BrHall">>
<</link>>
<<else>>
<</if>>
<<if !hasVisited("MrsBrody House First")>>
<<link "Here we are">>
<<goto "MrsBrody House First">>
<</link>>
<</if>>
<br>
<hr>
<<link "Leave the House">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool1.png">
</td>
<br>
<<You "Who is this awsome woman?">>
<br>
<br>
Hope I can see her again in the pool...
<br>
But first I should be more confident and maybe stylish...
<br>
<hr>
<<if $confidence gte 100 and $style gte 100>>
<<if $energy gte 40>>
<<link "Go and talk to her">>
<<goto "Talk to her">>
<</link>>
<<else>>
//[C100 S100] Go and talk to her//
<</if>>
<</if>>
<hr>
<br>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
<br>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool6.png">
</td>
<td>
<div id=content>
<<You "Are you going to accept the drink that I promised?" >>
<br>
I asked in a mock voice from a ways behind her.
<br>
She jumped with a startled squeak and whirled around.
<br>
<br>
<<MrsBrody "Jesus, don’t scare me like that! You nearly gave me a heart-attack">>
<br>
she gasped, holding a hand over her heart.
<br>
<br>
<<You "Don’t you have to be old to have a heart-attack?">>
<br>
<<MrsBrody "Aww, thank you, I think." >>
<br>
I focused on just how sexy she looked.
<br>
<br>
<<MrsBrody "I suppose....it's sweet of you to think of me like that.. " >>
She takes a sip of her Margarita and then proceeds to oil her body.
<br>
<br>
<<You "You don’t mind if I keep you company do you? I’m so bored today.I love your legs.Did I tell you that?">>
<br>
<br>
<<MrsBrody "I am trying to relax in my own private club and you are spying on me - a married woman on her own space -you know I am a married woman don't you? " >>
She bent over slightly like she was talking to a child, her large breasts just about spilling out of her white bikini
<br>
<br>
<<You "Yes, I am well aware of that but I'm the type of guy who is going to compliment someone regardless of what the situation is. Even if it's just forbidden to compliment a married woman in that matter.">>
<br>
<br>
<<MrsBrody "You can get a lot of trouble for that young man... " >>
<br>
<br>
<<You "Why are you getting so defensive? Are we just having a friendly conversation, aren't we?">>
<br>
<<MrsBrody "It's not that. It's just
that...I don't think...I mean, you shouldn't..." >>
MrsBrody's face went flush.
<br>
<br>
<<You "What? I shouldn't look at your legs. Is that what you're saying? I can't compliment a woman for her legs?">>
<br>
<br>
<<MrsBrody "No, of course not.
I don't mind you looking at my legs, and I like
hearing sincere compliments" >>
The weather felt suddenly hotter....
She bit her lower lip, looked to my eager face, I nuzzled her ear...
<br>
<br>
<<You "Do you know what I like best about your legs?">>
<br>
<br>
<<MrsBrody "No...What?" >>
<hr>
<<if $confidence gte 200 and $style gte 200>>
<<link "[C200 S200, Tell] Tell her">>
<<goto "MrsBrody First")>>
<</link>>
<<else>>
//[C200 S200, Tell] Tell her//
<</if>>
<br>
<hr>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool5.png">
</td>
<td>
<div id=content>
<<You "They've got pretty feet at one end and a juicy cheeks at the other" >>
<br>
<br>
<<MrsBrody "I think I've had enough of this game. You need to think about something other than female anatomy. I want you to
know, I am shocked and appalled.">>
<br>
Minutes passed in awkward silence....
<br>
<br>
<<You "I guess you're mad at me, huh?" >>
<br>
<br>
<<MrsBrody "No,I'm not mad at all.I'm sorry I blew up at you. I
know you can't help yourself. You obviously have your hormons running up and down your brain....">>
<br>
<br>
<<MrsBrody "I wasn't really that upset, and I did enjoy the
flattery to be honest.">>
She smiled warmly,I gave her a appraising look.
I leaned towards her once more and said...
<br>
<br>
<<You " You were right. I forgot you I'm an employee here.
I'll try to remember, but I wish you weren't so damn pretty.
You really make it hard." >>
<br>
<br>
This put a smile on her face and a glow to her skin.
<br>
<br>
<<MrsBrody "I know I make it hard, but that's what
we pretty girls do best.">>
She could see the bulge in my pants now.....
<br>
<br>
<<MrsBrody "Finish it, I want you to. That was rude and thoughtless of me when you were just being sweet and complimentary.
I won't jump on you. I promise. Finish
it. Say anything you feel like saying.">>
<br>
<br>
<<You " You have such a cute and shapely ass. There it is, facing me, looking cute and sexy.">>
<br>
<br>
<<MrsBrody "My goodness. I guess
you do like my legs and butt.... not only that...">>
<br>
<br>
<<MrsBrody " if you occasionally forget that I'm your customer, I'll understand, just as long as we're alone. That's the best I can do">>
<br>
<br>
She kept looking at the enticing bulge the whole time she was talking,
giving her inner voice no chance to butt in. When she stopped talking
the inner voice started, saying, "I hope you realize you are making a
complete ass of yourself."
<br>
<br>
<<You " Great! That's all I ask. Well...there is one thing more.
Could you also, occasionally, forget that I'm your dumb excited
employee...when we're alone, of course.">>
She turned red, but looked at your erection again.
<br>
<br>
<hr>
<<if $confidence gte 200 and $style gte 250>>
<<link "[C200 S250, Phone] Ask her telephone number">>
<<goto "MrsBrody Phone")>>
<</link>>
<<else>>
//[C200 S250, Phone] Ask her telephone number//
<</if>>
<br>
<hr>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool3.png">
</td>
<td>
<div id=content>
<<You "Could I have your home phone number if that's not much of me to ask?" >>
<br>
<br>
The thought that you might have blown it, kept you silent.Her
complexion returned to a normal hue, and her breathing became regular.
<br>
<br>
<<MrsBrody "Aren't you curious?Well, I've let you go this far. I see no harm in indulging you.I'll give you my home address....">>
<br>
<br>
It will be mine. Oh yes. It will be mine.
I have to find time to visit her at her home...
<hr>
<<time>>
<hr>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrBed.png">
</td>
<td>
<div id=content>
<<link "Bathroom">>
<<goto "BrBathroom">>
<</link>>
<hr>
<<link "Leave">>
<<goto "BrHall">>
<</link>>
<hr>
<<time>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrGarden.png">
</td>
<td>
<div id=content>
<hr>
<<link "Leave">>
<<goto "BrHall">>
<</link>>
<hr>
<<time>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br2.png">
</td>
<td>
<div id=content>
MrsBrody is sitting on the couch.She is filled with unhappiness...
Her didn't love her, he owned her, and there wasn't anything she could do about it.
<br>
<<MrBrody"“Come in please, don’t stand in the hall like a beggar">>
<br>
<<MrsBrody" I'm just emotional...it's not anything to be crying about.">>
<br>
<<You"I knew there was something wrong, that's why I came, I felt it in your voice last time I saw you. Tell me!">>
<br>
<<MrsBrody"I'm just emotional...it's not anything to be crying about.I don't like to talk about it, but thanks for asking!!">>
<br>
<br>
<<You"I'm sorry, I didn't realize things were so bad.What are you going to do?">>
<br>
<<MrsBrody"What can I do, divorce him?Evan and Deana are like my own. I could never leave them, and where would I go anyway. I can't...I can't do anything.I know I’m not young anymore...">>
<br>
<hr>
<<link "N- n-no....I wasn’t saying anything like that. It’s just part of my job to be polite to clients. It’s not that you’re old, I mean you look great for your age, not that it’s a high age or anything I’m sure, I mean you look hot. Oh damn, sorry, I shouldn’t say that either...">>
<<goto "MrsBrody Talk Failure">>
<</link>>
<hr>
<<link "Now you're so beautiful, and you're wonderful. You deserve to be happy...">>
<<goto "MrsBrody Talk Success">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrHall.png">
</td>
<td>
<div id=content>
ENTRANCE
<br>
<br>
<<link "Living Room">>
<<goto "BrLiving Room">>
<</link>>
<<if $time == 3 >>
- Mrs Brody is here
<</if>>
<br>
<<link "Bedroom">>
<<goto "BrBed">>
<</link>>
<br>
<<link "Garden">>
<<goto "BrGarden">>
<</link>>
<br>
<br>
<hr>
<<link "Leave the House">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrBthr.png">
</td>
<td>
<div id=content>
<br>
<hr>
<<link "Leave">>
<<goto "BrBed">>
<</link>>
<hr>
<<time>>
</div>
</td>
</tr>
</table><</if>>
<<if passage() == "BrLiving Room">>
<<link "[E30] Talk">>
<<goto "Talk">>
<</link>>
<</if>>
<<if $time == 1 and $confidence gte 200>>
<<link "[E30] Talk">>
<<goto "Talk")>>
<<else>>
<<goto "BrHall")>>
<</if>>
<<else>>
//[E30] Talk//
<</if>>
<br>
<</if>><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody House/BrLr.png">
</td>
<td>
<div id=content>
<<if $time == 3 and $confidence gte 250>>
<<link "Talk">>
<<goto "Talk">>
<</link>>
<</if>>
<br>
<br>
<hr>
<<link "Leave">>
<<goto "BrHall">>
<</link>>
<hr>
<<time>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br1.png">
</td>
<td>
<div id=content>
I ring the doorbell and Ihear steps...Mrs Brody stood in front of me with that great figure; the thing that stands out is her fantastic hips and beautiful bubble butt.
ENTRANCE
<br>
<br>
<<MrsBrody"Oh my god, it is you!">>
<br>
<<You"Things were piling up so I took the courage to pay a visit I had been putting off. Typical guy move, putting things off">>
<br>
<<MrsBrody"Actually it’s perfect that you came! I have some errands, but of course my husband can’t take care of them himself and he refuses to pay someone to do it.Any chance you’d be able to help me and get it done?">>
<br>
<<You"I am happy to help....">>
<br>
<<MrsBrody"I can always bride you with food, does that count as adequate payment for your services?">>
<br>
<<You"Anytime I don’t have to cook for myself is good for me!">>
<br>
<<MrsBrody"So, I think we have a mutual agreement.Here are the things I need.">>
<br>
She gave me a list and I went away to the shopping mall.
<hr>
<<link "Head to the Mall">>
<<goto "Mall">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er3.webp">
</td>
<td>
<div id=content>
ENTRANCE
<br>
<br>
Suddenly a hand come from the back of her shoulder.
<br>
<<MrBrody"Hey who is this guy in my house.">>
<br>
<<MrsBrody" I’m surprised to see you still around at this time. I don’t imagine you are here because you’ve had an epiphany about staying home?">>
<br>
<<MrBrody"Funnily enough, no miss. But I am happy to catch you. I was hoping you fancied sacrificing your creative evening at the club to prepare my laguages and maybe.... get this loser out of here!">>
<br>
<<MrsBrody"I've heard quite enough of your mouth for one day, mister...
take your stuff and go on to your trip....and leave him alone!!">>
<br>
<br>
<<MrBrody"Um ... OK ... sure,what ever,let the loser around the house and go find your friend Mr.Wine...see you all....">>
<br>
<br>
He stormed out of the room leaving her speachless....
<hr>
<<link "Leave the House">>
<<goto "Town">>
<</link>>
<br>
<<link "Are you OK Mrs Brody?">>
<<goto "Brerrands3">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er2.png">
</td>
<td>
<div id=content>
ENTRANCE
<br>
She turns around and faces me.
<br>
<br>
<<You"Mrs Brody are you alright?">>
<br>
<br>
<<MrsBrody"I’m really sorry to witness all this...I’ just, I didn't know that.....he.....I'm sorr....">>
<br>
<<You"Hey..I know, Whatever it is you can talk to me about it..">>
<br>
<br>
<<MrsBrody"Thank you...you are kind...No it’s my fault, I don't do enough around the house anymore and I never look pretty for him and I never cook for him and I...">>
<br>
<br>
I feel anger boiling up inside of me but I push it back down for now.
After a few minutes she begins to calm down, until her breathing is slow and regular.
<br>
<br>
<hr>
<<link "Leave the House">>
<<goto "Town">>
<</link>>
<br>
<<link "That is no excuse to treat you like he does. He is so lucky to have you, and if he’s too stupid to realise that. Well then you’re better off without him.">>
<<goto "Brerrands4">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er4.png">
</td>
<td>
<div id=content>
ENTRANCE
<br>
<br>
<<MrsBrody"You know you’re always welcome here, my husband never cares for me like this anymore....">>
<br>
<<You"You deserve to be treated properly.Oh and for what it’s worth, I think you are a beautiful woman.">>
<br>
<br>
<<MrsBrody"Ha, sure.">>
She says waving her hand and blushing slightly.
<br>
<br>
Unable to keep my eyes of her amazing body framed by the tight pink fabric of her dress which stuck to her like a second skin.
<br>
<<You"If you need anything let me know">>
<br>
<<MrsBrody"Oh, you’re too kind.I'll be alright....">>
<br>
<br>
I turned around to leave the house...
<br>
<br>
<<MrsBrody"Did you really mean what you said before? About me being a beautiful woman.">>
<br>
<br>
<<You"Of course.I think that you are incredibly attractive, and one of the nicest people I know anyone who cant see that is an idiot.">>
<hr>
<br>
<<confidence 20>>
<hr>
<<time>>
<br>
<hr>
<<link "Leave the House">>
<<goto "Town">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er1.gif">
</td>
<td>
<div id=content>
ENTRANCE
<br>
<br>
I walked up to the front door and it was slightly open...that felt strange but...I decided to get inside moving towards the kitchen...
<br>
<br>
<<MrsBrody" Hello,who is that...">>
She appeared at the kitchen door...
<br>
<<You"She said it felt really good to stretch herself out">>
<br>
<<MrsBrody"Thank you so much for taking care of this. I just couldn't wait another four weeks for him to get back from what he calls buisness....as I don't understand...">>
<br>
<br>
<<You"Mmhhhh anytime...I put everything to their place.">>
I can't get passed that beauty and most of all her incredible body.
<br>
<br>
<<MrsBrody"You didn't have to...you are so kind..A lucky lady you have">>
<br>
<br>
<<You"Here you go,no lucky girl for me....">>
<br>
<<MrsBrody"Hard to believe.Poor guy....">>
<hr>
<<link "Okay I’ll be heading off now, I’ll see you later">>
<<goto "Town">>
<</link>>
<br>
<<link "I probably could, I’m just not interested in lame girls.">>
<<goto "Brerrands2">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br3.png">
</td>
<td>
<div id=content>
MrsBrody now stood and she seemed to tower over me as she was disappointed.
<br>
<<MrsBrody" So do you go around telling all the women in the club how hot they are?I wonder what management thinks of that?">>
<br>
<<You"No I don’t...I apologize to you again. If you want me to leave and to report me I understand....">>
<br>
<<MrsBrody"Well if you promise not to call on me so vulgar again I’ll forgive you. And I don’t mind hearing how hot I am,but in a better way.">>
<br>
<hr>
<br>
<<energy -20>>
<br>
<<style -20>>
<br>
<<confidence -50>>
<hr>
<<time>>
<hr>
<<link "You'll have to do better next time">>
<<goto "BrHall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br1.png">
</td>
<td>
<div id=content>
MrsBrody now stands and she seems to tower over me as she smiles to me and takes a good look at me...
<br>
<<MrsBrody" It'll get better, it's just a phase... It's just not what I dreamed of, hoped for.">>
<br>
<<You"You ever think of getting...ehhh...">>
<br>
<<MrsBrody"Got something in mind?">>
<br>
<br>
<<You"...ehh..having something on the side?...to be happy and, um, satisfied.">>
<br>
<<MrsBrody"Do you think I’m attractive, is that what you are telling me? It is a simple question and I think I deserve an answer from a young man who has been welcome in my house. So am I attractive?">>
<br>
<hr>
<<link "Mrs. Brody as far as your question the answer is yes, you are attractive, in fact I think that you’re beautiful. That in no way is an excuse for my behavior and I don’t know how I can make up for it.">>
<<goto "MrsBrody Talk Success 2">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br4.png">
</td>
<td>
<div id=content>
She wasn't allowed to draw attention to herself in public.She looks at me with a pleased expression on her face like the cat that ate the canary.
<br>
<<MrsBrody" Not only am I attractive but beautiful as well. I like that. Well tell me this , do you also think I’m sexy?">>
<br>
<<You"MrsBrody, if every girl had a body like yours, they'd show it off every chance they got. The boys would be having wet dreams if they saw you in your bikini like me at the club.">>
<br>
<<MrsBrody"Interesting..I don't really know what I'm doing now...">>
<br>
<br>
<<MrsBrody"Let me ask you if you’re hungry">>
<br>
She asked using I thought a flirtatious voice. It was a full day, I was a bit hungry.
<br>
<<link "N- n-no....I.. I’m sure your cooking is excellent.. I mean you look.... Oh damn, sorry, I should be leaving to run some errands....">>
<<goto "MrsBrody Talk Failure2">>
<</link>>
<hr>
<<link "Well.. uh....Mrs. Brody I guess I could...">>
<<goto "MrsBrody Talk Success 3">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br4.png">
</td>
<td>
<div id=content>
Her dresses tried to cover her.The slim, with an ass to die for and breasts that weren’t too large but looked perfect on her body.... she still turned men’s heads at the club.
<br>
<<MrsBrody"Let me get dressed....then we can talk....and have a sandwich.">>
She said as turned towards the hallway...
<br>
She returned looking gorgeous in a tight pink dress....
<br>
<<MrsBrody"I’m going into the kitchen.....you can join me if you want">> she said with slight laugh.
<br>
<hr>
<<link "Mrs. Brody at least let me do the dishes after, it’s the least I can do to repay you ....">>
<<goto "MrsBrody Talk Success 4">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/LR/Br5.png">
</td>
<td>
<div id=content>
MrsBrody now stood looking at me..... she was disappointed.
<br>
<<MrsBrody" So too bad.... other wise... I would treat you in...">>
<br>
Whispering in my ear,
<<MrsBrody".....maybe next time?">>
<br>
She smiled and gave me a wink as she was leaving the room...
I couldn’t help but imagine what she looks like naked....
<br>
<<You"Um....sure....MrsBrody">>
I called back, snapping out of my daydream and clearing my throat.
<br>
<hr>
<br>
<<energy -20>>
<br>
<<style -20>>
<br>
<<confidence -50>>
<hr>
<<time>>
<hr>
<<link "You'll have to do better next time">>
<<goto "BrHall">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er1.gif">
</td>
<td>
<div id=content>
I follow her, unable to keep my eyes of her amazing ass and curves. Framed by the stretched fabric of her dress which stuck to her like a second skin.
<br>
<<MrsBrody"Thank you.... remember good boys get rewarded">>
She said looking straight at me...
<br>
<<MrsBrody"Do you want some icetea?">>
<br>
<<You"....over ice with Cucumber, mint & raspberry?">>
I interrupt.
<br>
<<MrsBrody"You know me too well. Also maybe a dash of Gin?">>
<br>
I nod my head in approval...
She sprinkles mint on top and add in some Cucumber and raspberries. She puts in a small splash of gin and put the cap back on.
<hr>
<<link "Maybe....maybe just a little more?">>
<<goto "MrsBrody Talk Success 5">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er6.png">
</td>
<td>
<div id=content>
She wraps her hands around the glass for a few seconds before picking it up. She gives me the glass as her eye takes a look at me while I could not take my eyes off the view of her firm breasts. I couldn't see any evidence of a bra under the tight fabric of her dress. I can very faintly make out the outline of her nipples through the fabric.
<br>
<<MrsBrody"Unfortunately the view from the windows in this room is of the driveway. Too bad it doesn’t look over the back. I gather from your glances that you’d enjoy that view more.">>
I bit my lip to prevent myself from stimulating more...
<br>
<<MrsBrody"Are you going to drink that or do you just want to look?">> she asked before giggling.
<br>
<<You"...I .. ah ... I didn't ... have any...What do I... um... how do I...">>
<br>
<<MrsBrody"You are going to make some woman a fine husband, Bill. You are so sweet and kind">>
<br>
My mind freezes up for a second.
<<You"...Well I don't know about that,but...I mean ... what I'm feeling now ... I want to ...">>
<hr>
<<link "I checked out a sexy, tiny red thong. It exposed a lot , from the see-through dress.">>
<<goto "MrsBrody Talk Success 6">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsBrody/ER/er7.png">
</td>
<td>
<div id=content>
She slowly turned around, moving sensuously while showing off her well-toned body turned it at and a slight angle,watching me as she leaned towards the sink.
<br>
<<MrsBrody"How do I look, sweetie?">>
<br>
<<You"..You, uh, you look good..">>
<br>
<<MrsBrody"You’re sweet....So do you....">>
<br>
My eyes bulge as I slowly bare the view...My God! It feels so erotic to have her exposed like this to my eyes.
<br>
<<MrsBrody"I think we should go back to relaxing and try to enjoy our drinks for this phase">>
<br>
<<You"..Actually,That's not a bad idea..">>
<br>
<<MrsBrody"You going to come back and see me?">>
<br>
<<You"..I'd like to...I don't know, or watch a movie maybe...?
What do you think?">>
<br>
<<MrsBrody"You going to come back and see me?">>
<br>
<hr>
<<energy -20>>
<br>
<<style 10>>
<br>
<<confidence 20>>
<hr>
<<time>>
<hr>
<<link "I think I'll try to do that in a few days">>
<<goto "BrHall">>
<<energy -20>>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/walkin.png">
</td>
<td>
<div id=content>
I walked around the pathway a bit and as I was heading back up , I noticed someone coming towards the cabanas. I hid behind a bush and I saw a gorgeous woman going into the second cabana....
<hr>
<<link "Sneak up to the window">>
<<goto "Sneak1">>
<</link>>
<br>
<<link "Leave the Cabanas">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep0.gif">
</td>
<td>
<div id=content>
I reached the window and tried to get as close as I could....
<hr>
<<link "I want just a peak">>
<<goto "Sneak3">>
<</link>>
<br>
<<link "Leave the Cabanas">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep1.gif">
</td>
<td>
<div id=content>
I couldn't believe it....the sight was devine...what a body..
<hr>
<<if $confidence gte 140>>
<<link "[C140] I ca't take my eyes off...">>
<<goto "Sneak4">>
<</link>>
<<else>>
//[C140] I ca't take my eyes off...//
<</if>>
<br>
<<link "Maybe I had enough for now...It's too dangerous...">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep2.png">
</td>
<td>
<div id=content>
Ohh my God this woman is a amazing..
<hr>
<<if $confidence gte 140>>
<<link "I have to see this show...">>
<<goto "Sneak5">>
<</link>>
<<else>>
//<<goto "CRAP!!!">>//
<</if>>
<br>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep3.gif">
</td>
<td>
<div id=content>
What the..She is mastrubating!!!!Amazing...
<hr>
<<link "I have to do something...">>
<<goto "Sneak6">>
<</link>>
<br>
<<link "I am way off here...I'll be in serious trouble..">>
<<goto "Entrance">>
<</link>>
<br>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep00.gif">
</td>
<td>
<div id=content>
Suddenly I slipped onto the window and now....
<hr>
<<link "I have to make an excuse...">>
<<goto "CR2">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/cr0.png">
</td>
<td>
<div id=content>
She storms to the door...
<br>
<<MrsGreen"What the hell are you doing!!!!">>
<br>
<<You"...I am...I...err...sorry...I was trying to.">>
<br>
<<MrsGreen"I think you must explain yourself...">>
<br>
Luckily you had a revelation....
<br>
<<You"I was told to come and water the plants because you were away">>
<br>
<<MrsGreen"Who gave you this info...I AM HERE...as you can see....">>
<br>
<<You"I'm sorry,I will leave immediately....">>
<br>
<<MrsGreen"Please...if I need you I will call for you.">>
<br>
<hr>
<<time>>
<br>
<<style -30>>
<br>
<<energy -10>>
<br>
<<confidence -30>>
<hr>
<<link "Goodbye...">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep4.png">
</td>
<td>
<div id=content>
I put up all my courage and go to the door...I am knocking without having my head straight...I am waiting a bit....and suddenly she appears..
<<MrsGreen"Hello...and who are you?">>
<br>
<<You"...I am..I wor...I mean I.....">>
<br>
<<MrsGreen"And...what do you want...">>
<br>
<<You"What can I...Do you...err...Can I help you with something?I think I've heard something...a strange noise...">>
<br>
She looks at you and moves inside leaving the door open...
<hr>
<<link "That's it I am in!">>
<<goto "Sneak7">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep5.png">
</td>
<td>
<div id=content>
She is looking at me and we are now standing close to each other...I can understand that she is horny..especialy cause I stopped her from mastrubating...so I need to take advantage of that...
<<MrsGreen"So what are you good at..">>
<br>
<<You"...I am good at...
I can help with your...err... problem....">>
<br>
<<MrsGreen"I think you can come in handy...">>
<br>
<<You"I would love to help">>
<br>
<<MrsGreen"Are you going to do all the work with the Club's T shirt on?I think you'd better take it off...it is really hot in here...">>
<br>
She gives me a smile and comes close to me...
<hr>
<<link "I'm taking my shirt off!">>
<<goto "Sneak8">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep8.gif">
</td>
<td>
<div id=content>
She walks towards the freedge as I inspect the kitchen...
Suddenly she takes the top of her dress off leaving her breasts showing with her bra...She takes an ice cube and starts to rub it on her line between her breasts...
<<MrsGreen"If you can work with your hands as you say maybe you can fix my airconditioning...It's soooo hot these days...">>
<br>
<<You"...I think I can help you with your problem....">>
<br>
<<MrsGreen"I would be obliged ...">>
<br>
<<You"Please don't mention it...it would be a pleasure...">>
<br>
<<MrsGreen"I like it when someone can work with his hand...around the house...">>
<br>
She gives me a smile and comes closer to me...
<hr>
<<link "She's teasing me!">>
<<goto "Sneak 9">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep9.gif">
</td>
<td>
<div id=content>
Now she's putting the ice cube in her bra taking it onto her nipple...
<br>
<<MrsGreen"It's soooo hot these days...">>
<br>
<<You"...I can see that it is a problem...">>
<br>
<<MrsGreen"You can see!!!Can't you...">>
<br>
She said with a seductive look.
<br>
<<You"It's really hot...">>
<br>
<br>
She gives me a smile and comes closer to me...
<br>
<<MrsGreen"I'd love to see you in action...">>
<hr>
<<link "You want regred it">>
<<goto "Cabana's AirCondition">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/locations/mall.png">
</td>
<td>
<div id=content>
The model you're after is very specific, but you eventually manage to find it. All you need to do now is install it... shouldn't be too hard.
<hr>
<<time>>
<br>
<br>
<</link>>
<<money -100>>
<hr>
<<if $energy gte 50 and hasVisited("Mall AirCondition")>>
<<link "[E50, Spare Parts] Repair the air condition">>
<<goto "AirCondition Repair">>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/peep12.png">
</td>
<td>
<div id=content>
She takes a bottle of wine and fills up a glass.
<br>
She looks at me...
<br>
<<MrsGreen"I have to retire...">>
<br>
<<You"...I will find what I need...">>
<br>
<<MrsGreen"I will be waiting to see what is needed...">>
<br>
I can't believe this woman's body....
<br>
I must buy the spare parts and come back...
<br>
<hr>
<<time>>
<br>
<<energy -20>>
<br>
<<confidence 20>>
<hr>
<<link "I will return!">>
<<goto "Entrance">>
<</link>>
<br>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/cabanaswin.png">
</td>
<td>
<div id=content>
<br>
<<if $energy gte 50 and hasVisited("Mall AirCondition")>>
<<link "[E50, Spare Parts] Repair the air condition">>
<<goto "AirCondition Repair">>
<</link>>
<<else>>
//[E50, Spare Parts] Repair the air condition//
<</if>>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/ac.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<display "MrsGreen">>
<br>
You might not know the first thing about air conditioners, but that doesn't matter so long as you have a manual on your side. With these new parts (and a step-by-step tutorial), repairing the air conditioner is as easy as pie. However, you do come upon something that you've never thought of before - there's a lot of free space inside the AC. If you ever need to hide something somewhere, this just might be the place.
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><<if passage() == "AirCondition Repair" or passage() == "MrsGreen massage 0" or passage() == "MrsGreen novel 0">>
<</if>>
MrsGreen
<br>
<<display "MrsGreen Events">>
<<if hasVisited("AirCondition Repair") and !hasVisited("MrsGreen massage 0")>>
<<link "Tell her that you've fixed the AC">>
<<goto "Air0">>
<</link>>
<br>
<</if>>
<<if hasVisited("MrsGreen massage 0") and hasVisited("AirCondition Repair") and !hasVisited("MrsGreen novel 0")>>
<<link "That sounds what I need...">>
<<goto "M0">>
<</link>>
<br>
<</if>>
<<if hasVisited("MrsGreen massage 0") and hasVisited("AirCondition Repair")and hasVisited("MrsGreen novel 0")>>
<<link "Let's give her the book">>
<<goto "B0">>
<</link>>
<br>
<</if>><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a0.png">
</td>
<td>
<div id=content>
<<You "I've fixed the ac.">>
<br>
<<MrsGreen "That's great! You really have a talent working with your hands, huh? Well, I can work with my hands too...
How about a reward for your work? A massage?
Something to relieve the tension in your body....">>
<hr>
<<time>>
<hr>
<<link "Being the handyman is a fun thing you never thought it'd be, huh?">>
<<goto "Air1">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a1.png">
</td>
<td>
<div id=content>
You are in your pants now. She doesn't say anything about the obvious bulge in your pants, but you can feel her moving towards you.She is now next to you.
<br>
<<MrsGreen "Well... that's it. Just relax, okay?">>
<br>
Once again, I didn't know what to do.Her smell was intoxicating.
<br>
<<MrsGreen "If your muscles are as tight as I can see, perhaps you won’t mind if I use my magic on you. It gets deep and hard to reach areas as it works to help soften up tight muscles....">>
<br>
<hr>
<<link "That sounds like a good idea">>
<<goto "Air2">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m1.png">
</td>
<td>
<div id=content>
We talked for a while. Actually I did most of the talking. I told her where I come from when I started working here and why.She listened to me
<br>
<br>
<<MrsGreen "Well... I am pleased you are here...You don't know how many times he walked past me, without even acknowledging my presence by the slightest alteration in his expression.">>
<br>
<<You "So I think that YOU are a lovely person who deserves the attention therefore massages are for people who often feel the need of something just a bit extra when they are all tensed up.">>
<br>
Once again, she looks at me in a lustfull way...
<br>
<br>
<<MrsGreen "That's why now I'm happy having my own personal masseur waiting for me to relax my neck and shoulders, and possibly other parts that may need some extra attention.">>
<br>
<hr>
<<link "This could be just what you’re looking for....">>
<<goto "M1">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a2.gif">
</td>
<td>
<div id=content>
<br>
<<MrsGreen "This is my kind of relaxation and so far it looks nice">>
<br>
Her warm smooth hand was slow rubbing my shorts.
My dick was pulsing in my pants
<br>
<<MrsGreen " How are you feeling so far ?">>
<br>
<hr>
<<link "That feels soooo nice">>
<<goto "Air3">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a8.gif">
</td>
<td>
<div id=content>
<br>
She loosened her dress so that, it fell at her legs leaving her in her undies...
<br>
<<MrsGreen "Would you mind if I gave you the massage in my undies? It’s so hot and sticky and I think I would feel more comfortable this way.">>
<br>
<<You " Of course not">>
<br>
<hr>
<<link "Is there something I can do?">>
<<goto "Air4">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a9.png">
</td>
<td>
<div id=content>
<br>
She looked at me....showing off her body...
<br>
<<MrsGreen "What are you waiting for young man...take your pants off and hop on...">>
<br>
I felt a bit embarrassed about getting naked in front of strangers even if they are atractive mature women.
<br>
<<You "It would be my pleasure">>
<br>
<hr>
<<link "I’m ready">>
<<goto "Air5">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a10.gif">
</td>
<td>
<div id=content>
<br>
My cock poped out and her eyes opened as she was taking a hard long look at it.
<br>
<<MrsGreen "Let's see if I can make you feel a little better with a nice refreshing massage.">>
<br>
She approached me and spilled some lotions on her warm hands...
<br>
<hr>
<<link "It feels so warm">>
<<goto "Air6">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a3.png">
</td>
<td>
<div id=content>
<br>
<<You "I was hoping you could do a little extra massage on my lower back, hips and also thighs">>
<br>
<<MrsGreen "I will massage where ever it is needed to relax...">>
<br>
She continued with light scratches on my thighs and tummy as she began touching me keeping her eyes locked on my shaft.
<br>
She noticed as she approached and placed both her warm hands on my tummy and began massaging me around my now semi hard pulsating manhood..
<hr>
<<link "Ooooh">>
<<goto "Air7">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a4.png">
</td>
<td>
<div id=content>
<br>
<<MrsGreen "You have seen most of me for a quite a while now and don't think a little extra skin would bother you.">>
<br>
I saw her getting ready to ride me....
<br>
<hr>
<<link "Of course not">>
<<goto "Air8">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a5.png">
</td>
<td>
<div id=content>
<br>
She drops a large amount of warm lotion right at the tip of her coccyx and worked from this small puddle of warm lotion to do her buttocks. Obviously not all of it was used on her buttocks.She accidentally spilled some (no, not some, a lot) of this warm lotion between her cheeks and it quickly flowed down between and onto her vulva.
<br>
After apologizing profusely she asks
<br>
<<MrsGreen "Would you mind if I wiped you off?">>
<br>
....reaches out and grabs your cock.
<hr>
<<link "I think that would be nice if you would do that">>
<<goto "Air9">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a6.png">
</td>
<td>
<div id=content>
<br>
Before I could say anything else, she spreads her legs in order to accommodate my cock. My mind began thinking sexual. No time like the present to find out if I was to lose a client or become her friend for life.She reaches down between her now parted legs and wiped up very gently being sure to brush this warm slippery conditioner over her vulva up and across and around my stiff cock.
<br>
After apologizing profusely she asks
<br>
<<MrsGreen "I’m sorry....">>
<br>
<<You "Don’t stop, it feels extremely nice.">>
<br>
<hr>
<<link "Can you do more">>
<<goto "Air10">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a11.gif">
</td>
<td>
<div id=content>
<br>
She grinds gently up and down between her cheeks across and around her anus...
<br>
Her slightly swollen lips grinded on my shaft.
<br>
<<MrsGreen " I was hoping I could do that....">>
<br>
<hr>
<<link "Is there something I can do?">>
<<goto "Air11">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a12.gif">
</td>
<td>
<div id=content>
<br>
I feel my shaft gliding along her lips, bumping her clit with each stroke. She knows what is next and tensed as she positiones my head at her entrance. She is more than ready. As she places the slippery head over her opening she moans loudly.
<br>
Her swollen lips are dripping on my shaft.
<br>
<<MrsGreen " Oh my God I love that....">>
<br>
<hr>
<<link "It feels so good">>
<<goto "Air12">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a15.png">
</td>
<td>
<div id=content>
<br>
Suddenly she stops grinding,loks at me with a sugestive smile...
and...stands up pulling me upwards as well...
<br>
I thought that she got angry about something...
<br>
<<MrsGreen "Just because you asked...I wasn't going to propose something like that...but it might not be right to go further...
but I'm so eager to test your oral skills...if you like to show me...">>
<br>
I could tell she was feeling a bit embarrassed because she was blushing...but her pussy was dripping wet and she was so horny I would love to pleasure her...
<hr>
<<link "I’d be honored to treat your beautiful body with my mouth">>
<<goto "Air13">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a13.gif">
</td>
<td>
<div id=content>
<br>
She climbed on the bed facing me...I began teasing the front of her. My mind was still playing all sorts of scenarios of what’s to come. I could feel her nipples stiffen as I ran my hands down her front.My hands stopped just at the top of her freshly trimmed bush.
<br>
As my hands were sliding up her inner thighs; she separated her legs wide....
<br>
<br>
<<MrsGreen "Oohh that feels really good...">>
<br>
She had been waiting for this moment the whole time. She knew what I was about to do. She closed her eyes and as I leaned my head down between her legs. Her calves and then her thighs slid over and down my back as mouth opened and pressed to her hot waiting pussy. Her heels dug into my lower back and held me tight as I licked and sucked her vulva for all it was worth. It didn’t take very long. She was hot, wet and horny as hell in anticipation.
<br>
<br>
I slowly licked her still swollen lips from her recent massage. I easily slipped my tongue between hers lips and felt her jump as my tongue slapped her clitoris on each up and down stroke. I spread her juicy lips with and planted my lips around her little nub. Gently sucking and licking, I could feel Barb starting to shake and grind her hips.
<br>
<hr>
<<link "You taste very sweet">>
<<goto "Air14">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a14.gif">
</td>
<td>
<div id=content>
<br>
Before I knew it she was cumming. She tensed her whole body as I sucked and licked faster and harder. I held her hips so my mouth wouldn’t lose contact with her throbbing clit as her ass bucked and rose from the bed. Her legs continued to hold me tightly between her until her spasms subsided. She moaned and cursed
<br>
<br>
<<MrsGreen "Oohh thank you...That was amazing...what I was missing..Oh, you are so good">>
<br>
I started giving her a nice soothing connecting massage to allow her time to come down from her heavenly peak and help ease her feelings of what I had just done to her. Again, it was a love it or I will never ever see you again situation. I was hoping that she wasn’t about to abandon me after this.
<br>
She looked at me....
<br>
<br>
<<MrsGreen "Could you ever bring yourself to do that to me again?">>
<br>
<<You " I would be more than grateful if you would allow me to do that next time and every other next time if you’d like.">> I promised her.
<br>
<hr>
<<link "Although,may I ask you something?">>
<<goto "Air15">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a16.png">
</td>
<td>
<div id=content>
<br>
She was now relaxed and brought a light red sheer cloth over her body to cover her nudines.
<br>
<<MrsGreen "Please go on..">>
<br>
<<You "When you were cumming you said...what I was missing...you coursed in a slower voice...">>
<br>
She looked at me....and again turning a bit redish...
<br>
<<MrsGreen "I am embarrassed to talk about that...">>
<br>
<<You " Sorry but I thought I did something wrong or that offended you in a way and...">>
<br>
She stopped me immediately.
<br>
<<MrsGreen "Look...Just about every woman in the world has engaged in oral sex at one time or another...Let me tell you a secret! I’ve never had oral sex receiving or giving. Ever!">>
<br>
I was stunned.
And I thought I didn't have as much experience as others.
<br>
<br>
<<You " No way! You have a husband. How could that be?">>
<br>
<<MrsGreen "Jim is prude. Well, he just doesn’t believe in oral sex. I’ve never been with anyone else. I fantasize sometimes about how it would feel, but that’s about it.">>
<br>
She seemed depressed and she went on....
<br>
<br>
<<MrsGreen "It’s not so great having a life of straight missionary sex; no touching or foreplay, a few maybe up to thirty seconds of animal lust and then pulling his skinny little prick out of me and roll off me and go to sleep. Many times throughout my marriage I would slip my hands down between my legs after he went to sleep. I’d manipulate myself to get a little pleasure out of it.">>
<br>
<br>
I went closer to her picked her up and put her in my arms.
She responded at once and huged me tight.
<br>
<hr>
<<link "You poor girl...">>
<<goto "Air16">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/cabanas/a17.png">
</td>
<td>
<div id=content>
<br>
<<MrsGreen "How could Jim deprive me of such pleasure throughout my entire marriage? That bastard!">>
<br>
I thought I give it a shot now...
<br>
<<You "If there ever is a next time...because I just may have over stepped my boundaries today...we may live many different variations just to keep things interesting....">>
<br>
<<MrsGreen "I’ll make a note of that">> she said half laughing and half teasing.
<br>
<<You "You don’t have to ask twice, I’m always here...">>
<br>
<<MrsGreen "Why don’t you come next time for a visit, and YOU can be my masseur, you will have a total control of me...">>
<br>
She let out a long soothing...
<br>
<<You "I should bring some oil and lubricants then.">>
<br>
<br>
My cock was throbbing for attention now and it was very swollen.
I wanted her to touch and squeeze it.
But I decided it was time for me to leave....
I wore my clothes as she was looking at my cock
lying in bed with a smirk.
<br>
<br>
I first must find some oil.
I must ask someone from the staff.
<br>
<<energy -30>>
<br>
<<style 10>>
<br>
<<confidence 10>>
<hr>
<<time>>
<hr>
<<link "I can hardly wait for our fantasy to come true.">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/bar/barman2.png">
</td>
<td>
<div id=content>
<br>
<<man "OK let's get to the back so we will be more private then." >>
<br>
<<You "I want to find some lubricants and some oil....for...ehhh..private use...">>
<br>
<<man "Wicked....you naughty boy...just the moment you arrived you went into buisness...." >>
<br>
<<You "I don't know what you mean but...can you give me this info?">>
<br>
<<man "Take a Chill Pill...I'm on your side and not only that I'm your man...I can provide you with what you need...with a small Benjamins fee" >>
<br>
<<You "Alright then...how much?">>
<br>
<<man "Only 200...for you my friend..." >>
<br>
<br>
It's time to earn some money!
<hr>
<<time>>
<br>
<<energy 10>>
<br>
<hr>
<<link "Leave the bar">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/bar/lot.png">
</td>
<td>
<div id=content>
<br>
<<man "Hey my man...here you are...premium quality stuff" >>
<br>
<<You "Gnarly!!">>
<br>
<<man "Nice...call whenever you need me.Adios!" >>
<br>
<br>
It's time to pay a visit to MrsGreen.
<hr>
<<time>>
<br>
<<energy 10>>
<br>
<<money -200>>
<br>
<hr>
<<link "Leave the bar">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/emm.png">
</td>
<td>
<div id=content>
Picking up an erotic novel called Emmanuelle.This extract is a piece extremely appropriate for her.There are erotic sessions and pictures in the novel. Now, this will feed her real life fantasies, and teach her on what to do and expect.
<br>
I have to find the correct place to give her the book maybe at her cabana...
<hr>
<<time>>
<br>
<<money -60>>
<hr>
<<link "Leave the mall">>
<<goto "Town">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/cabanaswin.png">
</td>
<td>
<div id=content>
<br>
<<if $confidence gte 200 and $energy gte 30 and hasVisited("Lot2")>>
<<link "[E30, Oil] Ring the doorbell">>
<<goto "MrsGreen massage 0">>
<</link>>
<<else>>
//[E30, Oil] Ring the doorbell//
<</if>>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/pool/Brpool1.png">
</td>
<td>
<div id=content>
There she was....I noticed she wore the same white bathing suit, if it could be called that. The tiniest string bikini set I had ever seen was on the sexiest woman I knew. The white bottoms were, at the moment, defining her ass better than any marble sculpture could....
<br>
<br>
I knew it was wrong, but I really liked the way she made me feel, something was exciting and forbidden about it.....
<br>
<br>
If that wasn’t enough, as she turned back, she pulled the fabric away from her butt where it had rode up on her a little, exposing a good deal of fleshy cheek.
<hr>
<<if $confidence gte 200 and $style gte 150>>
<<link "[C200 S150, Drink] Get her that drink">>
<<goto "Get her drink")>>
<</link>>
<<else>>
//[C200 S150, Drink] Get her that drink//
<</if>>
<br>
<hr>
<<link "Leave the Pool">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m0.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<display "MrsGreen">>
<br>
<br>
I am standing at MrsGreen's cabana doorstep, I can see that she is also much more relaxed. Standing in her light blue florish dress and heels, she suggests getting in the living room. She offers some wine and I never refuse when offered is my motto.
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m2.png">
</td>
<td>
<div id=content>
She had her long legs on the table as she leaned forward and sheepishly and softly spoke so that anyone listening couldn’t hear (if there was anybody), and told me there was something special around me like an aurora. All the time I am gawking at her exposed legs. Just something I can't stop myself from doing. I've seen her legs before, but it always tempts me to look when they are partially or even mostly uncovered. It must be a guy thing!
<br>
<br>
<<MrsGreen "My legs feel tired but also hot">>
<br>
She said in her low voice and started taking her heels off.
<br>
<br>
<hr>
<<link "Let's get your massage started then...">>
<<goto "M2">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m5.png">
</td>
<td>
<div id=content>
She mounted the table, laying face down waiting for me to get started. No towel, no sheet, just a brazilian style thong to cover a square inch of her glowing skin lying in the sunlight. I gave my semi hard cock one last squeeze before heading to the table. She was anticipating some new pleasures today. A pleasure she hadn't felt many years from what she was trying to tell me.
<br>
<br>
<<You "Get comfortable.">>
<br>
I began at her shoulders and worked down to her lower back kneading and rocking her lower back and hips back and forth and side to side. I noticed she was doing a little rocking on her own but didn't really pay attention to it.
<br>
<<MrsGreen " What a beautiful Brazilian treatment ">>
<br>
<br>
Upon stroking her back with the warmed oils,she let out a long soothing,"ooh that feels so good." Her lower back is a little stiff, so a little extra pressure is required. Every new part of her body I touch results in more oohs and aahs, her butt no exception.
<br>
<br>
A faintly noticeable slit between her puffy little pussy lips was showing the tiniest amount of moisture.
<<You "I think this piece of cloth has to be removed so I can work a lot easier on you....">>
<br>
<<MrsGreen "I’ve told you how prude I am....Well,I fantasize sometimes about how it would feel, I mean to ....do things...you know...
I’ve never been with anyone else....so I..... ">>
<br>
<br>
<hr>
<<link "Just let me help you...">>
<<goto "M4">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m3.png">
</td>
<td>
<div id=content>
She had high cheek bones and was thinner than most, but the body attached to those long legs was as shapely as any model. She was in one word, beautiful. She had used some lilac and lavender scented body wash. If she only knew how much I love that fragrance; it was making my mouth water for a taste of her pussy!
<br>
<br>
<<You "I need to warm up some lotions and oils. So get comfortable and I’ll be back in a few minutes">>
<br>
<<MrsGreen " I’ve gotten undressed in front of a stranger once in thirteen years, now I have to do it once more within twenty four hours of the first. I’m still very shy and modest about being naked. ">>
<br>
<br>
She noticed my eyes open wide as I watched her undress. It was like it was his first time I've ever seen a naked woman. I could see it pleased her as she was slowly removing her dress. Her breasts bared full to my eyes. She said she was going to leave her panties on.
<br>
<br>
<<MrsGreen "This is the part you wanted...instead of just watching, why don’t you get over here ">>
<br>
<br>
<hr>
<<link "I’m just about ready...">>
<<goto "M3">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m4.png">
</td>
<td>
<div id=content>
Right now she is relaxed but still hesitant. I put my arms down beside her thong,she is gripping the sides of the table and pressing her breasts against the table.She elevate her ass a bit. The atmosphere became thick with sexual excitement.
<br>
<br>
In doing so she spreads her legs slightly, showing a glimpse of her trimmed light brown bush. A faintly noticeable slit between her tight pussy lips is showing the tiniest amount of moisture. I took this gesture as an invitation
<br>
<br>
<hr>
<<link "Let's see if I can make you feel ...">>
<<goto "M5">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m7.png">
</td>
<td>
<div id=content>
I was hoping she wanted a little more so I spread a good ammount of oil on her ass cheecks...
<br>
<br>
I quickly moved to her butt.She could feel my warm oiled hands on her cool cheeks.I rocked her from side to side and she felt stimulation on her clit. Everything was slippery and sensitive.She didn’t move. I did all the work. I slightly spread her legs now. Not very wide at first, I can feel myself getting excited.
<br>
<<MrsGreen "Oohh that feels really good">>
<br>
<br>
My left hand is on her left cheek squeezing and rocking gently as my right has gone as far as it could; sliding up and down the edge of her left labia. God, it feels sooo nice.
I started the same treatment on her right leg. Only this time, before I reached her inner thigh, I spread her legs wider.
<br>
<br>
<hr>
<<link "This pussy is screaming to be touched,I thought">>
<<goto "M6">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m16.png">
</td>
<td>
<div id=content>
My dick wanted to be buried in her, but I kept reminding myself this was for her pleasure, not mine.
Besides, this was the beginning of a new future; full of amazing sexual adventures.
<br>
<br>
Each stroke starting up higher and continuing up further.She mewed with each stroke. I pause after each stroke just for effect. The anticipation of each successive stroke is working on her mind. She is probably wondering just how far I will go and I am wondering how far she will allow me to go. Being the first time I ever tried this, I stopped just short of touching her pussy. I mean just short; maybe three hairs width away. It seemed to have quite an affect.
<br>
<br>
While inching my hands up her leg and turning them towards her inner thigh, I can feel her trying to move her legs even further apart than I had placed them.
<br>
<<MrsGreen "Could you do just a little more of that,please? It feels super nice">>
<br>
<br>
<hr>
<<link "O.K. just a little more">>
<<goto "M7">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m8.gif">
</td>
<td>
<div id=content>
I can still feel the wet warmth from her pussy. My cock is a solid log.
I slowly glided my hands down to her buttocks and off to the sides and back up to her shoulders; each time reaching further down until reaching the back of her thighs.
<br>
<br>
<<MrsGreen "Keep doing that for a while,please">>
<br>
Who was I to refuse! I added a slight rocking motion side to side while grasping her buttocks. At first I didn’t realize, but as things heated up, I knew her clit was being massaged against the table as I did this. “Another note to add to my data base,” I thought. She seemed to like that so I repeated the same. She let out a soothing moan throughout the rocking. It was like she was singing herself to sleep. Far from it; sleep was the least thing on her mind right now.
<br>
<br>
<<MrsGreen "Oohh...you’re driving me crazy.">>
<hr>
<<link "You should be feeling a little more comfortable now">>
<<goto "M8">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m10.png">
</td>
<td>
<div id=content>
Her reaction is actually immidiate as she spreads her legs wider. With her head still facing down I could hear her soft moan.
<br>
<br>
As I was running my fingers on her slippery ass ,I stopped and stretched it open, expositing her tight hole...
<br>
<<MrsGreen "Oh..does it look nice to you?">>
<br>
My fingers felt her slippery lovly pussy lips. Eureka.
It wasn’t long before her hips moved up and down on my fingers while I smoothed all the wrinkles on pussy lips.
<br>
<br>
<hr>
<<link "Oohh...you can't imagine.">>
<<goto "M9">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m11.png">
</td>
<td>
<div id=content>
By this time my thoroughly lubed fingers were rubbing her swollen little nub. Her hips were moving showing her lustful pleasure; she would raise her butt a little each time my slick fingers approached her clit just so I would touch it that much sooner.
<br>
<br>
I can see she is producing a lot of her own lubricant...
<br>
<<You "May I try something totally new for you?">>
<br>
<<MrsGreen "Please do....">>
<br>
<hr>
<<link "I think you are ready">>
<<goto "M10">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m12.png">
</td>
<td>
<div id=content>
Her shaking and bumping her hips up and down was causing my right hand to move her wetness between her lips, exciting her clitoris further.As she was building up her lust and I pressed down my finger and it just slided inside her tight hole...she just realized what was happening...
<br>
<br>
<<MrsGreen "Noone touched me like this....ever...">>
<br>
<hr>
<<link "I want you to give me all of you...">>
<<goto "M11">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m9.gif">
</td>
<td>
<div id=content>
With my fingers pointing up towards inside her now very swollen nub, I started finger fucking her. She was shaking even more now. Her breathing was rapid. Her eyes were still closed and her face seemed somewhat distorted. Her hips came up off the table and she started pumping. My fingers are now moving faster between her slippery lips fucking her hard....
<br>
<br>
<<MrsGreen "Oh God, ..., Oh, my God...">>
<br>
<<MrsGreen "you’re driving me crazy. Don’t stop.Do more!">>
<hr>
<<link "I can't resist a woman’s request!...">>
<<goto "M12">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m13.png">
</td>
<td>
<div id=content>
She screamed, I’m coming. she shook and I felt her hips come up off the table. I could feel her pumping on my hand. She wanted my whole hand in her pussy. The whole room seemed to be shaking.
<br>
<br>
I plucked my slippery fingers from her and came to her side to give her a calming massage after what just happened.
I glanced and noticed a much larger wet patch on my shorts. My cock wasn’t throbbing now but it was still very swollen.
She was satisfied, but I knew she would want more soon.
<br>
<br>
<hr>
<<link "I like you to feel loved and wanted...">>
<<goto "M13">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m14.gif">
</td>
<td>
<div id=content>
It was a beautiful sight to see that I had given her so much pleasure.
I help her up and let her fall into my arms with a big thankful hug and a kiss. She noticed my huge wet spot and I told her I accidentally spilled oil on myself.
<br>
<br>
<<MrsGreen "I want to give you a massage now and do the same to you.">>
I told her that was not necessary.
<br>
<<You "That's not necessary....yet">>
<br>
<hr>
<<link "We have a lot of catching-up for the things missing in her parochial life with your husband ...if you like to.">>
<<goto "M14">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/m15.png">
</td>
<td>
<div id=content>
<br>
She jumped next to the bed and picked up her heels....she wore them and took a nice position on the bed showing of her smooth ass...
<br>
<<You "Alright,you can get dressed now">>
<br>
<<MrsGreen "Being in my own cabana, why? Getting a massage at home has many advantages. Beside the fact you don't have to run out and drive home, you can stay in and truly enjoy the after effects of your massage and you don't even have to get dressed.">>
<br>
<<You "I can't arguee with that...">>
<br>
<<MrsGreen "I want all my massages to be erotic massages...and more..">>
<br>
My mind was racing.
<br>
<br>
<<You "So maybe I can help you with some reading material to get you prepared.....">>
<br>
<<MrsGreen "Ilike what I hear so bring me some reading material...I will be a good student....">>
<br>
<br>
She continued teasing me with her beautifull ass lingering....
I put my hands in front of me as I turned from that last teasing picture she gave me . It was necessary I should turn quickly and leave before we both got other ideas.
I have to buy an erotic novel.
<br>
<br>
<<energy -30>>
<br>
<<style 10>>
<br>
<<confidence 10>>
<hr>
<<link "Good I'll bring the book over and then...it's going to be a graded test">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table><table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b2.png">
</td>
<td>
<div id=content>
<br>
<br>
<br>
This…this dress, my eyes taking in every intricate detail of the sensuous garment.
<br>
<br>
<<MrsGreen "I....I don’t think....What are you doing here....">>
<br>
<<You "It’s absolutely breathtaking.">>
<br>
<br>
Her alluring scent of her shampoo and perfume flooded my senses, sending an electric jolt right down to my midsection.
<br>
<<MrsGreen "...But my husband is inside getting ready...We have to go to a gala...and...">>
<br>
<<You "Looks like I’m not the only one enjoying this....">>
<br>
<br>
<<MrsGreen "...Don't be silly...I told you he doesn't even notice me...Do you like it?..">>
<br>
Her voice speaking to me in a soft lulling tone as I continued to stare
<br>
<hr>
<<link "You have a very sexy air and that red dress really shows off your magnificent body. Well I wish could take it off.">>
<<goto "B1">>
<</link>>
<br>
<br>
<<link "I'm so sorry">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/mas/cabanaswin.png">
</td>
<td>
<div id=content>
<br>
<<if $confidence gte 250 and $energy gte 30 and hasVisited("Mall Erotic Novel")>>
<<link "[E30, Novel] Ring the doorbell">>
<<goto "MrsGreen novel 0">>
<</link>>
<<else>>
//[E30, Novel] Ring the doorbell//
<</if>>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b2.png">
</td>
<td>
<div id=content>
ROOM
<br>
<<display "MrsGreen">>
<br>
<br>
I am standing at MrsGreen's cabana doorstep again,
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b3.gif">
</td>
<td>
<div id=content>
<br>
<br>
She couldn’t deny the perverted thrill it gave her to see me the trouble gone to in picking things out for her. She loved what I’ve done by massaging her as she deserved... she appreciated it.She is more than willing to model for me. She figured there’d be no harm in that, and it gave her a lascivious thrill to know that her cabana boy would likely jerk off when I'll go to bed tonight...
<br>
<br>
The slim-fitting dress fit her lush body like glove, molding itself to every sweeping curve and inviting valley. She moves the opening of her dress to show off her deep cleavage adjusts her breasts, making sure ‘the girls’ were on display to their best advantage.
<br>
<<MrsGreen " It is good to get some attention from at least one male in this house.">>
<br>
<<You "I'm just glad I am here. That man. Did he touch you?">>
<br>
<br>
She blushed.
<br>
<<MrsGreen "...Well! Sir! No! I was trying to get away. I hopped that one guy would rip my dress...">>
<br>
I kept staring at her breasts. I finally looked up at her eyes. She was staring at my crotch. She can make out my hard cock under my pants. I looked down to see my cock had grown down my thigh.
<br>
<<You " I know you need more than your husband can give you">>
<br>
<br>
<<MrsGreen "... You should put that away before my husband see it..">>
<br>
<hr>
<<link " Your husband can't see. Go ahead play with me. You know you want to">>
<<goto "B2">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b5.gif">
</td>
<td>
<div id=content>
<br>
<br>
MrsGreen sees the lust in my eyes just before my full wide mouth presses against hers. Her eyes closed instinctively as she feels my lips on hers, my tongue is sliding between her parted lips. She feels mesmerized as she is slumped against me in surrender, rolling her tongue against mine and drawing it deeper into the hot wet confines of her mouth.
<br>
<<MrsGreen " Mmmmmmm....">>
<br>
We both moaned into each other’s mouth as we kissed passionately, deeply. Her arms looped around my neck as she tipped her face up to mine, letting me know she is mine for the taking.
<br>
<br>
<<MrsGreen "We mustn't...my husb...">>
<br>
She gasped, summoning up the willpower to draw her mouth away from mine
<br>
<<You "Yes we must...and we should...">>
<br>
<br>
As we kissed,
I grabbed her and slid one hand up the front of her body.
<hr>
<<link " A beautiful woman like you needs a lot of satisfying">>
<<goto "B3">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b4.png">
</td>
<td>
<div id=content>
<br>
<br>
Her body is thrumming with illicit excitement as she feels my prodigious member pushing against hers. She can tell it is substantially bigger than her husband’s penis.
She knows she must pull away....
<br>
<br>
Gently my fingers slipped inside the sheer lace of her panties... searching... finding... Her teeth bit gently into her lower lip as the first sensation passed through her."Watch me." she whispered, no longer commanding... My fingers are taking in, every detail of her body until...
<br>
<br>
<<MrsGreen "Can you feel my fingers touching you..">>
<br>
<br>
<<You "Yess,I can...">>
<br>
<br>
<<MrsGreen "Touch me, while I touch you..">>
<hr>
<<link " Looks like I’m not the only one enjoying this ">>
<<goto "B4a">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b9.gif">
</td>
<td>
<div id=content>
<br>
She touches her dress swirling up to reveal her nakedness...., posing elegantly before me...
She turns, displaying her beauty from every angle.
<br>
<<MrsGreen " Do You like what you see?......">>
<br>
My smile betrays my thoughts as she steps back.
<br>
Her creamy thighs widened, the hem of her short dress rose higher and higher until her sweet pussy came clearly into view under her thong, the livid petals of her swollen labia are glistening wetly.
<br>
<br>
<<You "Oh MrsGreen, you are so beautiful,..">>
<br>
We hear her husband shouting and she slowly moves to the door...
<br>
<hr>
<<link " Ok, please go.... ">>
<<goto "B5">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/emm.png">
</td>
<td>
<div id=content>
<br>
That was more than I wanted to know, but it really got me into the mood for my next move
<br>
<br>
<<You "Oh MrsGreen, I hope that you wont mind sharing your fantasies with me....I bought a present for you.Something to elevate your fantasies and learn a few tricks..">>
<br>
I gave her the erotic novel and her eyes opned wide...
<br>
<<MrsGreen " My God! That is wonderful! I'll sign you up as my instructor on one extra condition.....">>
<br>
<<You "Oh? What's your condition?">>
<br>
<<MrsGreen " I'll need you to have an allowance from me to use as you like for our tutoring sessions.">>
<br>
<<You "OK...You'll have to agree to show you off in your sexy clothes around beeches, theme parks, everything. What do you say">>
<br>
<<MrsGreen " That sounds pretty exciting....">>
<br>
He rstupid husband was now yelling from outside and she made her way to meet him with me following her steps.
<hr>
<<link " I'm right behind you.... ">>
<<goto "B6">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b8.png">
</td>
<td>
<div id=content>
<br>
When we stepped outside the door a gust of wind whipped her skirt up, exposing her cunt to my view. She smiled again.
Her husband turned out to be an avarage looking man, but a many years older than her. I didn't like the look that he gave me as she was introducing me as her assistant in her chores."We have to move fast"said and turned his back to us not even taking a look at her.
<br>
<br>
<<You "Oh MrsGreen, I hope that you you'll have a good time.">>
<br>
<br>
<<MrsGreen " It would be nice if we could see more of each other. I really love having you come over. We have lots of things in common..
Maybe buy some of the things needed for our project...">>
<br>
A little less anxious,she left smiling, leaving me sitting in the scanty shade that was available, I saw them leaving in their car thinking that I must buy a variety of lingerie.
<br>
<br>
<<energy -30>>
<br>
<<money 200>>
<br>
<<confidence 10>>
<hr>
<br>
<<link "I'll be here MrsGreen we got all summer long...">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b7.gif">
</td>
<td>
<div id=content>
<br>
<<MrsGreen " Easy tiger, easy......">>
<br>
<br>
Her twitching body slowly coming back under control as her husband was shouting from the parking lot...
<br>
<br>
<<MrsGreen " Now, listen sweetie.....Don't you want to know what is going to happen? I have to leave in a while....so this must stop....
If you stop I would like to reward you.">>
<br>
<hr>
<<link " Very good, I am stopping.... ">>
<<goto "B4">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>
<table id=stuff>
<tr>
<td>
<img src="pics/MrsGreen/book/b6.png">
</td>
<td>
<div id=content>
<br>
Her fingers hooked gently in the elastic of her tiny panties, pushing them softly down over her hips. Gently they slid the length of her legs, pooling at her ankles. Her soft mound of red hair sparkled in the crisp morning sun as her fingers moved quickly back...
<br>
<<MrsGreen " Would you like a souveneir?...">>
<br>
<hr>
<<link " You are one of a kind. I enjoyed watching you.... ">>
<<goto "B4b">>
<</link>>
<br>
<br>
<<link "Leave">>
<<goto "Entrance">>
<</link>>
</div>
</td>
</tr>
</table>