1
0

gschool_lessons.qsrc 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804
  1. # gschool_lessons
  2. if $ARGS[0] = 'morning':
  3. *clr & cla
  4. $menu_loc = 'gschool_lessons'
  5. $menu_arg = 'morning'
  6. $location_type = 'public_indoors'
  7. menu_off = 0
  8. if school_check_day ! daystart:
  9. school_check_day = daystart
  10. schoolprogul -= 1
  11. school_lunch = 0
  12. if lernHome = 0: pcs_grades += 2
  13. if lernHome > 0: pcs_grades -= 1
  14. if missing_class > 9:
  15. missing_class -= 9
  16. pcs_grades -= 3
  17. elseif missing_class > 6:
  18. missing_class -= 6
  19. pcs_grades -= 2
  20. end
  21. if pcs_grades > 100: pcs_grades = 100
  22. if pcs_grades < 0: pcs_grades = 0
  23. lernSkill += 1
  24. lernHome += 1
  25. if schoolSorev = 1: schoolSorev = 0
  26. gs 'gschool_socialchg', 'test'
  27. end
  28. if $breaktype ! 'first':
  29. if detention_set = 1 and week = 1:
  30. detention_set = 2
  31. '<center><img <<$set_imgh>> src="images/pc/npc_headshots/big134.jpg"></center>'
  32. 'The principal is waiting for you in the hall, and with a simple curl of a finger, she summons you to follow her to her office.'
  33. *nl
  34. gs 'gschool_lessons', 'uniform_check'
  35. act 'Follow': gt 'gschool_office', 'principal'
  36. elseif late = 0 and cheerleadingQW['skipped_ev'] + cheerleadingQW['skipped_g_ev'] > 0:
  37. gs 'gschool_cheerleading', 'skipped_ev'
  38. act 'Continue down the hall': gt 'gschool_lessons', 'morning'
  39. elseif grupTipe = 3 and nerd_game['invite_day'] < daystart - week:
  40. gt 'nerd_game_night', 'invite', 'morning'
  41. else
  42. '<center><b><font color="maroon">School Hallway</font></b></center>'
  43. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  44. 'Walking down the halls, you barely notice the poor state of the school anymore, having grown used to it. Approaching your locker, you see several of your classmates who you wave to.'
  45. gs 'gschool_gossip', 'morning'
  46. *nl
  47. gs 'gschool_lessons', 'uniform_check'
  48. gs 'gschool_schedule'
  49. act 'Go to first period': school_period = 0 & gt 'gschool_lessons', 'schedule'
  50. act 'Skip first period': school_period = 1 & gt 'gschool_lessons', 'skip'
  51. act 'Use water cooler': $breaktype = 'first' & gt 'gschool_break', 'watercooler'
  52. act 'Go to the girls restroom': $breaktype = 'first' & gt 'gschool_break', 'girls_restroom'
  53. act 'Go to the boys restroom': $breaktype = 'first' & gt 'gschool_break', 'boys_restroom'
  54. end
  55. else
  56. '<center><b><font color="maroon">School Hallway</font></b></center>'
  57. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  58. 'Walking down the halls, you barely notice the poor state of the school anymore, having grown used to it. Approaching your locker, you see several of your classmates who you wave to.'
  59. act 'Go to first period': school_period = 0 & gt 'gschool_lessons', 'schedule'
  60. act 'Skip first period': school_period = 1 & gt 'gschool_lessons', 'skip'
  61. end
  62. end
  63. if $ARGS[0] = 'uniform_check':
  64. if PCloInhibit <= 10:
  65. grupvalue[3] += 1
  66. grupvalue[5] += 1
  67. grupvalue[1] -= 1
  68. grupvalue[2] -= 1
  69. '<font color="blue">This uniform is very conservative.</font>'
  70. elseif PCloSkirt < 5 and PCloThinness < 5 and PCloBra = 0:
  71. if PCloQuality = 4:
  72. grupvalue[1] += 1
  73. grupvalue[2] += 1
  74. '<font color="blue">This uniform complies with the regulations and is of good quality.</font>'
  75. else
  76. '<font color="blue">This uniform complies with the school regulations on skirt length.</font>'
  77. end
  78. elseif PCloSkirt = 5 and PCloThinness < 5 and PCloBra = 0:
  79. if PCloQuality = 4:
  80. grupvalue[1] += 1
  81. grupvalue[2] += 1
  82. grupvalue[4] += 1
  83. '<font color="blue">This uniform slightly breaches the school regulations on skirt length and is of good quality.</font>'
  84. else
  85. grupvalue[4] += 1
  86. '<font color="blue">This uniform slightly breaches the school regulations on skirt length.</font>'
  87. end
  88. else
  89. grupvalue[1] -= 1
  90. grupvalue[2] -= 1
  91. grupvalue[3] -= 1
  92. grupvalue[5] -= 1
  93. demerit += 5
  94. gs 'fame', 'pav', 'sex', 1
  95. '<font color="red">This uniform makes a mockery of the school uniform regulations.</font>'
  96. end
  97. end
  98. if $ARGS[0] = 'short_break':
  99. killvar '$breaktype'
  100. menu_off = 1
  101. gs 'stat'
  102. if school_period = 1:
  103. if hour = 6:
  104. minut += 165-minut
  105. elseif hour = 7:
  106. minut += 105-minut
  107. elseif hour = 8 and minut < 45:
  108. minut += 45-minut
  109. elseif hour = 8 and minut < 50:
  110. 'Time to move to next class'
  111. else
  112. school_period = 2
  113. gt 'gschool_lessons', 'short_break'
  114. end
  115. elseif school_period = 2:
  116. if hour = 8:
  117. minut += 95-minut
  118. elseif hour = 9 and minut < 35:
  119. minut += 35-minut
  120. elseif hour = 9 and minut < 55:
  121. 'Time to move to next class'
  122. else
  123. school_period = 4
  124. gt 'gschool_lessons', 'short_break'
  125. end
  126. elseif school_period = 3:
  127. if $ARGS[1] = '':
  128. if hour = 9 and minut < 55:
  129. minut += 55-minut
  130. 'Time to move to next class'
  131. else
  132. school_period = 4
  133. gt 'gschool_lessons', 'short_break'
  134. end
  135. else
  136. if hour = 9 and minut < 46:
  137. minut += 46-minut
  138. end
  139. end
  140. elseif school_period = 4:
  141. if hour = 9:
  142. minut += 100-minut
  143. elseif hour = 10 and minut < 40:
  144. minut += 40-minut
  145. elseif hour = 10 and minut < 45:
  146. 'Time to move to next class'
  147. else
  148. school_period = 5
  149. gt 'gschool_lessons', 'short_break'
  150. end
  151. elseif school_period = 5:
  152. if hour = 10:
  153. minut += 90-minut
  154. elseif hour = 11 and minut < 30:
  155. minut += 30-minut
  156. elseif hour = 12 and minut < 25 and minut > 20:
  157. school_period = 6
  158. gt 'gschool_lessons', 'short_break'
  159. elseif (hour = 12 and minut > 25 ) or hour > 12:
  160. school_period = 6
  161. gt 'gschool_lessons', 'short_break'
  162. end
  163. if NikoVolkovQW = 10 and NikoEv = 12: school_lunch = 1 & school_period = 6 & gt 'NikoDreams', 'Classroom Dream'
  164. elseif school_period = 6:
  165. if $ARGS[1] = '':
  166. if hour = 10:
  167. minut += 145-minut
  168. elseif hour = 11:
  169. minut += 85-minut
  170. elseif hour = 12 and minut < 25:
  171. minut += 25-minut
  172. else
  173. school_period = 7
  174. gt 'gschool_lessons', 'short_break'
  175. end
  176. end
  177. elseif school_period = 7:
  178. if hour = 11:
  179. minut += 130-minut
  180. elseif hour = 12:
  181. minut += 70-minut
  182. elseif hour = 13 and minut < 10:
  183. minut += 10-minut
  184. elseif hour = 13 and minut < 15:
  185. 'Time to move to next class'
  186. else
  187. school_period = 8
  188. gt 'gschool_lessons', 'short_break'
  189. end
  190. elseif school_period = 8:
  191. if hour = 13: minut += 60-minut
  192. end
  193. gs 'stat'
  194. if school_period = 2:
  195. if $ARGS[1] ! 'nopict':
  196. '<center><b><font color="maroon">School Hallway</font></b></center>'
  197. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  198. nl
  199. gs 'gschool_schedule'
  200. end
  201. act 'Time for morning break': gt 'gschool_lessons', 'schedule'
  202. elseif school_period = 5:
  203. if $ARGS[1] ! 'nopict':
  204. '<center><b><font color="maroon">School Hallway</font></b></center>'
  205. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  206. nl
  207. gs 'gschool_schedule'
  208. end
  209. act 'Time for lunch break': gt 'gschool_lessons', 'schedule'
  210. elseif (school_period < 8):
  211. if $ARGS[1] ! 'nopict':
  212. '<center><b><font color="maroon">School Hallway</font></b></center>'
  213. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  214. gs 'gschool_gossip', 'gossip'
  215. nl
  216. gs 'gschool_schedule'
  217. end
  218. if christinaphotos > 4: gt 'gschool_events', 'christinaphotos'
  219. act 'Move to next class': gt 'gschool_lessons', 'schedule'
  220. act 'Skip next class': school_period += 1 & gt 'gschool_lessons', 'skip'
  221. if cheerleadingQW['skipped_ev'] + cheerleadingQW['skipped_g_ev'] > 0:
  222. gs 'gschool_cheerleading', 'skipped_ev'
  223. act 'Continue down the hall': gt 'gschool_lessons', 'short_break'
  224. elseif grupTipe = 3 and nerd_game['invite_day'] < daystart - week:
  225. gt 'nerd_game_night', 'invite', 'short_break'
  226. end
  227. elseif Kuznetsov_punishment = 1:
  228. '<center><b><font color="maroon">School Hallway</font></b></center>'
  229. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
  230. act 'Go to Kuznecov''s study': gt 'gschool_lessonsev2','shop_punishment'
  231. act 'Leave the school': gt 'gschool_lessons', 'schedule'
  232. else
  233. gt 'gschool_lessons', 'schedule'
  234. end
  235. end
  236. if $ARGS[0] = 'skip':
  237. *clr & cla
  238. $menu_loc = 'gschool_lessons'
  239. $menu_arg = 'skip'
  240. $location_type = 'public_indoors'
  241. menu_off = 0
  242. killvar '$breaktype'
  243. gs 'stat'
  244. '<center><b><font color="maroon">School Hallway</font></b></center>'
  245. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<rand(0,2)>>.jpg"></center>'
  246. 'You don''t feel like attending all of your classes this morning. Surely no one will miss you if you skip one of your three morning classes.'
  247. act 'Go to girl''s bathroom': missing_class += 1 & gt 'gschool_girls_bathroom', 'start'
  248. act 'Go to boy''s bathroom': missing_class += 1 & gt 'gschool_boys_bathroom', 'start'
  249. !! act 'Go to old school building': gt
  250. end
  251. if $ARGS[0] = 'schedule':
  252. killvar '$breaktype'
  253. gs 'stat'
  254. if school_period = 0:
  255. school_period = 1
  256. if hour >= 8:
  257. if week = 1: gt 'gschool_lessons4', 'math_late'
  258. if week = 2: gt 'gschool_lessons3', 'literature_late'
  259. if week = 3: gt 'gschool_lessons4', 'math_late'
  260. if week = 4: gt 'gschool_lessons3', 'literature_late'
  261. if week = 5: gt 'gschool_lessons4', 'math_late'
  262. else
  263. if hour = 7: minut += 60 - minut
  264. if hour = 6: minut += 120 - minut
  265. if week = 1: gt 'gschool_lessons4', 'math'
  266. if week = 2: gt 'gschool_lessons3', 'literature'
  267. if week = 3: gt 'gschool_lessons4', 'math'
  268. if week = 4: gt 'gschool_lessons3', 'literature'
  269. if week = 5: gt 'gschool_lessons4', 'math'
  270. end
  271. elseif school_period = 1:
  272. school_period = 2
  273. if hour = 8 and minut < 50: minut += 50 - minut
  274. if week = 1: gt 'gschool_lessons1', 'russian'
  275. if week = 2: gt 'gschool_lessons1', 'geography'
  276. if week = 3: gt 'gschool_lessons1', 'russian'
  277. if week = 4: gt 'gschool_lessons1', 'geography'
  278. if week = 5: gt 'gschool_lessons1', 'russian'
  279. elseif school_period = 2:
  280. school_period = 3
  281. gt 'gschool_lunch', 'break'
  282. elseif school_period = 3:
  283. school_period = 4
  284. if hour = 9 and minut < 55: minut += 55 - minut
  285. if week = 1: gt 'gschool_lessons4', 'english'
  286. if week = 2: gt 'gschool_lessons2', 'science'
  287. if week = 3: gt 'gschool_lessons2', 'biology'
  288. if week = 4: gt 'gschool_lessons2', 'science'
  289. if week = 5: gt 'gschool_lessons4', 'english'
  290. elseif school_period = 4:
  291. school_period = 5
  292. if hour = 10 and minut < 45: minut += 45 - minut
  293. if week = 1: gt 'gschool_lessons3', 'art'
  294. if week = 2: gt 'gschool_lessons3', 'shop'
  295. if week = 3: gt 'gschool_lessons1', 'history'
  296. if week = 4: gt 'gschool_lessons3', 'shop'
  297. if week = 5: gt 'gschool_lessons3', 'art'
  298. elseif school_period = 5:
  299. school_period = 6
  300. gt 'gschool_lunch', 'lunch'
  301. elseif school_period = 6:
  302. school_period = 7
  303. if hour = 12 and minut < 25: minut += 25 - minut
  304. if week = 1: gt 'gschool_lessons2', 'biology'
  305. if week = 2: gt 'gschool_lessons2', 'computer'
  306. if week = 3: gt 'gschool_lessons2', 'computer'
  307. if week = 4: gt 'gschool_lessons2', 'computer'
  308. if week = 5: gt 'gschool_lessons1', 'history'
  309. elseif school_period = 7:
  310. school_period = 8
  311. if hour = 13 and minut < 15: minut += 15 - minut
  312. if week = 1: gt 'gschool_lessons4', 'pe'
  313. if week = 2: gt 'gschool_lessons2', 'music'
  314. if week = 3: gt 'gschool_lessons4', 'pe'
  315. if week = 4: gt 'gschool_lessons2', 'music'
  316. if week = 5: gt 'gschool_lessons4', 'pe'
  317. else
  318. school_period = 0
  319. gt 'gschool_grounds', 'main'
  320. end
  321. end
  322. !!{ Probably can be deleted
  323. if $ARGS[0] = 'npc_data':
  324. !!$npc_firstname[i] - npc given name stored since MGX
  325. !!$npc_nickname[i] - npc nick name stored since MGX
  326. !!$npc_lastname[i] - npc surname name stored since MGX
  327. !!$npc_usedname[i] - npc usual used name stored since MGX
  328. !!$npc_notes[i] - npc character description stored since MGX
  329. !!npc_rel[i] - npc relationship stored since MGX
  330. !!npc_love[i] - npc lust for PC stored since MGX
  331. !!npc_gender[i] - 0 - male, 1 - female stored since MGX
  332. !!npc_rel['A<<i>>'] - Starting relationship
  333. !!npcPol[i] - sex, 0 - male, 1 - female
  334. !!grupTipe[i] - social group
  335. !!1 - cool kids
  336. !!2 - jocks
  337. !!3 - nerds
  338. !!4 - Gopnik
  339. !!5 - outcasts
  340. !!6 - teachers
  341. !!
  342. !!===========================Male Students=======================
  343. !!
  344. !!Dimka Nosov
  345. $school_static_num[1] = 'A1'
  346. npcPol[1] = 0
  347. grupTipe[1] = 1
  348. $npcGo[1] = '<a href="exec:numnpc = 1 & gt ''Snpc''"><<$npc_firstname[''A1'']>> <<$npc_lastname[''A1'']>></a>'
  349. $npcSelfie[1] = '<a href="exec:numnpc = 1 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A1'']>> <<$npc_lastname[''A1'']>></a>'
  350. !!Artem Chebotarev
  351. $school_static_num[2] = 'A2'
  352. npcPol[2] = 0
  353. grupTipe[2] = 3
  354. $npcGo[2] = '<a href="exec:numnpc = 2 & gt ''Snpc''"><<$npc_firstname[''A2'']>> <<$npc_lastname[''A2'']>></a>'
  355. $npcSelfie[2] = '<a href="exec:numnpc = 2 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A2'']>> <<$npc_lastname[''A2'']>></a>'
  356. !!Ivan Prokhorov
  357. $school_static_num[3] = 'A3'
  358. npcPol[3] = 0
  359. grupTipe[3] = 2
  360. $npcGo[3] = '<a href="exec:numnpc = 3 & gt ''Snpc''"><<$npc_firstname[''A3'']>> <<$npc_lastname[''A3'']>></a>'
  361. $npcSelfie[3] = '<a href="exec:numnpc = 3 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A3'']>> <<$npc_lastname[''A3'']>></a>'
  362. !!Igor Kruglov
  363. $school_static_num[4] = 'A4'
  364. npcPol[4] = 0
  365. grupTipe[4] = 1
  366. $npcGo[4] = '<a href="exec:numnpc = 4 & gt ''Snpc''"><<$npc_firstname[''A4'']>> <<$npc_lastname[''A4'']>></a>'
  367. $npcSelfie[4] = '<a href="exec:numnpc = 4 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A4'']>> <<$npc_lastname[''A4'']>></a>'
  368. !!Fedor Kozlov
  369. $school_static_num[5] = 'A5'
  370. npcPol[5] = 0
  371. if fedormasha = 1: grupTipe[5] = 5
  372. if fedormasha = 0: grupTipe[5] = 2
  373. $npcGo[5] = '<a href="exec:numnpc = 5 & gt ''Snpc''"><<$npc_firstname[''A5'']>> <<$npc_lastname[''A5'']>></a>'
  374. $npcSelfie[5] = '<a href="exec:numnpc = 5 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A5'']>> <<$npc_lastname[''A5'']>></a>'
  375. !!Petka Klyuyev
  376. $school_static_num[6] = 'A6'
  377. npcPol[6] = 0
  378. grupTipe[6] = 3
  379. $npcGo[6] = '<a href="exec:numnpc = 6 & gt ''Snpc''"><<$npc_firstname[''A6'']>> <<$npc_lastname[''A6'']>></a>'
  380. $npcSelfie[6] = '<a href="exec:numnpc = 6 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A6'']>> <<$npc_lastname[''A6'']>></a>'
  381. !!Lesco Tsarev
  382. $school_static_num[7] = 'A7'
  383. npcPol[7] = 0
  384. grupTipe[7] = 5
  385. $npcGo[7] = '<a href="exec:numnpc = 7 & gt ''Snpc''"><<$npc_firstname[''A7'']>> <<$npc_lastname[''A7'']>></a>'
  386. $npcSelfie[7] = '<a href="exec:numnpc = 7 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A7'']>> <<$npc_lastname[''A7'']>></a>'
  387. !!Svyatoslav Voinov
  388. $school_static_num[8] = 'A8'
  389. npcPol[8] = 0
  390. grupTipe[8] = 2
  391. $npcGo[8] = '<a href="exec:numnpc = 8 & gt ''Snpc''"><<$npc_firstname[''A8'']>> <<$npc_lastname[''A8'']>></a>'
  392. $npcSelfie[8] = '<a href="exec:numnpc = 8 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A8'']>> <<$npc_lastname[''A8'']>></a>'
  393. !!Vitek Kotov
  394. $school_static_num[9] = 'A9'
  395. npcPol[9] = 0
  396. grupTipe[9] = 4
  397. $npcGo[9] = '<a href="exec:numnpc = 9 & gt ''Snpc''"><<$npc_firstname[''A9'']>> <<$npc_lastname[''A9'']>></a>'
  398. $npcSelfie[9] = '<a href="exec:numnpc = 9 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A9'']>> <<$npc_lastname[''A9'']>></a>'
  399. !!Dan Ryzhov
  400. $school_static_num[10] = 'A10'
  401. npcPol[10] = 0
  402. grupTipe[10] = 4
  403. $npcGo[10] = '<a href="exec:numnpc = 10 & gt ''Snpc''"><<$npc_firstname[''A10'']>> <<$npc_lastname[''A10'']>></a>'
  404. $npcSelfie[10] = '<a href="exec:numnpc = 10 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A10'']>> <<$npc_lastname[''A10'']>></a>'
  405. !!Vasily Shulgin
  406. $school_static_num[11] = 'A11'
  407. npcPol[11] = 0
  408. grupTipe[11] = 4
  409. $npcGo[11] = '<a href="exec:numnpc = 11 & gt ''Snpc''"><<$npc_firstname[''A11'']>> <<$npc_lastname[''A11'']>></a>'
  410. $npcSelfie[11] = '<a href="exec:numnpc = 11 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A11'']>> <<$npc_lastname[''A11'']>></a>'
  411. !!Marcus Larson
  412. $school_static_num[27] = 'A146'
  413. npcPol[27] = 0
  414. grupTipe[27] = 1
  415. $npcGo[27] = '<a href="exec:numnpc = 27 & gt ''Snpc''"><<$npc_firstname[''A146'']>> <<$npc_lastname[''A146'']>></a>'
  416. $npcSelfie[27] = '<a href="exec:numnpc = 27 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A146'']>> <<$npc_lastname[''A146'']>></a>'
  417. !!Andrey Aleksandrov
  418. $school_static_num[28] = 'A147'
  419. npcPol[28] = 0
  420. grupTipe[28] = 1
  421. $npcGo[28] = '<a href="exec:numnpc = 28 & gt ''Snpc''"><<$npc_firstname[''A147'']>> <<$npc_lastname[''A147'']>></a>'
  422. $npcSelfie[28] = '<a href="exec:numnpc = 28 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A147'']>> <<$npc_lastname[''A147'']>></a>'
  423. !!Mefodiy Utkin
  424. $school_static_num[29] = 'A148'
  425. npcPol[29] = 0
  426. grupTipe[29] = 1
  427. $npcGo[29] = '<a href="exec:numnpc = 29 & gt ''Snpc''"><<$npc_firstname[''A148'']>> <<$npc_lastname[''A148'']>></a>'
  428. $npcSelfie[29] = '<a href="exec:numnpc = 29 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A148'']>> <<$npc_lastname[''A148'']>></a>'
  429. !!Lazar Utkin
  430. $school_static_num[32] = 'A149'
  431. npcPol[32] = 0
  432. grupTipe[32] = 2
  433. $npcGo[32] = '<a href="exec:numnpc = 32 & gt ''Snpc''"><<$npc_firstname[''A149'']>> <<$npc_lastname[''A149'']>></a>'
  434. $npcSelfie[32] = '<a href="exec:numnpc = 32 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A149'']>> <<$npc_lastname[''A149'']>></a>'
  435. !!Erast Vagin
  436. $school_static_num[33] = 'A150'
  437. npcPol[33] = 0
  438. grupTipe[33] = 2
  439. $npcGo[33] = '<a href="exec:numnpc = 33 & gt ''Snpc''"><<$npc_firstname[''A150'']>> <<$npc_lastname[''A150'']>></a>'
  440. $npcSelfie[33] = '<a href="exec:numnpc = 33 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A150'']>> <<$npc_lastname[''A150'']>></a>'
  441. !!Evgeny Kuznetsov
  442. $school_static_num[35] = 'A151'
  443. npcPol[35] = 0
  444. grupTipe[35] = 3
  445. $npcGo[35] = '<a href="exec:numnpc = 35 & gt ''Snpc''"><<$npc_firstname[''A151'']>> <<$npc_lastname[''A151'']>></a>'
  446. $npcSelfie[35] = '<a href="exec:numnpc = 35 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A151'']>> <<$npc_lastname[''A151'']>></a>'
  447. !!Feofan Krupin
  448. $school_static_num[36] = 'A152'
  449. npcPol[36] = 0
  450. grupTipe[36] = 3
  451. $npcGo[36] = '<a href="exec:numnpc = 36 & gt ''Snpc''"><<$npc_firstname[''A152'']>> <<$npc_lastname[''A152'']>></a>'
  452. $npcSelfie[36] = '<a href="exec:numnpc = 36 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A152'']>> <<$npc_lastname[''A152'']>></a>'
  453. !!Gerasim Vasilyev
  454. $school_static_num[37] = 'A153'
  455. npcPol[37] = 0
  456. grupTipe[37] = 3
  457. $npcGo[37] = '<a href="exec:numnpc = 37 & gt ''Snpc''"><<$npc_firstname[''A153'']>> <<$npc_lastname[''A153'']>></a>'
  458. $npcSelfie[37] = '<a href="exec:numnpc = 37 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A153'']>> <<$npc_lastname[''A153'']>></a>'
  459. !!Radomir Popov
  460. $school_static_num[39] = 'A154'
  461. npcPol[39] = 0
  462. grupTipe[39] = 4
  463. $npcGo[39] = '<a href="exec:numnpc = 39 & gt ''Snpc''"><<$npc_firstname[''A154'']>> <<$npc_lastname[''A154'']>></a>'
  464. $npcSelfie[39] = '<a href="exec:numnpc = 39 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A154'']>> <<$npc_lastname[''A154'']>></a>'
  465. !!Lavrenti Romanov
  466. $school_static_num[40] = 'A155'
  467. npcPol[40] = 0
  468. grupTipe[40] = 4
  469. $npcGo[40] = '<a href="exec:numnpc = 40 & gt ''Snpc''"><<$npc_firstname[''A155'']>> <<$npc_lastname[''A155'']>></a>'
  470. $npcSelfie[40] = '<a href="exec:numnpc = 40 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A155'']>> <<$npc_lastname[''A155'']>></a>'
  471. !!Arkadi Fyodorov
  472. $school_static_num[41] = 'A156'
  473. npcPol[41] = 0
  474. grupTipe[41] = 4
  475. $npcGo[41] = '<a href="exec:numnpc = 41 & gt ''Snpc''"><<$npc_firstname[''A156'']>> <<$npc_lastname[''A156'']>></a>'
  476. $npcSelfie[41] = '<a href="exec:numnpc = 41 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A156'']>> <<$npc_lastname[''A156'']>></a>'
  477. !!Roman Yakovlev
  478. $school_static_num[42] = 'A157'
  479. npcPol[42] = 0
  480. grupTipe[42] = 4
  481. $npcGo[42] = '<a href="exec:numnpc = 42 & gt ''Snpc''"><<$npc_firstname[''A157'']>> <<$npc_lastname[''A157'']>></a>'
  482. $npcSelfie[42] = '<a href="exec:numnpc = 42 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A157'']>> <<$npc_lastname[''A157'']>></a>'
  483. !!Valentin Bogdanov
  484. $school_static_num[43] = 'A158'
  485. npcPol[43] = 0
  486. grupTipe[43] = 4
  487. $npcGo[43] = '<a href="exec:numnpc = 43 & gt ''Snpc''"><<$npc_firstname[''A158'']>> <<$npc_lastname[''A158'']>></a>'
  488. $npcSelfie[43] = '<a href="exec:numnpc = 43 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A158'']>> <<$npc_lastname[''A158'']>></a>'
  489. !!Petia Alkaev
  490. $school_static_num[47] = 'A159'
  491. npcPol[47] = 0
  492. grupTipe[47] = 5
  493. $npcGo[47] = '<a href="exec:numnpc = 47 & gt ''Snpc''"><<$npc_firstname[''A159'']>> <<$npc_lastname[''A159'']>></a>'
  494. $npcSelfie[47] = '<a href="exec:numnpc = 47 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A159'']>> <<$npc_lastname[''A159'']>></a>'
  495. !!Vanya Yanka
  496. $school_static_num[59] = 'A165'
  497. npcPol[59] = 0
  498. grupTipe[59] = 2
  499. $npcGo[59] = '<a href="exec:numnpc = 59 & gt ''Snpc''"><<$npc_firstname[''A165'']>> <<$npc_lastname[''A165'']>></a>'
  500. $npcSelfie[59] = '<a href="exec:numnpc = 59 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A165'']>> <<$npc_lastname[''A165'']>></a>'
  501. !!Nikolai Volkov
  502. $school_static_num[61] = 'A189'
  503. npcPol[61] = 0
  504. grupTipe[61] = 4
  505. $npcGo[61] = '<a href="exec:numnpc = 61 & gt ''Snpc''"><<$npc_firstname[''A189'']>> <<$npc_lastname[''A189'']>></a>'
  506. $npcSelfie[61] = '<a href="exec:numnpc = 61 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A189'']>> <<$npc_lastname[''A189'']>></a>'
  507. !!
  508. !!===========================Female Students=======================
  509. !!
  510. !!Julia Milov
  511. $school_static_num[12] = 'A12'
  512. npcPol[12] = 1
  513. grupTipe[12] = 3
  514. $npcGo[12] = '<a href="exec:numnpc = 12 & gt ''Snpc''"><<$npc_firstname[''A12'']>> <<$npc_lastname[''A12'']>></a>'
  515. $npcSelfie[12] = '<a href="exec:numnpc = 12 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A12'']>> <<$npc_lastname[''A12'']>></a>'
  516. !!Lariska Gruzdeva
  517. $school_static_num[13] = 'A13'
  518. npcPol[13] = 1
  519. grupTipe[13] = 2
  520. $npcGo[13] = '<a href="exec:numnpc = 13 & gt ''Snpc''"><<$npc_firstname[''A13'']>> <<$npc_lastname[''A13'']>></a>'
  521. $npcSelfie[13] = '<a href="exec:numnpc = 13 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A13'']>> <<$npc_lastname[''A13'']>></a>'
  522. !!Katja Meynold
  523. $school_static_num[14] = 'A14'
  524. npcPol[14] = 1
  525. grupTipe[14] = 1
  526. $npcGo[14] = '<a href="exec:numnpc = 14 & gt ''Snpc''"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></a>'
  527. $npcSelfie[14] = '<a href="exec:numnpc = 14 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></a>'
  528. !!Vicky Meynold
  529. $school_static_num[15] = 'A15'
  530. npcPol[15] = 1
  531. grupTipe[15] = 1
  532. $npcGo[15] = '<a href="exec:numnpc = 15 & gt ''Snpc''"><<$npc_firstname[''A15'']>> <<$npc_lastname[''A15'']>></a>'
  533. $npcSelfie[15] = '<a href="exec:numnpc = 15 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A15'']>> <<$npc_lastname[''A15'']>></a>'
  534. !!Natasha Belova
  535. $school_static_num[16] = 'A16'
  536. npcPol[16] = 1
  537. grupTipe[16] = 3
  538. $npcGo[16] = '<a href="exec:numnpc = 16 & gt ''Snpc''"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></a>'
  539. $npcSelfie[16] = '<a href="exec:numnpc = 16 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></a>'
  540. !!Inna Devyatova
  541. $school_static_num[17] = 'A17'
  542. npcPol[17] = 1
  543. grupTipe[17] = 1
  544. $npcGo[17] = '<a href="exec:numnpc = 17 & gt ''Snpc''"><<$npc_firstname[''A17'']>> <<$npc_lastname[''A17'']>></a>'
  545. $npcSelfie[17] = '<a href="exec:numnpc = 17 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A17'']>> <<$npc_lastname[''A17'']>></a>'
  546. !!Christina Zvereva
  547. $school_static_num[18] = 'A18'
  548. npcPol[18] = 1
  549. if zverSlutQW >= 2:
  550. grupTipe[18] = 0
  551. else
  552. grupTipe[18] = 2
  553. end
  554. $npcGo[18] = '<a href="exec:numnpc = 18 & gt ''Snpc''"><<$npc_firstname[''A18'']>> <<$npc_lastname[''A18'']>></a>'
  555. $npcSelfie[18] = '<a href="exec:numnpc = 18 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A18'']>> <<$npc_lastname[''A18'']>></a>'
  556. !!Lina Starov
  557. $school_static_num[19] = 'A19'
  558. npcPol[19] = 1
  559. grupTipe[19] = 2
  560. $npcGo[19] = '<a href="exec:numnpc = 19 & gt ''Snpc''"><<$npc_firstname[''A19'']>> <<$npc_lastname[''A19'']>></a>'
  561. $npcSelfie[19] = '<a href="exec:numnpc = 19 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A19'']>> <<$npc_lastname[''A19'']>></a>'
  562. !!Lena Kotova
  563. $school_static_num[20] = 'A20'
  564. npcPol[20] = 1
  565. grupTipe[20] = 4
  566. $npcGo[20] = '<a href="exec:numnpc = 20 & gt ''Snpc''"><<$npc_firstname[''A20'']>> <<$npc_lastname[''A20'']>></a>'
  567. $npcSelfie[20] = '<a href="exec:numnpc = 20 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A20'']>> <<$npc_lastname[''A20'']>></a>'
  568. !!Lera Tsarev
  569. $school_static_num[21] = 'A21'
  570. npcPol[21] = 1
  571. grupTipe[21] = 4
  572. $npcGo[21] = '<a href="exec:numnpc = 21 & gt ''Snpc''"><<$npc_firstname[''A21'']>> <<$npc_lastname[''A21'']>></a>'
  573. $npcSelfie[21] = '<a href="exec:numnpc = 21 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A21'']>> <<$npc_lastname[''A21'']>></a>'
  574. !!Bella Artamonov
  575. $school_static_num[22] = 'A22'
  576. npcPol[22] = 1
  577. grupTipe[22] = 2
  578. $npcGo[22] = '<a href="exec:numnpc = 22 & gt ''Snpc''"><<$npc_firstname[''A22'']>> <<$npc_lastname[''A22'']>></a>'
  579. $npcSelfie[22] = '<a href="exec:numnpc = 22 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A22'']>> <<$npc_lastname[''A22'']>></a>'
  580. !!Albina Barlovskaya
  581. $school_static_num[23] = 'A23'
  582. npcPol[23] = 1
  583. grupTipe[23] = 1
  584. $npcGo[23] = '<a href="exec:numnpc = 23 & gt ''Snpc''"><<$npc_firstname[''A23'']>> <<$npc_lastname[''A23'']>></a>'
  585. $npcSelfie[23] = '<a href="exec:numnpc = 23 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A23'']>> <<$npc_lastname[''A23'']>></a>'
  586. !!Pauline Sebagotulina
  587. $school_static_num[24] = 'A24'
  588. npcPol[24] = 1
  589. grupTipe[24] = 4
  590. $npcGo[24] = '<a href="exec:numnpc = 24 & gt ''Snpc''"><<$npc_firstname[''A24'']>> <<$npc_lastname[''A24'']>></a>'
  591. $npcSelfie[24] = '<a href="exec:numnpc = 24 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A24'']>> <<$npc_lastname[''A24'']>></a>'
  592. !!Sonia Ivanko
  593. $school_static_num[25] = 'A25'
  594. npcPol[25] = 1
  595. if soniaPS > 0:
  596. grupTipe[25] = 5
  597. else
  598. grupTipe[25] = 1
  599. end
  600. $npcGo[25] = '<a href="exec:numnpc = 25 & gt ''Snpc''"><<$npc_firstname[''A25'']>> <<$npc_lastname[''A25'']>></a>'
  601. $npcSelfie[25] = '<a href="exec:numnpc = 25 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A25'']>> <<$npc_lastname[''A25'']>></a>'
  602. !!Stasya Pavlov
  603. $school_static_num[30] = 'A139'
  604. npcPol[30] = 1
  605. grupTipe[30] = 1
  606. $npcGo[30] = '<a href="exec:numnpc = 30 & gt ''Snpc''"><<$npc_firstname[''A139'']>> <<$npc_lastname[''A139'']>></a>'
  607. $npcSelfie[30] = '<a href="exec:numnpc = 30 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A139'']>> <<$npc_lastname[''A139'']>></a>'
  608. !!Lizaveta Petrov
  609. $school_static_num[31] = 'A140'
  610. npcPol[31] = 1
  611. grupTipe[31] = 1
  612. $npcGo[31] = '<a href="exec:numnpc = 31 & gt ''Snpc''"><<$npc_firstname[''A140'']>> <<$npc_lastname[''A140'']>></a>'
  613. $npcSelfie[31] = '<a href="exec:numnpc = 31 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A140'']>> <<$npc_lastname[''A140'']>></a>'
  614. !!Veronika Sokolov
  615. $school_static_num[34] = 'A141'
  616. npcPol[34] = 1
  617. grupTipe[34] = 2
  618. $npcGo[34] = '<a href="exec:numnpc = 34 & gt ''Snpc''"><<$npc_firstname[''A141'']>> <<$npc_lastname[''A141'']>></a>'
  619. $npcSelfie[34] = '<a href="exec:numnpc = 34 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A141'']>> <<$npc_lastname[''A141'']>></a>'
  620. !!Zinaida Alkaev
  621. $school_static_num[38] = 'A142'
  622. npcPol[38] = 1
  623. grupTipe[38] = 3
  624. $npcGo[38] = '<a href="exec:numnpc = 38 & gt ''Snpc''"><<$npc_firstname[''A142'']>> <<$npc_lastname[''A142'']>></a>'
  625. $npcSelfie[38] = '<a href="exec:numnpc = 38 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A142'']>> <<$npc_lastname[''A142'']>></a>'
  626. !!Alyona Alkaev
  627. $school_static_num[44] = 'A143'
  628. npcPol[44] = 1
  629. grupTipe[44] = 4
  630. $npcGo[44] = '<a href="exec:numnpc = 44 & gt ''Snpc''"><<$npc_firstname[''A143'']>> <<$npc_lastname[''A143'']>></a>'
  631. $npcSelfie[44] = '<a href="exec:numnpc = 44 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A143'']>> <<$npc_lastname[''A143'']>></a>'
  632. !!Anushka Konstantinov
  633. $school_static_num[45] = 'A144'
  634. npcPol[45] = 1
  635. grupTipe[45] = 4
  636. $npcGo[45] = '<a href="exec:numnpc = 45 & gt ''Snpc''"><<$npc_firstname[''A144'']>> <<$npc_lastname[''A144'']>></a>'
  637. $npcSelfie[45] = '<a href="exec:numnpc = 45 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A144'']>> <<$npc_lastname[''A144'']>></a>'
  638. !!Ekaterina Maksimov
  639. $school_static_num[46] = 'A145'
  640. npcPol[46] = 1
  641. grupTipe[46] = 4
  642. $npcGo[46] = '<a href="exec:numnpc = 46 & gt ''Snpc''"><<$npc_firstname[''A145'']>> <<$npc_lastname[''A145'']>></a>'
  643. $npcSelfie[46] = '<a href="exec:numnpc = 46 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A145'']>> <<$npc_lastname[''A145'']>></a>'
  644. !!
  645. !!===========================Teachers=======================
  646. !!
  647. !!Anatoly E. Tsarev
  648. $school_static_num[26] = 'A26'
  649. npcPol[26] = 0
  650. grupTipe[26] = 6
  651. $npcGo[26] = '<a href="exec:numnpc = 26 & gt ''Snpc''"><<$npc_firstname[''A26'']>> <<$npc_lastname[''A26'']>></a>'
  652. $npcSelfie[26] = '<a href="exec:numnpc = 26 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A26'']>> <<$npc_lastname[''A26'']>></a>'
  653. !!Ilya Yenotin
  654. $school_static_num[48] = 'A130'
  655. npcPol[48] = 0
  656. grupTipe[48] = 6
  657. $npcGo[48] = '<a href="exec:numnpc = 48 & gt ''Snpc''"><<$npc_firstname[''A130'']>> <<$npc_lastname[''A130'']>></a>'
  658. $npcSelfie[48] = '<a href="exec:numnpc = 48 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A130'']>> <<$npc_lastname[''A130'']>></a>'
  659. !!Viktor Pavlovich
  660. $school_static_num[49] = 'A131'
  661. npcPol[49] = 0
  662. grupTipe[49] = 6
  663. $npcGo[49] = '<a href="exec:numnpc = 49 & gt ''Snpc''"><<$npc_firstname[''A131'']>> <<$npc_lastname[''A131'']>></a>'
  664. $npcSelfie[49] = '<a href="exec:numnpc = 49 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A131'']>> <<$npc_lastname[''A131'']>></a>'
  665. !!Aleksandrina Volkov
  666. $school_static_num[50] = 'A134'
  667. npcPol[50] = 1
  668. grupTipe[50] = 6
  669. $npcGo[50] = '<a href="exec:numnpc = 50 & gt ''Snpc''"><<$npc_firstname[''A134'']>> <<$npc_lastname[''A134'']>></a>'
  670. $npcSelfie[50] = '<a href="exec:numnpc = 50 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A134'']>> <<$npc_lastname[''A134'']>></a>'
  671. !!Yeva Sokoloff
  672. $school_static_num[51] = 'A135'
  673. npcPol[51] = 1
  674. grupTipe[51] = 6
  675. $npcGo[51] = '<a href="exec:numnpc = 51 & gt ''Snpc''"><<$npc_firstname[''A135'']>> <<$npc_lastname[''A135'']>></a>'
  676. $npcSelfie[51] = '<a href="exec:numnpc = 51 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A135'']>> <<$npc_lastname[''A135'']>></a>'
  677. !!Serafim Ivanov
  678. $school_static_num[52] = 'A129'
  679. npcPol[52] = 0
  680. grupTipe[52] = 6
  681. $npcGo[52] = '<a href="exec:numnpc = 52 & gt ''Snpc''"><<$npc_firstname[''A129'']>> <<$npc_lastname[''A129'']>></a>'
  682. $npcSelfie[52] = '<a href="exec:numnpc = 52 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A129'']>> <<$npc_lastname[''A129'']>></a>'
  683. !!Olga Aleksandrov
  684. $school_static_num[53] = 'A136'
  685. npcPol[53] = 1
  686. grupTipe[53] = 6
  687. $npcGo[53] = '<a href="exec:numnpc = 53 & gt ''Snpc''"><<$npc_firstname[''A136'']>> <<$npc_lastname[''A136'']>></a>'
  688. $npcSelfie[53] = '<a href="exec:numnpc = 53 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A136'']>> <<$npc_lastname[''A136'']>></a>'
  689. !!Raven Braakman
  690. $school_static_num[54] = 'A137'
  691. npcPol[54] = 1
  692. grupTipe[54] = 6
  693. $npcGo[54] = '<a href="exec:numnpc = 54 & gt ''Snpc''"><<$npc_firstname[''A137'']>> <<$npc_lastname[''A137'']>></a>'
  694. $npcSelfie[54] = '<a href="exec:numnpc = 54 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A137'']>> <<$npc_lastname[''A137'']>></a>'
  695. !!Arina Orlov
  696. $school_static_num[55] = 'A138'
  697. npcPol[55] = 1
  698. grupTipe[55] = 6
  699. $npcGo[55] = '<a href="exec:numnpc = 55 & gt ''Snpc''"><<$npc_firstname[''A138'']>> <<$npc_lastname[''A138'']>></a>'
  700. $npcSelfie[55] = '<a href="exec:numnpc = 55 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A138'']>> <<$npc_lastname[''A138'']>></a>'
  701. !!Ruslan Kuznetsov
  702. $school_static_num[56] = 'A132'
  703. npcPol[56] = 0
  704. grupTipe[56] = 6
  705. $npcGo[56] = '<a href="exec:numnpc = 56 & gt ''Snpc''"><<$npc_firstname[''A132'']>> <<$npc_lastname[''A132'']>></a>'
  706. $npcSelfie[56] = '<a href="exec:numnpc = 56 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A132'']>> <<$npc_lastname[''A132'']>></a>'
  707. !!Makar Vasilyev
  708. $school_static_num[58] = 'A128'
  709. npcPol[58] = 0
  710. grupTipe[58] = 6
  711. $npcGo[58] = '<a href="exec:numnpc = 58 & gt ''Snpc''"><<$npc_firstname[''A128'']>> <<$npc_lastname[''A128'']>></a>'
  712. $npcSelfie[58] = '<a href="exec:numnpc = 58 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A128'']>> <<$npc_lastname[''A128'']>></a>'
  713. !!Rolan Matveev
  714. $school_static_num[57] = 'A133'
  715. npcPol[57] = 0
  716. grupTipe[57] = 6
  717. $npcGo[57] = '<a href="exec:numnpc = 57 & gt ''Snpc''"><<$npc_firstname[''A133'']>> <<$npc_lastname[''A133'']>></a>'
  718. $npcSelfie[57] = '<a href="exec:numnpc = 57 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A133'']>> <<$npc_lastname[''A133'']>></a>'
  719. !!Mikhail Nikolaevich
  720. $school_static_num[60] = 'A69'
  721. npcPol[60] = 0
  722. grupTipe[60] = 6
  723. $npcGo[60] = '<a href="exec:numnpc = 60 & gt ''Snpc''"><<$npc_firstname[''A69'']>> <<$npc_lastname[''A69'']>></a>'
  724. $npcSelfie[60] = '<a href="exec:numnpc = 60 & gt ''phone_selfies'', ''schoolselfies''"><<$npc_firstname[''A69'']>> <<$npc_lastname[''A69'']>></a>'
  725. end
  726. }
  727. --- gschool_lessons ---------------------------------