123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # taxi
- act 'Taxi':
- cla
- *clr
- minut += 5
- '<center><img src="images/pic/taxi1.jpg"></center>'
- 'You hail a passing taxi.'
- 'Fare 250 RUB.'
- if $loc ! 'street':
- act 'Go to the residential area':
- $loc = 'street'
- dynamic $taxi
- end
- end
- if $loc ! 'down':
- act 'Go to the city center':
- $loc = 'down'
- dynamic $taxi
- end
- end
- if $loc ! 'Nord':
- act 'Go to the northern region':
- $loc = 'Nord'
- dynamic $taxi
- end
- end
- if $loc ! 'BDSM_Club' and BDSMtaxi = 1:
- act 'Go to the BDSM club':
- $loc = 'BDSM_Club'
- $metka = 'start'
- dynamic $taxi
- end
- end
- if $loc!'liam':
- act 'Go to the old town':
- $loc='liam'
- dynamic $taxi
- end
- end
- act 'Remain here':gt $loc,$metka
- end
- --- taxi ---------------------------------
|