balkon 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # balkon
  2. if $ARGS[0] = 'start':
  3. cla
  4. *clr
  5. minut += 5
  6. gs 'stat'
  7. '<center><b><font color="maroon">Apartment Balcony</font></b></center>'
  8. if $clothingworntype = 'nude':
  9. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/balcony_naked1.jpg"></center>'
  10. elseif $pantyworntype = 'none':
  11. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/balcony_dressed1.jpg"></center>'
  12. else
  13. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/balcony_underwear1.jpg"></center>'
  14. end
  15. 'You step out on the balcony. As you step out on the balcony you feel a light breeze making you a bit chilly.'
  16. if hour >= 0 and hour <= 6:
  17. 'It''s dark outside. The street lamps brighten the empty streets below.'
  18. elseif hour = 7:
  19. 'The sun is dawning outside, the birds are waking up and are happily chirping.'
  20. elseif hour >= 8 and hour <= 19:
  21. 'It''s quite nice outside today. The busy streets are reflecting that, there are lot of people walking at a fast pace.'
  22. elseif hour >= 20 and hour <= 23:
  23. 'It''s twilight and the street lights are dimly lit. There''s far less movement on the streets.'
  24. end
  25. if $clothingworntype = 'nude':
  26. if sosedBalDay ! daystart:
  27. if rand(1, 4) = 4:
  28. 'A neighbor from the opposite building is out on his balcony and looking your way. He''s noticed that you''re naked...'
  29. act 'Look at the neighbor':gt 'balkon2', 'sosed'
  30. else
  31. 'A neighbor from the opposite building is out on his balcony and looking your way. You feel a bit creeped out that he''s following you closely with his gaze.'
  32. end
  33. else
  34. 'No one notices that you''re standing naked on your balcony. You feel a bit dejected that no one payed you any attention.'
  35. end
  36. end
  37. if siga >= 1:act 'Light a cigarette':gt 'balkon2', 'kurit'
  38. !!!Probably CV edition
  39. if pcs_horny >= 50 and pcs_exhibition > 20:
  40. act 'Masturbate':gt 'balkon2', 'masopt'
  41. end
  42. act 'Approach the railing':gt 'balkon2', 'niz'
  43. act 'Return to the living room':dynamic $brodils
  44. end
  45. --- balkon ---------------------------------