123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- # bedrPar2
- if $ARGS[0] = '':
- CLOSE ALL
- act 'Return to the hallway':gt 'korrPar'
- $metkaM = $ARGS[0]
- $locM = $CURLOC
- $metka = $ARGS[0]
- $loc = $CURLOC
- clr
- minut += 1
- gs 'stat'
- fcolor = rgb(0, 0, 0)
- bcolor = rgb(255, 255, 255)
- lcolor = rgb(106, 90, 205)
- '<center><b><font color="maroon">Master bedroom</font></b></center>'
- ! WD: Correct Image path ~ "images/qwest/alter/<<$loc>>.jpg"
- '<center><img src="images/qwest/alter/bedrPar2.jpg"></center>'
- 'The room in which your parents live. Their large bed, <a href="exec: gt ''bedrPar2'',''parents_wardrobe''">wardrobe</a> and other closets take up most of the space.'
- gs 'family'
- if hour > 6 and hour < 21 and prezikday ! daystart:
- if prezikProver >= 3:
- prezikday = daystart - 4
- act 'Take condoms from your parents'' stash':
- cls
- cla
- gs 'stat'
- minut+=rand(5,7)
- prezik+=rand(1,3)
- prezikday = daystart
- prezikProver = 0
- '<center><img src="images/qwest/alter/condoms_steal.jpg"></center>'
- 'After you make sure you''re not seen, you quickly search your parents'' room for their condom stash and take a few. Now you have <<prezik>> pcs.'
- act 'Exit the room':gt 'korrPar'
- end
- else
- 'You have already taken some condoms out of your parents'' stash recently. You should wait a while, otherwise they might get suspicious.'
- end
- end
- if hour = 21 and parsexrand = 5 and parentsexday ! daystart:gt 'seeparentsex'
- end
- ! book
- if $ARGS[0] = 'kamasutra':
- cla
- *clr
- minut += 1
- '<center><img src="images/qwest/alter/bedrpar2/book.jpg"></center>'
- 'The cover says "Kamasutra"'
- act 'Leave': gt $loc, $metka
- end
- ! parent`s wardrobe
- if $ARGS[0] = 'parents_wardrobe':
- cla
- *clr
- '<center><img src="images/qwest/alter/bedrpar2/wardrobe.jpg"></center>'
- 'The old Soviet wardrobe'
- act 'Rummage': gt 'bedrPar2', 'wardrobe_search'
- act 'Leave ': gt $loc, $metka
- end
- if $ARGS[0] = 'wardrobe_search':
- cla
- *clr
- if hour >= 21 or hour < 6 :
- 'What are you thinking? You can''t go through the wardrobe while your parents are sleeping right there!'
- act 'Leave ': gt $loc, $metka
- exit
- end
- if rand(1,100) > 75:
- '<center><img src="images/qwest/alter/bedrpar2/wardrobesearch'+rand(1,4)+'.jpg"></center>'
- $failwords[0]='You cannot find anything interesting'
- $failwords[1]='You find some clothe and underwear'
- $failwords[2]='You digging through mother`s closet, but find nothing except underwear.'
- *pl $failwords[rand(0,2)]
- killvar '$failwords'
- else
- '<center><img src="images/qwest/alter/bedrpar2/wardrobetoy.jpg"></center>'
- $findmomtoy[0]='Digging in the closet you find a <a href="exec: gt ''bedrPar2'',''momtoy_play''">Dildo</a>'
- $findmomtoy[1]='In mother`s lingerie is a small <a href="exec: gt ''bedrPar2'',''momtoy_play''">Dildo</a>'
- $findmomtoy[2]='You find your mother`s <a href="exec: gt ''bedrPar2'',''momtoy_play''">toy</a>'
- *pl $findmomtoy[rand(0,2)]
- killvar '$findmomtoy'
- end
- act 'Close the Cabinet': gt $loc, $metka
- end
- if $ARGS[0] = 'momtoy_play':
- cla
- *clr
- dildo = 1
- dildohand = 10
- selfmomtoyplay = 1
- '<center><img src="images/qwest/selfplay/start.jpg"></center>'
- if horny >= 70:
- act 'Play with it': gt 'selfplay'
- else
- act 'Put it back': gt $loc, $metka
- end
- end
- --- bedrPar2 ---------------------------------
|