liamelkafe 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # liamelkafe
  2. if $ARGS[0] = 'start':
  3. '<center><img src="images/locations/oldtown/cafe/larek.jpg" ></center>'
  4. 'You enter a tiny cafe, consisting of very little floor space packed with small tables.'
  5. if hour > 11 and hour < 13:
  6. 'The cafe is packed with people eating their afternoon meal.'
  7. if stallionQ = 1: stallionQ = 2
  8. elseif hour > 16 and hour < 18:
  9. 'The cafe is packed with people eating their evening meal.'
  10. if stallionQ = 1: stallionQ = 2
  11. end
  12. if money > 45:
  13. act 'Sit down for a meal': money -= 45 & gt 'liamelkafe', 'food'
  14. end
  15. act 'Leave':gt 'liam'
  16. end
  17. if $ARGS[0] = 'food':
  18. '<center><img src="images/locations/oldtown/cafe/larek.jpg" ></center>'
  19. gs 'food', 'm_meal'
  20. if stallionQ = 2:
  21. if FocH > 140:
  22. stallionQ = 3
  23. FocH = 150
  24. EggRH += 300
  25. elseif ovulate > 12:
  26. stallionQ = 3
  27. end
  28. end
  29. 'You sat for a meal in the tiny cafe. You enjoyed the beautiful scenery as you ate.'
  30. if stallionQ = 0: StallionQ = 1
  31. act 'Leave':gt 'liam'
  32. end
  33. --- liamelkafe ---------------------------------