cafe_parco.qsrc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. '<center><img <<$set_imgh>> src="'+'images/locations/pavlovsk/park/cafe/caffe_del_parco'+iif(hour > 20 or hour < 7,'_night','')+'.jpg'+'"></center>'
  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. $metka = $ARGS[0]
  14. $loc = $CURLOC
  15. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/cafe/caffe_del_parco_in.jpg"></center>'
  16. act 'Order food':gs 'food_menu', 'cafe'
  17. act 'Order drinks':gs 'beverage_menu', 'cafe'
  18. act 'Go back outside': gt 'gskver'
  19. gs 'family'
  20. if (sunWeather = 0 or temper < 5) and week mod 2 = 0 and (hour >= 14 and hour < 20) and mey_vika_qw_day ! daystart:
  21. mey_vika_qw_day = daystart
  22. minut += rand(10,20)
  23. 'You notice Vicky and Vanya sitting at a table.'
  24. if mey_vika['mey_vika_qw'] < 3:
  25. !! monochromatic
  26. 'You''re not really close with either of them, you don''t really know how to approach them.'
  27. elseif mey_vika['mey_vika_qw'] < 5:
  28. 'While in passing of their table you greet them with a simple "Hi".'
  29. !! connected relationship and response
  30. if npc_rel["A15"] < 60:
  31. 'Vicky and Vanya only glance in your direction and turn away, having nothing more to say you quickly moved on...'
  32. else
  33. 'Vicky and Vanya answer "Hi" back at the same time, you just wanted to greet them so you continued on your way.'
  34. end
  35. elseif mey_vika['mey_vika_qw'] >= 5:
  36. if npc_rel["A15"] < 60:
  37. 'You approach the couple and greet them, but they don''t pay any attention to you.'
  38. else
  39. '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...'
  40. end
  41. !! something is going to happen here
  42. if npc_rel["A15"] >= 80:
  43. if mey_vika['mey_vika_qw'] = 10:
  44. cla
  45. 'Vicky and Vanya invite you to join them.'
  46. if money < 300:
  47. act 'Refuse':
  48. cla
  49. '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...'
  50. act 'Leave': gt 'park'
  51. end
  52. end
  53. act 'Agree':
  54. mey_vika['mey_vika_qw'] = 15
  55. gt 'mey_vika_events', 'cafe_qw'
  56. end
  57. elseif mey_vika['mey_vika_qw'] >= 7:
  58. '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...'
  59. end
  60. end
  61. end
  62. else
  63. 'You don''t see anyone familiar here.'
  64. end
  65. end
  66. --- cafe_parco ---------------------------------