gschool_lessons2.qsrc 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. # gschool_lessons2
  2. !!classes this file computer, science, music, biology
  3. if $ARGS[0] = 'computer':
  4. menu_off = 1
  5. pcs_grades += rand(0,1)
  6. compskl_exp += rand(1,2)
  7. intel_exp += rand(0,1)
  8. gs 'stat'
  9. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classcomputer.jpg"></center>'
  10. 'You go to your computer class and find a seat at one of the computer stations. Before long all of your fellow students file in and takes their seats as well. Once the bell rings Mr. Ivanov takes roll call, you say here when your name is called. With that done, he gets up and starts walking around the room explaining todays lessons. Occasionally stopping to look at the screen of varies students to make sure they are doing it right.'
  11. *nl
  12. 'If he has to correct one of the nerds he will take his time and quietly explain it to them, giving them lots of encouragement. For everyone else he loudly proclaims what you did wrong, drawing attention to how easy this is. He makes sure the whole class knows about their mistake and he does it in a condescending manner, like he is trying to prove to everyone how much smarter he is than you are, or maybe he just wants the others students to make fun of them. With Mr. Ivanov it is hard to tell. He doesn''t seem to approve of anyone but the nerds and harshly grades everyone else.'
  13. act 'Listen attentively to Mr. Ivanov':
  14. *clr & cla
  15. compskl_exp += rand(1,2)
  16. intel_exp += rand(0,1)
  17. pcs_grades += rand(0,1)
  18. grupvalue[4] -= 1
  19. grupvalue[3] +=1
  20. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  21. 'You listen attentively to Mr. Ivanov for the duration of the class. Today''s lesson was interesting and informative, and you feel you learned from taking part in class.'
  22. act 'Ask a question about the lesson':
  23. *clr & cla
  24. pcs_grades += rand(0,1)
  25. compskl_exp += rand(0,1)
  26. intel_exp += rand(0,1)
  27. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/ask.jpg"></center>'
  28. if grupTipe=3:
  29. 'Mr. Ivanov nods approvingly. He happily spends some extra time explaining the topic again to you, and answers any extra questions you might have. You feel like you learned a lot, thoroughly understanding today''s lessons now.'
  30. else
  31. 'Mr. Ivanov audibly sighs. "Why are you unable to grasp this. I know you are not the smartest student, but this is really very simple. Even a small child should be able to grasp it." He goes on to explain the part you asked about again, but he does so in a completely belittling manner.'
  32. end
  33. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  34. end
  35. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  36. end
  37. act 'Don''t pay attention in class':
  38. *clr & cla
  39. pcs_grades -= rand(0,1)
  40. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  41. 'You quickly grow bored with the class and instead spend most of the time trying to browse the internet while Mr. Ivanov is busy or pay attention to your fellow students and what they are up to. You can see several of them seem to have the same idea as you do. The only times you pay attention is when he calls on you to answer one of the questions.'
  42. act 'Draw dick in margin':
  43. *clr & cla
  44. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/drawdick.jpg"></center>'
  45. 'You get bored during a quiz and start doodling, which turns into you just drawing dicks, with balls on the margins of the quiz. You even share your handwork with the girl sitting next to you, when she glances over.'
  46. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  47. end
  48. gs 'willpower', 'exhib', 'self', 'medium'
  49. if will_cost <= pcs_willpwr:
  50. act 'Flash boobs at Artem (<<will_cost>> Willpower)':
  51. *clr & cla
  52. npc_rel['A2'] += 1
  53. gs 'willpower', 'exhib', 'self', 'medium'
  54. gs 'willpower', 'pay', 'self'
  55. gs 'exhibitionism', 1
  56. gs 'fame', 'pav', 'sex', 5
  57. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashboobs1.jpg"></center>'
  58. 'You notice Artem glancing over you a few times and decided to play with him. The next time he looks over at you, while Mr. Yenotin back is turned, you pull your shirt open and expose your tits at him. His mouth drops open in shock as he stares at your exposed <<$titsize>>s. A couple of the others students notice what you are doing, most of them either grin, smile, or laugh at your antics, all but Lesco of course who stares openly with his mouth open. Vasily tries to take a picture but you close your shirt before he gets his phone up. Sonia grins at what you are doing, Zinaida gives you a slightly disgusted look before turning away, Albina and Alyona smile about it, while Lizaveta starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  59. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  60. end
  61. else
  62. act 'Flash boobs at Artem (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  63. end
  64. if $pantyworntype = 'none':
  65. gs 'willpower', 'exhib', 'self', 'medium'
  66. if will_cost <= pcs_willpwr:
  67. act 'Flash butt (<<will_cost>> Willpower)':
  68. *clr & cla
  69. gs 'willpower', 'exhib', 'self', 'medium'
  70. gs 'willpower', 'pay', 'self'
  71. gs 'exhibitionism', 2
  72. gs 'fame', 'pav', 'sex', 5
  73. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashbutt1.jpg"></center>'
  74. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Ivanov desk. Making sure Mr. Ivanov isn''t looking you pull up the back of your skirt and expose your naked butt to anyone in class looking. Vasily tries to take a picture but you drop you skirt back in place before he gets his phone up. Artem''s mouth drops open and he just stares at your naked butt, Sonia grins at what you are doing, Zinaida gives you a slightly disgusted look before turning away, Albina and Alyona smile about it, while Lizaveta starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  75. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  76. end
  77. else
  78. act 'Flash butt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  79. end
  80. end
  81. if $pantyworntype ! 'none':
  82. gs 'willpower', 'exhib', 'self', 'medium'
  83. if will_cost <= pcs_willpwr:
  84. act 'Get up and flash panty clad ass (<<will_cost>> Willpower)':
  85. *clr & cla
  86. gs 'willpower', 'exhib', 'self', 'medium'
  87. gs 'willpower', 'pay', 'self'
  88. gs 'exhibitionism', 1
  89. gs 'fame', 'pav', 'sex', 3
  90. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesb' + rand(1,3) + '.jpg"></center>'
  91. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Ivanov desk. Making sure Mr. Ivanov isn''t looking you pull up the back of your skirt and expose your panty clad ass to anyone in class looking. Vasily tries to take a picture but you drop you skirt back in place before he gets his phone up. Artem''s mouth drops open and he just stares at your butt, Sonia grins at what you are doing, Zinaida gives you a slightly disgusted look before turning away, Albina and Alyona smile about it, while Lizaveta starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  92. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  93. end
  94. else
  95. act 'Get up and flash panty clad ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  96. end
  97. gs 'willpower', 'exhib', 'self', 'medium'
  98. if will_cost <= pcs_willpwr:
  99. act 'Flash panties at desk (<<will_cost>> Willpower)':
  100. *clr & cla
  101. gs 'willpower', 'exhib', 'self', 'medium'
  102. gs 'willpower', 'pay', 'self'
  103. gs 'exhibitionism', 1
  104. gs 'fame', 'pav', 'sex', 2
  105. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesd' + rand(1,5) + '.jpg"></center>'
  106. 'While Mr. Ivanov back is turned, you spread your legs wide, and pull up the front of your skirt, while sitting at your desk. Which shows off your panties to anyone that looks your way. A couple of the others students notice what you are doing, Vasily tries to take a picture but you close your legs before he gets his phone up, Artem just stares with his mouth wide open. Sonia grins at what you are doing, Zinaida gives you a slightly disgusted look before turning away, Albina and Alyona smile about it, while Lizaveta starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  107. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  108. end
  109. else
  110. act 'Flash panties at desk (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  111. end
  112. gs 'willpower', 'exhib', 'self', 'medium'
  113. if will_cost <= pcs_willpwr:
  114. act 'Get up and flash panties (<<will_cost>> Willpower)':
  115. *clr & cla
  116. gs 'willpower', 'exhib', 'self', 'medium'
  117. gs 'willpower', 'pay', 'self'
  118. gs 'exhibitionism', 1
  119. gs 'fame', 'pav', 'sex', 3
  120. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesf' + rand(1,3) + '.jpg"></center>'
  121. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Ivanov desk. Making sure Mr. Ivanov isn''t looking you turn to face the glance like you are about to walk back to your seat when, you pull up your skirt and expose your panties to anyone in class looking. Vasily tries to take a picture but you drop you skirt back in place before he gets his phone up. Artem''s mouth drops open and he just stares at your naked butt, Sonia grins at what you are doing, Zinaida gives you a slightly disgusted look before turning away, Albina and Alyona smile about it, while Lizaveta starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  122. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  123. end
  124. else
  125. act 'Get up and flash panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  126. end
  127. end
  128. act 'Take selfie':
  129. gs 'telefon', 'Phone_selfie_totals'
  130. *clr & cla
  131. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takeselfie.jpg"></center>'
  132. 'While looking at your phone you decide now would be a good time to take a selfie, but what kind of selfie should you take?'
  133. act 'Regular selfie':
  134. *clr & cla
  135. i = rand(1,classroom_clotot)
  136. dynamic 'school_classroom_closelfie[<<i>>] = 1'
  137. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/clothed/<<i>>.jpg"></center>'
  138. 'Just a cute selfie of your face during class, nothing to daring, yet it gives you something to do. You take several selfies of yourself until you find one you like. You keep it and delete the rest of them, you manage to take them with out Mr. Yenotin even noticing.'
  139. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  140. end
  141. gs 'willpower', 'exhib', 'self', 'medium'
  142. if will_cost <= pcs_willpwr:
  143. act 'Take bare breasts selfie (<<will_cost>> Willpower)':
  144. *clr & cla
  145. gs 'willpower', 'exhib', 'self', 'medium'
  146. gs 'willpower', 'pay', 'self'
  147. gs 'exhibitionism', 1
  148. gs 'fame', 'pav', 'sex', 3
  149. i = rand(1,classroom_titflash)
  150. dynamic 'school_classroom_titflash[<<i>>] = 1'
  151. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/titflash/<<i>>.jpg"></center>'
  152. 'Feeling particularily brash you decide a selfie of your bare breasts in the middle of class will be a great idea. Maybe you will share it and maybe not. But either way it should be fun and might be useful for teasing someone later. You glance around and when everyone is busy, you pull open your shirt and expose your tits. You take a couple of quick selfies of your exposed breasts until you get one you really like.'+iif(pcs_cupsize >= 30, ' Your fight with your blouse to cover yourself back up. Once it is finally back in place you take a look around and see a few grinning faces among your classmates. ', '')+'You save that one to your phone and delete the rest.'
  153. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  154. end
  155. else
  156. act 'Take bare breasts selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  157. end
  158. if $pantyworntype ! 'none':
  159. gs 'willpower', 'exhib', 'self', 'medium'
  160. if will_cost <= pcs_willpwr:
  161. act 'Take bare pussy selfie (<<will_cost>> Willpower)':
  162. *clr & cla
  163. gs 'willpower', 'exhib', 'self', 'medium'
  164. gs 'willpower', 'pay', 'self'
  165. gs 'exhibitionism', 3
  166. gs 'fame', 'pav', 'sex', 3
  167. i = rand(1,classroom_pussyflash)
  168. dynamic 'school_classroom_pussyflash[<<i>>] = 1'
  169. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/pussyflash/<<i>>.jpg"></center>'
  170. 'You can feel the excitement in your pussy as you imagine yourself baring it in class to take a selfie of it. A selfie of your bare pussy in the middle of class would be stimulating memory, maybe you will share it and maybe not. But either way it should be fun and could be fun to send to someone later to tease them with it. You glance around and when everyone is busy, you pull open up your skirt and pull your panties aside until your pussy is exposed. You take a couple of quick selfies of your exposed pussy until you get one you really like. You save that one to your phone and delete the rest.'
  171. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  172. end
  173. else
  174. act 'Take bare pussy selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  175. end
  176. end
  177. end
  178. act 'Tease Vasily':
  179. *clr & cla
  180. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/tease.jpg"></center>'
  181. 'You get Vasily''s attention by smiling at him when he looks your direction. Then you lean back in your chair and stretch your arms back over your head, causing your <<$titsize>> breasts to thrust out as you do.'+iif(pcs_cupsize >= 30, ' Your uniform stretches to its limits threatening to pop buttons. ', ' The stretch finally helps your uniform stretch around your breasts to accent what little you do have for breasts. ')+'He watches you intently while you bite your lower lip looking all coy and seductive to him. Once you finish your stretch you pretend to act all innocent, like you didn''t do anything.'
  182. 'Vasily glances around then leans over a bit to say. "Come on don''t be like that <<$pcs_nickname>> show me a little more."'
  183. 'Before you can decide what to do Sonia who watched it all gets your attention.'
  184. act 'Sonia''s suggestion':
  185. *clr & cla
  186. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb1.jpg"></center>'
  187. 'Sonia leans over and whispers in your ear. "Flash him your tits." She says with a giggle.'
  188. 'You are a bit taken back by that, what if someone else would see. "Why would I do that?" You ask her.'
  189. 'She grins. "To tease him of course, just like your stretch. Go on do it or flash him your panties." Well yeah you did tease him but this is a bit much... isn''t it?'
  190. gs 'willpower', 'exhib', 'resist', 'medium'
  191. if will_cost <= pcs_willpwr:
  192. act 'Refuse to flash (<<will_cost>> Willpower)':
  193. *clr & cla
  194. gs 'willpower', 'pay', 'resist'
  195. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  196. 'You shake your head no, Vasily frowns. He obviously hear or guessed what Sonia had tried to get you to do. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  197. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  198. end
  199. else
  200. act 'Refuse to flash (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  201. end
  202. act 'Flash your boobs':
  203. *clr & cla
  204. npc_rel['A11'] += 1
  205. gs 'exhibitionism', 1
  206. gs 'fame', 'pav', 'sex', 5
  207. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb2.jpg"></center>'
  208. 'She has a point it would be thrilling a even bigger tease than just stretching like that in front of him. You glance around and wait till no one but the two of them are looking. Then you lean back and pull up your shirt to expose your bare <<$titsize>> breasts. Your nipples get hard from the excitement. Vasily stares at your bare tits, looking almost entranced by them.'
  209. act 'Put them away':
  210. *clr & cla
  211. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  212. 'You pull your shirt down quickly when another student looks over, which causes Sonia to giggle and Vasily to shake his head obviously already missing your tits. Several other students look over as if they just realized they miss something, you ignore their looks, Vasily''s stare and Sonia''s giggles and wait for class to end.'
  213. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  214. end
  215. end
  216. if $pantyworntype ! 'none':
  217. act 'Flash your panties':
  218. *clr & cla
  219. gs 'fame', 'pav', 'sex', 1
  220. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep1.jpg"></center>'
  221. 'You turn towards Vasily so you are mostly facing him as you sit in your seat sideways. You pull your skirt up a little showing off your panties a little to Vasily which makes him grin wide. He motions for you to pull your skirt up higher to give him a better view.'
  222. gs 'willpower', 'exhib', 'resist', 'medium'
  223. if will_cost <= pcs_willpwr:
  224. act 'Refuse (<<will_cost>> Willpower)':
  225. *clr & cla
  226. gs 'willpower', 'pay', 'resist'
  227. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  228. 'You shake your head no, Vasily frowns, as you pull your skirt back down and then turn back to face the front of class. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  229. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  230. end
  231. else
  232. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  233. end
  234. act 'Raise your skirt more':
  235. *clr & cla
  236. npc_rel['A11'] += 1
  237. gs 'fame', 'pav', 'sex', 1
  238. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep2.jpg"></center>'
  239. 'You pull your skirt up more so your whole panties are exposed for Vasily to look at. He grins wide as he stares at your panty covered pussy. You can tell he is hoping to see more, it is obviously by the way he is looking at you.'
  240. act 'Continue':
  241. *clr & cla
  242. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep3.jpg"></center>'
  243. 'Just then he reaches over and grabs the front of your panties and tries to pull them down to get a look at your pussy. You grab his hand just in time to stop him from doing it. "Come on <<$pcs_nickname>> show me your pussy." Vasily whispers to you as he keeps trying to tug your panties down.'
  244. gs 'willpower', 'exhib', 'resist', 'medium'
  245. if will_cost <= pcs_willpwr:
  246. act 'Refuse (<<will_cost>> Willpower)':
  247. *clr & cla
  248. gs 'willpower', 'pay', 'resist'
  249. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep5.jpg"></center>'
  250. 'You forcefully pull his hand away, Vasily frowns, as you pull your skirt back down and then turn back to face the front of class. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  251. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  252. end
  253. else
  254. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  255. end
  256. act 'Show him your pussy':
  257. *clr & cla
  258. npc_rel['A11'] += 1
  259. gs 'fame', 'pav', 'sex', 5
  260. gs 'exhibitionism', 3
  261. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep4.jpg"></center>'
  262. 'Why not, it would be thrilling. "Let go and I will show you." You tell him. He pauses a moment but then lets go of your panties and keeps watching you. You lean back and lift one leg as you reach down and pull your panties aside to reveal you pussy for Vasily and anyone else to see who happens to look this way. Sonia tries to sneak a peek as well. You can see the bulge in Vasily''s pants from here, he is obviously turned on by this.'
  263. act 'Put your pussy away':
  264. *clr & cla
  265. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep5.jpg"></center>'
  266. 'After a couple of minutes you pull your panties back in place, close your legs, pull your skirt back down and then turn to face the front of class again. Vasily looks crest fallen obviously hoping for it to last longer, but you ignore his pleading looks and look to the front of the class but the thrill of what you just did keeps the rest of class from being boring.'
  267. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  268. end
  269. end
  270. end
  271. end
  272. end
  273. end
  274. end
  275. end
  276. if $pantyworntype ! 'none':
  277. gs 'willpower', 'exhib', 'self', 'medium'
  278. if will_cost <= pcs_willpwr:
  279. act 'Remove panties (<<will_cost>> Willpower)':
  280. *clr & cla
  281. $pantyworntype = 'none'
  282. gs 'willpower', 'exhib', 'self', 'medium'
  283. gs 'willpower', 'pay', 'self'
  284. gs 'exhibitionism', 1
  285. gs 'fame', 'pav', 'sex', 5
  286. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/removepanties.jpg"></center>'
  287. 'While sitting at your desk bored you notice no one is looking at you, you decided to take your panties off. You don''t know why, just something to do, really. It doesn''t hurt that it is going to be a thrill. You reach under your skirt and pull them down slowly. At first you have to work against your own weight as you pull them past your bottom. Much to your surprise no one notices the movement and your carry on. Once you get them past your knees you open your legs slightly and your panties fall down around your ankles. You step out of them and as you are bending over to pick them up you realize a couple of the other students have noticed. You rush to pick up your panties and stuff them into your purse and ignore the looks of the other students.'
  288. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  289. end
  290. else
  291. act 'Remove panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  292. end
  293. end
  294. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  295. end
  296. act'Daydream':
  297. *clr & cla
  298. pcs_grades -= rand(0,1)
  299. daydream = rand(1,4)
  300. if daydream = 1:
  301. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/caughtsleeping.jpg"></center>'
  302. 'Today''s lessons don''t particularly interest you, and you find yourself drifting off constantly. After a while you notice Mr. Ivanov has stopped teaching and is looking at you intently, asking you to pay attention. Apparently this is already the third time he asked; you missed the first two completely while you were lost in your own thoughts. The whole class is looking at you now.'
  303. if grupTipe=3:
  304. '"Miss <<$pcs_lastname>>, please pay attention, this is very important. Today''s topic is going to be on the exam for sure."'
  305. else
  306. '"Miss <<$pcs_lastname>>, if you don''t want to pay attention in class then I suggest you stop coming to class and stop wasting my time and your fellows students time. Now pay attention!"'
  307. end
  308. act 'Reluctantly pay attention':
  309. *clr & cla
  310. pcs_grades += rand(0,1)
  311. compskl_exp += rand(0,1)
  312. intel_exp += rand(0,1)
  313. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/angryteacher.jpg"></center>'
  314. 'The eyes of Mr. Ivanov grow narrower, and even though you roll your eyes at him, you sit through the rest of the lesson in silence, at least pretending to pay attention sometimes. You don''t learn anything today, though.'
  315. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  316. end
  317. act'Try to focus on the lesson':
  318. *clr & cla
  319. pcs_grades += rand(0,1)
  320. grupvalue[4] -= 1
  321. grupvalue[3] += 1
  322. compskl_exp += rand(0,2)
  323. intel_exp += rand(0,1)
  324. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/payattention.jpg"></center>'
  325. 'You don''t want to get in trouble so you straighten up in your chair. "Sorry." Mr. Ivanov gives you one final look and then goes back to teaching the class, you do your best to pay attention for the rest of class.'
  326. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  327. end
  328. gs 'willpower', 'misc', 'self', 'medium'
  329. if will_cost <= pcs_willpwr:
  330. act 'Be a smart ass (<<will_cost>> Willpower)':
  331. *clr & cla
  332. gs 'willpower', 'pay', 'self'
  333. gs 'stat'
  334. demerit += 1
  335. grupvalue[1] += 1
  336. grupvalue[4] += 1
  337. grupvalue[3] -= 1
  338. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  339. '"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" you answer boldly.'
  340. 'The whole class bursts into loud laughter, Mr. Ivanov turns and gives the rest of class a hard look. "Silence now!" Then he turns back to you.'
  341. '"Miss <<$pcs_lastname>>, get out of class! Report to the Principal now!"'
  342. gs 'willpower', 'misc', 'resist', 'medium'
  343. if will_cost <= pcs_willpwr:
  344. act 'Don''t leave the classroom (<<will_cost>> Willpower)':
  345. *clr & cla
  346. gs 'willpower', 'pay', 'resist'
  347. gs 'stat'
  348. demerit += 1
  349. grupvalue[4] += 1
  350. grupvalue[3] -= 1
  351. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/eartwist.jpg"></center>'
  352. '"What good would that do? Are you trying to get me to start smoking to pass the time? I''m not interrupting your classes, just leave me alone. I''m having some... girl problems. Would you like me to talk about those instead?" you answer brashly, not having any intentions of getting up.'
  353. 'He leans in close to you. "Get out of my classroom right now or I will drag you out!"'
  354. gs 'willpower', 'misc', 'resist', 'medium'
  355. if will_cost <= pcs_willpwr:
  356. act 'Refuse (<<will_cost>> Willpower)':
  357. cla
  358. gs 'willpower', 'pay', 'resist'
  359. gs 'stat'
  360. 'You cross your arms as if daring him to lay a hand on you. Well he calls your bluff, he grabs you by the ear and twists it painfully. He then grabs your arm and yanks you out of your chair so violently, you fall to the ground on your knees. He doesn''t help you up or wait, he just starts dragging you by the ear, as he painfully twists it. It takes you a couple of tries to regain your feet he is dragging you that fast. Just as you reach the door you manage to get back on your feet. He doesn''t stop their, he drags you all the way to the offices and pushes you inside.'
  361. act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
  362. end
  363. else
  364. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  365. end
  366. act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
  367. end
  368. else
  369. act 'Don''t leave the classroom (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  370. end
  371. act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
  372. end
  373. else
  374. act 'Be a smart ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  375. end
  376. elseif daydream = 2:
  377. *clr & cla
  378. if pcs_grades >= 80:
  379. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  380. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, as you keep dozing off.'
  381. 'You''re snapped back to consciousness when you hear Mr. Ivanov call your name. Everyone looks at you expectantly, and you realize that you were just asked a question about the topic.'
  382. 'Taking your best guess at what the teacher might be asking, the entire class is shocked as you somehow manage to produce the correct answer, since it must''ve been obvious to everyone that you were sleeping. Mr. Ivanov tells you, "Very good, but keep your head up and pay attention!"'
  383. else
  384. pcs_mood -= 5
  385. gs 'stat'
  386. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  387. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, sense you keep dozing off.'
  388. 'You''re snapped back to consciousness when you hear Mr. Ivanov call your name. Everyone is looking at you expectantly, realizing that you were just asked a question about the topic.'
  389. *nl
  390. 'You take your best guess at what they might be asking. Some of the other kids snicker when you say something that''s obviously wrong. Mr. Ivanov tells you the correct answer. "It truly saddens me you do not know the answer to such a simple question and then don''t pay attention in my class. I honestly wonder why you even bother coming to school at all. At this rate you will be flipping burgers or working the street corner to make a living after you graduate." He says in disgust.'
  391. 'It was an embarrassing experience, but the sudden adrenaline surge helps you to stay awake during the rest of the period.'
  392. end
  393. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  394. else
  395. *clr & cla
  396. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  397. 'You finally drift off to sleep, the bell that ends class startles you awake. You look around in a bit of a dazed confusion. Mr. Ivanov seems not to have noticed, same with most of your fellow students but a couple of them giving you a knowing smile. They obviously noticed you sleeping. You gather up your stuff and head to your next period.'
  398. act 'Leave class': gt 'gschool_lessons', 'short_break'
  399. end
  400. end
  401. act 'Play with your phone':
  402. *clr & cla
  403. pcs_grades -= rand(0,1)
  404. mood +10
  405. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  406. 'The lesson is so boring that you have to do something to keep yourself entertained. You take out your phone and begin to play a mobile game, hoping the lesson will be over soon.'
  407. playphone = rand(1,2)
  408. if playphone = 1:
  409. *clr & cla
  410. 'You notice Mr. Ivanov looking at you strictly; he must have noticed you''re not paying attention to his class.'
  411. act 'Put your phone away':
  412. *clr & cla
  413. grupvalue[4] -= 1
  414. grupvalue[3] += 3
  415. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  416. 'You decide not to aggravate the situation and put your phone away. Mr. Ivanov gives you one final hard look before continue with the lesson.'
  417. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  418. end
  419. gs 'willpower', 'misc', 'self', 'medium'
  420. if will_cost <= pcs_willpwr:
  421. act 'Keep using your phone (<<will_cost>> Willpower)':
  422. *clr & cla
  423. gs 'willpower', 'pay', 'self'
  424. grupvalue[1] += 1
  425. grupvalue[4] += 1
  426. grupvalue[3] -= 1
  427. demerit += 5
  428. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/caughtonphone.jpg"></center>'
  429. 'Even though Mr. Ivanov saw you use your phone. You don''t care and just keep browsing the internet. Realizing you still won''t put the phone away, Mr. Ivanov walks over to your desk.'
  430. act 'Hand over the phone':
  431. *clr & cla
  432. grupvalue[4] -= 1
  433. grupvalue[3] += 1
  434. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takephone.jpg"></center>'
  435. 'Wow, Mr. Ivanov called your bluff. You decide it''s not worth the conflict, and silently hand your phone to Mr. Ivanov.'
  436. 'As he walk back to the front of the class, he says, "I''m holding onto your phone for now, Mrs. <<$pcs_lastname>>. You can have it back after class."'
  437. act 'Wait for the end of the lesson': gs 'gschool_lessonsev2', 'geography'
  438. end
  439. gs 'willpower', 'exhib', 'self'
  440. if will_cost <= pcs_willpwr:
  441. act 'Take photos under your skirt (<<will_cost>> Willpower)':
  442. *clr & cla
  443. gs 'willpower', 'exhib', 'self'
  444. gs 'willpower', 'pay', 'self'
  445. gs 'stat'
  446. if $pantyworntype ! 'none':
  447. gs 'exhibitionism', 1
  448. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
  449. else
  450. gs 'exhibitionism', 2
  451. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
  452. end
  453. 'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mr. Ivanov walking towards your desk.'
  454. 'When Mr. Ivanov arrives at your desk, he tells you, "And what could you be doing on your phone that''s more important than paying attention in class, Miss <<$pcs_lastname>>? Hand it over."'
  455. '"Wouldn''t you like to know!" you tease. You hand over your phone, the screen still on, with the last picture you took still on the screen of the phone.'
  456. if grupTipe = 3:
  457. 'Mr. Ivanov looks at what''s on the screen and he blushes slight and shakes his head. "You are better than this Miss <<$pcs_lastname>>. I urge you not to start down this path." He says as he wiggles the phone in his hand to emphasize he means the photo.'
  458. 'As he gets ready to continue the lesson he says, "I''m holding onto your phone for now, Miss <<$pcs_lastname>>. You can have it back after class."'
  459. else
  460. 'He doesn''t seem to react at first. He walks back to the front of the class carrying the phone, he looks at the image a final time then puts the phone in his desk shaking his head.'+iif(npc_rel['A69'] >+50, ' "You are better than this Miss <<$pcs_lastname>>. I urge you not to start down this path." He says as he wiggles the phone in his hand to emphasize he means the photo. ', ' "I expected nothing less from you Miss <<$pcs_lastname>>, you never fail to fall down to your lowest potential." Then he beings his lesson again.')
  461. !!this is added to the above if Sveta is not a nerd, but I am commenting it out for now because I need to write the after school scene first.
  462. !!'He adds to you "Come see me after school if you want your phone back, or I can just return it to your parents."'
  463. end
  464. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  465. end
  466. else
  467. act 'Take photos under your skirt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  468. end
  469. gs 'willpower', 'misc', 'self', 'medium'
  470. if $braworntype ! 'none' and will_cost <= pcs_willpwr:
  471. act 'Hide the phone in your bra (<<will_cost>> Willpower)':
  472. *clr & cla
  473. gs 'willpower', 'misc', 'self', 'medium'
  474. gs 'willpower', 'pay', 'self'
  475. gs 'stat'
  476. demerit += 5
  477. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/nophone.jpg"></center>'
  478. 'You deftly shove the phone in your bra, and smile fiendishly as you see the indecisiveness on your teacher''s face.'
  479. 'You pretend it''s a perfectly normal place to store your phone, and use your cute voice as you tell him, "Is there a problem, Mr. Ivanov? Go ahead, take my phone if you don''t think I should have it." You thrust your chest forward as you encourage him, giving him a nice view of your cleavage - the outline of your phone very visible through the fabric.'
  480. 'His eyes narrow slightly then he smiles. He reaches inside your shirt and pulls your phone out. You and several other students gasp in surprise. You are shocked he did it. Then he walks back to the front of the class carrying the phone. "I expected nothing less from you Miss <<$pcs_lastname>>, you never fail to fall down to your lowest potential." Then he beings his lesson again.'
  481. !!this is added to the above if Sveta is not a nerd, but I am commenting it out for now because I need to write the afterschool scene first.
  482. !!'He adds to you "Come see me after school if you want your phone back, or I can just return it to your parents."'
  483. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  484. end
  485. elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
  486. act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  487. end
  488. end
  489. else
  490. act 'Keep using your phone (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  491. end
  492. else
  493. 'You play on your phone all class, you play a few games and text a few friends, look some stuff up. Anything to pass the time and before you know it the class is nearly over.'
  494. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'computer'
  495. end
  496. end
  497. end
  498. if $ARGS[0] = 'science':
  499. menu_off = 1
  500. pcs_grades += rand(0,1)
  501. intel_exp += rand(0,1)
  502. gs 'stat'
  503. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classsci.jpg"></center>'
  504. 'You go to your biology class and find a seat at your lab station. Before long all of your fellow students file in and takes their seats as well. Once the bell rings Miss Orlov takes roll call, you say here when your name is called. With that done, she gets up and starts writing on the blackboard, she is wearing a fairly short skirt that nearly rides to high when she reaches up to write at the top of the blackboard. Which the boys often encourage by asking her questions about what ever it is she has written at the top of the blackboard that day.'
  505. *nl
  506. 'She occasionally asks questions of the studens and those that get them right receive heaps of praise. Those that get them wrong, she takes the time to explain why they were wrong and what the correct answer is. Then making sure the student understands, once she is sure the student understands their mistake she moves on with her lesson. She is always quick to help anyone with a problem or answer questions about class, always with that shy smile of hers.'
  507. act 'Listen attentively to Miss Orlov':
  508. *clr & cla
  509. pcs_grades += rand(0,1)
  510. grupvalue[4] -= 1
  511. grupvalue[3] += 1
  512. intel_exp += rand(0,1)
  513. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  514. 'You listen attentively to Miss Orlov for the duration of the class. Today''s lesson was interesting and informative, and you feel you learned from taking part in class.'
  515. act 'Ask a question about the lesson':
  516. *clr & cla
  517. pcs_grades += rand(0,1)
  518. intel_exp += rand(0,1)
  519. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/ask.jpg"></center>'
  520. 'Miss Orlov nods approvingly. She happily spends some extra time explaining the topic again to you, and answers any extra questions you might have. She only moves on with the lesson once she is sure she has fully answered your question. You feel like you learned a lot, thoroughly understanding today''s lessons now.'
  521. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  522. end
  523. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  524. end
  525. act 'Don''t pay attention in class':
  526. *clr & cla
  527. pcs_grades -= rand(0,1)
  528. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  529. 'You quickly grow bored with the class and instead spend most of the time trying to browse the internet while Miss Orlov is busy or pay attention to your fellow students and what they are up to. You can see several of them seem to have the same idea as you do. The only times you pay attention is when she calls on you to answer one of the questions.'
  530. act 'Draw dick in margin':
  531. *clr & cla
  532. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/drawdick.jpg"></center>'
  533. 'You get bored during a quiz and start doodling, which turns into you just drawing dicks, with balls on the margins of the quiz. You even share your handwork with the girl sitting next to you, when she glances over.'
  534. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  535. end
  536. gs 'willpower', 'exhib', 'self', 'medium'
  537. if will_cost <= pcs_willpwr:
  538. act 'Flash boobs at Fedor (<<will_cost>> Willpower)':
  539. *clr & cla
  540. npc_rel['A5'] += 1
  541. gs 'willpower', 'exhib', 'self', 'medium'
  542. gs 'willpower', 'pay', 'self'
  543. gs 'exhibitionism', 1
  544. gs 'fame', 'pav', 'sex', 5
  545. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashboobs1.jpg"></center>'
  546. 'You notice Fedor glancing over you a few times and decided to play with him. The next time he looks over at you, while Mr. Yenotin back is turned, you pull your shirt open and expose your tits at him. His mouth drops open in shock as he stares at your exposed <<$titsize>>s. A couple of the others students notice what you are doing, most of them either grin, smile, or laugh at your antics, all but Lesco of course who stares openly with his mouth open. Andrey and Vanya smile as they watch, Stasya gives you a annoyed look when Andrey reacts, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  547. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  548. end
  549. else
  550. act 'Flash boobs at Fedor (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  551. end
  552. if $pantyworntype = 'none':
  553. gs 'willpower', 'exhib', 'self', 'medium'
  554. if will_cost <= pcs_willpwr:
  555. act 'Flash butt (<<will_cost>> Willpower)':
  556. *clr & cla
  557. gs 'willpower', 'exhib', 'self', 'medium'
  558. gs 'willpower', 'pay', 'self'
  559. gs 'exhibitionism', 2
  560. gs 'fame', 'pav', 'sex', 5
  561. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashbutt1.jpg"></center>'
  562. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you pull up the back of your skirt and expose your naked butt to anyone in class looking. Fedor''s mouth drops open and he just stares at your naked butt, Andrey and Vanya grin as they watch, Stasya gives you a annoyed look when Andrey reacts, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  563. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  564. end
  565. else
  566. act 'Flash butt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  567. end
  568. end
  569. if $pantyworntype ! 'none':
  570. gs 'willpower', 'exhib', 'self', 'medium'
  571. if will_cost <= pcs_willpwr:
  572. act 'Get up and flash panty clad ass (<<will_cost>> Willpower)':
  573. *clr & cla
  574. gs 'willpower', 'exhib', 'self', 'medium'
  575. gs 'willpower', 'pay', 'self'
  576. gs 'exhibitionism', 1
  577. gs 'fame', 'pav', 'sex', 3
  578. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesb' + rand(1,3) + '.jpg"></center>'
  579. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you pull up the back of your skirt and expose your panty clad ass to anyone in class looking. Fedor''s mouth drops open and he just stares at your butt, Andrey and Vanya grin as they watch, Stasya gives you a annoyed look when Andrey reacts, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  580. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  581. end
  582. else
  583. act 'Get up and flash panty clad ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  584. end
  585. gs 'willpower', 'exhib', 'self', 'medium'
  586. if will_cost <= pcs_willpwr:
  587. act 'Flash panties at desk (<<will_cost>> Willpower)':
  588. *clr & cla
  589. gs 'willpower', 'exhib', 'self', 'medium'
  590. gs 'willpower', 'pay', 'self'
  591. gs 'exhibitionism', 1
  592. gs 'fame', 'pav', 'sex', 2
  593. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesd' + rand(1,5) + '.jpg"></center>'
  594. 'While Miss Orlov back is turned, you spread your legs wide, and pull up the front of your skirt, while sitting at your desk. Which shows off your panties to anyone that looks your way. A couple of the others students notice what you are doing, Fedor''s mouth drops open and he just stares at your panties, Andrey and Vanya grin as they watch, Stasya gives you a annoyed look when Andrey reacts, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  595. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  596. end
  597. else
  598. act 'Flash panties at desk (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  599. end
  600. gs 'willpower', 'exhib', 'self', 'medium'
  601. if will_cost <= pcs_willpwr:
  602. act 'Get up and flash panties (<<will_cost>> Willpower)':
  603. *clr & cla
  604. gs 'willpower', 'exhib', 'self', 'medium'
  605. gs 'willpower', 'pay', 'self'
  606. gs 'exhibitionism', 1
  607. gs 'fame', 'pav', 'sex', 3
  608. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesf' + rand(1,3) + '.jpg"></center>'
  609. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you turn to face the glance like you are about to walk back to your seat when, you pull up your skirt and expose your panties to anyone in class looking. Fedor''s mouth drops open and he just stares at your panties, Andrey and Vanya grin as they watch, Stasya gives you a annoyed look when Andrey reacts, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  610. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  611. end
  612. else
  613. act 'Get up and flash panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  614. end
  615. end
  616. act 'Take selfie':
  617. gs 'telefon', 'Phone_selfie_totals'
  618. *clr & cla
  619. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takeselfie.jpg"></center>'
  620. 'While looking at your phone you decided now would be a good time to take a selfie, but what kind of selfie should you take?'
  621. act 'Regular selfie':
  622. *clr & cla
  623. i = rand(1,classroom_clotot)
  624. dynamic 'school_classroom_closelfie[<<i>>] = 1'
  625. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/clothed/<<i>>.jpg"></center>'
  626. 'Just a cute selfie of your face during class, nothing to daring, yet it gives you something to do. You take several selfies of yourself until you find one you like. You keep it and delete the rest of them, you manage to take them with out Miss Orlov even noticing.'
  627. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  628. end
  629. gs 'willpower', 'exhib', 'self', 'medium'
  630. if will_cost <= pcs_willpwr:
  631. act 'Take bare breasts selfie (<<will_cost>> Willpower)':
  632. *clr & cla
  633. gs 'willpower', 'exhib', 'self', 'medium'
  634. gs 'willpower', 'pay', 'self'
  635. gs 'exhibitionism', 1
  636. gs 'fame', 'pav', 'sex', 3
  637. i = rand(1,classroom_titflash)
  638. dynamic 'school_classroom_titflash[<<i>>] = 1'
  639. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/titflash/<<i>>.jpg"></center>'
  640. 'Feeling particularily brash you decide a selfie of your bare breasts in the middle of class will be a great idea. Maybe you will share it and maybe not. But either way it should be fun and might be useful for teasing someone later. You glance around and when everyone is busy, you pull open your shirt and expose your tits. You take a couple of quick selfies of your exposed breasts until you get one you really like.'+iif(pcs_cupsize >= 30, ' Your fight with your blouse to cover yourself back up. Once it is finally back in place you take a look around and see a few grinning faces among your classmates. ', '')+'You save that one to your phone and delete the rest.'
  641. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  642. end
  643. else
  644. act 'Take bare breasts selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  645. end
  646. if $pantyworntype ! 'none':
  647. gs 'willpower', 'exhib', 'self', 'medium'
  648. if will_cost <= pcs_willpwr:
  649. act 'Take bare pussy selfie (<<will_cost>> Willpower)':
  650. *clr & cla
  651. gs 'willpower', 'exhib', 'self', 'medium'
  652. gs 'willpower', 'pay', 'self'
  653. gs 'exhibitionism', 3
  654. gs 'fame', 'pav', 'sex', 3
  655. i = rand(1,classroom_pussyflash)
  656. dynamic 'school_classroom_pussyflash[<<i>>] = 1'
  657. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/pussyflash/<<i>>.jpg"></center>'
  658. 'You can feel the excitement in your pussy as you imagine yourself baring it in class to take a selfie of it. A selfie of your bare pussy in the middle of class would be stimulating memory, maybe you will share it and maybe not. But either way it should be fun and could be fun to send to someone later to tease them with it. You glance around and when everyone is busy, you pull open up your skirt and pull your panties aside until your pussy is exposed. You take a couple of quick selfies of your exposed pussy until you get one you really like. You save that one to your phone and delete the rest.'
  659. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  660. end
  661. else
  662. act 'Take bare pussy selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  663. end
  664. end
  665. end
  666. if $pantyworntype ! 'none':
  667. gs 'willpower', 'exhib', 'self', 'medium'
  668. if will_cost <= pcs_willpwr:
  669. act 'Remove panties (<<will_cost>> Willpower)':
  670. *clr & cla
  671. $pantyworntype = 'none'
  672. gs 'willpower', 'exhib', 'self', 'medium'
  673. gs 'willpower', 'pay', 'self'
  674. gs 'exhibitionism', 1
  675. gs 'fame', 'pav', 'sex', 5
  676. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/removepanties.jpg"></center>'
  677. 'While sitting at your desk bored you notice no one is looking at you, you decided to take your panties off. You don''t know why, just something to do, really. It doesn''t hurt that it is going to be a thrill. You reach under your skirt and pull them down slowly. At first you have to work against your own weight as you pull them past your bottom. Much to your surprise no one notices the movement and your carry on. Once you get them past your knees you open your legs slightly and your panties fall down around your ankles. You step out of them and as you are bending over to pick them up you realize a couple of the other students have noticed. You rush to pick up your panties and stuff them into your purse and ignore the looks of the other students.'
  678. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  679. end
  680. else
  681. act 'Remove panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  682. end
  683. end
  684. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  685. end
  686. act'Daydream':
  687. *clr & cla
  688. pcs_grades -= rand(0,1)
  689. daydream = rand(1,6)
  690. if daydream = 1:
  691. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  692. 'Today''s lessons don''t particularly interest you, and you find yourself drifting off constantly. After a while you notice Miss Orlov has stopped teaching and is looking at you intently, asking you to pay attention. Apparently this is already the third time she asked; you missed the first two completely while you were lost in your own thoughts. The whole class is looking at you now.'
  693. '"<<$pcs_nickname>>, please pay attention, this is very important. Today''s topic is going to be on the exam for sure."'
  694. act 'Reluctantly pay attention':
  695. *clr & cla
  696. pcs_grades += rand(0,1)
  697. intel_exp += rand(0,1)
  698. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  699. 'Miss Orlov smiles as you seem to be paying attention and quickly goes back into her lesson. She doesn''t seem to notice when you roll your eyes at her, you sit through the rest of the lesson in silence, at least pretending to pay attention sometimes. You don''t learn anything today, though.'
  700. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  701. end
  702. act 'Try to focus on the lesson':
  703. *clr & cla
  704. pcs_grades += rand(0,1)
  705. grupvalue[4] -= 1
  706. grupvalue[3] += 1
  707. intel_exp += rand(0,1)
  708. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  709. 'You don''t want to get in trouble so you straighten up in your chair. "Sorry." Miss Orlov gives a friend smile and nod at your apology and then goes back to teaching the class, you do your best to pay attention for the rest of class.'
  710. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  711. end
  712. gs 'willpower', 'misc', 'self', 'medium'
  713. if will_cost <= pcs_willpwr:
  714. act 'Be a smart ass (<<will_cost>> Willpower)':
  715. *clr & cla
  716. gs 'willpower', 'pay', 'self'
  717. gs 'stat'
  718. demerit += 1
  719. grupvalue[1] += 1
  720. grupvalue[4] += 1
  721. grupvalue[3] -= 1
  722. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  723. '"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" you answer boldly.'
  724. 'The whole class bursts into loud laughter, Miss Orlov seems a bit stunned by your comment, after a moment to regain her composure she quietly asks you "Miss <<$pcs_lastname>>, please leave class and report to the principal."'
  725. act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'
  726. gs 'willpower', 'misc', 'resist', 'medium'
  727. if will_cost <= pcs_willpwr:
  728. act 'Don''t leave the classroom (<<will_cost>> Willpower)':
  729. *clr & cla
  730. gs 'willpower', 'pay', 'resist'
  731. gs 'stat'
  732. demerit += 1
  733. grupvalue[4] += 1
  734. grupvalue[3] -= 1
  735. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bitchflip.jpg"></center>'
  736. '"What good would that do? Are you trying to get me to start smoking to pass the time? I''m not interrupting your classes, just leave me alone.'
  737. 'Your teacher doesn''t know what to say, and after a while just decides to continue her classes. Obviously, you don''t learn anything today. You hear one of the boys behind you mutter your being a bitch, you turn around and flip him off.'
  738. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  739. end
  740. else
  741. act 'Don''t leave the classroom (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  742. end
  743. end
  744. else
  745. act 'Be a smart ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  746. end
  747. elseif daydream = 2:
  748. *clr
  749. if pcs_grades >= 80:
  750. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  751. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, as you keep dozing off.'
  752. 'You''re snapped back to consciousness when you hear Miss Orlov call your name. Everyone looks at you expectantly, and you realize that you were just asked a question about the topic.'
  753. 'Taking your best guess at what the teacher might be asking, the entire class is shocked as you somehow manage to produce the correct answer, since it must''ve been obvious to everyone that you were sleeping. Miss Orlov tells you, "Very good, but please try to stay awake and pay attention. I know biology might seem boring to you now, but it is something you need to know."'
  754. else
  755. pcs_mood -= 5
  756. gs 'stat'
  757. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  758. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, sense you keep dozing off.'
  759. 'You''re snapped back to consciousness when you hear Miss Orlov call your name. Everyone is looking at you expectantly, realizing that you were just asked a question about the topic.'
  760. *nl
  761. 'You take your best guess at what they might be asking. Some of the other kids snicker when you say something that''s obviously wrong. Miss Orlov tells you the correct answer. "<<$pcs_nickname>> you''re a smart girl, I know you know this stuff. You only have to apply yourself and the sky is the limit for you. So please pay attention." She says trying to encourage you.'
  762. 'It was an embarrassing experience having everyone staring at you, but the sudden adrenaline surge helps you to stay awake during the rest of the period.'
  763. end
  764. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  765. elseif daydream = 3:
  766. !!reminder to add trigger so this doesn''t trigger if player selects straight sexual orientation at character creation.
  767. *clr & cla
  768. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  769. 'You fall asleep, you are suddenly awoken by a loud noise. You jerk up startled looking around. All the other students are gone, you notice Miss Orlov standing near her desk startng at you. She looks different. Is that a leather skirt and bra? "This is the last time you fall asleep in my class <<$pcs_lastname>> now come up here for your punishment. This seems so surreal, this can''t be real, she slaps her desk. With that you get up and walk up to her desk.'
  770. act 'Walk up to her desk': gt 'gschool_lessons2', 'arina_dream'
  771. else
  772. *clr & cla
  773. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  774. 'You finally drift off to sleep, the bell that ends class startles you awake. You look around in a bit of a dazed confusion. Miss Orlov seems not to have noticed, same with most of your fellow students but a couple of them giving you a knowing smile. They obviously noticed you sleeping. You gather up your stuff and head to your next period.'
  775. act 'Leave class': gt 'gschool_lessons', 'short_break'
  776. end
  777. end
  778. act'Play with your phone':
  779. *clr & cla
  780. pcs_grades -= rand(0,1)
  781. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  782. 'The lesson is so boring that you have to do something to keep yourself entertained. You take out your phone and begin to play a mobile game, hoping the lesson will be over soon.'
  783. playphone = rand(1,2)
  784. if playphone = 1:
  785. *clr & cla
  786. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  787. 'You hear a feminine throat clearing, you look up and see Miss Orlov looking at you. "Please put your phone away <<$pcs_nickname>> and pay attention."'
  788. act 'Put your phone away':
  789. *clr & cla
  790. grupvalue[4] -= 1
  791. grupvalue[3] += 1
  792. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  793. 'You decide not to aggravate the situation and put your phone away. Miss Orlov gives you appreciative smile before continue with the lesson.'
  794. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  795. end
  796. gs 'willpower', 'misc', 'self', 'medium'
  797. if will_cost <= pcs_willpwr:
  798. act 'Keep using your phone (<<will_cost>> Willpower)':
  799. *clr & cla
  800. gs 'willpower', 'pay', 'self'
  801. grupvalue[4] += 1
  802. demerit += 5
  803. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  804. 'Even though Miss Orlov saw you use your phone. You don''t care and just keep browsing the internet. Realizing you still won''t put the phone away, Miss Orlov walks over to your desk.'
  805. gs 'willpower', 'exhib', 'self'
  806. if will_cost <= pcs_willpwr:
  807. act 'Take photos under your skirt (<<will_cost>> Willpower)':
  808. *clr & cla
  809. gs 'willpower', 'exhib', 'self'
  810. gs 'willpower', 'pay', 'self'
  811. gs 'stat'
  812. if $pantyworntype ! 'none':
  813. gs 'exhibitionism', 1
  814. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
  815. else
  816. gs 'exhibitionism', 2
  817. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
  818. end
  819. 'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Miss Orlov walking towards your desk.'
  820. 'When Miss Orlov arrives at your desk, she tells you, "Please give me your phone <<$pcs_nickname>>, this is important you need to pay attention."'
  821. 'You hand over your phone, the screen still on, with the last picture you took still on the screen of the phone.'
  822. *nl
  823. 'Miss Orlov looks at what''s on the screen and she blushes deep red, quickly turning your phone off. She walks back to the head of class and takes a moment to compose herself. She then continues the lesson telling you, "I''m holding onto your phone for now, <<$pcs_nickname>>. You can have it back after class."'
  824. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  825. end
  826. else
  827. act 'Take photos under your skirt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  828. end
  829. gs 'willpower', 'misc', 'self', 'medium'
  830. if $braworntype ! 'none' and will_cost <= pcs_willpwr:
  831. act 'Hide the phone in your bra (<<will_cost>> Willpower)':
  832. *clr & cla
  833. gs 'willpower', 'misc', 'self', 'medium'
  834. gs 'willpower', 'pay', 'self'
  835. gs 'stat'
  836. demerit += 5
  837. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/nophone.jpg"></center>'
  838. 'You deftly shove the phone in your bra, and smile fiendishly as you see the indecisiveness on your teacher''s face.'
  839. 'You pretend it''s a perfectly normal place to store your phone, and use your cute voice as you tell him, "Is there a problem, Miss Orlov? Go ahead, take my phone if you don''t think I should have it." You thrust your chest forward as you encourage her, giving him a nice view of your cleavage - the outline of your phone very visible through the fabric.'
  840. *nl
  841. 'She only pauses a moment more and then to your surprise she uses two fingers to pluck the phone from your bra. She smiles at your reaction and then begins to teach class again. "I''m holding onto your phone for now, <<$pcs_nickname>>. You can have it back after class."'
  842. act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'
  843. end
  844. elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
  845. act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  846. end
  847. end
  848. else
  849. act 'Keep using your phone (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  850. end
  851. else
  852. 'You play on your phone all class, you play a few games and text a few friends, look some stuff up. Anything to pass the time and before you know it the class is nearly over.'
  853. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  854. end
  855. end
  856. end
  857. if $ARGS[0] = 'music':
  858. menu_off = 1
  859. pcs_grades += rand(0,1)
  860. instrmusic_exp += rand(1,2)
  861. vokal_exp += rand(1,2)
  862. chrsm_exp += rand(1,2)
  863. gs 'stat'
  864. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classmusic.jpg"></center>'
  865. 'You sit in the classroom and listen to Mr Vasilyev go on about how great music is while you wait for class to start. You do have him one thing, he is always up beat and positive about teaching music and encourages all of his students to take part.'
  866. act 'Listen attentively to Mr. Vasilyev':
  867. *clr & cla
  868. grupvalue[4] -= 1
  869. grupvalue[3] += 1
  870. pcs_grades += rand(0,1)
  871. instrmusic_exp += rand(1,2)
  872. vokal_exp += rand(1,2)
  873. chrsm_exp += rand(1,2)
  874. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  875. 'You listen attentively to Mr. Vasilyev for the duration of the class. Today''s lesson was interesting and informative, and you feel you learned a lot about the history of music and famous artist.'
  876. act 'Ask a question about the lesson':
  877. *clr & cla
  878. instrmusic_exp += rand(0,1)
  879. vokal_exp += rand(0,1)
  880. chrsm_exp += rand(0,1)
  881. pcs_grades += rand(0,1)
  882. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classmusic.jpg"></center>'
  883. 'Mr. Vasilyev smiles, always happy to see his students engaged in his class. He happily spends some extra time explaining the topic again, and answers any extra questions you might have. You feel smarter, thoroughly understanding today''s lessons now.'
  884. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  885. end
  886. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  887. end
  888. act 'Don''t pay attention in class':
  889. *clr & cla
  890. pcs_grades -= rand(0,1)
  891. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classmusic.jpg"></center>'
  892. 'Mr. Vasilyev has go on one of his epically long indepth explanations about one of the music styles and how it influenced society in all sorts of ways and in return was influenced by current events. You thought this was about music not history.'
  893. act 'Draw dick in margin':
  894. *clr & cla
  895. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/drawdick.jpg"></center>'
  896. 'You get bored during a quiz and start doodling, which turns into you just drawing dicks, with balls on the margins of the quiz. You even share your handwork with the girl sitting next to you, when she glances over.'
  897. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  898. end
  899. gs 'willpower', 'exhib', 'self', 'medium'
  900. if will_cost <= pcs_willpwr:
  901. act 'Flash boobs at Petka (<<will_cost>> Willpower)':
  902. *clr & cla
  903. npc_rel['A6'] += 1
  904. gs 'willpower', 'exhib', 'self', 'medium'
  905. gs 'willpower', 'pay', 'self'
  906. gs 'exhibitionism', 1
  907. gs 'fame', 'pav', 'sex', 5
  908. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashboobs1.jpg"></center>'
  909. 'You notice Petka glancing over you a few times and decided to play with him. The next time he looks over at you, while Mr. Yenotin back is turned, you pull your shirt open and expose your tits at him. His mouth drops open in shock as he stares at your exposed <<$titsize>>s. A couple of the others students notice what you are doing, most of them either grin, smile, or laugh at your antics, all but Lesco of course who stares openly with his mouth open. Lavrenti tries to take a picture but you close your shirt before he gets his phone up. Katja looks shocked then grins at what you are doing, Bella gives you a slightly disgusted look before turning away, Lariska and Lina smile about it, then Lina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  910. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  911. end
  912. else
  913. act 'Flash boobs at Petka (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  914. end
  915. if $pantyworntype = 'none':
  916. gs 'willpower', 'exhib', 'self', 'medium'
  917. if will_cost <= pcs_willpwr:
  918. act 'Flash butt (<<will_cost>> Willpower)':
  919. *clr & cla
  920. gs 'willpower', 'exhib', 'self', 'medium'
  921. gs 'willpower', 'pay', 'self'
  922. gs 'exhibitionism', 2
  923. gs 'fame', 'pav', 'sex', 5
  924. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashbutt1.jpg"></center>'
  925. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Vasilyev desk. Making sure Mr. Vasilyev isn''t looking you pull up the back of your skirt and expose your naked butt to anyone in class looking. Lavrenti tries to take a picture but you drop you skirt back in place before he gets his phone up. Petka''s mouth drops open and he just stares at your naked butt, Katja looks shocked then grins at what you are doing, Bella gives you a slightly disgusted look before turning away, Lariska and Lina smile about it, then Lina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  926. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  927. end
  928. else
  929. act 'Flash butt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  930. end
  931. end
  932. if $pantyworntype ! 'none':
  933. gs 'willpower', 'exhib', 'self', 'medium'
  934. if will_cost <= pcs_willpwr:
  935. act 'Get up and flash panty clad ass (<<will_cost>> Willpower)':
  936. *clr & cla
  937. gs 'willpower', 'exhib', 'self', 'medium'
  938. gs 'willpower', 'pay', 'self'
  939. gs 'exhibitionism', 1
  940. gs 'fame', 'pav', 'sex', 3
  941. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesb' + rand(1,3) + '.jpg"></center>'
  942. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Vasilyev desk. Making sure Mr. Vasilyev isn''t looking you pull up the back of your skirt and expose your panty clad ass to anyone in class looking. Lavrenti tries to take a picture but you drop you skirt back in place before he gets his phone up. Petka''s mouth drops open and he just stares at your naked butt, Katja looks shocked then grins at what you are doing, Bella gives you a slightly disgusted look before turning away, Lariska and Lina smile about it, then Lina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  943. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  944. end
  945. else
  946. act 'Get up and flash panty clad ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  947. end
  948. gs 'willpower', 'exhib', 'self', 'medium'
  949. if will_cost <= pcs_willpwr:
  950. act 'Flash panties at desk (<<will_cost>> Willpower)':
  951. *clr & cla
  952. gs 'willpower', 'exhib', 'self', 'medium'
  953. gs 'willpower', 'pay', 'self'
  954. gs 'exhibitionism', 1
  955. gs 'fame', 'pav', 'sex', 2
  956. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesd' + rand(1,5) + '.jpg"></center>'
  957. 'While Mr. Vasilyev back is turned, you spread your legs wide, and pull up the front of your skirt, while sitting at your desk. Which shows off your panties to anyone that looks your way. A couple of the others students notice what you are doing, Lavrenti tries to take a picture but you close your legs before he gets his phone up. Petka''s mouth drops open and he just stares at your naked butt, Katja looks shocked then grins at what you are doing, Bella gives you a slightly disgusted look before turning away, Lariska and Lina smile about it, then Lina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  958. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  959. end
  960. else
  961. act 'Flash panties at desk (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  962. end
  963. gs 'willpower', 'exhib', 'self', 'medium'
  964. if will_cost <= pcs_willpwr and $pantyworntype ! 'none':
  965. act 'Get up and flash panties (<<will_cost>> Willpower)':
  966. *clr & cla
  967. gs 'willpower', 'exhib', 'self', 'medium'
  968. gs 'willpower', 'pay', 'self'
  969. gs 'exhibitionism', 1
  970. gs 'fame', 'pav', 'sex', 3
  971. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesf' + rand(1,3) + '.jpg"></center>'
  972. 'Near the end of class you get up and act like you are checking one of the books for something near Mr. Vasilyev desk. Making sure Mr. Vasilyev isn''t looking you turn to face the glance like you are about to walk back to your seat when, you pull up your skirt and expose your panties to anyone in class looking. Lavrenti tries to take a picture but you drop you skirt back in place before he gets his phone up. Petka''s mouth drops open and he just stares at your naked butt, Katja looks shocked then grins at what you are doing, Bella gives you a slightly disgusted look before turning away, Lariska and Lina smile about it, then Lina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  973. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  974. end
  975. else
  976. act 'Get up and flash panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  977. end
  978. end
  979. act 'Take selfie':
  980. gs 'telefon', 'Phone_selfie_totals'
  981. *clr & cla
  982. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takeselfie.jpg"></center>'
  983. 'While looking at your phone you decided now would be a good time to take a selfie, but what kind of selfie should you take?'
  984. act 'Regular selfie':
  985. *clr & cla
  986. i = rand(1,classroom_clotot)
  987. dynamic 'school_classroom_closelfie[<<i>>] = 1'
  988. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/clothed/<<i>>.jpg"></center>'
  989. 'Just a cute selfie of your face during class, nothing to daring, yet it gives you something to do. You take several selfies of yourself until you find one you like. You keep it and delete the rest of them, you manage to take them with out Mr. Vasilyev even noticing.'
  990. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  991. end
  992. gs 'willpower', 'exhib', 'self', 'medium'
  993. if will_cost <= pcs_willpwr:
  994. act 'Take bare breasts selfie (<<will_cost>> Willpower)':
  995. *clr & cla
  996. gs 'willpower', 'exhib', 'self', 'medium'
  997. gs 'willpower', 'pay', 'self'
  998. gs 'exhibitionism', 1
  999. gs 'fame', 'pav', 'sex', 3
  1000. i = rand(1,classroom_titflash)
  1001. dynamic 'school_classroom_titflash[<<i>>] = 1'
  1002. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/titflash/<<i>>.jpg"></center>'
  1003. 'Feeling particularily brash you decide a selfie of your bare breasts in the middle of class will be a great idea. Maybe you will share it and maybe not. But either way it should be fun and might be useful for teasing someone later. You glance around and when everyone is busy, you pull open your shirt and expose your tits. You take a couple of quick selfies of your exposed breasts until you get one you really like.'+iif(pcs_cupsize >= 30, ' Your fight with your blouse to cover yourself back up. Once it is finally back in place you take a look around and see a few grinning faces among your classmates. ', '')+'You save that one to your phone and delete the rest.'
  1004. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1005. end
  1006. else
  1007. act 'Take bare breasts selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1008. end
  1009. if $pantyworntype ! 'none':
  1010. gs 'willpower', 'exhib', 'self', 'medium'
  1011. if will_cost <= pcs_willpwr:
  1012. act 'Take bare pussy selfie (<<will_cost>> Willpower)':
  1013. *clr & cla
  1014. gs 'willpower', 'exhib', 'self', 'medium'
  1015. gs 'willpower', 'pay', 'self'
  1016. gs 'exhibitionism', 3
  1017. gs 'fame', 'pav', 'sex', 3
  1018. i = rand(1,classroom_pussyflash)
  1019. dynamic 'school_classroom_pussyflash[<<i>>] = 1'
  1020. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/pussyflash/<<i>>.jpg"></center>'
  1021. 'You can feel the excitement in your pussy as you imagine yourself baring it in class to take a selfie of it. A selfie of your bare pussy in the middle of class would be stimulating memory, maybe you will share it and maybe not. But either way it should be fun and could be fun to send to someone later to tease them with it. You glance around and when everyone is busy, you pull open up your skirt and pull your panties aside until your pussy is exposed. You take a couple of quick selfies of your exposed pussy until you get one you really like. You save that one to your phone and delete the rest.'
  1022. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1023. end
  1024. else
  1025. act 'Take bare pussy selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1026. end
  1027. end
  1028. end
  1029. act 'Tease Lavrenti':
  1030. *clr & cla
  1031. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/tease.jpg"></center>'
  1032. 'You get Lavrenti''s attention by smiling at him when he looks your direction. Then you lean back in your chair and stretch your arms back over your head, causing your <<$titsize>> breasts to thrust out as you do.'+iif(pcs_cupsize >= 30, ' Your uniform stretches to its limits threatening to pop buttons. ', ' The stretch finally helps your uniform stretch around your breasts to accent what little you do have for breasts. ')+'He watches you intently while you bite your lower lip looking all coy and seductive to him. Once you finish your stretch you pretend to act all innocent, like you didn''t do anything.'
  1033. 'Lavrenti glances around then leans over a bit to say. "Come on don''t be like that <<$pcs_nickname>> show me a little more."'
  1034. 'Before you can decide what to do Katja who watched it all gets your attention.'
  1035. act 'Katja''s suggestion.':
  1036. *clr & cla
  1037. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb1.jpg"></center>'
  1038. 'Katja leans over and whispers in your ear. "Flash him your tits." She says with a giggle.'
  1039. 'You are a bit taken back by that, what if someone else would see. "Why would I do that?" You ask her.'
  1040. 'She grins. "To tease him of course, just like your stretch. Go on do it or flash him your panties." Well yeah you did tease him but this is a bit much... isn''t it?'
  1041. gs 'willpower', 'exhib', 'resist', 'medium'
  1042. if will_cost <= pcs_willpwr:
  1043. act 'Refuse to flash (<<will_cost>> Willpower)':
  1044. *clr & cla
  1045. gs 'willpower', 'pay', 'resist'
  1046. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  1047. 'You shake your head no, Lavrenti frowns. He obviously hear or guessed what Katja had tried to get you to do. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  1048. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1049. end
  1050. else
  1051. act 'Refuse to flash (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1052. end
  1053. act 'Flash your boobs':
  1054. *clr & cla
  1055. npc_rel['A155'] += 1
  1056. gs 'exhibitionism', 1
  1057. gs 'fame', 'pav', 'sex', 5
  1058. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb2.jpg"></center>'
  1059. 'She has a point it would be thrilling a even bigger tease than just stretching like that in front of him. You glance around and wait till no one but the two of them are looking. Then you lean back and pull up your shirt to expose your bare <<$titsize>> breasts. Your nipples get hard from the excitement. Lavrenti stares at your bare tits, looking almost entranced by them.'
  1060. act 'Put them away':
  1061. *clr & cla
  1062. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  1063. 'You pull your shirt down quickly when another student looks over, which causes Katja to giggle and Lavrenti to shake his head obviously already missing your tits. Several other students look over as if they just realized they miss something, you ignore their looks, Lavrenti''s stare and Katja''s giggles and wait for class to end.'
  1064. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1065. end
  1066. end
  1067. if $pantyworntype ! 'none':
  1068. act 'Flash your panties':
  1069. *clr & cla
  1070. gs 'fame', 'pav', 'sex', 1
  1071. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep1.jpg"></center>'
  1072. 'You turn towards Lavrenti so you are mostly facing him as you sit in your seat sideways. You pull your skirt up a little showing off your panties a little to Lavrenti which makes him grin wide. He motions for you to pull your skirt up higher to give him a better view.'
  1073. gs 'willpower', 'exhib', 'resist', 'medium'
  1074. if will_cost <= pcs_willpwr:
  1075. act 'Refuse (<<will_cost>> Willpower)':
  1076. *clr & cla
  1077. gs 'willpower', 'pay', 'resist'
  1078. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teaseb3.jpg"></center>'
  1079. 'You shake your head no, Lavrenti frowns, as you pull your skirt back down and then turn back to face the front of class. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  1080. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1081. end
  1082. else
  1083. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1084. end
  1085. act 'Raise your skirt more':
  1086. *clr & cla
  1087. npc_rel['A155'] += 1
  1088. gs 'fame', 'pav', 'sex', 1
  1089. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep2.jpg"></center>'
  1090. 'You pull your skirt up more so your whole panties are exposed for Lavrenti to look at. He grins wide as he stares at your panty covered pussy. You can tell he is hoping to see more, it is obviously by the way he is looking at you.'
  1091. act 'Continue':
  1092. *clr & cla
  1093. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep3.jpg"></center>'
  1094. 'Just then he reaches over and grabs the front of your panties and tries to pull them down to get a look at your pussy. You grab his hand just in time to stop him from doing it. "Come on <<$pcs_nickname>> show me your pussy." Lavrenti whispers to you as he keeps trying to tug your panties down.'
  1095. gs 'willpower', 'exhib', 'resist', 'medium'
  1096. if will_cost <= pcs_willpwr:
  1097. act 'Refuse (<<will_cost>> Willpower)':
  1098. *clr & cla
  1099. gs 'willpower', 'pay', 'resist'
  1100. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep5.jpg"></center>'
  1101. 'You forcefully pull his hand away, Lavrenti frowns, as you pull your skirt back down and then turn back to face the front of class. After a few moments the class goes back to normal and you find yourself once more bored and waiting for class to be over.'
  1102. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1103. end
  1104. else
  1105. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1106. end
  1107. act 'Show him your pussy':
  1108. *clr & cla
  1109. npc_rel['A155'] += 1
  1110. gs 'fame', 'pav', 'sex', 5
  1111. gs 'exhibitionism', 3
  1112. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep4.jpg"></center>'
  1113. 'Why not, it would be thrilling. "Let go and I will show you." You tell him. He pauses a moment but then lets go of your panties and keeps watching you. You lean back and lift one leg as you reach down and pull your panties aside to reveal you pussy for Lavrenti and anyone else to see who happens to look this way. Katja tries to sneak a peek as well. You can see the bulge in Lavrenti''s pants from here, he is obviously turned on by this.'
  1114. act 'Put your pussy away':
  1115. *clr & cla
  1116. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/teasep5.jpg"></center>'
  1117. 'After a couple of minutes you pull your panties back in place, close your legs, pull your skirt back down and then turn to face the front of class again. Lavrenti looks crest fallen obviously hoping for it to last longer, but you ignore his pleading looks and look to the front of the class but the thrill of what you just did keeps the rest of class from being boring.'
  1118. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1119. end
  1120. end
  1121. end
  1122. end
  1123. end
  1124. end
  1125. end
  1126. end
  1127. if $pantyworntype ! 'none':
  1128. gs 'willpower', 'exhib', 'self', 'medium'
  1129. if will_cost <= pcs_willpwr and $pantyworntype ! 'none':
  1130. act 'Remove panties (<<will_cost>> Willpower)':
  1131. *clr & cla
  1132. $pantyworntype = 'none'
  1133. gs 'willpower', 'exhib', 'self', 'medium'
  1134. gs 'willpower', 'pay', 'self'
  1135. gs 'exhibitionism', 1
  1136. gs 'fame', 'pav', 'sex', 5
  1137. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/removepanties.jpg"></center>'
  1138. 'While sitting at your desk bored you notice no one is looking at you, you decided to take your panties off. You don''t know why, just something to do, really. It doesn''t hurt that it is going to be a thrill. You reach under your skirt and pull them down slowly. At first you have to work against your own weight as you pull them past your bottom. Much to your surprise no one notices the movement and your carry on. Once you get them past your knees you open your legs slightly and your panties fall down around your ankles. You step out of them and as you are bending over to pick them up you realize a couple of the other students have noticed. You rush to pick up your panties and stuff them into your purse and ignore the looks of the other students.'
  1139. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1140. end
  1141. else
  1142. act 'Remove panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1143. end
  1144. end
  1145. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1146. end
  1147. act'Daydream':
  1148. *clr & cla
  1149. pcs_grades -= rand(0,1)
  1150. daydream = rand(1,4)
  1151. if daydream = 1:
  1152. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/caughtsleeping.jpg"></center>'
  1153. 'Today''s lessons don''t particularly interest you, and you find yourself drifting off constantly. After a while you notice Mr. Vasilyev has stopped teaching and is looking at you intently, asking you to pay attention. Apparently this is already the third time he asked; you missed the first two completely while you were lost in your own thoughts. The whole class is looking at you now.'
  1154. 'Mr. Vasilyev tries to convince you of the importance of todays lesson, "<<$pcs_nickname>>, please pay attention, this is very important. Today''s topic is going to be on the exam for sure."'
  1155. act 'Reluctantly pay attention':
  1156. *clr & cla
  1157. pcs_grades += rand(0,1)
  1158. instrmusic_exp += rand(0,1)
  1159. vokal_exp += rand(0,1)
  1160. chrsm_exp += rand(0,1)
  1161. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/angryteacher.jpg"></center>'
  1162. 'The eyes of Mr. Vasilyev grow narrower, and even though you roll your eyes at him, you sit through the rest of the lesson in silence, at least pretending to pay attention sometimes. You don''t learn anything today, though.'
  1163. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1164. end
  1165. act'Try to focus on the lesson':
  1166. *clr & cla
  1167. pcs_grades += rand(0,1)
  1168. grupvalue[4] -= 1
  1169. grupvalue[3] += 1
  1170. instrmusic_exp += rand(0,2)
  1171. vokal_exp += rand(0,2)
  1172. chrsm_exp += rand(0,1)
  1173. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/payattention.jpg"></center>'
  1174. 'You don''t want to get in trouble so you straighten up in your chair. "Sorry." The teacher gives you one final look and then goes back to teacher the class, you do your best to pay attention for the rest of class.'
  1175. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1176. end
  1177. gs 'willpower', 'misc', 'self', 'medium'
  1178. if will_cost <= pcs_willpwr:
  1179. act 'Be a smart ass (<<will_cost>> Willpower)':
  1180. *clr & cla
  1181. gs 'willpower', 'pay', 'self'
  1182. gs 'stat'
  1183. demerit += 1
  1184. grupvalue[1] += 1
  1185. grupvalue[4] += 1
  1186. grupvalue[3] -= 1
  1187. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1188. '"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" you answer boldly.'
  1189. 'The whole class bursts into loud laughter, and Mr. Vasilyev has a rough time getting everyone to quiet down.'
  1190. '"Miss <<$pcs_lastname>>, get out of class! Report to the Principal now!"'
  1191. act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
  1192. gs 'willpower', 'misc', 'self', 'medium'
  1193. if will_cost <= pcs_willpwr:
  1194. act 'Don''t leave the classroom (<<will_cost>> Willpower)':
  1195. *clr & cla
  1196. gs 'willpower', 'pay', 'resist'
  1197. gs 'stat'
  1198. demerit += 1
  1199. grupvalue[4] += 1
  1200. grupvalue[3] -= 1
  1201. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bitchflip.jpg"></center>'
  1202. '"What good would that do? Are you trying to get me to start smoking to pass the time? I''m not interrupting your classes, just leave me alone. I''m having some... girl problems. Would you like me to talk about those instead?" you answer brashly, not having any intentions of getting up.'
  1203. 'Your teacher doesn''t know what to say, and after a while just decides to continue his classes. Obviously, you don''t learn anything today. You hear one of the boys behind you mutter your being a bitch, you turn around and flip him off.'
  1204. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  1205. end
  1206. else
  1207. act 'Don''t leave the classroom (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1208. end
  1209. end
  1210. else
  1211. act 'Be a smart ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1212. end
  1213. elseif daydream = 2:
  1214. *clr
  1215. if pcs_grades >= 80:
  1216. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1217. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, as you keep dozing off.'
  1218. 'You''re snapped back to consciousness when you hear Mr. Vasilyev call your name. Everyone looks at you expectantly, and you realize that you were just asked a question about the topic.'
  1219. 'Taking your best guess at what the teacher might be asking, the entire class is shocked as you somehow manage to produce the correct answer, since it must''ve been obvious to everyone that you were sleeping. Mr. Vasilyev tells you, "Very good, but try and keep your head up during class, if you don''t mind."'
  1220. else
  1221. pcs_mood -= 5
  1222. gs 'stat'
  1223. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1224. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, sense you keep dozing off.'
  1225. 'You''re snapped back to consciousness when you hear Mr. Vasilyev call your name. Everyone is looking at you expectantly, realizing that you were just asked a question about the topic.'
  1226. 'You take your best guess at what they might be asking. Some of the other kids snicker when you say something that''s obviously wrong. Mr. Vasilyev chides you for sleeping in class, and asks for someone else to inform you of the correct answer.'
  1227. 'It was an embarrassing experience, but the sudden adrenaline surge helps you to stay awake during the rest of the period.'
  1228. end
  1229. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1230. else
  1231. *clr
  1232. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1233. 'You fell asleep and the end of class bell wakes you up.'
  1234. act 'Leave class': gt 'gschool_lessons', 'short_break'
  1235. end
  1236. end
  1237. act'Play with your phone':
  1238. *clr & cla
  1239. pcs_grades -= rand(0,1)
  1240. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  1241. 'The lesson is so boring that you have to do something to keep yourself entertained. You take out your phone and begin to play a mobile game, hoping the lesson will be over soon.'
  1242. playphone = rand(1,2)
  1243. if playphone = 1:
  1244. *clr & cla
  1245. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/caughtonphone.jpg"></center>'
  1246. 'You notice Mr. Vasilyev looking at you strictly; he must have noticed you''re not paying attention to his class.'
  1247. act 'Put your phone away':
  1248. *clr & cla
  1249. grupvalue[4] -= 1
  1250. grupvalue[3] += 1
  1251. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1252. 'You decide not to aggravate the situation and put your phone away. Mr. Vasilyev looks at you gratefully as they continues the class.'
  1253. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1254. end
  1255. gs 'willpower', 'misc', 'self', 'medium'
  1256. if will_cost <= pcs_willpwr:
  1257. act 'Keep using your phone (<<will_cost>> Willpower)':
  1258. *clr & cla
  1259. gs 'willpower', 'pay', 'self'
  1260. grupvalue[1] += 1
  1261. grupvalue[4] += 1
  1262. grupvalue[3] -= 1
  1263. demerit += 5
  1264. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/caughtonphone.jpg"></center>'
  1265. 'Even though Mr. Vasilyev saw you use your phone. You figure you can get away with it, and just keep browsing the internet. Realizing you still won''t put the phone away, Mr. Vasilyev walks over to your desk.'
  1266. act 'Hand over the phone':
  1267. *clr & cla
  1268. grupvalue[4] -= 1
  1269. grupvalue[3] += 3
  1270. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takephone.jpg"></center>'
  1271. 'Wow, they called your bluff. You decide it''s not worth the conflict, and silently hand your phone to Mr. Vasilyev.'
  1272. 'As they walk back to the front of the class, they say, "I''m holding onto your phone for now, Mrs. <<$pcs_lastname>>. You can have it back after class."'
  1273. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1274. end
  1275. gs 'willpower', 'exhib', 'self'
  1276. if will_cost <= pcs_willpwr:
  1277. act 'Take photos under your skirt (<<will_cost>> Willpower)':
  1278. *clr & cla
  1279. gs 'willpower', 'exhib', 'self'
  1280. gs 'willpower', 'pay', 'self'
  1281. gs 'stat'
  1282. if $pantyworntype ! 'none':
  1283. gs 'exhibitionism', 1
  1284. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
  1285. else
  1286. gs 'exhibitionism', 2
  1287. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
  1288. end
  1289. 'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mr. Vasilyev walking towards your desk.'
  1290. 'When the teacher arrives at your desk, they tell you, "And what could you be doing on your phone that''s more important than paying attention in class, Mrs. <<$pcs_lastname>>? Hand it over."'
  1291. '"Wouldn''t you like to know!" you tease. You hand over your phone, the screen still on, with the last picture you took still on the screen of the phone.'
  1292. 'Mr. Vasilyev looks at what''s on the screen and their face colors bright red as they turn the screen off and returns to the front of the class.'
  1293. 'As they get ready to continue the lesson they say, "I''m holding onto your phone for now, Mrs. <<$pcs_lastname>>. You can have it back after class."'
  1294. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  1295. end
  1296. else
  1297. '<br>You don''t have enough willpower to take an upskirt photo of yourself.'
  1298. end
  1299. gs 'willpower', 'misc', 'self', 'medium'
  1300. if $braworntype ! 'none' and will_cost <= pcs_willpwr:
  1301. act 'Hide the phone in your bra (<<will_cost>> Willpower)':
  1302. *clr & cla
  1303. gs 'willpower', 'misc', 'self', 'medium'
  1304. gs 'willpower', 'pay', 'self'
  1305. demerit += 5
  1306. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/nophone.jpg"></center>'
  1307. 'You deftly shove the phone in your bra, and smile fiendishly as you see the indecisiveness on your teacher''s face.'
  1308. 'You pretend it''s a perfectly normal place to store your phone, and use your cute voice as you tell him, "Is there a problem, Mr. Vasilyev? Go ahead, take my phone if you don''t think I should have it." You thrust your chest forward as you encourage him, giving him a nice view of your ample cleavage - the outline of your phone very visible through the fabric.'
  1309. 'Your teacher is completely flabbergasted by your move, and admits defeat. Deciding it''s not worth the effort to take your phone away from you without causing all sorts of awkward situations, he simply returns to the front of the class and continues his lessons. You don''t catch much of them though, you''re too busy browsing the internet after you pull your phone back out of your bra.'
  1310. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  1311. end
  1312. elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
  1313. act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1314. end
  1315. end
  1316. else
  1317. act 'Keep using your phone (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1318. end
  1319. else
  1320. 'You play on your phone all class, you play a few games and text a few friends, look some stuff up. Anything to pass the time and before you know it the class is nearly over.'
  1321. act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'music'
  1322. end
  1323. end
  1324. end
  1325. if $ARGS[0] = 'biology':
  1326. menu_off = 1
  1327. pcs_grades += rand(0,1)
  1328. intel_exp += rand(0,1)
  1329. gs 'stat'
  1330. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/classbiology.jpg"></center>'
  1331. 'You go to your biology class and find a seat at your lab station. Before long all of your fellow students file in and takes their seats as well. Once the bell rings Miss Orlov takes roll call, you say here when your name is called. With that done, she gets up and starts walking around the room explaining todays lessons. Occasionally stopping at each lab station to make sure the students are doing the work correctly, she often gives words of encouragement if things are going well or stops and helps the student understand what they are doing wrong.'
  1332. *nl
  1333. 'She occasionally asks questions and those that get them right, she heaps praise upon them. Those that get them wrong, she takes the time to explain why they were wrong and what the correct answer is. Then making sure the student understands, once she is sure the student understands their mistake she moves on with her lesson. She is always quick to help anyone with a problem or answer questions about class, always with that shy smile of hers.'
  1334. act 'Listen attentively to Miss Orlov':
  1335. *clr & cla
  1336. grupvalue[4] -= 1
  1337. grupvalue[3] += 1
  1338. intel_exp += rand(0,1)
  1339. pcs_grades += rand(0,1)
  1340. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  1341. 'You listen attentively to Miss Orlov for the duration of the class. Today''s lesson was interesting and informative, and you feel you learned from taking part in class.'
  1342. act 'Ask a question about the lesson':
  1343. *clr & cla
  1344. intel_exp += rand(1,2)
  1345. pcs_grades += rand(0,1)
  1346. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/ask.jpg"></center>'
  1347. 'Miss Orlov nods approvingly. She happily spends some extra time explaining the topic again to you, and answers any extra questions you might have. She only moves on with the lesson once she is sure she has fully answered your question. You feel like you learned a lot, thoroughly understanding today''s lessons now.'
  1348. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1349. end
  1350. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1351. end
  1352. act 'Don''t pay attention in class':
  1353. *clr & cla
  1354. pcs_grades -= rand(0,1)
  1355. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1356. 'You quickly grow bored with the class and instead spend most of the time trying to browse the internet while Miss Orlov is busy or pay attention to your fellow students and what they are up to. You can see several of them seem to have the same idea as you do. The only times you pay attention is when she calls on you to answer one of the questions.'
  1357. act 'Draw dick in margin':
  1358. *clr & cla
  1359. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/drawdick.jpg"></center>'
  1360. 'You get bored during a quiz and start doodling, which turns into you just drawing dicks, with balls on the margins of the quiz. You even share your handwork with the girl sitting next to you, when she glances over.'
  1361. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1362. end
  1363. gs 'willpower', 'exhib', 'self', 'medium'
  1364. if will_cost <= pcs_willpwr:
  1365. act 'Flash boobs at Lesco (<<will_cost>> Willpower)':
  1366. *clr & cla
  1367. npc_rel['A5'] += 1
  1368. gs 'willpower', 'exhib', 'self', 'medium'
  1369. gs 'willpower', 'pay', 'self'
  1370. gs 'exhibitionism', 1
  1371. gs 'fame', 'pav', 'sex', 5
  1372. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashboobs1.jpg"></center>'
  1373. 'You notice Fedor glancing over you a few times and decided to play with him. The next time he looks over at you, while Mr. Yenotin back is turned, you pull your shirt open and expose your tits at him. His mouth drops open in shock as he stares at your exposed <<$titsize>>s. A couple of the others students notice what you are doing, most of them either grin, smile, or laugh at your antics, all but Lesco of course who stares openly with his mouth open. Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  1374. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1375. end
  1376. else
  1377. act 'Flash boobs at Lesco (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1378. end
  1379. if $pantyworntype = 'none':
  1380. gs 'willpower', 'exhib', 'self', 'medium'
  1381. if will_cost <= pcs_willpwr:
  1382. act 'Flash butt (<<will_cost>> Willpower)':
  1383. *clr & cla
  1384. gs 'willpower', 'exhib', 'self', 'medium'
  1385. gs 'willpower', 'pay', 'self'
  1386. gs 'exhibitionism', 2
  1387. gs 'fame', 'pav', 'sex', 5
  1388. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashbutt1.jpg"></center>'
  1389. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you pull up the back of your skirt and expose your naked butt to anyone in class looking. Lesco''s and Artem''s mouths drops open as they just stare at your naked butt, Dan, Lavrenti and Lazar grin as they watch, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  1390. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1391. end
  1392. else
  1393. act 'Flash butt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1394. end
  1395. end
  1396. if $pantyworntype ! 'none':
  1397. gs 'willpower', 'exhib', 'self', 'medium'
  1398. if will_cost <= pcs_willpwr:
  1399. act 'Get up and flash panty clad ass (<<will_cost>> Willpower)':
  1400. *clr & cla
  1401. gs 'willpower', 'exhib', 'self', 'medium'
  1402. gs 'willpower', 'pay', 'self'
  1403. gs 'exhibitionism', 1
  1404. gs 'fame', 'pav', 'sex', 3
  1405. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesb' + rand(1,3) + '.jpg"></center>'
  1406. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you pull up the back of your skirt and expose your panty clad ass to anyone in class looking. Lesco''s and Artem''s mouths drops open as they just stare at your butt, Dan, Lavrenti and Lazar grin as they watch, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  1407. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1408. end
  1409. else
  1410. act 'Get up and flash panty clad ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1411. end
  1412. gs 'willpower', 'exhib', 'self', 'medium'
  1413. if will_cost <= pcs_willpwr:
  1414. act 'Flash panties at desk (<<will_cost>> Willpower)':
  1415. *clr & cla
  1416. gs 'willpower', 'exhib', 'self', 'medium'
  1417. gs 'willpower', 'pay', 'self'
  1418. gs 'exhibitionism', 1
  1419. gs 'fame', 'pav', 'sex', 2
  1420. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesd' + rand(1,5) + '.jpg"></center>'
  1421. 'While Miss Orlov back is turned, you spread your legs wide, and pull up the front of your skirt, while sitting at your desk. Which shows off your panties to anyone that looks your way. A couple of the others students notice what you are doing, Lesco''s and Artem''s mouths drops open as they just stare at your panties, Dan, Lavrenti and Lazar grin as they watch, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  1422. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1423. end
  1424. else
  1425. act 'Flash panties at desk (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1426. end
  1427. gs 'willpower', 'exhib', 'self', 'medium'
  1428. if will_cost <= pcs_willpwr:
  1429. act 'Get up and flash panties (<<will_cost>> Willpower)':
  1430. *clr & cla
  1431. gs 'willpower', 'exhib', 'self', 'medium'
  1432. gs 'willpower', 'pay', 'self'
  1433. gs 'exhibitionism', 1
  1434. gs 'fame', 'pav', 'sex', 3
  1435. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/flashpantiesf' + rand(1,3) + '.jpg"></center>'
  1436. 'Near the end of class you get up and act like you are checking one of the books for something near Miss Orlov desk. Making sure Miss Orlov isn''t looking you turn to face the glance like you are about to walk back to your seat when, you pull up your skirt and expose your panties to anyone in class looking. Lesco''s and Artem''s mouths drops open as they just stare at your panties, Dan, Lavrenti and Lazar grin as they watch, while Irina starts texting on her phone at once. You are sure she is texting everyone what you just did.'
  1437. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1438. end
  1439. else
  1440. act 'Get up and flash panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1441. end
  1442. end
  1443. act 'Take selfie':
  1444. *clr & cla
  1445. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/takeselfie.jpg"></center>'
  1446. 'While looking at your phone you decided now would be a good time to take a selfie, but what kind of selfie should you take?'
  1447. act 'Regular selfie':
  1448. *clr & cla
  1449. i = rand(1,classroom_clotot)
  1450. dynamic 'school_classroom_closelfie[<<i>>] = 1'
  1451. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/clothed/<<i>>.jpg"></center>'
  1452. 'Just a cute selfie of your face during class, nothing to daring, yet it gives you something to do. You take several selfies of yourself until you find one you like. You keep it and delete the rest of them, you manage to take them with out Miss Orlov even noticing.'
  1453. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1454. end
  1455. gs 'willpower', 'exhib', 'self', 'medium'
  1456. if will_cost <= pcs_willpwr:
  1457. act 'Take bare breasts selfie (<<will_cost>> Willpower)':
  1458. *clr & cla
  1459. gs 'willpower', 'exhib', 'self', 'medium'
  1460. gs 'willpower', 'pay', 'self'
  1461. gs 'exhibitionism', 1
  1462. gs 'fame', 'pav', 'sex', 3
  1463. i = rand(1,classroom_titflash)
  1464. dynamic 'school_classroom_titflash[<<i>>] = 1'
  1465. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/titflash/<<i>>.jpg"></center>'
  1466. 'Feeling particularily brash you decide a selfie of your bare breasts in the middle of class will be a great idea. Maybe you will share it and maybe not. But either way it should be fun and might be useful for teasing someone later. You glance around and when everyone is busy, you pull open your shirt and expose your tits. You take a couple of quick selfies of your exposed breasts until you get one you really like.'+iif(pcs_cupsize >= 30, ' Your fight with your blouse to cover yourself back up. Once it is finally back in place you take a look around and see a few grinning faces among your classmates. ', '')+'You save that one to your phone and delete the rest.'
  1467. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1468. end
  1469. else
  1470. act 'Take bare breasts selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1471. end
  1472. if $pantyworntype ! 'none':
  1473. gs 'willpower', 'exhib', 'self', 'medium'
  1474. if will_cost <= pcs_willpwr:
  1475. act 'Take bare pussy selfie (<<will_cost>> Willpower)':
  1476. *clr & cla
  1477. gs 'willpower', 'exhib', 'self', 'medium'
  1478. gs 'willpower', 'pay', 'self'
  1479. gs 'exhibitionism', 3
  1480. gs 'fame', 'pav', 'sex', 3
  1481. i = rand(1,classroom_pussyflash)
  1482. dynamic 'school_classroom_pussyflash[<<i>>] = 1'
  1483. '<center><img <<$set_imgh>> src="images/pc/selfies/school_classroom/pussyflash/<<i>>.jpg"></center>'
  1484. 'You can feel the excitement in your pussy as you imagine yourself baring it in class to take a selfie of it. A selfie of your bare pussy in the middle of class would be stimulating memory, maybe you will share it and maybe not. But either way it should be fun and could be fun to send to someone later to tease them with it. You glance around and when everyone is busy, you pull open up your skirt and pull your panties aside until your pussy is exposed. You take a couple of quick selfies of your exposed pussy until you get one you really like. You save that one to your phone and delete the rest.'
  1485. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1486. end
  1487. else
  1488. act 'Take bare pussy selfie (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1489. end
  1490. end
  1491. end
  1492. if $pantyworntype ! 'none':
  1493. gs 'willpower', 'exhib', 'self', 'medium'
  1494. if will_cost <= pcs_willpwr:
  1495. act 'Remove panties (<<will_cost>> Willpower)':
  1496. *clr & cla
  1497. $pantyworntype = 'none'
  1498. gs 'willpower', 'exhib', 'self', 'medium'
  1499. gs 'willpower', 'pay', 'self'
  1500. gs 'exhibitionism', 1
  1501. gs 'fame', 'pav', 'sex', 5
  1502. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/removepanties.jpg"></center>'
  1503. 'While sitting at your desk bored you notice no one is looking at you, you decided to take your panties off. You don''t know why, just something to do, really. It doesn''t hurt that it is going to be a thrill. You reach under your skirt and pull them down slowly. At first you have to work against your own weight as you pull them past your bottom. Much to your surprise no one notices the movement and your carry on. Once you get them past your knees you open your legs slightly and your panties fall down around your ankles. You step out of them and as you are bending over to pick them up you realize a couple of the other students have noticed. You rush to pick up your panties and stuff them into your purse and ignore the looks of the other students.'
  1504. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1505. end
  1506. else
  1507. act 'Remove panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1508. end
  1509. end
  1510. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'science'
  1511. end
  1512. act'Daydream':
  1513. *clr & cla
  1514. pcs_grades -= rand(0,1)
  1515. daydream = rand(1,4)
  1516. if daydream = 1:
  1517. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1518. 'Today''s lessons don''t particularly interest you, and you find yourself drifting off constantly. After a while you notice Miss Orlov has stopped teaching and is looking at you intently, asking you to pay attention. Apparently this is already the third time she asked; you missed the first two completely while you were lost in your own thoughts. The whole class is looking at you now.'
  1519. '"<<$pcs_nickname>>, please pay attention, this is very important. Today''s topic is going to be on the exam for sure."'
  1520. act 'Reluctantly pay attention':
  1521. *clr & cla
  1522. pcs_grades += rand(0,1)
  1523. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1524. 'Miss Orlov smiles as you seem to be paying attention and quickly goes back into her lesson. She doesn''t seem to notice when you roll your eyes at her, you sit through the rest of the lesson in silence, at least pretending to pay attention sometimes. You don''t learn anything today, though.'
  1525. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1526. end
  1527. act 'Try to focus on the lesson':
  1528. *clr & cla
  1529. pcs_grades += rand(0,1)
  1530. grupvalue[4] -= 1
  1531. grupvalue[3] += 1
  1532. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/attention.jpg"></center>'
  1533. 'You don''t want to get in trouble so you straighten up in your chair. "Sorry." Miss Orlov gives a friend smile and nod at your apology and then goes back to teaching the class, you do your best to pay attention for the rest of class.'
  1534. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1535. end
  1536. gs 'willpower', 'misc', 'self', 'medium'
  1537. if will_cost <= pcs_willpwr:
  1538. act 'Be a smart ass (<<will_cost>> Willpower)':
  1539. *clr & cla
  1540. gs 'willpower', 'pay', 'self'
  1541. gs 'stat'
  1542. demerit +=5
  1543. grupvalue[1] += 1
  1544. grupvalue[4] += 1
  1545. grupvalue[3] -= 1
  1546. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1547. '"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" you answer boldly.'
  1548. 'The whole class bursts into loud laughter, Miss Orlov seems a bit stunned by your comment, after a moment to regain her composure she quietly asks you "Miss <<$pcs_lastname>>, please leave class and report to the principal."'
  1549. act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
  1550. gs 'willpower', 'misc', 'resist', 'medium'
  1551. if will_cost <= pcs_willpwr:
  1552. act 'Don''t leave the classroom (<<will_cost>> Willpower)':
  1553. *clr & cla
  1554. gs 'willpower', 'pay', 'resist'
  1555. gs 'stat'
  1556. demerit +=5
  1557. grupvalue[4] += 1
  1558. grupvalue[3] -= 1
  1559. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bitchflip.jpg"></center>'
  1560. '"What good would that do? Are you trying to get me to start smoking to pass the time? I''m not interrupting your classes, just leave me alone."'
  1561. 'Your teacher doesn''t know what to say, and after a while just decides to continue her classes. Obviously, you don''t learn anything today. You hear one of the boys behind you mutter your being a bitch, you turn around and flip him off.'
  1562. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1563. end
  1564. else
  1565. act 'Don''t leave the classroom (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1566. end
  1567. end
  1568. else
  1569. act 'Be a smart ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1570. end
  1571. elseif daydream = 2:
  1572. *clr
  1573. if pcs_grades >= 80:
  1574. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1575. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, as you keep dozing off.'
  1576. 'You''re snapped back to consciousness when you hear Miss Orlov call your name. Everyone looks at you expectantly, and you realize that you were just asked a question about the topic.'
  1577. 'Taking your best guess at what the teacher might be asking, the entire class is shocked as you somehow manage to produce the correct answer, since it must''ve been obvious to everyone that you were sleeping. Miss Orlov tells you, "Very good, but please try to stay awake and pay attention. I know biology might seem boring to you now, but it is something you need to know."'
  1578. else
  1579. pcs_mood -= 5
  1580. gs 'stat'
  1581. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1582. 'You''re far too tired to pay attention in class today. You don''t even know what the lesson is about, sense you keep dozing off.'
  1583. 'You''re snapped back to consciousness when you hear Miss Orlov call your name. Everyone is looking at you expectantly, realizing that you were just asked a question about the topic.'
  1584. *nl
  1585. 'You take your best guess at what they might be asking. Some of the other kids snicker when you say something that''s obviously wrong. Miss Orlov tells you the correct answer. "<<$pcs_nickname>> you''re a smart girl, I know you know this stuff. You only have to apply yourself and the sky is the limit for you. So please pay attention." She says trying to encourage you.'
  1586. 'It was an embarrassing experience having everyone staring at you, but the sudden adrenaline surge helps you to stay awake during the rest of the period.'
  1587. end
  1588. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1589. elseif daydream = 3:
  1590. !!reminder to add trigger so this doesn''t trigger if player selects straight sexual orientation at character creation.
  1591. *clr & cla
  1592. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1593. 'You fall asleep, you are suddenly awoken by a loud noise. You jerk up startled looking around. All the other students are gone, you notice Miss Orlov standing near her desk startng at you. She looks different. Is that a leather skirt and bra? "This is the last time you fall asleep in my class <<$pcs_lastname>> now come up here for your punishment. This seems so surreal, this can''t be real, she slaps her desk. With that you get up and walk up to her desk.'
  1594. act 'Walk up to her desk': gt 'gschool_lessons2', 'arina_dream'
  1595. else
  1596. *clr
  1597. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1598. 'You finally drift off to sleep, the bell that ends class startles you awake. You look around in a bit of a dazed confusion. Miss Orlov seems not to have noticed, same with most of your fellow students but a couple of them giving you a knowing smile. They obviously noticed you sleeping. You gather up your stuff and head to your next period.'
  1599. act 'Leave class': gt 'gschool_lessons', 'short_break'
  1600. end
  1601. end
  1602. act'Play with your phone':
  1603. *clr & cla
  1604. pcs_grades -= rand(0,1)
  1605. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  1606. 'The lesson is so boring that you have to do something to keep yourself entertained. You take out your phone and begin to play a mobile game, hoping the lesson will be over soon.'
  1607. playphone = rand(1,2)
  1608. if playphone = 1:
  1609. *clr & cla
  1610. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  1611. 'You hear a feminine throat clearing, you look up and see Miss Orlov looking at you. "Please put your phone away <<$pcs_nickname>> and pay attention."'
  1612. act 'Put your phone away':
  1613. *clr & cla
  1614. grupvalue[4] -= 1
  1615. grupvalue[3] += 1
  1616. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
  1617. 'You decide not to aggravate the situation and put your phone away. Miss Orlov gives you appreciative smile before continue with the lesson.'
  1618. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1619. end
  1620. gs 'willpower', 'misc', 'self', 'medium'
  1621. if will_cost <= pcs_willpwr:
  1622. act 'Keep using your phone (<<will_cost>> Willpower)':
  1623. *clr & cla
  1624. gs 'willpower', 'pay', 'self'
  1625. grupvalue[3] -= 1
  1626. grupvalue[4] += 1
  1627. demerit += 5
  1628. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
  1629. 'Even though Miss Orlov saw you use your phone. You don''t care and just keep browsing the internet. Realizing you still won''t put the phone away, Miss Orlov walks over to your desk.'
  1630. act 'Hand over the phone':
  1631. *clr & cla
  1632. grupvalue[4] -=1
  1633. grupvalue[3] += 1
  1634. gs'stat'
  1635. '<center><img <<$set_imgh>> src="images/pc/npc_headshots/big26.jpg"></center>'
  1636. 'Miss Orlov extends his hand then says, "What is so important on there that you need to disrupt my lesson? Hand it over." You realize that Miss Orlov is not messing around and decide that it''s not worth the conflict, so you silently hand your phone to Miss Orlov. As he walks back to the front of the class, he says, "I''m holding onto your phone for now, Miss <<$pcs_lastname>>. You can have it back after class."'
  1637. act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
  1638. end
  1639. gs 'willpower', 'exhib', 'self'
  1640. if will_cost <= pcs_willpwr:
  1641. act 'Take photos under your skirt (<<will_cost>> Willpower)':
  1642. *clr & cla
  1643. gs 'willpower', 'exhib', 'self'
  1644. gs 'willpower', 'pay', 'self'
  1645. gs 'stat'
  1646. if $pantyworntype ! 'none':
  1647. gs 'exhibitionism', 1
  1648. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
  1649. else
  1650. gs 'exhibitionism', 2
  1651. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
  1652. end
  1653. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
  1654. 'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Miss Orlov walking towards your desk.'
  1655. 'When Miss Orlov arrives at your desk, she tells you, "Please give me your phone <<$pcs_nickname>>, this is important you need to pay attention."'
  1656. 'You hand over your phone, the screen still on, with the last picture you took still on the screen of the phone.'
  1657. *nl
  1658. 'Miss Orlov looks at what''s on the screen and she blushes deep red, quickly turning your phone off. She walks back to the head of class and takes a moment to compose herself. She then continues the lesson telling you, "I''m holding onto your phone for now, <<$pcs_nickname>>. You can have it back after class."'
  1659. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1660. end
  1661. else
  1662. act 'Take photos under your skirt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1663. end
  1664. gs 'willpower', 'misc', 'self', 'medium'
  1665. if $braworntype ! 'none' and will_cost <= pcs_willpwr:
  1666. act 'Hide the phone in your bra (<<will_cost>> Willpower)':
  1667. *clr & cla
  1668. gs 'willpower', 'misc', 'self', 'medium'
  1669. gs 'willpower', 'pay', 'self'
  1670. gs 'stat'
  1671. demerit += 5
  1672. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/nophone.jpg"></center>'
  1673. 'You deftly shove the phone in your bra, and smile fiendishly as you see the indecisiveness on your teacher''s face.'
  1674. 'You pretend it''s a perfectly normal place to store your phone, and use your cute voice as you tell him, "Is there a problem, Miss Orlov? Go ahead, take my phone if you don''t think I should have it." You thrust your chest forward as you encourage her, giving him a nice view of your cleavage - the outline of your phone very visible through the fabric.'
  1675. *nl
  1676. 'She only pauses a moment more and then to your surprise she uses two fingers to pluck the phone from your bra. She smiles at your reaction and then begins to teach class again. "I''m holding onto your phone for now, <<$pcs_nickname>>. You can have it back after class."'
  1677. act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'
  1678. end
  1679. elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
  1680. act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1681. end
  1682. end
  1683. else
  1684. act 'Keep using your phone (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1685. end
  1686. else
  1687. 'You play on your phone all class, you play a few games and text a few friends, look some stuff up. Anything to pass the time and before you know it the class is nearly over.'
  1688. act 'Wait for the end of the lesson': gs 'gschool_lessonsev1', 'biology'
  1689. end
  1690. end
  1691. end
  1692. if $ARGS[0] = 'arina_dream':
  1693. menu_off = 1
  1694. *clr & cla
  1695. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream1.jpg"></center>'
  1696. 'As you walk up to her desk you notice the lighting is reddish and their is a Saint Andrew''s cross in front of the chalkboard. All across her desk is a variety of sex toys. She takes a seat on the edge of her desk and says when you stop in front of her. "Down on your knees and lick my shoes clean."'
  1697. '"What?" You ask, shocked at her request.'
  1698. '"Lick my shoes clean or your punishment will be even worse." She tells you and then you can''t help yourself you pick up her foot and start licking her shoes.'
  1699. gs 'arousal', 'BDSM', 3, 'sub'
  1700. gs 'stat'
  1701. act 'Further punishment':
  1702. *clr & cla
  1703. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream2.jpg"></center>'
  1704. 'Once you have cleaned her shoe she gets up. "Remove your skirt and bend over my desk, now!" Once more you can''t help yourself. You quickly scramble to your feet and stand in front of her desk, unbuttoning your skirt and letting it drop around your ankles. Then you bend over her desk, you know what is coming and you can''t wait. A loud smack echoes in the room as she spanks your panty clad ass, wait were you wearing panties?'
  1705. gs 'arousal', 'BDSM', 3, 'sub'
  1706. gs 'stat'
  1707. act 'Where did my clothes go?':
  1708. *clr & cla
  1709. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream3.jpg"></center>'
  1710. 'She swats your ass several more times the stinging feels amazing. It doesn''t really hurt it just stings a little and mostly feels good, causing you to moan. "This is not for your pleasure, you little slut." Miss Orlov says, then she pulls down your panties and bares your butt. Wait what happened to the rest of your clothes? Now you only have your panties around your knees as she spanks your bare ass.'
  1711. gs 'arousal', 'BDSM', 3, 'sub'
  1712. gs 'stat'
  1713. act 'Moan like a slut':
  1714. *clr & cla
  1715. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream4.jpg"></center>'
  1716. 'You start moaning louder and louder, as her spanking just turns you on more and more. "You really are a complete slut arn''t you." She asks rhetorically, but you nod yes anyways. With her last swat her hand stays pressed against your bare butt, it slowly slides down your ass cheeks, between your legs. Her fingers slides all the way to your wet pussy. "My god you are so wet, just like a whore." She says as she slips several fingers inside of you and starts finger banging you, hard and rough.'
  1717. gs 'arousal', 'vaginal_finger', 3, 'sub', 'rough'
  1718. gs 'stat'
  1719. act 'Where did this table come from?':
  1720. *clr & cla
  1721. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream5.jpg"></center>'
  1722. 'She pulls her fingers out of you and then roughly grabs you by the hair and drags you over to a table and throws you down on it flat onto your back. Where did this table come from? It wasn''t here a few minutes ago, but your thoughts are interrupted as she twists your nipples, yet again you feel no pain only intense pleasure making you moan even louder.'
  1723. gs 'arousal', 'BDSM', 3, 'sub', 'rough'
  1724. gs 'stat'
  1725. act 'Eat pussy':
  1726. *clr & cla
  1727. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream6.jpg"></center>'
  1728. 'She lets go of your nipples and then crawls on top of the table with you, she sits down on your chest. She leans way back, spreading her legs wide as she faces you, putting her pussy right in your face. "Eat me slut!" She commands you and you do as she says and start licking her twat at once savoring the taste of her juices.'
  1729. gs 'arousal', 'cuni_give', 3, 'sub'
  1730. gs 'stat'
  1731. act 'Bicycle seat':
  1732. *clr & cla
  1733. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream6.jpg"></center>'
  1734. 'She suddenly gets up, turns around and then sits down on your face. She grinds her twat against your face as you lick her pussy, she starts moaning louder and louder. "Oh god yes, <<$pcs_nickname>> yes! Eat my pussy, I love it." The she suddenly cums and her juices flow out of her pussy, they cover your face, it fills your mouth, you drink it down but it seems to be never ending. Then it just suddenly stops and she climbs off you.'
  1735. gs 'arousal', 'cuni_give', 3, 'sub'
  1736. gs 'arousal', 'end'
  1737. gs 'stat'
  1738. act 'Our secret':
  1739. *clr & cla
  1740. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/teacher/arina/sex/dream/dream6.jpg"></center>'
  1741. 'Then she pulls you up rougly into a half sitting postition as she waggles her finger in your face. "Now this is our little secret you can''t tell anyone about this. You understand?" You nod in understanding and then she gentle bops your nose with her finger.'
  1742. act 'What was that?':
  1743. *clr & cla
  1744. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
  1745. 'You suddenly jerk awake, you are feeling highly aroused after that dream and you suddenly realize the other girl in your dream was Miss Orlov. You look around and hope no one noticed, after a bit of looking no one seems to be watching you. You try to clear the sleep from your eyes just as the bell rings for end of class. You gather up your stuff and head to the next period.'
  1746. act 'Leave class': gt 'gschool_lessons', 'short_break'
  1747. end
  1748. end
  1749. end
  1750. end
  1751. end
  1752. end
  1753. end
  1754. end
  1755. end
  1756. --- gschool_lessons2 ---------------------------------