12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # koncepod
- pavserpsiday = daystart
- minut += 5
- menu_off = 1
- gs'stat'
-
- if hour <= 7 or hour >= 21:
- cla
- *clr
- '<center><img <<$set_imgh>> src="images/locations/oldtown/vacanthouse/koncepod1.jpg" ></center>'
- 'The concierge counter is empty.'
- else
- cla
- *clr
- '<center><img <<$set_imgh>> src="images/locations/oldtown/vacanthouse/koncepod.jpg" ></center>'
- 'At the entrance sits a concierge, with an old man attending it.'
- if hausr >= 0 and hour >= 7 or hour <= 21:
- 'Sorry, but the apartment has already been rented.'
- end
- act 'Go up stairs':gt'koncepod1','krr2x1'
- if $pantyworntype = 'none' and PCloSkirt > 3 and hour > 6 and hour <= 20:
- nurand = RAND(0,100)
- if nurand >= 90:
- pcs_mood -= 5
- SUB += 1
- pcs_horny += SUB
- 'As you walk away you heard the barely audible murmur from the concierge "That slut! She walks around in a short skirt and no panties, ass and pussy on display for all to see!"'
- end
- end
- if pcs_makeup = 4 and hour >= 7 and hour <= 21:
- 'As you walk away you heard the barely audible murmur from the concierge "Oh, look at her now. All painted up like some cheap whore."'
- end
- end
- act 'Leave':gt'dvor'
- --- koncepod ---------------------------------
|