cafe_parco.qsrc 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # cafe_parco
  2. $location_type = 'public_indoors'
  3. if $args[0]= 'start':
  4. $menu_loc = 'cafe_parco'
  5. $menu_arg = 'start'
  6. menu_off = 0
  7. '<center><h4><font color="maroon">Cafe "Del Parco"</font></h4></center>'
  8. '<center><img <<$set_imgh>> src="'+'images/locations/pavlovsk/park/cafe/caffe_del_parco'+iif(hour > 20 or hour < 7,'_night','')+'.jpg'+'"></center>'
  9. '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.'
  10. act 'Return to the square': gt 'gskver', 'start'
  11. if hour >= 14 and hour < 21: act 'Enter the cafe': gt 'cafe_parco', 'inner'
  12. end
  13. if $args[0]= 'inner':
  14. $menu_loc = 'cafe_parco'
  15. $menu_arg = 'inner'
  16. menu_off = 0
  17. $metka = 'inner'
  18. $loc = 'cafe_parco'
  19. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/cafe/caffe_del_parco_in.jpg"></center>'
  20. act 'Exit the cafe': gt 'gskver', 'start'
  21. act 'Order from the menu (0:05)':gs 'food_menu'
  22. if money >= 350:
  23. act 'Order take-out (0:20) (350 <b>₽</b>)':money -= 350 & gt 'food', 'f_food'
  24. end
  25. gs 'family'
  26. if (sunWeather = 0 or temper < 5) and week mod 2 = 0 and (hour >= 14 and hour < 20) and mey_vika_qw_day ! daystart:
  27. mey_vika_qw_day = daystart
  28. minut += rand(10,20)
  29. 'You notice Vicky and Vanya sitting at a table.'
  30. if mey_vika['mey_vika_qw'] < 3:
  31. 'You''re not really close with either of them, you don''t really know how to approach them.'
  32. elseif mey_vika['mey_vika_qw'] < 5:
  33. 'While in passing of their table you greet them with a simple "Hi".'
  34. if npc_rel["A15"] < 20:
  35. 'Vicky and Vanya only glance in your direction and turn away, having nothing more to say you quickly moved on...'
  36. else
  37. 'Vicky and Vanya answer "Hi" back at the same time, you just wanted to greet them so you continued on your way.'
  38. end
  39. elseif mey_vika['mey_vika_qw'] >= 5:
  40. if npc_rel["A15"] < 50:
  41. 'You approach the couple and greet them, but they don''t pay any attention to you.'
  42. else
  43. '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...'
  44. end
  45. if npc_rel["A15"] >= 60:
  46. if mey_vika['mey_vika_qw'] = 10:
  47. cla
  48. 'Vicky and Vanya invite you to join them.'
  49. if money < 300:
  50. act 'Refuse':
  51. cla
  52. '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...'
  53. act 'Leave': gt 'park'
  54. end
  55. end
  56. act 'Agree':
  57. mey_vika['mey_vika_qw'] = 15
  58. gt 'mey_vika_events', 'cafe_qw'
  59. end
  60. elseif mey_vika['mey_vika_qw'] >= 7:
  61. '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...'
  62. end
  63. end
  64. end
  65. else
  66. 'You don''t see anyone familiar here.'
  67. end
  68. end
  69. --- cafe_parco ---------------------------------