intro_sg_select.tw 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488
  1. :: intro_sg_select[quest]
  2. <h2>Friends and Family</h2>
  3. <<set $npc_father = 'A28'>>
  4. <<set $npc_mother = 'A29'>>
  5. <<set $npc_aunt = 'A30'>>
  6. <<set $npc_sister = 'A33'>>
  7. <<set $npc_brother = 'A34'>>
  8. <<image "system/1_openings/shared/pre_1.jpg">>
  9. <p>
  10. Your name is <<textbox "$pc.name_first" $pc.name_first>> <<textbox "$pc.name_last" $pc.name_last>>, nicknamed <<textbox "$pc.name_nick" $pc.name_nick>> by friends and family.
  11. Your mother's name is <<textbox "_motherName" $npcs.get($npc_mother,'firstname')>> and your biological father left when you were a baby,
  12. your mother marrying your stepfather, <<textbox "_fatherName" $npcs.get($npc_father,'firstname')>>, shortly afterwards.
  13. </p>
  14. <p>
  15. <<textbox "_sisterName" $npcs.get($npc_sister,'firstname')>> is your older sister, who is two years older than you but is still living at home while working at the local grocery store.
  16. She chose not to attend university and instead spends most of her free time drinking and going to parties with her friends, much to your mother's dismay.
  17. </p>
  18. <p>
  19. You also have a younger half-brother, <<textbox "_brotherName" $npcs.get($npc_brother,'firstname')>>, who is really into sports, especially football, and is shaping up to be a fine athlete.
  20. He is a year younger than you and his father is your stepfather.
  21. </p>
  22. <p>
  23. Your aunt <<textbox "_auntName" $npcs.get($npc_aunt,'firstname')>> lives in the same building as you do, though you rarely see her except when you pass her in the stairwell.
  24. She is your mother's older sister.
  25. <<textbox "_nameA54" $npcs.get('A54','firstname')>>, as everyone calls him, is best friends with your stepfather.
  26. <<textbox "_nameA11" $npcs.get('A11','firstname')>> <<textbox "_nameLastA11" $npcs.get('A11','lastname')>>, your childhood friend, is the same age as you and grew up living in the same apartment building on the floor above yours.
  27. His father, <<textbox "_nameA112" $npcs.get('A112','firstname')>>, is an old friend of your mother.
  28. </p>
  29. <<actCLA 'Continue'>>
  30. <<run $npcs.set($npc_father,'firstname',_fatherName)>>
  31. <<run $npcs.set($npc_mother,'firstname',_motherName)>>
  32. <<run $npcs.set($npc_aunt ,'firstname',_auntName)>>
  33. <<run $npcs.set($npc_sister,'firstname',_sisterName)>>
  34. <<run $npcs.set($npc_brother,'firstname',_brotherName)>>
  35. <<run $npcs.set($npc_father,'lastname',$pc.name_last)>>
  36. <<run $npcs.set($npc_mother,'lastname',$pc.name_last)>>
  37. <<run $npcs.set($npc_sister,'lastname',$pc.name_last)>>
  38. <<run $npcs.set($npc_brother,'lastname',$pc.name_last)>>
  39. <<run $npcs.set('A54','firstname',_nameA54)>>
  40. <<run $npcs.set('A11','firstname',_nameA11)>>
  41. <<run $npcs.set('A112','firstname',_nameA112)>>
  42. <<run $npcs.set('A11','lastname',_nameLastA11)>>
  43. <<run $npcs.set('A112','lastname',_nameLastA11)>>
  44. <<gt 'intro_sg_select_birthday'>>
  45. <</actCLA>>
  46. :: intro_sg_select_birthday[quest]
  47. <h2>Birthday</h2>
  48. <<image "system/1_openings/shared/pre_2.jpg">>
  49. <<set _days = []>>
  50. <<for _i = 1; _i <= 31; _i++>>
  51. <<run _days.push(_i)>>
  52. <</for>>
  53. <<set _months = {'January':1,'February':2, 'March':3, 'April':4, 'May':5, 'June':6, 'July':7, 'August':8, 'September':9, 'October':10, 'November':11, 'December':12}>>
  54. <!--<<set _years = [1997,1998,1999,2000]>>-->
  55. <<set _years = [1999]>>
  56. <p>
  57. Your birthday:
  58. <<listbox "$pc.birthday" autoselect>><<optionsfrom _days>><</listbox>>
  59. <<listbox "$pc.birthmonth" autoselect>><<optionsfrom _months>><</listbox>>
  60. <<listbox "$pc.birthyear" autoselect>><<optionsfrom _years>><</listbox>>
  61. </p>
  62. <<act 'Confirm'>><<gt 'intro_sg_select_char'>><</act>>
  63. :: intro_sg_select_char[quest]
  64. <<gs 'themes' 'indoors'>>
  65. <<image "system/1_openings/shared/pre_4.jpg">>
  66. Select your personality/social group. Your social group will have a major defining impact upon your life in school and will determine your starting friends, starting traits and overall look. While you can always change groups later on, it takes time and effort, so choose wisely. Your five choices of social group are.
  67. <p>Nerds, geeks and good students - These students tend to do well in school and are well liked by teachers and other adults. They tend to not have many friends outside of their own social group, however, and are also sometimes picked on or bullied. They are subpar athletically and place less value on looks and social skills than other cliques.</p>
  68. <p>Jocks and natural athletes - These students are gifted in their chosen sport and are very athletically inclined. This means that they tend to be fit and in good shape, often making them better looking than many of the other students. They get along with other jocks and are respected by the cool kids while being feared by the nerds and losers. They don't value academic achievements and can come into conflict with the gopniks and other troublemakers.</p>
  69. <p>The popular, cool and beautiful - These students are typically socially-gifted and are often blessed with natural good looks. They are envied by many because of this, and most want to be their friends. More than any other clique, they have the ability to ruin someone's reputation and make them social outcasts, which earns them the fear of many students. Being cool and good looking is all they value, so they tend to be subpar both athletically and academically.</p>
  70. <p>Gopniks, rebels, punks and troublemakers - These students don't play by the rules and, in fact, will often happily piss on them if given half a chance. They are in decent shape from all of their fighting and troublemaking, but their predilection for drinking, smoking and drugs often counteracts this to a point. They are not the most well-liked students; teachers and parents alike take a dim view of them, as do the local police. Most students fear them, either from the years of bullying or from the gopniks' willingness to fight. Some students secretly envy their carefree attitude and apparent ability to sneer and wave off many of the social pitfalls that other students face.</p>
  71. <p>Losers, teachers' pets, sluts and the ugly - These students are the outcasts, the people no one likes to spend time with, other than to bully them. Perhaps they are just socially awkward and never made many friends, broke one of the unwritten social rules, are ugly, a snitch, a slut and/or an outed gay boy. Either way, they all have one thing in common: they are easy targets to bully and mock.</p>
  72. <<act 'Full custom setup'>>
  73. <<gt 'intro_customization' 'start'>>
  74. <</act>>
  75. <<act 'Nerd'>>
  76. <<gt 'intr_sg_select_nerd'>>
  77. <</act>>
  78. <<act 'Jock'>>
  79. <<gt 'intr_sg_select_jock'>>
  80. <</act>>
  81. <<act 'Popular'>>
  82. <!-- !!if we can do school uniforms gets an appropriate or borderline uniform.-->
  83. <<gt 'intr_sg_select_popular'>>
  84. <</act>>
  85. <<act 'Gopnik'>>
  86. <!-- !!If you can do uniforms then they can choose inappropriate or borderline-->
  87. <!-- !!can pick 1-3 tattoos at start-->
  88. <<gt 'intr_sg_select_gopnik'>>
  89. <</act>>
  90. <<act 'Outcast'>>
  91. <<gt 'intr_sg_select_outcast'>>
  92. <</act>>
  93. :: intro_sg_select_char_nerd
  94. <<set $pcs_tan = 0>>
  95. <<run $pc.skillSetLevel('gaming',20)>>
  96. <<if getvar("$player_avatar") != 1>>
  97. <<set $pc.hairColor = 1>>
  98. <</if>>
  99. <<if getvar("$player_avatar") != 1>>
  100. <<set $pc.eyecolor = 0>>
  101. <</if>>
  102. <<set $fantasybook = 5>>
  103. <<set $grupTipe = 3>>
  104. <<set $finances.cash += 3000>>
  105. <<set $shampoo = 20>>
  106. <<set $sanpad = 40>>
  107. <<if getvar("$player_avatar") == 0>>
  108. <<set $pc.eyesize = 1>>
  109. <<set $pc.lip_size = 1>>
  110. <<set $pc.eyelashes = 0>>
  111. <</if>>
  112. <<run $pc.skillSetLevel('intelligence',45)>>
  113. <<run $pc.skillSetLevel('computer',20)>>
  114. <<run $pc.skillSetLevel('chess',20)>>
  115. <<run $pc.skillSetLevel('gaming',20)>>
  116. <<set $pc.pcs_skin = 500>>
  117. <<set $pc.pcs_inhib = 10>>
  118. <<run $pc.skillSetLevel('highHeels',10)>>
  119. <<run $pc.skillSetLevel('makeup',15)>>
  120. <<gs 'npc_relationship' 'socialgroup_setting' -10 -10 25 0 5 20>>
  121. <<run $npcs.set('A18','rel',1)>>
  122. <<run $npcs.inc('A129','rel',10)>>
  123. <<run $npcs.inc('A28','rel',10)>>
  124. <<run $npcs.inc('A29','rel',10)>>
  125. <<run $q.school.func('groupRelSet','cool',200)>>
  126. <<run $q.school.func('groupRelSet','jocks',100)>>
  127. <<run $q.school.func('groupRelSet','nerds',800)>>
  128. <<run $q.school.func('groupRelSet','gopniks',100)>>
  129. <<run $q.school.func('groupRelSet','teachers',600)>>
  130. <<set $pc.genbsize = 13>>
  131. <!-- !!b cup for ideal bmi-->
  132. <<run $pc.traitSet('nerd_points',60)>>
  133. <<run $pc.traitSet('nerd_status',2)>>
  134. <<run $pc.traitSet('nerd_lernHome',5)>>
  135. :: intro_sg_select_char_nerdqueen
  136. <h2>Queen of the nerds</h2>
  137. <<image "system/1_openings/2_sg/nerd_1.jpg">>
  138. While you love all things nerdy, what you love the most is hanging out with your fellow nerds and doing nerdy things together. This has made you fairly social for a nerd and more general in your areas of knowledge. As you got older and started to develop as a woman, it also made you much more aware of your sexuality than most nerds are comfortable with. As such, you cultivated that awareness more than most and are now more at ease with your body than most of the other nerds.
  139. By nerd standards, you are confident, dynamic and attractive and this has led to you being the leader of your group of friends. You are more acceptable to other social groups as a result, especially the cool kids, who seem to respect your social skills and looks.
  140. <<actCLA 'Select another option'>>
  141. <<gt 'intro_sg_select_char'>>
  142. <</actCLA>>
  143. <<actCLA 'Confirm this option'>>
  144. <<gs 'intro_sg_select_char_nerd'>>
  145. <<set $alterstrtimg = 8>>
  146. <<run $pc.skillSetLevel('charisma',40)>>
  147. <<run $pc.skillSetLevel('spirit',40)>>
  148. <<run $pc.skillSetLevel('iceskating',10)>>
  149. <<run $pc.skillSetLevel('people',20)>>
  150. <<run $pc.skillSetLevel('persuasion',20)>>
  151. <<run $pc.skillSetLevel('makeup',30)>>
  152. <<set $pc.pcs_inhib = 20>>
  153. <<run $pc.skillSetLevel('highHeels',25)>>
  154. <<set $pirsC = 2>>
  155. <<set $PirsC2_owned = 1>>
  156. <<set $currentpursetype = 'fashionista'>>
  157. <<set $currentpursenumber = 13>>
  158. <<setinit $fashionista_purses[13] = 1>>
  159. <<set $bag = 1>>
  160. <<gs 'npc_relationship' 'socialgroup_setting' 10 5 10 5 5 5>>
  161. <<run $npcs.set('A18','rel',1)>>
  162. <!-- !!make sure this coming after the gs code above will still set christina to a 1 relationship, if I did this code correctly, if not look for this code in other spots and fix it pls-->
  163. <<run $q.school.func('groupRelSet','cool',300)>>
  164. <<run $q.school.func('groupRelSet','nerds',900)>>
  165. <<run $q.school.func('groupRelSet','teachers',700)>>
  166. <<set $kosmetica = 10>>
  167. <<set $stanok = 10>>
  168. <<if getvar("$player_avatar") == 0>>
  169. <<set $pc.pcs_hairlng = 300>>
  170. <<set $pc.eyesize = 3>>
  171. <<set $pc.lip_size = 2>>
  172. <<set $pc.eyelashes = 1>>
  173. <</if>>
  174. <<set $pc.pcs_skin = 700>>
  175. <<set $pc.pcs_teeth = -1>>
  176. <<set $pc.genbsize = 22>>
  177. <!-- !!d cup for ideal bmi-->
  178. <<set $pc.salo = 87>>
  179. <<set $pc.willpowermax = 70>>
  180. <<run $q.school.func('grade_award','math',85)>>
  181. <<run $q.school.func('grade_award','rus',90)>>
  182. <<run $q.school.func('grade_award','lit',80)>>
  183. <<run $q.school.func('grade_award','art',75)>>
  184. <<run $q.school.func('grade_award','bio',80)>>
  185. <<run $q.school.func('grade_award','pe',60)>>
  186. <<run $q.school.func('grade_award','eng',85)>>
  187. <<run $q.school.func('grade_award','geo',80)>>
  188. <<run $q.school.func('grade_award','sci',80)>>
  189. <<run $q.school.func('grade_award','shop',55)>>
  190. <<run $q.school.func('grade_award','comp',80)>>
  191. <<run $q.school.func('grade_award','mus',75)>>
  192. <<run $q.school.func('grade_award','his',80)>>
  193. <<gt 'intro_sg_finalize'>>
  194. <</actCLA>>
  195. :: intro_sg_select_char_goodstudent
  196. <h2>Good student</h2>
  197. <<image "system/1_openings/2_sg/nerd_2.jpg">>
  198. <p>You just love school, and your grades are more than good enough to attend the university of your choosing after graduation - all you have to do is not let them slip. You have always tried to absorb every bit of knowledge possible and have done everything you can to excel in school. While this attitude has gained you a lot of respect from the other nerds, it didn't earn you a lot of friends and you never found the time for sports.</p>
  199. You are often asked to be a tutor and sometimes find yourself forced to do others' homework for them. You have excellent grades, and your mother is very proud of you. She has shown her appreciation for your hard work by rewarding you with money.
  200. <<actCLA 'Select another option'>>
  201. <<gt 'intro_sg_select_char'>>
  202. <</actCLA>>
  203. <<actCLA 'Confirm this option'>>
  204. <<gs 'intro_sg_select_char_nerd'>>
  205. <<run $pc.traitSet('nerd_points',100)>>
  206. <<run $pc.traitSet('nerd_status',3)>>
  207. <<set $alterstrtimg = 9>>
  208. <<if getvar("$pc.glass") < 1>>
  209. <<set $pc.glass = 1>>
  210. <</if>>
  211. <<run $pc.skillSetLevel('intelligence',60)>>
  212. <<run $pc.skillSetLevel('playInstrument',10)>>
  213. <<run $pc.skillSetLevel('art',10)>>
  214. <<set $finances.cash += 2000>>
  215. <<set $pc.salo = 93>>
  216. <<set $pc.genbsize = 18>>
  217. <!-- !!c cup for ideal bmi-->
  218. <<run $q.school.func('groupRelSet','nerds',850)>>
  219. <<run $q.school.func('groupRelSet','teachers',700)>>
  220. <<gs 'npc_relationship' 'socialgroup_setting' 0 0 5 0 0 20>>
  221. <<run $npcs.inc('A29','rel',20)>>
  222. <<if getvar("$player_avatar") != 1>>
  223. <<set $pc.pcs_hairlng = 200>>
  224. <</if>>
  225. <<set $pc.willpowermax = 75>>
  226. <<run $q.school.func('grade_award','math',90)>>
  227. <<run $q.school.func('grade_award','rus',90)>>
  228. <<run $q.school.func('grade_award','lit',90)>>
  229. <<run $q.school.func('grade_award','art',90)>>
  230. <<run $q.school.func('grade_award','bio',90)>>
  231. <<run $q.school.func('grade_award','pe',55)>>
  232. <<run $q.school.func('grade_award','eng',90)>>
  233. <<run $q.school.func('grade_award','geo',90)>>
  234. <<run $q.school.func('grade_award','sci',90)>>
  235. <<run $q.school.func('grade_award','shop',55)>>
  236. <<run $q.school.func('grade_award','comp',90)>>
  237. <<run $q.school.func('grade_award','mus',90)>>
  238. <<run $q.school.func('grade_award','his',90)>>
  239. <<gt 'intro_sg_finalize'>>
  240. <</actCLA>>
  241. :: intro_sg_select_char_computergeek
  242. <h2>Computer geek</h2>
  243. <<image "system/1_openings/2_sg/nerd_3.jpg">>
  244. <p>You were always into computers, whether it be by playing video games, taking computers apart or learning programing and even hacking. You love everything about computers, but this passion left you little time to make friends - real-life friends, at least. You have managed to befriend many online players that you talk to while you play various video games, however, and you rarely spend any time outdoors, nor money on clothes or other girly stuff. You are far more interested in saving your money for a better computer in order to play even better games.</p>
  245. <p>You've considered hosting a web series of video games or vlogs - you even took the time to learn how to video edit - but you aren't sure if you want to put yourself out there like that.</p>
  246. <<actCLA 'Select another option'>>
  247. <<gt 'intro_sg_select_char'>>
  248. <</actCLA>>
  249. <<actCLA 'Confirm this option'>>
  250. <<gs 'intro_sg_select_char_nerd'>>
  251. <<set $alterstrtimg = 10>>
  252. <<if getvar("$pc.glass") < 1>>
  253. <<set $pc.glass = 1>>
  254. <</if>>
  255. <<run $pc.skillSetLevel('intelligence',55)>>
  256. <<run $pc.skillSetLevel('computer',40)>>
  257. <<run $pc.skillSetLevel('hacking',20)>>
  258. <<run $pc.skillSetLevel('gaming',30)>>
  259. <<set $internet = 20>>
  260. <<set $pc.pcs_skin = 500>>
  261. <<set $pc.pcs_teeth = 1>>
  262. <<set $pc.salo = 56>>
  263. <<set $pc.pcs_inhib = 20>>
  264. <<run $npcs.inc('A152','rel',10)>>
  265. <<run $npcs.inc('A153','rel',10)>>
  266. <<run $npcs.inc('A142','rel',15)>>
  267. <<run $npcs.inc('A129','rel',10)>>
  268. <<set $komp = 1>>
  269. <<if getvar("$player_avatar") != 1>>
  270. <<set $pc.pcs_hairlng = 120>>
  271. <</if>>
  272. <<set $pc.willpowermax = 60>>
  273. <<run $q.school.func('grade_award','math',90)>>
  274. <<run $q.school.func('grade_award','rus',85)>>
  275. <<run $q.school.func('grade_award','lit',85)>>
  276. <<run $q.school.func('grade_award','art',85)>>
  277. <<run $q.school.func('grade_award','bio',85)>>
  278. <<run $q.school.func('grade_award','pe',65)>>
  279. <<run $q.school.func('grade_award','eng',85)>>
  280. <<run $q.school.func('grade_award','geo',85)>>
  281. <<run $q.school.func('grade_award','sci',85)>>
  282. <<run $q.school.func('grade_award','shop',55)>>
  283. <<run $q.school.func('grade_award','comp',95)>>
  284. <<run $q.school.func('grade_award','mus',85)>>
  285. <<run $q.school.func('grade_award','his',85)>>
  286. <<gt 'intro_sg_finalize'>>
  287. <</actCLA>>
  288. :: intro_sg_select_char_chessplayer
  289. <h2>Avid chess player</h2>
  290. <<image "system/1_openings/2_sg/nerd_4.jpg">>
  291. <p>You were always into chess as a child, and have studied all the great chess masters. You can name them all, as well as their favorite strategies! You find nothing more interesting than matching your wits against someone else's in a game of chess. It has left you with the ability to often see the consequences of your actions better than most as you are used to looking several moves ahead.</p>
  292. All of this has left you with little time to make many friends, and you rarely spend any time outdoors.
  293. <<actCLA 'Select another option'>>
  294. <<gt 'intro_sg_select_char'>>
  295. <</actCLA>>
  296. <<actCLA 'Confirm this option'>>
  297. <<gs 'intro_sg_select_char_nerd'>>
  298. <<set $alterstrtimg = 11>>
  299. <<run $pc.skillSetLevel('intelligence',55)>>
  300. <<run $pc.skillSetLevel('perception',40)>>
  301. <<run $pc.skillSetLevel('reaction',40)>>
  302. <<run $pc.skillSetLevel('chess',40)>>
  303. <<set $pc.salo = 97>>
  304. <<set $pc.pcs_inhib = 15>>
  305. <<set $chessyear = $time.year>>
  306. <<set $chessmonth = $time.month>>
  307. <<run $npcs.inc('A151','rel',20)>>
  308. <<if getvar("$player_avatar") != 1>>
  309. <<set $pc.pcs_hairlng = 200>>
  310. <</if>>
  311. <<set $pc.willpowermax = 65>>
  312. <<run $q.school.func('grade_award','math',90)>>
  313. <<run $q.school.func('grade_award','rus',90)>>
  314. <<run $q.school.func('grade_award','lit',90)>>
  315. <<run $q.school.func('grade_award','art',85)>>
  316. <<run $q.school.func('grade_award','bio',85)>>
  317. <<run $q.school.func('grade_award','pe',55)>>
  318. <<run $q.school.func('grade_award','eng',85)>>
  319. <<run $q.school.func('grade_award','geo',85)>>
  320. <<run $q.school.func('grade_award','sci',85)>>
  321. <<run $q.school.func('grade_award','shop',55)>>
  322. <<run $q.school.func('grade_award','comp',85)>>
  323. <<run $q.school.func('grade_award','mus',80)>>
  324. <<run $q.school.func('grade_award','his',85)>>
  325. <<gt 'intro_sg_finalize'>>
  326. <</actCLA>>
  327. :: intro_sg_select_char_jock
  328. <<run $pc.skillSetLevel('spirit',45)>>
  329. <<run $pc.skillSetLevel('strength',75)>>
  330. <<set $pc.pcs_vital = 45>>
  331. <<run $pc.skillSetLevel('reaction',45)>>
  332. <<run $pc.skillSetLevel('agility',45)>>
  333. <<set $pc.genbsize = 12>>
  334. <!-- !!b cup for ideal bmi-->
  335. <<set $pc.pcs_skin = 600>>
  336. <<set $kosmetica = 10>>
  337. <<set $stanok = 10>>
  338. <<set $shampoo = 20>>
  339. <<set $sanpad = 20>>
  340. <<set $tampon = 20>>
  341. <<run $pc.skillSetLevel('run',20)>>
  342. <<run $pc.skillSetLevel('bushcraft',5)>>
  343. <<run $pc.skillSetLevel('football',10)>>
  344. <<run $pc.skillSetLevel('volleyball',10)>>
  345. <<run $pc.skillSetLevel('dance',10)>>
  346. <<run $pc.skillSetLevel('iceskating',20)>>
  347. <<run $pc.skillSetLevel('people',10)>>
  348. <<run $pc.skillSetLevel('makeup',30)>>
  349. <<run $pc.skillSetLevel('highHeels',20)>>
  350. <<set $pc.pcs_inhib = 20>>
  351. <<set $swim_start = 1>>
  352. <<set $pirsC = 1>>
  353. <<set $PirsC1_owned = 1>>
  354. <<set $currentpursetype = 'fashionista'>>
  355. <<set $currentpursenumber = 11>>
  356. <<setinit $fashionista_purses[11] = 1>>
  357. <<set $bag = 1>>
  358. <<run $q.school.func('groupRelSet','cool',400)>>
  359. <<run $q.school.func('groupRelSet','jocks',800)>>
  360. <<run $q.school.func('groupRelSet','nerds',100)>>
  361. <<run $q.school.func('groupRelSet','gopniks',300)>>
  362. <<run $q.school.func('groupRelSet','teachers',200)>>
  363. <<gs 'npc_relationship' 'socialgroup_setting' 10 25 -5 0 -10 0>>
  364. <<run $npcs.dec('A129','rel',10)>>
  365. <<run $npcs.set('A18','rel',1)>>
  366. <<set $hscrunch = 10>>
  367. <<set $hscrunchw = 0>>
  368. <<set $pcs_tan = 20>>
  369. <<if getvar("$player_avatar") == 0>>
  370. <<set $pc.pcs_hairlng = 55>>
  371. <<set $pc.hairColor = 3>>
  372. <<set $pc.eyecolor = 3>>
  373. <<set $pc.eyesize = 3>>
  374. <<set $pc.lip_size = 2>>
  375. <<set $pc.eyelashes = 1>>
  376. <</if>>
  377. <<run $npcs.inc('A34','rel',10)>>
  378. <<set $grupTipe = 2>>
  379. :: intro_sg_select_char_volleyball
  380. <h2>Volleyball player</h2>
  381. <<image "system/1_openings/2_sg/jock_1.jpg">>
  382. <p>Ever since the first time you played volleyball, you have been in love with the sport. You spent a lot of your free time trying to improve your ability, and it paid off; you're actually quite good now! Your obsession with volleyball, however, has had some repercussions on your school performance. You're a sub-par student, and you haven't made many friends other than your fellow jocks. You are especially close with <<=$npcs.get('A13','firstname')>> and your coach.</p>
  383. <<actCLA 'Select another option'>>
  384. <<gt 'intro_sg_select_char'>>
  385. <</actCLA>>
  386. <<actCLA 'Confirm this option'>>
  387. <<gs 'intro_sg_select_char_jock'>>
  388. <<set $alterstrtimg = 12>>
  389. <<run $pc.skillSetLevel('reaction',45)>>
  390. <<run $pc.skillSetLevel('agility',45)>>
  391. <<set $pc.genbsize = 17>>
  392. <!-- !!c cup for ideal bmi-->
  393. <<set $pc.salo = 75>>
  394. <<run $pc.skillSetLevel('volleyball',50)>>
  395. <<set $gsAboVolley += 30>>
  396. <<run $npcs.inc('A13','rel',10)>>
  397. <<run $npcs.inc('A69','rel',10)>>
  398. <<set $pc.willpowermax = 70>>
  399. <<set $school_clothing = 7>>
  400. <<run $q.school.func('grade_award','math',55)>>
  401. <<run $q.school.func('grade_award','rus',55)>>
  402. <<run $q.school.func('grade_award','lit',55)>>
  403. <<run $q.school.func('grade_award','art',55)>>
  404. <<run $q.school.func('grade_award','bio',55)>>
  405. <<run $q.school.func('grade_award','pe',95)>>
  406. <<run $q.school.func('grade_award','eng',55)>>
  407. <<run $q.school.func('grade_award','geo',55)>>
  408. <<run $q.school.func('grade_award','sci',55)>>
  409. <<run $q.school.func('grade_award','shop',55)>>
  410. <<run $q.school.func('grade_award','comp',55)>>
  411. <<run $q.school.func('grade_award','mus',55)>>
  412. <<run $q.school.func('grade_award','his',55)>>
  413. <<gt 'intro_sg_finalize'>>
  414. <</actCLA>>
  415. :: intro_sg_select_char_dancer
  416. <h2>Avid dancer</h2>
  417. <<image "system/1_openings/2_sg/jock_2.jpg">>
  418. <p>You fell in love with dancing at an early age and never looked back. You spent a lot of your free time trying to improve your skills, and it paid off; you're actually quite good now!</p>
  419. <p><<=$npcs.get('A11','firstname')>> helpfully pointed out that an added benefit of dance was a greater increase in your flexibility (that is, of course, typical of <<=$npcs.get('A11','firstname')>>). Your obsession with dancing, however, has had some repercussions on your school performance. You're a sub-par student, and you haven't made many friends other than your fellow jocks.</p>
  420. <p>You are particularly close with <<=$npcs.get('A23','firstname')>>, who is just as passionate about dancing as you are. You trained a lot together as children and have a mutual respect for each other's abilities.</p>
  421. <<actCLA 'Select another option'>>
  422. <<gt 'intro_sg_select_char'>>
  423. <</actCLA>>
  424. <<actCLA 'Confirm this option'>>
  425. <<gs 'intro_sg_select_char_jock'>>
  426. <<set $alterstrtimg = 13>>
  427. <<run $pc.skillSetLevel('spirit',45)>>
  428. <<run $pc.skillSetLevel('agility',50)>>
  429. <<run $pc.skillSetLevel('charisma',40)>>
  430. <<set $pcs_perform = 35>>
  431. <<run $pc.skillSetLevel('makeup',40)>>
  432. <<set $pc.pcs_skin = 700>>
  433. <<set $pc.pcs_teeth = -1>>
  434. <<set $pcs_tan = 5>>
  435. <<set $pc.salo = 50>>
  436. <<if getvar("$player_avatar") == 0>>
  437. <<set $pc.pcs_hairlng = 200>>
  438. <<set $pc.eyesize = 2>>
  439. <<set $pc.lip_size = 2>>
  440. <<set $pc.eyelashes = 1>>
  441. <</if>>
  442. <<run $pc.skillSetLevel('dance',50)>>
  443. <<run $pc.skillSetLevel('highHeels',30)>>
  444. <<set $pc.pcs_inhib = 25>>
  445. <<run $pc.skillSetLevel('makeup',35)>>
  446. <<set $gsAboDance += 30>>
  447. <<gs 'npc_relationship' 'socialgroup_setting' 5 0 0 -5 0 0>>
  448. <<run $npcs.inc('A23','rel',25)>>
  449. <<run $npcs.inc('A144','rel',10)>>
  450. <<run $q.school.func('groupRelSet','cool',500)>>
  451. <<set $pc.willpowermax = 80>>
  452. <<set $school_clothing = 7>>
  453. <<run $q.school.func('grade_award','math',55)>>
  454. <<run $q.school.func('grade_award','rus',55)>>
  455. <<run $q.school.func('grade_award','lit',55)>>
  456. <<run $q.school.func('grade_award','art',55)>>
  457. <<run $q.school.func('grade_award','bio',55)>>
  458. <<run $q.school.func('grade_award','pe',95)>>
  459. <<run $q.school.func('grade_award','eng',55)>>
  460. <<run $q.school.func('grade_award','geo',55)>>
  461. <<run $q.school.func('grade_award','sci',55)>>
  462. <<run $q.school.func('grade_award','shop',55)>>
  463. <<run $q.school.func('grade_award','comp',55)>>
  464. <<run $q.school.func('grade_award','mus',80)>>
  465. <<run $q.school.func('grade_award','his',55)>>
  466. <<gt 'intro_sg_finalize'>>
  467. <</actCLA>>
  468. :: intro_sg_select_char_runner
  469. <h2>Track runner</h2>
  470. <<image "system/1_openings/2_sg/jock_3.jpg">>
  471. <p>Ever since you first tried track, you have been in love with the sport. When you're running, the rest of the world fades away and you experience a natural high like no other. You spent a lot of your free time trying to get better at it, and it paid off; you're actually quite good now! Your obsession with running, however, has had some repercussions on your school performance. You're a sub-par student, and you haven't made many friends other than your fellow jocks and your coach.</p>
  472. <<actCLA 'Select another option'>>
  473. <<gt 'intro_sg_select_char'>>
  474. <</actCLA>>
  475. <<actCLA 'Confirm this option'>>
  476. <<gs 'intro_sg_select_char_jock'>>
  477. <<set $alterstrtimg = 14>>
  478. <<set $pc.pcs_vital = 50>>
  479. <<run $pc.skillSetLevel('agility',50)>>
  480. <<set $pc.pcs_inhib = 25>>
  481. <<set $pc.salo = 60>>
  482. <<run $pc.skillSetLevel('run',50)>>
  483. <<set $gsAboBeg += 30>>
  484. <<run $npcs.inc('A3','rel',10)>>
  485. <<run $npcs.inc('A5','rel',10)>>
  486. <<run $npcs.inc('A8','rel',5)>>
  487. <<run $npcs.set('A18','rel',1)>>
  488. <<run $npcs.inc('A131','rel',10)>>
  489. <<run $q.school.func('groupRelSet','jocks',850)>>
  490. <<set $pc.willpowermax = 65>>
  491. <<set $school_clothing = 7>>
  492. <<run $q.school.func('grade_award','math',55)>>
  493. <<run $q.school.func('grade_award','rus',55)>>
  494. <<run $q.school.func('grade_award','lit',55)>>
  495. <<run $q.school.func('grade_award','art',55)>>
  496. <<run $q.school.func('grade_award','bio',75)>>
  497. <<run $q.school.func('grade_award','pe',95)>>
  498. <<run $q.school.func('grade_award','eng',55)>>
  499. <<run $q.school.func('grade_award','geo',55)>>
  500. <<run $q.school.func('grade_award','sci',55)>>
  501. <<run $q.school.func('grade_award','shop',55)>>
  502. <<run $q.school.func('grade_award','comp',55)>>
  503. <<run $q.school.func('grade_award','mus',55)>>
  504. <<run $q.school.func('grade_award','his',55)>>
  505. <<gt 'intro_sg_finalize'>>
  506. <</actCLA>>
  507. :: intro_sg_select_char_football
  508. <h2>Football player</h2>
  509. <<image "system/1_openings/2_sg/jock_4.jpg">>
  510. <p>Ever since your first football game, you have been in love with the sport. You spent a lot of your free time trying to get better at it, and it paid off; you're actually quite good now! Your obsession with football has had some repercussions on your school performance, however, and you're now a sub-par student. You haven't made many friends other than your fellow jocks, especially <<=$npcs.get('A149','firstname')>> and your coach.</p>
  511. <<actCLA 'Select another option'>>
  512. <<gt 'intro_sg_select_char'>>
  513. <</actCLA>>
  514. <<actCLA 'Confirm this option'>>
  515. <<gs 'intro_sg_select_char_jock'>>
  516. <<set $alterstrtimg = 15>>
  517. <<run $pc.skillSetLevel('strength',80)>>
  518. <<run $pc.skillSetLevel('reaction',45)>>
  519. <<set $pc.pcs_vital = 45>>
  520. <<set $pc.salo = 80>>
  521. <<set $pc.genbsize = 17>>
  522. <!-- !!c cup for ideal bmi-->
  523. <<run $pc.skillSetLevel('kick',20)>>
  524. <<run $pc.skillSetLevel('football',50)>>
  525. <<run $npcs.inc('A131','rel',10)>>
  526. <<run $npcs.inc('A149','rel',10)>>
  527. <<run $npcs.inc('A34','rel',10)>>
  528. <<run $q.school.func('groupRelSet','jocks',900)>>
  529. <<set $pc.willpowermax = 75>>
  530. <<set $currentpursetype = 'fashionista'>>
  531. <<set $currentpursenumber = 11>>
  532. <<setinit $fashionista_purses[11] = 1>>
  533. <<set $bag = 1>>
  534. <<set $school_clothing = 7>>
  535. <<run $q.school.func('grade_award','math',55)>>
  536. <<run $q.school.func('grade_award','rus',55)>>
  537. <<run $q.school.func('grade_award','lit',55)>>
  538. <<run $q.school.func('grade_award','art',55)>>
  539. <<run $q.school.func('grade_award','bio',55)>>
  540. <<run $q.school.func('grade_award','pe',95)>>
  541. <<run $q.school.func('grade_award','eng',55)>>
  542. <<run $q.school.func('grade_award','geo',55)>>
  543. <<run $q.school.func('grade_award','sci',55)>>
  544. <<run $q.school.func('grade_award','shop',55)>>
  545. <<run $q.school.func('grade_award','comp',55)>>
  546. <<run $q.school.func('grade_award','mus',55)>>
  547. <<run $q.school.func('grade_award','his',55)>>
  548. <<gt 'intro_sg_finalize'>>
  549. <</actCLA>>
  550. :: intro_sg_select_char_cool
  551. <<run $pc.skillSetLevel('spirit',45)>>
  552. <<run $pc.skillSetLevel('charisma',45)>>
  553. <<run $pc.skillSetLevel('perception',45)>>
  554. <<run $pc.skillSetLevel('iceskating',10)>>
  555. <<run $pc.skillSetLevel('dance',10)>>
  556. <<run $pc.skillSetLevel('persuasion',30)>>
  557. <<set $pc.pcs_inhib = 20>>
  558. <<set $swim_start = 99>>
  559. <<set $kosmetica = 20>>
  560. <<set $shampoo = 20>>
  561. <<set $stanok = 20>>
  562. <<set $sanpad = 20>>
  563. <<set $tampon = 20>>
  564. <<set $finances.cash += 1000>>
  565. <<run $q.school.func('groupRelSet','cool',800)>>
  566. <<run $q.school.func('groupRelSet','jocks',300)>>
  567. <<run $q.school.func('groupRelSet','nerds',100)>>
  568. <<run $q.school.func('groupRelSet','gopniks',200)>>
  569. <<run $q.school.func('groupRelSet','teachers',300)>>
  570. <<gs 'npc_relationship' 'socialgroup_setting' 25 15 0 -10 -20 10>>
  571. <<run $npcs.dec('A129','rel',20)>>
  572. <<run $npcs.set('A18','rel',1)>>
  573. <<if getvar("$player_avatar") != 1>>
  574. <<set $pc.hairColor = 2>>
  575. <</if>>
  576. <<if getvar("$player_avatar") != 1>>
  577. <<set $pc.eyecolor = 2>>
  578. <</if>>
  579. <<set $pcs_tan = 30>>
  580. <<if getvar("$player_avatar") == 0>>
  581. <<set $pc.eyesize = 2>>
  582. <<set $pc.lip_size = 2>>
  583. <<set $pc.eyelashes = 1>>
  584. <</if>>
  585. <<set $pc.pcs_skin = 700>>
  586. <<set $pcs_tan = 5>>
  587. <<run $npcs.inc('A33','rel',10)>>
  588. <<set $grupTipe = 1>>
  589. :: intro_sg_select_char_socialite
  590. <h2>Sociable</h2>
  591. <<image "system/1_openings/2_sg/popular_1.jpg">>
  592. You're friends with all of the important kids at school, which is what really matters. You were very social growing up and enjoyed being around others, often becoming the center of attention.
  593. You've always had a knack for knowing the right thing to say at the right moment, which led to many other students wanting to be your friend. You can, with a little work, get along with nearly anyone if you put your mind to it.
  594. <<actCLA 'Select another option'>>
  595. <<gt 'intro_sg_select_char'>>
  596. <</actCLA>>
  597. <<actCLA 'Confirm this option'>>
  598. <<gs 'intro_sg_select_char_cool'>>
  599. <<set $alterstrtimg = 16>>
  600. <<run $pc.skillSetLevel('charisma',50)>>
  601. <<set $pc.genbsize = 18>>
  602. <!-- !!c cup for ideal bmi-->
  603. <<run $pc.skillSetLevel('people',40)>>
  604. <<run $pc.skillSetLevel('makeup',40)>>
  605. <<run $pc.skillSetLevel('highHeels',30)>>
  606. <<set $pcs_perform = 20>>
  607. <<set $pirsC = 1>>
  608. <<set $PirsC1_owned = 1>>
  609. <<set $currentpursetype = 'fashionista'>>
  610. <<set $currentpursenumber = 4>>
  611. <<setinit $fashionista_purses[4] = 1>>
  612. <<set $bag = 1>>
  613. <<set $school_clothing = 6>>
  614. <<if getvar("$player_avatar") != 1>>
  615. <<set $pc.pcs_hairlng = 200>>
  616. <</if>>
  617. <<run $npcs.inc('A140','rel',10)>>
  618. <<set $pc.salo = 80>>
  619. <<set $pc.willpowermax = 70>>
  620. <<run $q.school.func('grade_award','math',65)>>
  621. <<run $q.school.func('grade_award','rus',90)>>
  622. <<run $q.school.func('grade_award','lit',65)>>
  623. <<run $q.school.func('grade_award','art',65)>>
  624. <<run $q.school.func('grade_award','bio',65)>>
  625. <<run $q.school.func('grade_award','pe',65)>>
  626. <<run $q.school.func('grade_award','eng',80)>>
  627. <<run $q.school.func('grade_award','geo',65)>>
  628. <<run $q.school.func('grade_award','sci',65)>>
  629. <<run $q.school.func('grade_award','shop',55)>>
  630. <<run $q.school.func('grade_award','comp',65)>>
  631. <<run $q.school.func('grade_award','mus',65)>>
  632. <<run $q.school.func('grade_award','his',65)>>
  633. <<gt 'intro_sg_finalize'>>
  634. <</actCLA>>
  635. :: intro_sg_select_char_beautiful
  636. <h2>Beautiful</h2>
  637. <<image "system/1_openings/2_sg/popular_2.jpg">>
  638. <p>You might not be the smartest, be the most social or have the toughest attitude - but what you do have is natural good looks. You blossomed earlier than most girls and the boys took note, especially <<=$npcs.get('A11','firstname')>>, who started acting differently around you. As you got older your looks only improved, and you are often considered one of the best looking girls wherever you go.</p>
  639. You are especially popular with the cool kids and jocks.
  640. <<actCLA 'Select another option'>>
  641. <<gt 'intro_sg_select_char'>>
  642. <</actCLA>>
  643. <<actCLA 'Confirm this option'>>
  644. <<gs 'intro_sg_select_char_cool'>>
  645. <<set $alterstrtimg = 17>>
  646. <<run $pc.skillSetLevel('people',20)>>
  647. <<run $pc.skillSetLevel('makeup',50)>>
  648. <<run $pc.skillSetLevel('highHeels',40)>>
  649. <<if getvar("$player_avatar") == 0>>
  650. <<set $pc.pcs_hairlng = 300>>
  651. <<set $pc.eyesize = 2>>
  652. <<set $pc.lip_size = 3>>
  653. <<set $pc.eyelashes = 2>>
  654. <</if>>
  655. <<set $pc.pcs_skin = 800>>
  656. <<set $pc.pcs_teeth = -1>>
  657. <<set $pcs_tan = 50>>
  658. <<set $pc.genbsize = 22>>
  659. <!-- !!d cup for ideal bmi-->
  660. <<set $pc.pcs_inhib = 25>>
  661. <<set $kosmetica = 50>>
  662. <<set $falselashesplain = 10>>
  663. <<set $falselashesmink = 2>>
  664. <<set $currentpursetype = 'fashionista'>>
  665. <<set $currentpursenumber = 9>>
  666. <<setinit $fashionista_purses[9] = 1>>
  667. <<set $bag = 1>>
  668. <<gs 'obj_din' 'old'>>
  669. <<set $greben = 1>>
  670. <<set $kosmetitka = 10>>
  671. <<set $krem = 10>>
  672. <<set $pirsC = 2>>
  673. <<set $PirsC2_owned = 1>>
  674. <<gs 'npc_relationship' 'socialgroup_setting_boys' 10 10 10 10 10 0>>
  675. <<run $npcs.set('A18','rel',1)>>
  676. <<set $pc.salo = 75>>
  677. <<run $q.school.func('groupRelSet','cool',900)>>
  678. <<run $q.school.func('groupRelSet','gopniks',300)>>
  679. <<gs 'fame' 'pav' 'sex' 20>>
  680. <<set $pc.willpowermax = 80>>
  681. <<run $q.school.func('grade_award','math',60)>>
  682. <<run $q.school.func('grade_award','rus',60)>>
  683. <<run $q.school.func('grade_award','lit',60)>>
  684. <<run $q.school.func('grade_award','art',60)>>
  685. <<run $q.school.func('grade_award','bio',60)>>
  686. <<run $q.school.func('grade_award','pe',60)>>
  687. <<run $q.school.func('grade_award','eng',60)>>
  688. <<run $q.school.func('grade_award','geo',60)>>
  689. <<run $q.school.func('grade_award','sci',60)>>
  690. <<run $q.school.func('grade_award','shop',55)>>
  691. <<run $q.school.func('grade_award','comp',60)>>
  692. <<run $q.school.func('grade_award','mus',60)>>
  693. <<run $q.school.func('grade_award','his',60)>>
  694. <<gt 'intro_sg_finalize'>>
  695. <</actCLA>>
  696. :: intro_sg_select_char_gopnik
  697. <<run $pc.skillSetLevel('spirit',40)>>
  698. <<run $pc.skillSetLevel('strength',50)>>
  699. <<set $pc.pcs_vital = 40>>
  700. <<run $pc.skillSetLevel('reaction',40)>>
  701. <<run $pc.skillSetLevel('agility',40)>>
  702. <<set $pc.genbsize = 13>>
  703. <!-- !!b cup for ideal bmi-->
  704. <<set $pc.pcs_inhib = 25>>
  705. <<run $pc.skillSetLevel('highHeels',10)>>
  706. <<run $pc.skillSetLevel('makeup',25)>>
  707. <<set $kosmetica = 10>>
  708. <<set $shampoo = 20>>
  709. <<set $stanok = 10>>
  710. <<set $sanpad = 30>>
  711. <<set $tampon = 10>>
  712. <<set $siga = 20>>
  713. <<set $fakepassport = 1>>
  714. <<set $pirsC = 1>>
  715. <<set $PirsC1_owned = 1>>
  716. <<run $q.school.func('groupRelSet','cool',100)>>
  717. <<run $q.school.func('groupRelSet','jocks',300)>>
  718. <<run $q.school.func('groupRelSet','nerds',100)>>
  719. <<run $q.school.func('groupRelSet','gopniks',800)>>
  720. <<run $q.school.func('groupRelSet','teachers',100)>>
  721. <<gs 'npc_relationship' 'socialgroup_setting' -5 0 -10 25 -10 -10>>
  722. <<run $npcs.dec('A129','rel',30)>>
  723. <<run $npcs.inc('A11','rel',10)>>
  724. <<run $npcs.set('A18','rel',1)>>
  725. <<set $tampon = 20>>
  726. <<run $pc.skillSetLevel('run',20)>>
  727. <<run $pc.skillSetLevel('people',10)>>
  728. <<set $pcs_tan = 10>>
  729. <<if getvar("$player_avatar") == 0>>
  730. <<set $pc.pcs_hairlng = 120>>
  731. <<set $pc.hairColor = 0>>
  732. <<set $pc.eyecolor = 1>>
  733. <<set $pc.eyesize = 3>>
  734. <<set $pc.lip_size = 2>>
  735. <<set $pc.eyelashes = 1>>
  736. <</if>>
  737. <<set $pc.pcs_skin = 600>>
  738. <<set $pc.pcs_vag = 1>>
  739. <<set $pc.pcs_throat = 1>>
  740. <<setinit $stat['hj'] = 10>>
  741. <<setinit $stat['bj'] = 5>>
  742. <<setinit $stat['vaginal'] = 1>>
  743. <<set $Gspassed = 0>>
  744. <<gs 'fame' 'pav' 'sex' 30>>
  745. <<set $grupTipe = 4>>
  746. :: intro_sg_select_char_gopnikstart
  747. <h2>Gopnik</h2>
  748. <<image "system/1_openings/2_sg/gopnik_1.jpg">>
  749. You are a gopnik. While you're still low in the gopnik pecking order, you've already proven yourself to them and most of them accept you as an equal. You have problems at home and school due to your antisocial behavior. This is especially true with your mother and stepfather, who see you going down the wrong path.
  750. The jocks have a not so friendly rivalry with you and the other gopniks. While you don't get along, some of them have mutal respect for you.
  751. <<actCLA 'Select another option'>>
  752. <<gt 'intro_sg_select_char'>>
  753. <</actCLA>>
  754. <<actCLA 'Confirm this option'>>
  755. <<gs 'intro_sg_select_char_gopnik'>>
  756. <<gs 'npc_relationship' 'socialgroup_setting' -10 -10 -10 10 -10 -10>>
  757. <<set $alterstrtimg = 18>>
  758. <<run $pc.skillSetLevel('strength',70)>>
  759. <<set $pc.pcs_vital = 45>>
  760. <<run $pc.skillSetLevel('jabs',35)>>
  761. <<run $pc.skillSetLevel('punch',35)>>
  762. <<run $pc.skillSetLevel('kick',35)>>
  763. <<run $pc.skillSetLevel('defense',35)>>
  764. <<set $pc.salo = 86>>
  765. <<set $pc.pcs_teeth = 1>>
  766. <<set $school_clothing = 5>>
  767. <<run $npcs.inc('A9','rel',10)>>
  768. <<run $npcs.inc('A10','rel',10)>>
  769. <<run $npcs.inc('A11','rel',10)>>
  770. <<run $npcs.inc('A20','rel',10)>>
  771. <<run $npcs.inc('A21','rel',10)>>
  772. <<run $npcs.inc('A24','rel',10)>>
  773. <<run $npcs.dec('A28','rel',10)>>
  774. <<run $npcs.dec('A29','rel',20)>>
  775. <<run $npcs.dec('A33','rel',10)>>
  776. <<run $npcs.dec('A34','rel',10)>>
  777. <<run $q.school.func('groupRelSet','gopniks',900)>>
  778. <<set $pc.willpowermax = 75>>
  779. <<run $q.school.func('grade_award','math',25)>>
  780. <<run $q.school.func('grade_award','rus',25)>>
  781. <<run $q.school.func('grade_award','lit',25)>>
  782. <<run $q.school.func('grade_award','art',25)>>
  783. <<run $q.school.func('grade_award','bio',25)>>
  784. <<run $q.school.func('grade_award','pe',80)>>
  785. <<run $q.school.func('grade_award','eng',25)>>
  786. <<run $q.school.func('grade_award','geo',25)>>
  787. <<run $q.school.func('grade_award','sci',25)>>
  788. <<run $q.school.func('grade_award','shop',80)>>
  789. <<run $q.school.func('grade_award','comp',25)>>
  790. <<run $q.school.func('grade_award','mus',25)>>
  791. <<run $q.school.func('grade_award','his',25)>>
  792. <<gt 'intro_sg_finalize'>>
  793. <</actCLA>>
  794. :: intro_sg_select_char_troublemaker
  795. <h2>Troublemaker</h2>
  796. <<image "system/1_openings/2_sg/gopnik_2.jpg">>
  797. <p>You are a troublemaker. Nothing makes you happier than causing problems, whether it be petty larceny, getting into fights or vandalism. You live for the thrill of breaking the rules. You get along fairly well with the gopniks and they accept you as a kindred spirit, loving your willingness to jump head first into any and all trouble you run across - and if you can't find any, you will happily make your own, which keeps things lively.</p>
  798. You have problems at home and school due to your antisocial behavior. This is especially true with your mother and stepfather, who see you going down the wrong path. You are well known to both your teachers and the police.
  799. <<actCLA 'Select another option'>>
  800. <<gt 'intro_sg_select_char'>>
  801. <</actCLA>>
  802. <<actCLA 'Confirm this option'>>
  803. <<run $pc.traitSet('nerd_points',-50)>>
  804. <<gs 'intro_sg_select_char_gopnik'>>
  805. <<set $alterstrtimg = 19>>
  806. <<set $pc.pcs_inhib = 30>>
  807. <<run $pc.skillSetLevel('strength',60)>>
  808. <<run $pc.skillSetLevel('reaction',40)>>
  809. <<run $pc.skillSetLevel('jabs',20)>>
  810. <<run $pc.skillSetLevel('punch',20)>>
  811. <<run $pc.skillSetLevel('kick',20)>>
  812. <<run $pc.skillSetLevel('defense',20)>>
  813. <<run $pc.skillSetLevel('people',10)>>
  814. <<run $pc.skillSetLevel('persuasion',10)>>
  815. <<set $pc.salo = 65>>
  816. <<set $pirsD = 4>>
  817. <<set $PirsD4_owned = 1>>
  818. <<set $currentpursetype = 'dolls'>>
  819. <<set $currentpursenumber = 16>>
  820. <<setinit $dolls_purses[16] = 1>>
  821. <<set $bag = 1>>
  822. <<set $school_clothing = 5>>
  823. <<if getvar("$player_avatar") != 1>>
  824. <<set $pc.pcs_hairlng = 55>>
  825. <</if>>
  826. <<gs 'npc_relationship' 'socialgroup_setting' 0 0 -10 10 -10 -10>>
  827. <<run $npcs.inc('A24','rel',10)>>
  828. <<run $npcs.inc('A155','rel',15)>>
  829. <<run $npcs.inc('A157','rel',10)>>
  830. <<run $npcs.inc('A143','rel',10)>>
  831. <<run $npcs.inc('A144','rel',15)>>
  832. <<run $npcs.inc('A145','rel',10)>>
  833. <<run $npcs.dec('A28','rel',10)>>
  834. <<run $npcs.dec('A29','rel',20)>>
  835. <<run $npcs.dec('A33','rel',10)>>
  836. <<run $npcs.dec('A34','rel',10)>>
  837. <<set $pc.willpowermax = 70>>
  838. <<run $q.school.func('grade_award','math',25)>>
  839. <<run $q.school.func('grade_award','rus',25)>>
  840. <<run $q.school.func('grade_award','lit',25)>>
  841. <<run $q.school.func('grade_award','art',25)>>
  842. <<run $q.school.func('grade_award','bio',25)>>
  843. <<run $q.school.func('grade_award','pe',80)>>
  844. <<run $q.school.func('grade_award','eng',25)>>
  845. <<run $q.school.func('grade_award','geo',25)>>
  846. <<run $q.school.func('grade_award','sci',25)>>
  847. <<run $q.school.func('grade_award','shop',80)>>
  848. <<run $q.school.func('grade_award','comp',25)>>
  849. <<run $q.school.func('grade_award','mus',25)>>
  850. <<run $q.school.func('grade_award','his',25)>>
  851. <<gt 'intro_sg_finalize'>>
  852. <</actCLA>>
  853. :: intro_sg_select_char_vitekgf
  854. <h2><<=$npcs.get('A9','nickname_possessive')>> girlfriend</h2>
  855. <<image "system/1_openings/2_sg/gopnik_3.jpg">>
  856. <p>You are <<=$npcs.get('A9','nickname_possessive')>> girlfriend. You love the thrill and danger of hanging out with the gopniks, even if you lack the true attitude yourself. You met <<=$npcs.get('A9','nickname')>> after he and <<=$npcs.get('A11','firstname')>> became friends. There was something about his bad boy attitude that drew you in, and you soon found yourself falling for him.</p>
  857. <p>As you developed, he started to take an interest in you as well and you soon started dating. You're not technically a gopnik - you are considered more of a wannabe - but the rest of the gopniks seem to accept you anyways. You're not sure what would happen if you ever broke up with <<=$npcs.get('A9','nickname')>>, however, as being his girlfriend and hanging out with the other gopniks has cost you any real, close friends outside of their group.</p>
  858. <<actCLA 'Select another option'>>
  859. <<gt 'intro_sg_select_char'>>
  860. <</actCLA>>
  861. <<actCLA 'Confirm this option'>>
  862. <<run $pc.traitSet('nerd_points',-10)>>
  863. <<gs 'intro_sg_select_char_gopnik'>>
  864. <<set $alterstrtimg = 20>>
  865. <<run $pc.skillSetLevel('charisma',40)>>
  866. <<set $pc.genbsize = 32>>
  867. <!-- !!e cup for ideal bmi-->
  868. <<run $pc.skillSetLevel('people',20)>>
  869. <<run $pc.skillSetLevel('makeup',30)>>
  870. <<run $pc.skillSetLevel('highHeels',30)>>
  871. <<run $pc.skillSetLevel('jabs',10)>>
  872. <<run $pc.skillSetLevel('punch',10)>>
  873. <<run $pc.skillSetLevel('kick',10)>>
  874. <<run $pc.skillSetLevel('defense',10)>>
  875. <<set $pirsD = 3>>
  876. <<set $PirsD3_owned = 1>>
  877. <<set $currentpursetype = 'dolls'>>
  878. <<set $currentpursenumber = 19>>
  879. <<setinit $dolls_purses[19] = 1>>
  880. <<set $bag = 1>>
  881. <<run $npcs.inc('A9','rel',50)>>
  882. <<run $npcs.inc('A10','rel',5)>>
  883. <<run $npcs.inc('A11','rel',5)>>
  884. <<run $npcs.dec('A24','rel',10)>>
  885. <<run $npcs.dec('A28','rel',10)>>
  886. <<run $npcs.dec('A29','rel',20)>>
  887. <<run $npcs.dec('A33','rel',10)>>
  888. <<set $pc.willpowermax = 60>>
  889. <<run $q.school.func('groupRelSet','gopniks',700)>>
  890. <<if getvar("$player_avatar") == 0>>
  891. <<set $pc.pcs_hairlng = 200>>
  892. <<set $pc.eyesize = 2>>
  893. <<set $pc.lip_size = 2>>
  894. <<set $pc.eyelashes = 1>>
  895. <</if>>
  896. <<set $pc.pcs_skin = 700>>
  897. <<set $pcs_tan = 5>>
  898. <<set $pc.pcs_vag = 1>>
  899. <<set $pc.pcs_throat = 1>>
  900. <<set $pc.salo = 130>>
  901. <<setinit $stat['hj'] = 10>>
  902. <<setinit $stat['bj'] = 5>>
  903. <<setinit $stat['vaginal'] = 2>>
  904. <<run $q.school.func('grade_award','math',55)>>
  905. <<run $q.school.func('grade_award','rus',55)>>
  906. <<run $q.school.func('grade_award','lit',55)>>
  907. <<run $q.school.func('grade_award','art',55)>>
  908. <<run $q.school.func('grade_award','bio',55)>>
  909. <<run $q.school.func('grade_award','pe',55)>>
  910. <<run $q.school.func('grade_award','eng',55)>>
  911. <<run $q.school.func('grade_award','geo',55)>>
  912. <<run $q.school.func('grade_award','sci',55)>>
  913. <<run $q.school.func('grade_award','shop',55)>>
  914. <<run $q.school.func('grade_award','comp',55)>>
  915. <<run $q.school.func('grade_award','mus',55)>>
  916. <<run $q.school.func('grade_award','his',55)>>
  917. <!-- !! Vitek;s relationship-->
  918. <<set $Gspassed = 0>>
  919. <<set $kotovLoveQW = 1>>
  920. <<set $vitekvisit = 5>>
  921. <<run $npcs.inc('A9','sex',5)>>
  922. <<gt 'intro_sg_finalize'>>
  923. <</actCLA>>
  924. :: intro_sg_select_char_alternative
  925. <!-- !!can choose two more starting tattoo''s-->
  926. <h2>Alternative</h2>
  927. <<image "system/1_openings/2_sg/gopnik_4.jpg">>
  928. <p>You march to your own tune. You do what you want when you want, and do it with a fuck-it-all attitude. The gopniks respect you and for the most part you get along with them. You're not one of them, however, but rather a kindred spirit looking to walk your own path and raise a little hell along the way.</p>
  929. <p>Unlike the gopniks, you have far less interest in fighting or causing problems, you're just looking for a good time - you love to party more than anything else. The cool kids don't completely look down their nose at you. Even if they don't approve of your clothes, they respect your love of looking nice and having a good time.</p>
  930. However, you have problems at home and school due to your behavior. This is especially true with your mother and stepfather, who see you going down the wrong path.
  931. <<actCLA 'Select another'>>
  932. <<gt 'intro_sg_select_char'>>
  933. <</actCLA>>
  934. <<actCLA 'Confirm this option'>>
  935. <<run $pc.traitSet('nerd_points',-20)>>
  936. <<set $pcs_exhib = 25>>
  937. <<set $Exhibitionist_lvl = 1>>
  938. <<set $addictive_exp = 1>>
  939. <<set $addictive_trait_lvl = 1>>
  940. <<gs 'intro_sg_select_char_gopnik'>>
  941. <<set $alterstrtimg = 21>>
  942. <<set $pc.pcs_vital = 40>>
  943. <<run $pc.skillSetLevel('agility',40)>>
  944. <<run $pc.skillSetLevel('reaction',40)>>
  945. <<set $pc.genbsize = 18>>
  946. <!-- !!c cup for ideal bmi-->
  947. <<set $pc.salo = 75>>
  948. <<run $pc.skillSetLevel('charisma',45)>>
  949. <<run $pc.skillSetLevel('people',20)>>
  950. <<run $pc.skillSetLevel('persuasion',10)>>
  951. <<run $pc.skillSetLevel('makeup',40)>>
  952. <<run $pc.skillSetLevel('dance',20)>>
  953. <<run $pc.skillSetLevel('highHeels',20)>>
  954. <<set $falselashesplain = 5>>
  955. <<set $kosmetica = 20>>
  956. <<set $pirsD = 5>>
  957. <<set $PirsD5_owned = 1>>
  958. <<set $pirsA = 2>>
  959. <<set $PirsA2_owned = 1>>
  960. <<set $currentpursetype = 'dolls'>>
  961. <<set $currentpursenumber = 15>>
  962. <<setinit $dolls_purses[15] = 1>>
  963. <<set $bag = 1>>
  964. <<if getvar("$player_avatar") == 0>>
  965. <<set $pc.eyesize = 2>>
  966. <<set $pc.lip_size = 2>>
  967. <<set $pc.eyelashes = 1>>
  968. <</if>>
  969. <<set $school_clothing = 4>>
  970. <<set $pc.pcs_skin = 700>>
  971. <<set $pc.pcs_teeth = -1>>
  972. <<set $pcs_tan = 5>>
  973. <<set $pc.pcs_inhib = 35>>
  974. <<set $pc.pcs_vag = 1>>
  975. <<set $pc.pcs_ass = 1>>
  976. <<set $pc.pcs_throat = 5>>
  977. <<setinit $stat['hj'] = 15>>
  978. <<setinit $stat['bj'] = 10>>
  979. <<setinit $stat['vaginal'] = 3>>
  980. <<setinit $stat['anal'] = 1>>
  981. <<setinit $stat['vaginal_finger'] = 5>>
  982. <<setinit $stat['vaginal_finger_give'] = 5>>
  983. <<setinit $stat['cuni'] = 3>>
  984. <<setinit $stat['cuni_give'] = 3>>
  985. <<gs 'fame' 'pav' 'sex' 40>>
  986. <<set $Gspassed = 0>>
  987. <<gs 'npc_relationship' 'socialgroup_setting' 5 0 0 10 0 0>>
  988. <<run $npcs.inc('A154','rel',10)>>
  989. <<run $npcs.inc('A155','rel',10)>>
  990. <<run $npcs.inc('A156','rel',10)>>
  991. <<run $npcs.inc('A158','rel',10)>>
  992. <<run $npcs.inc('A143','rel',10)>>
  993. <<run $npcs.inc('A144','rel',20)>>
  994. <<run $npcs.dec('A28','rel',10)>>
  995. <<run $npcs.dec('A29','rel',10)>>
  996. <<run $npcs.inc('A33','rel',10)>>
  997. <<run $q.school.func('groupRelSet','cool',300)>>
  998. <<set $pc.willpowermax = 65>>
  999. <<run $q.school.func('grade_award','math',25)>>
  1000. <<run $q.school.func('grade_award','rus',25)>>
  1001. <<run $q.school.func('grade_award','lit',25)>>
  1002. <<run $q.school.func('grade_award','art',25)>>
  1003. <<run $q.school.func('grade_award','bio',25)>>
  1004. <<run $q.school.func('grade_award','pe',80)>>
  1005. <<run $q.school.func('grade_award','eng',25)>>
  1006. <<run $q.school.func('grade_award','geo',25)>>
  1007. <<run $q.school.func('grade_award','sci',25)>>
  1008. <<run $q.school.func('grade_award','shop',55)>>
  1009. <<run $q.school.func('grade_award','comp',25)>>
  1010. <<run $q.school.func('grade_award','mus',55)>>
  1011. <<run $q.school.func('grade_award','his',25)>>
  1012. <<gt 'intro_sg_finalize'>>
  1013. <</actCLA>>
  1014. :: intro_sg_select_char_outcast
  1015. <<set $pc.pcs_inhib = 10>>
  1016. <<run $pc.skillSetLevel('makeup',0)>>
  1017. <<run $q.school.func('groupRelSet','cool',100)>>
  1018. <<run $q.school.func('groupRelSet','jocks',100)>>
  1019. <<run $q.school.func('groupRelSet','nerds',300)>>
  1020. <<run $q.school.func('groupRelSet','gopniks',100)>>
  1021. <<run $q.school.func('groupRelSet','teachers',200)>>
  1022. <<gs 'npc_relationship' 'socialgroup_setting' -20 -10 0 -10 0 0>>
  1023. <<run $npcs.inc('A133','rel',20)>>
  1024. <<run $npcs.dec('A11','rel',10)>>
  1025. <<run $npcs.dec('A33','rel',10)>>
  1026. <<run $npcs.dec('A34','rel',10)>>
  1027. <<run $npcs.set('A18','rel',1)>>
  1028. <<if getvar("$player_avatar") == 0>>
  1029. <<set $pc.pcs_hairlng = 200>>
  1030. <<set $pc.hairColor = 1>>
  1031. <<set $pc.eyecolor = 0>>
  1032. <<set $pc.eyesize = 1>>
  1033. <<set $pc.lip_size = 1>>
  1034. <<set $pc.eyelashes = 0>>
  1035. <</if>>
  1036. <<set $pc.pcs_skin = 0>>
  1037. <<set $pcs_tan = 0>>
  1038. <<set $grupTipe = 5>>
  1039. <<set $shampoo = 20>>
  1040. <<set $sanpad = 40>>
  1041. :: intro_sg_select_char_friendless
  1042. <h2>Friendless</h2>
  1043. <<image "system/1_openings/2_sg/outcast_1.jpg">>
  1044. <p>You were never very social and never learned how to make friends. You were often made fun of or bullied by the other kids as you grew up. As such, you naturally shielded away from them, an action that only served to isolate you even further. Now, years later, you have yet to make any real friends - even Vasily, your closest friend, wouldn't be considered a particularly close one. In public, he scorns you like all the rest, but is a little nicer in private.</p>
  1045. <<actCLA 'Select another option'>>
  1046. <<gt 'intro_sg_select_char'>>
  1047. <</actCLA>>
  1048. <<actCLA 'Confirm this option'>>
  1049. <<gs 'intro_sg_select_char_outcast'>>
  1050. <<gs 'npc_relationship' 'socialgroup_setting' -10 -10 -10 -10 -10 0>>
  1051. <<set $alterstrtimg = 22>>
  1052. <<set $pc.genbsize = 12>>
  1053. <!-- !!b cup for ideal bmi-->
  1054. <<run $pc.skillSetLevel('charisma',20)>>
  1055. <<run $pc.skillSetLevel('observation',20)>>
  1056. <<set $pc.pcs_skin = 400>>
  1057. <<set $pc.pcs_teeth = 1>>
  1058. <<run $pc.skillSetLevel('makeup',10)>>
  1059. <<run $npcs.dec('A11','rel',20)>>
  1060. <<run $q.school.func('groupRelSet','cool',50)>>
  1061. <<run $q.school.func('groupRelSet','nerds',200)>>
  1062. <<set $pc.willpowermax = 60>>
  1063. <<set $pc.salo = 68>>
  1064. <<run $q.school.func('grade_award','math',55)>>
  1065. <<run $q.school.func('grade_award','rus',25)>>
  1066. <<run $q.school.func('grade_award','lit',55)>>
  1067. <<run $q.school.func('grade_award','art',55)>>
  1068. <<run $q.school.func('grade_award','bio',55)>>
  1069. <<run $q.school.func('grade_award','pe',55)>>
  1070. <<run $q.school.func('grade_award','eng',25)>>
  1071. <<run $q.school.func('grade_award','geo',55)>>
  1072. <<run $q.school.func('grade_award','sci',55)>>
  1073. <<run $q.school.func('grade_award','shop',55)>>
  1074. <<run $q.school.func('grade_award','comp',55)>>
  1075. <<run $q.school.func('grade_award','mus',55)>>
  1076. <<run $q.school.func('grade_award','his',55)>>
  1077. <<gt 'intro_sg_finalize'>>
  1078. <</actCLA>>
  1079. :: intro_sg_select_char_uglyduckling
  1080. <h2>Ugly duckling</h2>
  1081. <<image "system/1_openings/2_sg/outcast_2.jpg">>
  1082. <p>Some girls blossom early and others have natural good looks - you got neither. In fact, you seem to have been cursed with an androgynous face and body, and have been mistaken for a boy more times than you would care to admit.</p>
  1083. Your body seems to have grown out of sync, leaving you looking odd and, at best, unattractive for most of your life. Now in your teens, your body is starting to even out in growth, but you're still very androgynous and still considered ugly.
  1084. Your lack of good looks has made you a social pariah. Nobody seems to like you or want to spend time with you unless they are making fun of you.
  1085. <<actCLA 'Select another option'>>
  1086. <<gt 'intro_sg_select_char'>>
  1087. <</actCLA>>
  1088. <<actCLA 'Confirm this option'>>
  1089. <<gs 'intro_sg_select_char_outcast'>>
  1090. <<gs 'npc_relationship' 'socialgroup_setting_boys' -10 -10 0 -10 0 0>>
  1091. <<run $q.school.func('groupRelSet','cool',0)>>
  1092. <<set $uglyduck_flag = 1>>
  1093. <<set $alterstrtimg = 23>>
  1094. <<if getvar("$pc.glass") < 1>>
  1095. <<set $pc.glass = 1>>
  1096. <</if>>
  1097. <<set $pc.genbsize = 28>>
  1098. <!-- !!e cup for ideal bmi-->
  1099. <<set $pc.pcs_inhib = 5>>
  1100. <<set $pc.pcs_teeth = 2>>
  1101. <<if getvar("$player_avatar") == 0>>
  1102. <<set $pc.eyesize = 0>>
  1103. <<set $pc.lip_size = 0>>
  1104. <<set $pc.eyelashes = 2>>
  1105. <</if>>
  1106. <<set $school_clothing = 3>>
  1107. <<set $pc.salo = 125>>
  1108. <<set $pc.willpowermax = 55>>
  1109. <<run $q.school.func('grade_award','math',55)>>
  1110. <<run $q.school.func('grade_award','rus',25)>>
  1111. <<run $q.school.func('grade_award','lit',55)>>
  1112. <<run $q.school.func('grade_award','art',55)>>
  1113. <<run $q.school.func('grade_award','bio',55)>>
  1114. <<run $q.school.func('grade_award','pe',25)>>
  1115. <<run $q.school.func('grade_award','eng',55)>>
  1116. <<run $q.school.func('grade_award','geo',55)>>
  1117. <<run $q.school.func('grade_award','sci',55)>>
  1118. <<run $q.school.func('grade_award','shop',55)>>
  1119. <<run $q.school.func('grade_award','comp',55)>>
  1120. <<run $q.school.func('grade_award','mus',55)>>
  1121. <<run $q.school.func('grade_award','his',55)>>
  1122. <<gt 'intro_sg_finalize'>>
  1123. <</actCLA>>
  1124. :: intro_sg_select_char_goodgirl
  1125. <h2>Good girl</h2>
  1126. <<image "system/1_openings/2_sg/outcast_3.jpg">>
  1127. You are a good girl. The kind parents, teachers and adults love, but the other kids hate. You always reminded the teacher to give out homework and would snitch on anyone for doing anything. You also regularly attend church.
  1128. You love the attention you get from adults, and while you can feel lonely at times, you're pretty happy knowing you're a good girl. The nerds seem to tolerate you the most, likely because they almost never misbehave and always do their homework anyways.
  1129. <<actCLA 'Select another option'>>
  1130. <<gt 'intro_sg_select_char'>>
  1131. <</actCLA>>
  1132. <<actCLA 'Confirm this option'>>
  1133. <<run $pc.traitSet('nerd_points',100)>>
  1134. <<run $pc.traitSet('nerd_status',3)>>
  1135. <<run $pc.traitSet('nerd_lernHome',5)>>
  1136. <<gs 'intro_sg_select_char_outcast'>>
  1137. <<gs 'npc_relationship' 'socialgroup_setting' -10 -5 10 -20 0 20>>
  1138. <<run $npcs.dec('A25','rel',5)>>
  1139. <<run $npcs.inc('A28','rel',10)>>
  1140. <<run $npcs.inc('A29','rel',10)>>
  1141. <<run $npcs.dec('A11','rel',20)>>
  1142. <<run $q.school.func('groupRelSet','nerds',400)>>
  1143. <<set $alterstrtimg = 24>>
  1144. <<run $pc.skillSetLevel('intelligence',35)>>
  1145. <<run $pc.skillSetLevel('spirit',60)>>
  1146. <<set $pc.pcs_inhib = 5>>
  1147. <<run $pc.skillSetLevel('makeup',10)>>
  1148. <<set $church_moral = 40>>
  1149. <<set $finances.cash += 1000>>
  1150. <<set $shampoo = 10>>
  1151. <<set $pc.pcs_skin = 500>>
  1152. <<set $currentpursetype = 'gm'>>
  1153. <<set $currentpursenumber = 6>>
  1154. <<setinit $dolls_purses[6] = 1>>
  1155. <<set $bag = 1>>
  1156. <<if getvar("$player_avatar") == 0>>
  1157. <<set $pc.pcs_hairlng = 300>>
  1158. <<set $pc.eyesize = 3>>
  1159. <<set $pc.lip_size = 2>>
  1160. <<set $pc.eyelashes = 1>>
  1161. <</if>>
  1162. <<set $school_clothing = 3>>
  1163. <<set $pc.salo = 58>>
  1164. <<set $pc.genbsize = 13>>
  1165. <!-- !!b cup for ideal bmi-->
  1166. <<set $pc.willpowermax = 75>>
  1167. <<run $q.school.func('grade_award','math',80)>>
  1168. <<run $q.school.func('grade_award','rus',80)>>
  1169. <<run $q.school.func('grade_award','lit',80)>>
  1170. <<run $q.school.func('grade_award','art',80)>>
  1171. <<run $q.school.func('grade_award','bio',80)>>
  1172. <<run $q.school.func('grade_award','pe',55)>>
  1173. <<run $q.school.func('grade_award','eng',80)>>
  1174. <<run $q.school.func('grade_award','geo',80)>>
  1175. <<run $q.school.func('grade_award','sci',80)>>
  1176. <<run $q.school.func('grade_award','shop',55)>>
  1177. <<run $q.school.func('grade_award','comp',80)>>
  1178. <<run $q.school.func('grade_award','mus',55)>>
  1179. <<run $q.school.func('grade_award','his',80)>>
  1180. <<gt 'intro_sg_finalize'>>
  1181. <</actCLA>>
  1182. :: intro_sg_select_char_slut
  1183. <h2>Slut</h2>
  1184. <<image "system/1_openings/2_sg/outcast_4.jpg">>
  1185. You became curious about sex far sooner than other kids your age. You started masturbating long before the others in your year and loved the sensation so much that you wanted to find out how good sex would feel, becoming the first girl in your year to lose your virginity.
  1186. Boys took advantage of your sexual needs and made you give them handjobs, which then led to blowjobs under the bleachers during recess and after school. You always savored swallowing their cum, loving how it tastes.
  1187. However, your sex addiction has made you a social pariah. The girls all despise you and the boys publicly mock you, although they don't mind using you. The nerds completely avoid you, while the gopniks seem to tolerate you the most, likely because they enjoy taking advantage of you.
  1188. <<actCLA 'Select another option'>>
  1189. <<gt 'intro_sg_select_char'>>
  1190. <</actCLA>>
  1191. <<actCLA 'Confirm this option'>>
  1192. <<run $pc.traitSet('commando_lvl',2)>>
  1193. <!-- FAILED TO CONVERT
  1194. pcs_traits['cumeater'] = 1 and cumeater_cheat = 1
  1195. -----
  1196. <<run $pc.traitSet('cumeater',ERROR: FAILED TO CONVERT LITERAL: """1 and cumeater_cheat = 1""")>>
  1197. -->
  1198. <<warn "CONVERSION ERROR 3248eb6d14c9170e062ee6ced80ad3c4">>
  1199. <<set $pcs_exhib = 40>>
  1200. <<set $Exhibitionist_lvl = 1>>
  1201. <<set $motherKnowSpravka = 1>>
  1202. <<gs 'intro_sg_select_char_outcast'>>
  1203. <<gs 'npc_relationship' 'socialgroup_setting' -10 -10 -10 -10 -10 -10>>
  1204. <<gs 'npc_relationship' 'socialgroup_setting_boys' 15 15 0 20 0 0>>
  1205. <<run $npcs.inc('A11','rel',20)>>
  1206. <<run $npcs.inc('A25','rel',30)>>
  1207. <<run $npcs.dec('A28','rel',20)>>
  1208. <<run $npcs.dec('A29','rel',30)>>
  1209. <<run $npcs.dec('A33','rel',10)>>
  1210. <<run $npcs.dec('A34','rel',10)>>
  1211. <<run $npcs.inc('A144','rel',10)>>
  1212. <<run $q.school.func('groupRelSet','cool',0)>>
  1213. <<run $q.school.func('groupRelSet','jocks',50)>>
  1214. <<run $q.school.func('groupRelSet','nerds',50)>>
  1215. <<run $q.school.func('groupRelSet','gopniks',100)>>
  1216. <<set $alterstrtimg = 25>>
  1217. <<run $pc.skillSetLevel('makeup',30)>>
  1218. <<run $pc.skillSetLevel('dance',20)>>
  1219. <<run $pc.skillSetLevel('highHeels',50)>>
  1220. <<set $pc.genbsize = 22>>
  1221. <!-- !!d cup for ideal bmi-->
  1222. <<set $kosmetica = 30>>
  1223. <<set $falselashesplain = 20>>
  1224. <<set $currentpursetype = 'cats'>>
  1225. <<set $currentpursenumber = 10>>
  1226. <<setinit $cats_purses[10] = 1>>
  1227. <<set $bag = 1>>
  1228. <<gs 'obj_din' 'old'>>
  1229. <<set $greben = 1>>
  1230. <<set $kosmetitka = 10>>
  1231. <<set $salfetka = 10>>
  1232. <<set $stanok = 10>>
  1233. <<set $shampoo = 20>>
  1234. <<set $pirsC = 2>>
  1235. <<set $PirsC2_owned = 1>>
  1236. <<set $motherKnowSpravka = 1>>
  1237. <<if getvar("$player_avatar") == 0>>
  1238. <<set $pc.pcs_hairlng = 120>>
  1239. <<set $pc.eyesize = 2>>
  1240. <<set $pc.lip_size = 2>>
  1241. <<set $pc.eyelashes = 1>>
  1242. <</if>>
  1243. <<set $school_clothing = 2>>
  1244. <<set $pcs_perform = 20>>
  1245. <<set $pc.pcs_skin = 600>>
  1246. <<set $pcs_tan = 20>>
  1247. <<set $pc.pcs_vag = 10>>
  1248. <<set $pc.pcs_ass = 10>>
  1249. <<set $pc.pcs_throat = 10>>
  1250. <<set $pc.pcs_inhib = 60>>
  1251. <<gs 'fame' 'pav' 'sex' 600>>
  1252. <<set $GspravkaT = 2>>
  1253. <<set $motherKnowSpravka = 2>>
  1254. <<set $sanpad = 0>>
  1255. <<set $tampon = 40>>
  1256. <<set $Gspassed = 0>>
  1257. <<set $pc.salo = 70>>
  1258. <<setinit $stat['porn'] = 75>>
  1259. <<setinit $stat['mast'] = 100>>
  1260. <<setinit $stat['hj'] = 70>>
  1261. <<setinit $stat['bj'] = 50>>
  1262. <<setinit $stat['vaginal_finger'] = 20>>
  1263. <<setinit $stat['cuni'] = 5>>
  1264. <<setinit $stat['vaginal'] = 30>>
  1265. <<setinit $stat['anal'] = 20>>
  1266. <<setinit $stat['group'] = 5>>
  1267. <<set $guy = 15>>
  1268. <<set $orgasm = 120>>
  1269. <<set $swallow = 40>>
  1270. <<run $pc.traitSet('cumeater',1)>>
  1271. <<run $q.school.func('groupRelSet','gopniks',100)>>
  1272. <<set $pc.willpowermax = 50>>
  1273. <<set $motherKnowWhore = 1>>
  1274. <<set $sisterknowslut = 1>>
  1275. <<set $brotherknowslut = 1>>
  1276. <<run $q.school.func('grade_award','math',55)>>
  1277. <<run $q.school.func('grade_award','rus',55)>>
  1278. <<run $q.school.func('grade_award','lit',55)>>
  1279. <<run $q.school.func('grade_award','art',55)>>
  1280. <<run $q.school.func('grade_award','bio',55)>>
  1281. <<run $q.school.func('grade_award','pe',55)>>
  1282. <<run $q.school.func('grade_award','eng',55)>>
  1283. <<run $q.school.func('grade_award','geo',55)>>
  1284. <<run $q.school.func('grade_award','sci',55)>>
  1285. <<run $q.school.func('grade_award','shop',55)>>
  1286. <<run $q.school.func('grade_award','comp',55)>>
  1287. <<run $q.school.func('grade_award','mus',55)>>
  1288. <<run $q.school.func('grade_award','his',55)>>
  1289. <<gt 'intro_sg_finalize'>>
  1290. <</actCLA>>
  1291. :: intro_sg_select_char_goth
  1292. <h2>Goth</h2>
  1293. <<image "system/1_openings/2_sg/outcast_5.jpg">>
  1294. <p>Every school has their oddball, in your case - You. You never felt like you fit in, at least until you watched some American movies, saw some goths and suddenly felt like you belonged. You quickly used all the allowance you had to buy new clothes and makeup so you could finally feel good about yourself. Your family and classmates don't approve, but you don't care.</p>
  1295. <p>You're the school's resident Goth. The Dark Temptress that all the boys secretly dream of, weaver of bad poetry and suicide covenants. Everyone seems to think you're going to sacrifice someone or commit suicide, and your classmates aren't much better, with the so-called "cool girls" leading an ostracism campaign against you.</p>
  1296. <p>Fortunately, not everyone listens to them. The nerds like your reading proclivity and that you are into some of the same things they are; you think they might even invite you to their game night one day. A few of the gopniks like your party attitude, specifically those in the band, who seem to respect your artistic disposition. Or their lead singer just wants to get in your panties. It's hard to tell.</p>
  1297. <<actCLA 'Select another option'>>
  1298. <<gt 'intro_sg_select_char'>>
  1299. <</actCLA>>
  1300. <<actCLA 'Confirm this option'>>
  1301. <<run $pc.traitSet('nerd_points',-10)>>
  1302. <<gs 'intro_sg_select_char_outcast'>>
  1303. <<gs 'npc_relationship' 'socialgroup_setting' -5 0 0 + 10 0 -10>>
  1304. <<run $npcs.dec('A28','rel',20)>>
  1305. <<run $npcs.dec('A29','rel',20)>>
  1306. <<run $npcs.dec('A33','rel',20)>>
  1307. <<run $npcs.dec('A34','rel',20)>>
  1308. <<run $npcs.inc('A144','rel',10)>>
  1309. <<run $npcs.inc('A155','rel',5)>>
  1310. <<run $q.school.func('groupRelSet','gopniks',300)>>
  1311. <<set $alterstrtimg = 28>>
  1312. <<set $pc.genbsize = 13>>
  1313. <!-- !!b cup for ideal bmi-->
  1314. <<set $pc.salo = 55>>
  1315. <<run $pc.skillSetLevel('charisma',40)>>
  1316. <<run $pc.skillSetLevel('intelligence',40)>>
  1317. <<run $pc.skillSetLevel('spirit',45)>>
  1318. <<run $pc.skillSetLevel('observation',5)>>
  1319. <<run $pc.skillSetLevel('highHeels',30)>>
  1320. <<run $pc.skillSetLevel('makeup',50)>>
  1321. <<run $pc.skillSetLevel('dance',10)>>
  1322. <<run $pc.skillSetLevel('art',20)>>
  1323. <<run $pc.skillSetLevel('sewing',20)>>
  1324. <<set $pc.pcs_skin = 700>>
  1325. <<set $pc.pcs_teeth = -1>>
  1326. <<set $pc.pcs_inhib = 25>>
  1327. <<set $pc.willpowermax = 65>>
  1328. <<if getvar("$player_avatar") == 0>>
  1329. <<set $pc.pcs_hairlng = 265>>
  1330. <<set $pc.hairColor = 0>>
  1331. <<set $pc.eyesize = 3>>
  1332. <<set $pc.eyecolor = 1>>
  1333. <<set $pc.eyelashes = 1>>
  1334. <</if>>
  1335. <<set $school_clothing = 1>>
  1336. <<set $kosmetica = 25>>
  1337. <<set $stanok = 20>>
  1338. <<set $tampon = 10>>
  1339. <<set $currentpursetype = 'dolls'>>
  1340. <<set $currentpursenumber = 18>>
  1341. <<setinit $dolls_purses[18] = 1>>
  1342. <<set $bag = 1>>
  1343. <<set $umbrella = 1>>
  1344. <<set $finances.cash -= 1000>>
  1345. <<run $q.school.func('grade_award','math',55)>>
  1346. <<run $q.school.func('grade_award','rus',55)>>
  1347. <<run $q.school.func('grade_award','lit',80)>>
  1348. <<run $q.school.func('grade_award','art',80)>>
  1349. <<run $q.school.func('grade_award','bio',55)>>
  1350. <<run $q.school.func('grade_award','pe',70)>>
  1351. <<run $q.school.func('grade_award','eng',55)>>
  1352. <<run $q.school.func('grade_award','geo',55)>>
  1353. <<run $q.school.func('grade_award','sci',55)>>
  1354. <<run $q.school.func('grade_award','shop',55)>>
  1355. <<run $q.school.func('grade_award','comp',55)>>
  1356. <<run $q.school.func('grade_award','mus',80)>>
  1357. <<run $q.school.func('grade_award','his',55)>>
  1358. <<gt 'intro_sg_finalize'>>
  1359. <</actCLA>>
  1360. :: intr_sg_select_nerd
  1361. <h2>Nerd</h2>
  1362. <<image "system/1_openings/2_sg/nerd_0.jpg">>
  1363. <p>
  1364. Growing up, you spent virtually all of your free time at home, pursuing various cerebral pursuits.
  1365. These might have included reading comics, fantasy or sci-fi books, learning about chess or computers or playing cards,
  1366. board games and RPGs with the other nerds, in addition to faithfully going to school.
  1367. While you have gained a huge amount of knowledge from this, your lack of interest in exercising as a child has left your body a little frail.
  1368. </p>
  1369. <p>
  1370. The long nights of trying to read in poor light have also taken a toll on your eyesight and you now require glasses.
  1371. Your cerebral pursuits also had somewhat of a negative impact on your friendship with <<=$npcs.get('A11','firstname')>> as you grew up.
  1372. He became a gopnik and the two of you slowly started hanging out often, although you still consider each other to be friends.
  1373. On the plus side, doing well in school has made your parents happy and has left you with some extra spending money as a reward for your hard work. Now...
  1374. </p>
  1375. <<actCLA 'I am the Queen of the Nerds!'>>
  1376. <<gt 'intro_sg_select_char_nerdqueen'>>
  1377. <</actCLA>>
  1378. <<actCLA 'I am a good student'>>
  1379. <<gt 'intro_sg_select_char_goodstudent'>>
  1380. <</actCLA>>
  1381. <<actCLA 'I am a computer geek'>>
  1382. <<gt 'intro_sg_select_char_computergeek'>>
  1383. <</actCLA>>
  1384. <<actCLA 'I am an avid chess player'>>
  1385. <<gt 'intro_sg_select_char_chessplayer'>>
  1386. <</actCLA>>
  1387. :: intr_sg_select_jock
  1388. <h2>Jock</h2>
  1389. <<image "system/1_openings/2_sg/jock_0.jpg">>
  1390. <p>While you were growing up, you spent virtually all of your free time outdoors. You loved playing sports, running, biking and hiking. This has kept you in fairly good shape, as well as socially active in a variety of team sports over the years. Doing this, however, negatively impacted your friendship with <<=$npcs.get('A11','firstname')>>. As you grew up, he became a gopnik and the two of you slowly started hanging out less often, although you still consider each other to be friends. From all the sports available, you are an...</p>
  1391. <<actCLA 'I am an avid volleyball player'>>
  1392. <<gt 'intro_sg_select_char_volleyball'>>
  1393. <</actCLA>>
  1394. <<actCLA 'I am an avid dancer'>>
  1395. <<gt 'intro_sg_select_char_dancer'>>
  1396. <</actCLA>>
  1397. <<actCLA 'I am an avid runner'>>
  1398. <<gt 'intro_sg_select_char_runner'>>
  1399. <</actCLA>>
  1400. <<actCLA 'I am an avid football player'>>
  1401. <<gt 'intro_sg_select_char_football'>>
  1402. <</actCLA>>
  1403. :: intr_sg_select_popular
  1404. <h2>Popular</h2>
  1405. <<image "system/1_openings/2_sg/popular_0.jpg">>
  1406. <p>You spent most of your childhood outdoors, playing with other boys and girls. As a result, you're quite healthy and have a keen understanding about how to get yourself out of trouble (or shifting the blame to someone else). You were never very interested in school or sports, however, and are only a sub-par student. Your popularity has negatively impacted your relationship with <<=$npcs.get('A11','firstname')>>, and you're not as close as you once were. Now...</p>
  1407. <<actCLA 'I have a lot of friends'>>
  1408. <<gt 'intro_sg_select_char_socialite'>>
  1409. <</actCLA>>
  1410. <<actCLA 'I am beautiful'>>
  1411. <<gt 'intro_sg_select_char_beautiful'>>
  1412. <</actCLA>>
  1413. :: intr_sg_select_gopnik
  1414. <h2>Gopnik</h2>
  1415. <<image "system/1_openings/2_sg/gopnik_0.jpg">>
  1416. <p>You spent most of your childhood outdoors, playing with the other boys and girls. As a result, you're quite healthy. As you got older, you lost any interest you might have once had with fitting in - now you do your own thing, and you're ready to tell anyone where they can stick it if they have a problem with that.</p>
  1417. <p>As you and <<=$npcs.get('A11','firstname')>> walked a similar path, your bond of friendship only deepened. This has had some repercussions on your school performance; you're a sub-par student. It has also had some less than enjoyable consequences leading you into more than your fair share of fights, into all sorts of problems at home and landing you in trouble at school. You've even had a few run-ins with the local police. Most people now consider you...</p>
  1418. <<actCLA 'I am a gopnik'>>
  1419. <<gt 'intro_sg_select_char_gopnikstart'>>
  1420. <</actCLA>>
  1421. <<actCLA 'I am a punk or troublemaker'>>
  1422. <<gt 'intro_sg_select_char_troublemaker'>>
  1423. <</actCLA>>
  1424. <<actCLA `'I am '+$npcs.get('A9','nickname')+'s girlfriend'`>>
  1425. <<gt 'intro_sg_select_char_vitekgf'>>
  1426. <</actCLA>>
  1427. <<actCLA 'I am an alternative, party girl or rebel'>>
  1428. <<gt 'intro_sg_select_char_alternative'>>
  1429. <</actCLA>>
  1430. :: intr_sg_select_outcast
  1431. <h2>Outcast</h2>
  1432. <<image "system/1_openings/2_sg/outcast_0.jpg">>
  1433. You never really fit in. You're just one of those individuals who, by choice or circumstance, never really clicked with the other kids. As you got older things only got worse, and now you are seen as an outcast. This breaks one of the most important social rules among your peers, and you are now considered in the same vein as sluts, losers, gay boys and the like.
  1434. <p>Being an outcast has also had a somewhat negative impact on your friendship with <<=$npcs.get('A11','firstname')>>. As you grew up, he became a gopnik and the two of you slowly started hanging out less and less, although you still consider each other to be friends - if just barely. You have no other real friends, and you get bullied and made fun of all the time because...</p>
  1435. <<actCLA 'I have no friends'>>
  1436. <<gt 'intro_sg_select_char_friendless'>>
  1437. <</actCLA>>
  1438. <<actCLA 'I am an ugly duckling'>>
  1439. <<gt 'intro_sg_select_char_uglyduckling'>>
  1440. <</actCLA>>
  1441. <<actCLA 'I am a good girl'>>
  1442. <<gt 'intro_sg_select_char_goodgirl'>>
  1443. <</actCLA>>
  1444. <<actCLA 'I am a slut'>>
  1445. <<gt 'intro_sg_select_char_slut'>>
  1446. <</actCLA>>
  1447. <<actCLA 'I am the resident goth'>>
  1448. <<gt 'intro_sg_select_char_goth'>>
  1449. <</actCLA>>