1
0

liamelkafe.qsrc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # liamelkafe
  2. if $ARGS[0] = 'start':
  3. $menu_loc = 'liamelkafe'
  4. $menu_arg = 'start'
  5. menu_off = 0
  6. $location_type = 'indoors'
  7. gs 'stat'
  8. '<center><B><font color=maroon>Liamel Cafe</font></B></center>'
  9. *nl
  10. '<center><img <<$set_imgh>> src="images/locations/oldtown/cafe/larek.jpg" ></center>'
  11. *nl
  12. 'What little floor space the quaint cafe has, is packed with many small tables and chairs.'
  13. act 'Leave the cafe':gt 'liames'
  14. if hour > 11 and hour < 13:
  15. 'The cafe is packed with people eating their afternoon meal.'
  16. if stallionQ = 1: stallionQ = 2
  17. elseif hour > 16 and hour < 18:
  18. 'The cafe is packed with people eating their evening meal.'
  19. if stallionQ = 1: stallionQ = 2
  20. end
  21. if money > 45:
  22. act 'Sit down for a meal': money -= 45 & gt 'liamelkafe', 'food'
  23. end
  24. end
  25. if $ARGS[0] = 'food':
  26. $loc_arg = 'food'
  27. $loc = 'liamelkafe'
  28. $menu_loc = 'liamelkafe'
  29. $menu_arg = 'food'
  30. menu_off = 0
  31. '<center><B><font color=maroon>Liamel Cafe</font></B></center>'
  32. *nl
  33. '<center><img <<$set_imgh>> src="images/locations/oldtown/cafe/larek.jpg" ></center>'
  34. act 'Leave the table':gt 'liamelkafe', 'start'
  35. act 'Order from the menu (0:05)':gs 'food_menu'
  36. if stallionQ = 2:
  37. if FocH > (Foch_Max - 10):
  38. stallionQ = 3
  39. FocH = Foch_Max
  40. EggRH += 300
  41. elseif ovulate > 12:
  42. stallionQ = 3
  43. end
  44. end
  45. 'The tiny cafe is wonderfully situated and you enjoy the beautiful scenery as you eat.'
  46. if stallionQ = 0: StallionQ = 1
  47. end
  48. --- liamelkafe ---------------------------------