081_metro 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # metro
  2. if $ARGS[0] = 'start':
  3. '<center><B><font color = maroon>Metro station</font></B></center>'
  4. if $loc = 'street':'<center><B><font color = maroon>Residential area</font></B></center>'
  5. if $loc = 'down':'<center><B><font color = maroon>Center</font></B></center>'
  6. if $loc = 'Nord':'<center><B><font color = maroon>Northern region</font></B></center>'
  7. '<center><img src="images\etogame\metro.jpg"></center>'
  8. 'Subway fare costs 16 rubles.'
  9. set minut += 15
  10. clr
  11. gs 'stat'
  12. fcolor = rgb(0,0,0)
  13. bcolor = rgb(255,255,255)
  14. LCOLOR = rgb(106,90,205)
  15. if workDisk = 3 and konvert = 1:
  16. badrand = RAND(0,100)
  17. if badrand >= 80: konvert = 0
  18. end
  19. if money >= 16:
  20. if $loc!'street':
  21. act 'Go to the residential area':
  22. set $loc = 'street'
  23. gt 'metro','vagon'
  24. end
  25. end
  26. if $loc!'down':
  27. act 'Go to the center':
  28. set $loc = 'down'
  29. gt 'metro','vagon'
  30. end
  31. end
  32. if $loc!'Nord':
  33. act 'Go to the northern area':
  34. set $loc = 'Nord'
  35. gt 'metro','vagon'
  36. end
  37. end
  38. end
  39. act 'Get off the subway':
  40. set minut += 15
  41. gt '<<$loc>>'
  42. end
  43. end
  44. if $ARGS[0] = 'vagon':
  45. cla
  46. '<center><B><font color = maroon>Subway car</font></B></center>'
  47. clr
  48. set money -= 16
  49. gs 'stat'
  50. fcolor = rgb(0,0,0)
  51. bcolor = rgb(255,255,255)
  52. LCOLOR = rgb(106,90,205)
  53. if hour < 5 or hour > 10 and hour < 15 or hour > 24:
  54. '<center><img src="images\etogame\vagon.jpg"></center>'
  55. 'In the car just a few passengers sadly examines advertising in the car.'
  56. end
  57. if hour >= 5 and hour <= 10 or hour >= 15 and hour <= 24:
  58. '<center><img src="images\etogame\vagonFull.jpg"></center>'
  59. 'In the car, a lot of people all standing like statues without paying the slightest attention to others.'
  60. set frotrand = RAND(0,100)
  61. if frotrand >= 90 - (frot * 10) and frot < 3: gt 'frot','a'
  62. if frotrand >= 90 - (frot * 10) and frot >= 3 and cumfrot = 0 and ski = 1 or frotrand >= 90 - (frot * 10) and frot >= 3 and cumfrot = 0 and glamur = 1:
  63. set tipfrot = RAND(0,1)
  64. if tipfrot = 0: gt 'frot','b'
  65. if tipfrot = 1: gt 'frot','d1'
  66. !gt 'frot','b'
  67. end
  68. if frotrand >= 90 - (frot * 10) and frot >= 3 and cumfrot = 0 and ski = 0 or frotrand >= 90 - (frot * 10) and frot >= 3 and cumfrot = 0 and glamur = 0:
  69. set tipfrot = RAND(0,2)
  70. if tipfrot =0: gt 'frot','c'
  71. if tipfrot =1: gt 'frot','d'
  72. if tipfrot =2: gt 'frot','e'
  73. end
  74. end
  75. if sosedQW >= 1:
  76. if hour = 7 or hour = 15:
  77. sosedMetroRand = RAND(0,100)
  78. if sosedMetroRand >= 60 and sosedMetroDay ! day:
  79. 'You notice in the subway <a href="exec:Gt ''TimofeiMetro''">Timothy</a>, your neighbor.'
  80. end
  81. end
  82. end
  83. if cumfrot > 0 or cumface > 0:
  84. if hour >= 7 and hour <= 21:
  85. manna -= 10
  86. 'Several passengers were hatched at you looking at where you cum smeared.'
  87. end
  88. end
  89. act 'Get out of the car': gt 'metro','start'
  90. end
  91. --- metro ---------------------------------