cafe_parco 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # cafe_parco
  2. $location_type = 'public_indoors'
  3. if $args[0]= 'start':
  4. '<center><h4><font color="maroon">Cafe "Del Parco"</font></h4></center>'
  5. '<img <<$set_imgh>> src="'+'images/locations/pavlovsk/park/cafe/caffe_del_parco'+iif(hour > 20 or hour < 7,'_night','')+'.jpg'+'">'
  6. 'The newly opened cafe "Del Parco", with its striking facade, there are lots of tables and a summer terrace. Opening hours between 14.00 to 21.00.'
  7. if hour >= 14 and hour < 21:
  8. act 'Enter': gt 'cafe_parco', 'inner'
  9. end
  10. act 'Go back to the square': gt 'gskver'
  11. end
  12. if $args[0]= 'inner':
  13. '<img <<$set_imgh>> src="images/locations/pavlovsk/park/cafe/caffe_del_parco_in.jpg">'
  14. act 'Go back outside': gt 'gskver'
  15. gs 'family'
  16. if (sunWeather = 0 or temper < 5) and week mod 2 = 0 and (hour >= 14 and hour < 20) and mey_vika_qw_day ! daystart:
  17. mey_vika_qw_day = daystart
  18. minut += rand(10,20)
  19. 'You notice Vicky and Vanya sitting at a table.'
  20. if mey_vika['mey_vika_qw'] < 3:
  21. !! monochromatic
  22. 'You''re not really close with either of them, you don''t really know how to approach them.'
  23. elseif mey_vika['mey_vika_qw'] < 5:
  24. 'While in passing of their table you greet them with a simple "Hi".'
  25. !! connected relationship and response
  26. if npc_rel["A15"] < 60:
  27. 'Vicky and Vanya only glance in your direction and turn away, having nothing more to say you quickly moved on...'
  28. else
  29. 'Vicky and Vanya answer "Hi" back at the same time, you just wanted to greet them so you continued on your way.'
  30. end
  31. elseif mey_vika['mey_vika_qw'] >= 5:
  32. if npc_rel["A15"] < 60:
  33. 'You approach the couple and greet them, but they don''t pay any attention to you.'
  34. else
  35. 'You approach the couple and greet them, right away Vicky starts gossiping, as always, Vanya, mostly joked about the things you two were talking about. You chatted for a few minutes...'
  36. end
  37. !! something is going to happen here
  38. if npc_rel["A15"] >= 80:
  39. if mey_vika['mey_vika_qw'] = 10:
  40. cla
  41. 'Vicky and Vanya invite you to join them.'
  42. if money < 300:
  43. act 'Refuse':
  44. cla
  45. 'You''re pretty much broke, and you don''t want to be impudent by asking them to pay for you, so you decide to thank them for the invite but that you have a thing elsewhere that you need to attend...'
  46. act 'Leave': gt 'park'
  47. end
  48. end
  49. act 'Agree':
  50. mey_vika['mey_vika_qw'] = 15
  51. gt 'mey_vika_events', 'cafe_qw'
  52. end
  53. elseif mey_vika['mey_vika_qw'] >= 7:
  54. 'As you''re getting up from the table, you notice Vicky whispering something to Vanya. You notice Vanya''s hand stroking and squeezing Vicky''s butt, as they stare at you with lust in their eyes...'
  55. end
  56. end
  57. end
  58. else
  59. 'You don''t see anyone familiar here.'
  60. end
  61. end
  62. --- cafe_parco ---------------------------------