1
0

taxi 696 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # taxi
  2. act 'Taxi':
  3. cla
  4. *clr
  5. minut += 5
  6. '<center><img src="images/pic/taxi1.jpg"></center>'
  7. 'You caught a passing taxi.'
  8. 'Fare 250 RUB.'
  9. if $loc ! 'street':
  10. act 'Go to the sleeping area':
  11. $loc = 'street'
  12. dynamic $taxi
  13. end
  14. end
  15. if $loc ! 'down':
  16. act 'Go to the 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 BDSMClub = 1 and BDSMday ! daystart:
  28. act 'To go to BDSM-club':
  29. $loc = 'BDSM_Club'
  30. $metka = 'start'
  31. BDSMtaxi = 1
  32. dynamic $taxi
  33. end
  34. end
  35. act 'Takeout':gt $loc,$metka
  36. end
  37. --- taxi ---------------------------------