1234567891011121314151617181920212223242526272829303132333435363738 |
- # liamelkafe
- if $ARGS[0] = 'start':
- '<center><img src="images/locations/oldtown/cafe/larek.jpg" ></center>'
- 'You enter a tiny cafe, consisting of very little floor space packed with small tables.'
- if hour > 11 and hour < 13:
- 'The cafe is packed with people eating their afternoon meal.'
- if stallionQ = 1: stallionQ = 2
- elseif hour > 16 and hour < 18:
- 'The cafe is packed with people eating their evening meal.'
- if stallionQ = 1: stallionQ = 2
- end
- if money > 45:
- act 'Sit down for a meal': money -= 45 & gt 'liamelkafe', 'food'
- end
- act 'Leave':gt 'liam'
- end
- if $ARGS[0] = 'food':
- '<center><img src="images/locations/oldtown/cafe/larek.jpg" ></center>'
- gs 'food', 'm_meal'
- if stallionQ = 2:
- if FocH > 140:
- stallionQ = 3
- FocH = 150
- EggRH += 300
- elseif ovulate > 12:
- stallionQ = 3
- end
- end
- 'You sat for a meal in the tiny cafe. You enjoyed the beautiful scenery as you ate.'
- if stallionQ = 0: StallionQ = 1
- act 'Leave':gt 'liam'
- end
- --- liamelkafe ---------------------------------
|