taxi 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # taxi
  2. act 'Taxi':
  3. cla
  4. *clr
  5. minut += 5
  6. '<center><img src="images/pic/taxi1.jpg"></center>'
  7. 'You hail a passing taxi.'
  8. 'Fare 250 RUB.'
  9. if $loc ! 'street':
  10. act 'Go to the residential area':
  11. $loc = 'street'
  12. dynamic $taxi
  13. end
  14. end
  15. if $loc ! 'down':
  16. act 'Go to the city center':
  17. $loc = 'down'
  18. dynamic $taxi
  19. end
  20. end
  21. if $loc ! 'Nord':
  22. act 'Go to the northern region':
  23. $loc = 'Nord'
  24. dynamic $taxi
  25. end
  26. end
  27. if $loc ! 'BDSM_Club' and BDSMtaxi = 1:
  28. act 'Go to the BDSM club':
  29. $loc = 'BDSM_Club'
  30. $metka = 'start'
  31. dynamic $taxi
  32. end
  33. end
  34. if $loc!'liam':
  35. act 'Go to the old town':
  36. $loc='liam'
  37. dynamic $taxi
  38. end
  39. end
  40. act 'Remain here':gt $loc,$metka
  41. end
  42. --- taxi ---------------------------------