uni_programs.qsrc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. # uni_programs
  2. !!This is the file containing the variabels and actions for handeling the different program the player can attend at the university.
  3. !!The following vaiables are important.
  4. !! university['student'] is set to 1 if the player is enrolled in a university program.
  5. !! $university['enrolled_in'] is the name of the university program the player is enrolled in, there is the following progams: teaching_studies
  6. !! university['enrolled_in_semester'] is the semester the player enrolled in starting at 1 for the first semester and ending with 8 for the last.
  7. if $ARGS[0] = 'program_name':
  8. if $university['enrolled_in']= 'teaching_studies':
  9. $RESULT = 'teaching studies'
  10. end
  11. end
  12. if $ARGS[0] = 'uni_period_first':
  13. !!This arg have two functions. If called with gs without any optional argument it will make the cations to go to class availeble.
  14. !!Second if called as a function with the additional ARGS[1] of monday, tuesday, wednesday or thursday, it will print on the screen the name of the class and the time period.
  15. if $university['enrolled_in'] = 'teaching_studies':
  16. if university['enrolled_in_semester'] = 1:
  17. if $ARGS[1] = 'monday':
  18. $Result = 'General Education 101 (09:00 to 10:30)'
  19. elseif $ARGS[1] = 'tuesday':
  20. $Result = 'General Education 101 (09:00 to 10:30)'
  21. elseif $ARGS[1] = 'wednesday':
  22. $Result = 'General Education 101 (09:00 to 10:30)'
  23. elseif $ARGS[1] = 'thursday':
  24. $Result = 'Teaching Methods 101 (09:00 to 10:30)'
  25. elseif week = 1:
  26. *nl
  27. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  28. act 'Go to your General Education 101 class':
  29. if hour = 8: minut += 60 - minut
  30. if hour = 7: minut += 120 - minut
  31. uni_period['first'] = daystart
  32. gs 'stat'
  33. gt 'uni_lessons1', 'general_education_101'
  34. end
  35. elseif week = 2:
  36. *nl
  37. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  38. act 'Go to your General Education 101 class':
  39. if hour = 8: minut += 60 - minut
  40. if hour = 7: minut += 120 - minut
  41. uni_period['first'] = daystart
  42. gs 'stat'
  43. gt 'uni_lessons1', 'general_education_101'
  44. end
  45. elseif week = 3:
  46. *nl
  47. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  48. act 'Go to your General Education 101 class':
  49. if hour = 8: minut += 60 - minut
  50. if hour = 7: minut += 120 - minut
  51. uni_period['first'] = daystart
  52. gs 'stat'
  53. gt 'uni_lessons1', 'general_education_101'
  54. end
  55. elseif week = 4:
  56. *nl
  57. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  58. act 'Go to your Teaching Methods 101 class':
  59. if hour = 8: minut += 60 - minut
  60. if hour = 7: minut += 120 - minut
  61. uni_period['first'] = daystart
  62. gs 'stat'
  63. gt 'uni_lessons1', 'teaching_methods_101'
  64. end
  65. end
  66. elseif university['enrolled_in_semester'] = 2:
  67. if $ARGS[1] = 'monday':
  68. $Result = 'General Education 102 (9:00 to 10:30)'
  69. elseif $ARGS[1] = 'tuesday':
  70. $Result = 'General Education 102 (9:00 to 10:30)'
  71. elseif $ARGS[1] = 'wednesday':
  72. $Result = 'General Education 102 (9:00 to 10:30)'
  73. elseif $ARGS[1] = 'thursday':
  74. $Result = 'Teaching Methods 102 (9:00 to 10:30)'
  75. elseif week = 1:
  76. *nl
  77. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  78. act 'Go to your General Education 102 class':
  79. if hour = 8: minut += 60 - minut
  80. if hour = 7: minut += 120 - minut
  81. uni_period['first'] = daystart
  82. gs 'stat'
  83. gt 'uni_lessons2', 'general_education_102'
  84. end
  85. elseif week = 2:
  86. *nl
  87. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  88. act 'Go to your General Education 102 class':
  89. if hour = 8: minut += 60 - minut
  90. if hour = 7: minut += 120 - minut
  91. uni_period['first'] = daystart
  92. gs 'stat'
  93. gt 'uni_lessons2', 'general_education_102'
  94. end
  95. elseif week = 3:
  96. *nl
  97. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  98. act 'Go to your General Education 102 class':
  99. if hour = 8: minut += 60 - minut
  100. if hour = 7: minut += 120 - minut
  101. uni_period['first'] = daystart
  102. gs 'stat'
  103. gt 'uni_lessons2', 'general_education_102'
  104. end
  105. elseif week = 4:
  106. *nl
  107. 'Your next class will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  108. act 'Go to your Teaching Methods 102 class':
  109. if hour = 8: minut += 60 - minut
  110. if hour = 7: minut += 120 - minut
  111. uni_period['first'] = daystart
  112. gs 'stat'
  113. gt 'uni_lessons2', 'teaching_methods_102'
  114. end
  115. end
  116. end
  117. end
  118. end
  119. if $ARGS[0] = 'uni_period_second':
  120. !!This arg have two functions. If called with gs without any optional argument it will make the options to go to class availeble.
  121. !!Second if called as a function with the additional ARGS[1] of monday, tuesday, wednesday or thursday, it will print on the screen the name of the classe and the time period.
  122. if $university['enrolled_in']= 'teaching_studies':
  123. if university['enrolled_in_semester'] = 1:
  124. if $ARGS[1] = 'monday':
  125. $Result = 'Teaching Methods 101 (11:00 to 12:30)'
  126. elseif $ARGS[1] = 'tuesday':
  127. $Result = 'Learning Theories 101 (11:00 to 12:30)'
  128. elseif $ARGS[1] = 'wednesday':
  129. $Result = 'Teaching Methods 101 (11:00 to 12:30)'
  130. elseif $ARGS[1] = 'thursday':
  131. $Result = 'Learning Theories 101 (11:00 to 12:30)'
  132. elseif week = 1:
  133. *nl
  134. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  135. act 'Go to your Teaching Methods 101 class':
  136. if hour = 10: minut += 60 - minut
  137. uni_period['second'] = daystart
  138. gs 'stat'
  139. gt 'uni_lessons1', 'teaching_methods_101'
  140. end
  141. elseif week = 2:
  142. *nl
  143. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  144. act 'Go to your Learning Theories 101 Class':
  145. if hour = 10: minut += 60 - minut
  146. uni_period['second'] = daystart
  147. gs 'stat'
  148. gt 'uni_lessons1', 'learning_theories_101'
  149. end
  150. elseif week = 3:
  151. *nl
  152. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  153. act 'Go to your Teaching Methods 101 class':
  154. if hour = 10: minut += 60 - minut
  155. uni_period['second'] = daystart
  156. gs 'stat'
  157. gt 'uni_lessons1', 'teaching_methods_101'
  158. end
  159. elseif week = 4:
  160. *nl
  161. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  162. act 'Go to your Learning Theories 101 Class':
  163. if hour = 10: minut += 60 - minut
  164. uni_period['second'] = daystart
  165. gs 'stat'
  166. gt 'uni_lessons1', 'learning_theories_101'
  167. end
  168. end
  169. elseif university['enrolled_in_semester'] = 2:
  170. if $ARGS[1] = 'monday':
  171. $Result = 'Teaching Methods 102 (11:00 to 12:30)'
  172. elseif $ARGS[1] = 'tuesday':
  173. $Result = 'Psychology of a Student 101 (11:00 to 12:30)'
  174. elseif $ARGS[1] = 'wednesday':
  175. $Result = 'Teaching Methods 102 (11:00 to 12:30)'
  176. elseif $ARGS[1] = 'thursday':
  177. $Result = 'Psychology of a Student 101 (11:00 to 12:30)'
  178. elseif week = 1:
  179. *nl
  180. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  181. act 'Go to your Teaching Methods 102 class':
  182. if hour = 10: minut += 60 - minut
  183. uni_period['second'] = daystart
  184. gs 'stat'
  185. gt 'uni_lessons2', 'teaching_methods_102'
  186. end
  187. elseif week = 2:
  188. *nl
  189. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  190. act 'Go to your Phsychology of a Student 101 Class':
  191. if hour = 10: minut += 60 - minut
  192. uni_period['second'] = daystart
  193. gs 'stat'
  194. gt 'uni_lessons2', 'psychology_of_a_student_101'
  195. end
  196. elseif week = 3:
  197. *nl
  198. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  199. act 'Go to your Teaching Methods 102 class':
  200. if hour = 10: minut += 60 - minut
  201. uni_period['second'] = daystart
  202. gs 'stat'
  203. gt 'uni_lessons2', 'teaching_methods_102'
  204. end
  205. elseif week = 4:
  206. *nl
  207. 'Your next class will start at 11:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  208. act 'Go to your Psychology of a Student 101 Class':
  209. if hour = 10: minut += 60 - minut
  210. uni_period['second'] = daystart
  211. gs 'stat'
  212. gt 'uni_lessons2', 'psychology_of_a_student_101'
  213. end
  214. end
  215. end
  216. end
  217. end
  218. if $ARGS[0] = 'uni_period_third':
  219. !!This arg have two functions. If called with gs without any optional argument it will make the options to go to class availeble.
  220. !!Second if called as a function with the additional ARGS[1] of monday, tuesday, wednesday or thursday, it will print on the screen the name of the classe and the time period.
  221. if $university['enrolled_in']= 'teaching_studies':
  222. if university['enrolled_in_semester'] = 1:
  223. if $ARGS[1] = 'monday':
  224. if $university['elective1'] ! '':
  225. $Result = '<<$university[''elective1'']>> (13:15 to 14:45)'
  226. end
  227. elseif $ARGS[1] = 'tuesday':
  228. if $university['elective2'] ! '':
  229. $Result = '<<$university[''elective2'']>> (13:15 to 14:45)'
  230. end
  231. elseif $ARGS[1] = 'wednesday':
  232. $Result = 'Learning Theories 101 (13:15 to 14:45)'
  233. elseif $ARGS[1] = 'thursday' :
  234. if $university['elective3'] ! '':
  235. $Result = '<<$university[''elective3'']>> (13:15 to 14:45)'
  236. end
  237. elseif week = 1 and $university['elective1'] ! '':
  238. !!*nl
  239. !!'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  240. !!act 'Go to your elective clas 1':
  241. !! if hour = 12: minut += 75 - minut
  242. !! if hour = 13 and minut < 15: minut += 15 - minut
  243. !! uni_period['third'] = daystart
  244. !! gs 'stat'
  245. !!end
  246. elseif week = 2 and $university['elective2'] ! '':
  247. !!*nl
  248. !!'Your next class will start at 13:15'
  249. !!act 'Go to your elective clas 2':
  250. !! if hour = 12: minut += 75 - minut
  251. !! if hour = 13 and minut < 15: minut += 15 - minut
  252. !! uni_period['third'] = daystart
  253. !! gs 'stat'
  254. !!end
  255. elseif week = 3:
  256. *nl
  257. 'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  258. act 'Go to your Learning Theories 101 Class':
  259. if hour = 12: minut += 75 - minut
  260. if hour = 13 and minut < 15: minut += 15 - minut
  261. uni_period['third'] = daystart
  262. gs 'stat'
  263. gt 'uni_lessons1', 'learning_theories_101'
  264. end
  265. elseif week = 4 and $university['elective3'] ! '':
  266. !!*nl
  267. !!'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  268. !!act 'Go to your elective clas 3':
  269. !! if hour = 12: minut += 75 - minut
  270. !! if hour = 13 and minut < 15: minut += 15 - minut
  271. !! uni_period['third'] = daystart
  272. !! gs 'stat'
  273. !!end
  274. end
  275. elseif university['enrolled_in_semester'] = 2:
  276. if $ARGS[1] = 'monday':
  277. if $university['elective1'] ! '':
  278. $Result = '<<$university[''elective1'']>> (13:15 to 14:45)'
  279. end
  280. elseif $ARGS[1] = 'tuesday':
  281. if $university['elective2'] ! '':
  282. $Result = '<<$university[''elective2'']>> (13:15 to 14:45)'
  283. end
  284. elseif $ARGS[1] = 'wednesday':
  285. $Result = 'Phsychology of a Student 101 (13:15 to 14:45)'
  286. elseif $ARGS[1] = 'thursday':
  287. if $university['elective3'] ! '':
  288. $Result = '<<$university[''elective3'']>> (13:15 to 14:45)'
  289. end
  290. elseif week = 1 and $university['elective1'] ! '':
  291. !!*nl
  292. !!'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  293. !!act 'Go to your elective clas 1':
  294. !! if hour = 12: minut += 75 - minut
  295. !! if hour = 13 and minut < 15: minut += 15 - minut
  296. !! uni_period['third'] = daystart
  297. !! gs 'stat'
  298. !!end
  299. elseif week = 2 and $university['elective2'] ! '':
  300. !!*nl
  301. !!'Your next class will start at 13:15'
  302. !!act 'Go to your elective clas 2':
  303. !! if hour = 12: minut += 75 - minut
  304. !! if hour = 13 and minut < 15: minut += 15 - minut
  305. !! uni_period['third'] = daystart
  306. !! gs 'stat'
  307. !!end
  308. elseif week = 3:
  309. *nl
  310. 'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  311. act 'Go to your Phsychology of a Student 101 Class':
  312. if hour = 12: minut += 75 - minut
  313. if hour = 13 and minut < 15: minut += 15 - minut
  314. uni_period['third'] = daystart
  315. gs 'stat'
  316. gt 'uni_lessons2', 'psychology_of_a_student_101'
  317. end
  318. elseif week = 4 and $university['elective3'] ! '':
  319. !!*nl
  320. !!'Your next class will start at 13:15. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  321. !!act 'Go to your elective clas 3':
  322. !! if hour = 12: minut += 75 - minut
  323. !! if hour = 13 and minut < 15: minut += 15 - minut
  324. !! uni_period['third'] = daystart
  325. !! gs 'stat'
  326. !!end
  327. end
  328. end
  329. end
  330. end
  331. if $ARGS[0] = 'exam':
  332. !!This arg have three functions. If called with gs without any optional argument it will make the options to go to exam availeble.
  333. !!The second if called as a function with the additional $ARGS[1] = 'schedule', it will print on the screen the name and date of the exams you have left this semester.
  334. !!The third is if called with $ARGS[1] = 'is_over' and $ARGs[2] the name of the class to no if the time slot for the exam has passed by returning 1. Only use this during in the exam weeks, out side the exam week this is covered of the variabels that tell wether the semeter is passed or not.
  335. if $university['enrolled_in'] = 'teaching_studies':
  336. if university['enrolled_in_semester'] = 1:
  337. if $ARGS[1] = 'schedule':
  338. if university['exam_week'] = 1:
  339. if week < 4 or (week = 4 and hour < 9):
  340. $Result = 'General Education 101 Exam (09:00 to 12:00) Thursday this week. Teaching Methods 101 Exam (09:00 to 12:00) Monday next week. Learning Theories 101 Exam (09:00 to 12:00) Thursday next week.'
  341. else
  342. $Result = 'Teaching Methods 101 Exam (09:00 to 12:00) Tuesday next week. Learning Theories 101 Exam (09:00 to 12:00) Thursday next week.'
  343. end
  344. elseif university['exam_week'] = 2:
  345. if week < 2 or (week = 2 and hour < 9):
  346. $Result = 'Teaching Methods 101 Exam (09:00 to 12:00) Tuesday this week. Learning Theories 101 Exam (09:00 to 12:00) Thursday this week.'
  347. elseif week < 4 or (week = 4 and hour < 9):
  348. $Result = 'Learning Theories 101 Exam (09:00 to 12:00) Thursday this week.'
  349. else
  350. $Result = 'All your exams are over. Now you just have to wait for your grade to be announced.'
  351. end
  352. end
  353. elseif $ARGS[1] = 'is_over':
  354. if $ARGS[2] = 'general education 101':
  355. if university['exam_week'] = 1 and (week < 4 or (week = 4 and hour < 9)):
  356. Result = 0
  357. else
  358. Result = 1
  359. end
  360. elseif $ARGS[2] = 'teaching methods 101':
  361. if university['exam_week'] = 1 or (university['exam_week'] = 2 and (week < 2 or (week = 2 and hour < 9))):
  362. Result = 0
  363. else
  364. Result = 1
  365. end
  366. elseif $ARGS[2] = 'learning theories 101':
  367. if university['exam_week'] = 1 or (university['exam_week'] = 2 and (week < 4 or (week = 4 and hour < 9))):
  368. Result = 0
  369. else
  370. Result = 1
  371. end
  372. end
  373. elseif university['exam_week'] = 1:
  374. if week = 4:
  375. *nl
  376. 'Your General Education 101 exam will start at 09:00 today. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  377. act 'Go to your General Education 101 exam':
  378. if hour = 8: minut += 60 - minut
  379. if hour = 7: minut += 120 - minut
  380. gs 'stat'
  381. gt 'uni_exams1', 'general_education_101'
  382. end
  383. end
  384. elseif university['exam_week'] = 2:
  385. if week = 2:
  386. *nl
  387. 'Your Teaching Methods 101 exam will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  388. act 'Go to your Teaching Methods 101 exam':
  389. if hour = 8: minut += 60 - minut
  390. if hour = 7: minut += 120 - minut
  391. gs 'stat'
  392. gt 'uni_exams1', 'teaching_methods_101'
  393. end
  394. elseif week = 4:
  395. *nl
  396. 'Your Learning Theories 101 exam will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  397. act 'Go to your Learning Theories 101 exam':
  398. if hour = 8: minut += 60 - minut
  399. if hour = 7: minut += 120 - minut
  400. gs 'stat'
  401. gt 'uni_exams1', 'learning_theories_101'
  402. end
  403. end
  404. end
  405. elseif university['enrolled_in_semester'] = 2:
  406. if $ARGS[1] = 'schedule':
  407. if university['exam_week'] = 1:
  408. if week < 4 or (week = 4 and hour < 9):
  409. $Result = 'General Education 102 Exam (09:00 to 12:00) Thursday this week. Teaching Methods 102 Exam (09:00 to 12:00) Monday next week. Psychology of a Student 101 Exam (09:00 to 12:00) Thursday next week.'
  410. else
  411. $Result = 'Teaching Methods 102 Exam (09:00 to 12:00) Tuesday next week. Psychology of a Student 101 Exam (09:00 to 12:00) Thursday next week.'
  412. end
  413. elseif university['exam_week'] = 2:
  414. if week < 2 or (week = 2 and hour < 9):
  415. $Result = 'Teaching Methods 102 Exam (09:00 to 12:00) Tuesday this week. Psychology of a Student 101 Exam (09:00 to 12:00) Thursday this week.'
  416. elseif week < 4 or (week = 4 and hour < 9):
  417. $Result = 'Psychology of a Student 101 Exam (09:00 to 12:00) Thursday this week.'
  418. else
  419. $Result = 'All your exams are over. Now you just have to wait for your grade to be announced.'
  420. end
  421. end
  422. elseif $ARGS[1] = 'is_over':
  423. if $ARGS[2] = 'general education 102':
  424. if university['exam_week'] = 1 and (week < 4 or (week = 4 and hour < 9)):
  425. Result = 0
  426. else
  427. Result = 1
  428. end
  429. elseif $ARGS[2] = 'teaching methods 102':
  430. if university['exam_week'] = 1 or (university['exam_week'] = 2 and (week < 2 or (week = 2 and hour < 9))):
  431. Result = 0
  432. else
  433. Result = 1
  434. end
  435. elseif $ARGS[2] = 'Phsychology of a Student 101':
  436. if university['exam_week'] = 1 or (university['exam_week'] = 2 and (week < 4 or (week = 4 and hour < 9))):
  437. Result = 0
  438. else
  439. Result = 1
  440. end
  441. end
  442. elseif university['exam_week'] = 1:
  443. if week = 4:
  444. *nl
  445. 'Your General Education 102 exam will start at 09:00 today. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  446. act 'Go to your General Education 102 exam':
  447. if hour = 8: minut += 60 - minut
  448. if hour = 7: minut += 120 - minut
  449. gs 'stat'
  450. gt 'uni_exams2', 'general_education_102'
  451. end
  452. end
  453. elseif university['exam_week'] = 2:
  454. if week = 2:
  455. *nl
  456. 'Your Teaching Methods 102 exam will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  457. act 'Go to your Teaching Methods exam 102':
  458. if hour = 8: minut += 60 - minut
  459. if hour = 7: minut += 120 - minut
  460. gs 'stat'
  461. gt 'uni_exams2', 'teaching_methods_102'
  462. end
  463. elseif week = 4:
  464. *nl
  465. 'Your Psychology of a Student exam will start at 09:00. You can go to it now or do other things first, but you need to be at the university plaza before it starts if you want to attend it.'
  466. act 'Go to your Psychology of a Student 101 exam':
  467. if hour = 8: minut += 60 - minut
  468. if hour = 7: minut += 120 - minut
  469. gs 'stat'
  470. gt 'uni_exams2', 'psychology_of_a_student_101'
  471. end
  472. end
  473. end
  474. end
  475. end
  476. end
  477. --- uni_programs ---------------------------------