1
0

parks.qsrc 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # parks
  2. !!2021/05/12
  3. if $ARGS[0] = 'start':
  4. *clr & cla
  5. $location_type = 'public_outdoors'
  6. $loc_arg = 'start'
  7. $loc = 'parks'
  8. $menu_loc = 'parks'
  9. $menu_arg = 'start'
  10. $locclass = 'city_park'
  11. menu_off = 0
  12. gs'stat'
  13. '<center><B>Pushkin Town Park</B></center>'
  14. '<center><img <<$set_imgh>> src="images/locations/pushkin/park/parkus.jpg" ></center>'
  15. 'The gardens of the old palace have been sculpted over many years into a wonder landscape with a tranquil atmosphere.'
  16. 'The Pushkin Park is a must-see for tourists and servers as the main attraction of Pushkin.'
  17. 'Wander deeper into the <a href="exec:gt ''lug'',''start''">park</a>.'
  18. act 'Go to Okhlopkov Square (0:05)': minut += 5 & gt 'pushkin_sq'
  19. act 'Go to Town Center (0:10)': minut += 10 & gt 'pushkin'
  20. act 'Walk around the park (1 hour)':
  21. if pcs_exhib = 100 and exhibitionQW = 0: gt 'kseniyaQW', 'event1', 1
  22. cla
  23. minut += 60
  24. pcs_mood += 10
  25. gs'stat'
  26. 'You leisurely stroll through Pushkin Park, breathing in the fresh air, and reflecting on the vicissitudes of fate.'
  27. act 'Complete outing.':gt 'parks','start'
  28. end
  29. gs 'park_walkevents', 'run'
  30. if hour >= 20 or hour < 6 :
  31. if func('homes_properties', 'has_access', 'old_town_apartment') = 0 :
  32. !nowhere to live in town
  33. 'It''s quite dark now, and you have no where to stay nearby. Maybe you should try to sleep on a bench?'
  34. else
  35. 'It''s quite dark now, and you don''t feel like walking. Maybe you should try sleeping on a bench?'
  36. end
  37. act 'Sleep on a bench': gt'placer_sex','sleeping_park_bench'
  38. end
  39. act 'Sit down on the bench':gs 'placer_sex', 'sitting_park_bench'
  40. if mc_inventory['joints'] > 0 and drugVars['weed_high'] = 0: act 'Smoke a joint': minut += 10 & gs 'drugs', 'joint' & gt $loc, $loc_arg
  41. if pcs_inhib >= 35 or exhibitionist_lvl > 0:
  42. act 'Flash your tits':
  43. menu_off = 1
  44. if pcs_exhib = 100 and exhibitionQW = 0: gt 'kseniyaQW', 'event1'
  45. *clr & cla
  46. inhib_exp += rand(1,3)
  47. gs 'flash', 'tits', 'outdoors', 5
  48. gs 'stat'
  49. act 'Continue': gt 'parks', 'start'
  50. end
  51. end
  52. if exhibitionist_lvl > 1:
  53. act 'Flash your pussy':
  54. menu_off = 1
  55. if pcs_exhib = 100 and exhibitionQW = 0: gt 'kseniyaQW', 'event1'
  56. *clr & cla
  57. gs 'flash', 'pussy', 'outdoors', 5
  58. gs 'stat'
  59. act 'Continue': gt 'parks', 'start'
  60. end
  61. end
  62. end
  63. --- parks ---------------------------------