1
0

univer 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. # univer
  2. if $ARGS[0] = 'start':
  3. $sexloc = $CURLOC
  4. cla
  5. clr
  6. *clr
  7. minut += 5
  8. gs 'stat'
  9. fcolor = rgb(0, 0, 0)
  10. bcolor = rgb(255, 255, 255)
  11. lcolor = rgb(106, 90, 205)
  12. '<center><b><font color="maroon">The University of</font></b></center>'
  13. '<center><img src="images/etogame/univer.jpg"></center>'
  14. if student = 0 and abiturient = 0:'Preparatory courses cost 15,000'
  15. 'Examinations for admission to the University are held in August.'
  16. 'All lectures begin with a 8:00, late for a lecture is not allowed.'
  17. if student > 0:'You learn how to <<semestr>> semester <<kurs>> course'
  18. if abiturient = 1:'You entrant.'
  19. act 'Leave':
  20. cla
  21. minut += 5
  22. gt 'down'
  23. end
  24. if student = 0 and abiturient = 0 and money >= 15000 and month < 9 and diplom = 0 and age >= 17:
  25. ''
  26. act 'Pay for training course (15,000 rubles)':
  27. cla
  28. minut += 5
  29. money -= 15000
  30. abiturient = 1
  31. 'You paid 15,000 for preparatory courses. Classes start in 21chas, on weekdays'
  32. act 'Move away':gt 'univer', 'start'
  33. end
  34. elseif abiturient >= 1 and month < 9 and hour < 21 and week < 6:
  35. act 'Attend preparatory courses (1:00)':
  36. cla
  37. *clr
  38. minut += 60
  39. abiturient += 1
  40. intel += 1
  41. '<center><img src="images/etogame/Classroom.jpg"></center>'
  42. 'You were engaged in preparatory courses within an hour.'
  43. act 'Get out of class':gt 'univer', 'start'
  44. end
  45. end
  46. if month = 8 and student = 0 and diplom = 0 and age >= 17:
  47. 'You can try to take an entrance exam.'
  48. act 'Take the entrance exam (1:00)':
  49. cla
  50. *clr
  51. minut += 60
  52. '<center><img src="images/etogame/Classroom.jpg"></center>'
  53. 'You passed the entrance exam to university.'
  54. if intel + abiturient >= 100:
  55. student = 1
  56. kurs = 1
  57. semestr = 1
  58. abiturient = 0
  59. 'You have successfully passed the entrance exams and can start training in September.'
  60. else
  61. 'You failed the entrance exam.'
  62. end
  63. act 'Get out of class':gt 'univer', 'start'
  64. end
  65. end
  66. if week < 6 and student > 0 and month > 8 and month < 12:
  67. !! 1st semester
  68. act 'Go to the deanery':
  69. cla
  70. if semestr = 2 and examen = 0:examen = 2
  71. gt 'univer', 'dekanat'
  72. end
  73. elseif week < 6 and student > 0 and month > 1 and month < 5:
  74. !! 2nd semester
  75. act 'Go to the deanery':
  76. cla
  77. if semestr = 1 and examen = 0:examen = 2
  78. gt 'univer', 'dekanat'
  79. end
  80. elseif week < 6 and student > 0 and month = 12 and examen = 0 and semestr = 1:
  81. !! 1st semester exams
  82. act 'Go for exams':gt 'univer', 'examen'
  83. elseif week < 6 and student > 0 and month = 5 and examen = 0 and semestr = 2:
  84. !! 2nd semester exams
  85. act 'Go for exams':gt 'univer', 'examen'
  86. end
  87. end
  88. if $ARGS[0] = 'dekanat':
  89. $sexloc = $CURLOC
  90. cla
  91. clr
  92. *clr
  93. minut += 5
  94. if examen = 1:
  95. examen = 0
  96. if semestr = 2:
  97. semestr = 1
  98. kurs += 1
  99. elseif semestr = 1:
  100. semestr = 2
  101. end
  102. elseif examen = 2:
  103. student = 0
  104. kurs = 0
  105. semestr = 0
  106. abiturient = 0
  107. stipuha = 0
  108. lektor = 0
  109. 'YOU expelled from university.'
  110. end
  111. if kurs = 2:
  112. diplom = 1
  113. student = 0
  114. kurs = 0
  115. semestr = 0
  116. abiturient = 0
  117. stipuha = 0
  118. 'YOU awarded a diploma.'
  119. end
  120. gs 'stat'
  121. '<center><b><font color="maroon">Dean</font></b></center>'
  122. '<center><img src="images/etogame/dekanat.jpg"></center>'
  123. 'You learn how to <<semestr>> semester <<kurs>> course'
  124. 'Prior to the session must pass <<kurs>> coursework. More welcomed and encouraged during the session.'
  125. if kursovikD > 0:'You passed <<kursovikD>> coursework.'
  126. act 'Escape from the dean''s office':gt 'univer', 'start'
  127. if hour < 8 and student > 0:
  128. act 'At the lecture':
  129. cla
  130. *clr
  131. minut += 360
  132. hour = 14
  133. minut = 0
  134. lektor += 1
  135. intel += 1
  136. '<center><img src="images/etogame/Classroom1.jpg"></center>'
  137. 'You were sitting in lectures and recorded for teacher notes.'
  138. zanrand = rand(0, 9)
  139. if zanrand = 0:
  140. minut += 60
  141. 'During class lecturer starts you ask, but you did not really say you can not, and he says something to you stayed after school.'
  142. 'Classes are over, but you have to stay.'
  143. act 'Remain in the classroom':
  144. cla
  145. *clr
  146. zanpicrand = rand(1, 3)
  147. '<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
  148. 'After the class lecturer explains to you for an hour thing.'
  149. act 'Leave':gt 'univer', 'dekanat'
  150. act 'Seduce':
  151. cla
  152. *clr
  153. if zanpicrand = 1:picrand = 44
  154. if zanpicrand = 2:picrand = 45
  155. if zanpicrand = 3:picrand = 46
  156. '<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
  157. 'You grab his penis, he reflexively pulls away, but then relaxes and allows you to continue.'
  158. act 'Blow job':gt 'sex', 'minet'
  159. end
  160. end
  161. elseif zanrand = 1:
  162. minut += 60
  163. 'During class lecturer starts you ask, but you did not really say you can not, and he says something to you stayed after school.'
  164. 'Classes are over, but you have to stay.'
  165. act 'Remain in the classroom':
  166. cla
  167. *clr
  168. zanpicrand = rand(4, 6)
  169. '<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
  170. 'After exercising for an hour lecturer explains to you another girl the importance of its subject.'
  171. act 'Leave':gt 'univer', 'dekanat'
  172. act 'Seduce':
  173. cla
  174. *clr
  175. if zanpicrand = 4:picrand = 20
  176. if zanpicrand = 5:picrand = 21
  177. if zanpicrand = 6:picrand = 22
  178. '<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
  179. 'You go down on your knees and grab his penis, the other girl looks at you with round eyes, but then also starts to stick to the teacher to design, he resists a little at first, but then completely given into your hand.'
  180. act 'Blow job':gt 'podrsex', 'var'
  181. end
  182. end
  183. end
  184. act 'Exit from the audience':gt 'univer', 'dekanat'
  185. end
  186. end
  187. if kursovik >= 100:
  188. act 'Pass the course work':
  189. cla
  190. *clr
  191. intel += 1
  192. kursovik = 0
  193. kursovikD += 1
  194. '<center><img src="images/etogame/Classroom1.jpg"></center>'
  195. 'You passed the course work.'
  196. act 'Exit from the audience':gt 'univer', 'dekanat'
  197. end
  198. end
  199. end
  200. if $ARGS[0] = 'examen':
  201. cla
  202. clr
  203. *clr
  204. minut += 60
  205. gs 'stat'
  206. '<center><b><font color="maroon">Exam</font></b></center>'
  207. '<center><img src="images/etogame/examen.jpg"></center>'
  208. if lektor > 55 and kursovikD >= kurs:
  209. examen = 1
  210. kursovikD = 0
  211. stipuha = 1
  212. lektor = 0
  213. !!1200
  214. 'You are well attended classes and you have no outstanding coursework, exam so you put a gun.'
  215. jump 'exitexamem'
  216. end
  217. if ((intel >= 80) or (lektor > 40 and lektor <= 55)) and kursovikD >= kurs:
  218. examen = 1
  219. kursovikD = 0
  220. stipuha = 0
  221. lektor = 0
  222. 'You answered all the questions in the ticket and you have no outstanding coursework, so you score? Exam.'
  223. act 'Exit from the audience':gt 'univer', 'dekanat'
  224. exit
  225. end
  226. if (intel >= 100) and kursovikD >= kurs + 10:
  227. examen = 1
  228. kursovikD = 0
  229. stipuha = 1
  230. lektor = 0
  231. 'You showed great zeal and independence in learning, so you put a gun exam.'
  232. jump 'exitexamem'
  233. !!exit
  234. end
  235. if (intel < 70 and lektor <= 40) or kursovikD < kurs:
  236. examen = 2
  237. stipuha = 0
  238. 'You do not pass the exam.'
  239. end
  240. if examen = 0:
  241. examen = 2
  242. stipuha = 0
  243. 'You do not pass the exam.'
  244. end
  245. :exitexamem
  246. act 'Exit from the audience':gt 'univer', 'dekanat'
  247. end
  248. --- univer ---------------------------------