Browse Source

Merge branch 'master' of http://git.tfgamessite.com/KevinSmarts/girllife-ecv

# Conflicts:
#	locations/danceclass
#	locations/fit
KevinSmarts 7 years ago
parent
commit
d6ed20f035
100 changed files with 15327 additions and 2658 deletions
  1. 6 1
      check_images.py
  2. 842 784
      glife-notepad++
  3. 17 0
      glife.qproj
  4. 10 10
      locations/AnalPR
  5. 15 15
      locations/AndreiHanter
  6. 33 33
      locations/BDSM
  7. 8 8
      locations/BDSM_Club
  8. 42 42
      locations/BDSM_training
  9. 14 14
      locations/BDsex
  10. 344 197
      locations/BelSex
  11. 36 36
      locations/BurgerTip
  12. 84 27
      locations/Cheatmenu_din
  13. 10 10
      locations/Club2
  14. 2 2
      locations/Cum_Manage
  15. 6 6
      locations/DanceWhore1
  16. 7 7
      locations/DanceWhore2
  17. 6 6
      locations/DanceWhore3
  18. 7 7
      locations/DanceWhore4
  19. 4 4
      locations/DanceWhore5
  20. 7 7
      locations/DanceWhore6
  21. 8 8
      locations/DanceWhore7
  22. 5 5
      locations/DanceWhore8
  23. 2 2
      locations/DimkaWarning
  24. 38 38
      locations/EvBoyBuh
  25. 18 18
      locations/EvOtelMan
  26. 38 38
      locations/EvgopBuh
  27. 441 75
      locations/FedorEv
  28. 1020 0
      locations/FedorEv2
  29. 1304 0
      locations/FedorEv3
  30. 3478 0
      locations/FedorEv4
  31. 1170 0
      locations/FedorMisc
  32. 9 9
      locations/FightCrouch
  33. 7 7
      locations/FightE
  34. 3 3
      locations/FightE1
  35. 4 4
      locations/FightE2
  36. 5 5
      locations/FightE3
  37. 12 12
      locations/Gadbana
  38. 6 6
      locations/Gaddvor
  39. 21 21
      locations/Gadgarden
  40. 19 19
      locations/Gadhouse
  41. 47 47
      locations/Gadsarai
  42. 1 1
      locations/Gnpc
  43. 39 39
      locations/Gnpc2
  44. 1 1
      locations/Gnpc_cinema
  45. 37 37
      locations/Grinok
  46. 4 4
      locations/Gshveyfab
  47. 112 112
      locations/HanterLoveSex
  48. 1 1
      locations/HotelAdmin
  49. 2 2
      locations/HotelHole
  50. 46 22
      locations/HotelRoom
  51. 21 21
      locations/HotelWork
  52. 127 130
      locations/IgorEv
  53. 20 20
      locations/IgorHanter
  54. 12 12
      locations/IrinaRoom
  55. 126 63
      locations/IvanEv
  56. 2 2
      locations/JuliaMilGo
  57. 11 11
      locations/JuliaMilHome
  58. 1 1
      locations/KatjaHome
  59. 34 34
      locations/KatjaHomeTalk
  60. 32 32
      locations/Katja_Tanga
  61. 4 4
      locations/Katlake
  62. 54 54
      locations/Komp
  63. 7 7
      locations/Kwlake1
  64. 5 5
      locations/Kwlake2
  65. 12 12
      locations/LBZhouse
  66. 7 7
      locations/LCporn
  67. 16 16
      locations/LCwork
  68. 10 16
      locations/LakeBoyDy
  69. 2 2
      locations/LariskaGo
  70. 8 8
      locations/LariskaHome
  71. 120 90
      locations/LariskaStart
  72. 2 2
      locations/MBallroom
  73. 14 14
      locations/MBasement
  74. 3 3
      locations/MBathrooms
  75. 1 1
      locations/MConservatory
  76. 13 13
      locations/MDining
  77. 1 1
      locations/MDressing
  78. 17 17
      locations/MEastbed
  79. 2 2
      locations/MGames
  80. 9 9
      locations/MHall
  81. 3 3
      locations/MKitchen
  82. 3 3
      locations/MLanding
  83. 2 2
      locations/MLibrary
  84. 1 1
      locations/MLiving
  85. 14 14
      locations/MRear
  86. 8 8
      locations/MWestbed
  87. 10 10
      locations/MagEncounterFairy
  88. 1 1
      locations/Maria1
  89. 93 93
      locations/Meadow
  90. 11 11
      locations/Military
  91. 19 19
      locations/Mirafather
  92. 72 72
      locations/Miroslava
  93. 25 25
      locations/MiroslavaHome
  94. 2 2
      locations/NatBelGo
  95. 33 33
      locations/NatBelHome
  96. 1920 0
      locations/NikoDates
  97. 473 0
      locations/NikoDreams
  98. 807 0
      locations/NikoEv
  99. 1005 0
      locations/NikoEv2
  100. 734 0
      locations/NikoPayback

+ 6 - 1
check_images.py

@@ -24,7 +24,12 @@ for name in os.listdir("locations"):
     text = ifile.read()
     for match in re.finditer(r"images.+?[.](gif|jpg|png)", text, flags=re.U):
         imgfile = match.group().encode("utf-8")
-        images.append(imgfile)
+        randmatch = re.search(r"'\s*[+]\s*rand\s*[(]\s*(\d+)\s*[,]\s*(\d+)\s*[)]\s*[+]\s*'", imgfile)
+        if randmatch != None:
+            for i in range(int(randmatch.group(1)), 1+int(randmatch.group(2))):
+                images.append(re.sub(r"'\s*[+]\s*rand\s*[(].*?[)]\s*[+]\s*'", str(i), imgfile))
+        else:
+            images.append(imgfile)
     
     ifile.close()
 

+ 842 - 784
glife-notepad++

@@ -1,787 +1,845 @@
 <NotepadPlus>
-    <Project name="GLife">
-        <Folder name="Locations">
-            <File name="locations\abduction" />
-            <File name="locations\agentned" />
-            <File name="locations\AlbFatherQW" />
-            <File name="locations\albinaEv" />
-            <File name="locations\albinahome" />
-            <File name="locations\albinaporog" />
-            <File name="locations\albinaRide" />
-            <File name="locations\AlbStarsEnd" />
-            <File name="locations\alex" />
-            <File name="locations\alexgang" />
-            <File name="locations\amrul" />
-            <File name="locations\AnalPR" />
-            <File name="locations\andrey" />
-            <File name="locations\anekdot" />
-            <File name="locations\annafrends" />
-            <File name="locations\arousal" />
-            <File name="locations\artemEv" />
-            <File name="locations\artemev2" />
-            <File name="locations\artemEv3" />
-            <File name="locations\artemhome" />
-            <File name="locations\artgar" />
-            <File name="locations\artstudia" />
-            <File name="locations\arturdin" />
-            <File name="locations\arturend" />
-            <File name="locations\arturHome" />
-            <File name="locations\arturkiosk" />
-            <File name="locations\arturQW" />
-            <File name="locations\arturRinok" />
-            <File name="locations\arturSex" />
-            <File name="locations\atak" />
-            <File name="locations\atakA" />
-            <File name="locations\atakA1" />
-            <File name="locations\atakB" />
-            <File name="locations\atakB1" />
-            <File name="locations\atakM" />
-            <File name="locations\authors3" />
-            <File name="locations\Autofight" />
-            <File name="locations\autosalonF" />
-            <File name="locations\autoservisF" />
-            <File name="locations\autotraidF" />
-            <File name="locations\avb" />
-            <File name="locations\avt" />
-            <File name="locations\avtonorm" />
-            <File name="locations\balkon" />
-            <File name="locations\balkon2" />
-            <File name="locations\bank" />
-            <File name="locations\BanSexType" />
-            <File name="locations\barbershop" />
-            <File name="locations\bass" />
-            <File name="locations\BDman" />
-            <File name="locations\BDsex" />
-            <File name="locations\BDSM" />
-            <File name="locations\BDSM_Club" />
-            <File name="locations\BDSM_training" />
-            <File name="locations\bed" />
-            <File name="locations\bed1" />
-            <File name="locations\bed2" />
-            <File name="locations\bedr" />
-            <File name="locations\bedr2x" />
-            <File name="locations\bedrPar" />
-            <File name="locations\bedrPar2" />
-            <File name="locations\before" />
-            <File name="locations\beforeFW" />
-            <File name="locations\beg" />
-            <File name="locations\beg1" />
-            <File name="locations\begin" />
-            <File name="locations\belgang" />
-            <File name="locations\belpicknick" />
-            <File name="locations\BelSex" />
-            <File name="locations\billiard" />
-            <File name="locations\billsvid" />
-            <File name="locations\blackjack" />
-            <File name="locations\blackjackPlay" />
-            <File name="locations\blackjackView" />
-            <File name="locations\blowPR" />
-            <File name="locations\BMloc" />
-            <File name="locations\bobka" />
-            <File name="locations\body" />
-            <File name="locations\body_shape" />
-            <File name="locations\boilerroom" />
-            <File name="locations\bordel" />
-            <File name="locations\bordelv" />
-            <File name="locations\bouling" />
-            <File name="locations\boxing" />
-            <File name="locations\boy" />
-            <File name="locations\boy_likes" />
-            <File name="locations\boyfrend" />
-            <File name="locations\boylove" />
-            <File name="locations\boymass" />
-            <File name="locations\boyStat" />
-            <File name="locations\brosh" />
-            <File name="locations\brosok" />
-            <File name="locations\brother" />
-            <File name="locations\budgetclothes" />
-            <File name="locations\budilnik" />
-            <File name="locations\buklinik" />
-            <File name="locations\buklinik_event" />
-            <File name="locations\burger" />
-            <File name="locations\BurgerTip" />
-            <File name="locations\burgerWork" />
-            <File name="locations\butik" />
-            <File name="locations\butoilet" />
-            <File name="locations\cafe2" />
-            <File name="locations\cafe3" />
-            <File name="locations\card" />
-            <File name="locations\cardgame_durak" />
-            <File name="locations\cards" />
-            <File name="locations\carF" />
-            <File name="locations\carF1" />
-            <File name="locations\casino" />
-            <File name="locations\cfnm" />
-            <File name="locations\changingroom" />
-            <File name="locations\Cheatmenu_din" />
-            <File name="locations\chessplay" />
-            <File name="locations\cikl" />
-            <File name="locations\cityTrain" />
-            <File name="locations\clener" />
-            <File name="locations\cloakroom" />
-            <File name="locations\clothing" />
-            <File name="locations\clothing_attributes" />
-            <File name="locations\clothing_descriptions" />
-            <File name="locations\clothing_QV" />
-            <File name="locations\club" />
-            <File name="locations\Club2" />
-            <File name="locations\comendant" />
-            <File name="locations\counter" />
-            <File name="locations\croupier" />
-            <File name="locations\croupier2" />
-            <File name="locations\cumreaction" />
-            <File name="locations\cum_arrcheat" />
-            <File name="locations\cum_call" />
-            <File name="locations\cum_cleanup" />
-            <File name="locations\Cum_Manage" />
-            <File name="locations\dachain" />
-            <File name="locations\dachamy" />
-            <File name="locations\dachaogr" />
-            <File name="locations\dachaogr0" />
-            <File name="locations\dachi" />
-            <File name="locations\danceclass" />
-            <File name="locations\danceGev" />
-            <File name="locations\DanceWhore1" />
-            <File name="locations\DanceWhore2" />
-            <File name="locations\DanceWhore3" />
-            <File name="locations\DanceWhore4" />
-            <File name="locations\DanceWhore5" />
-            <File name="locations\DanceWhore6" />
-            <File name="locations\DanceWhore7" />
-            <File name="locations\DanceWhore8" />
-            <File name="locations\dangeon" />
-            <File name="locations\daystart" />
-            <File name="locations\deckShuffle" />
-            <File name="locations\defence" />
-            <File name="locations\dibodi" />
-            <File name="locations\dima" />
-            <File name="locations\dimaGoHome2" />
-            <File name="locations\dimaHome" />
-            <File name="locations\dimaRudeEv" />
-            <File name="locations\DimkaWarning" />
-            <File name="locations\dina" />
-            <File name="locations\dinBoroda" />
-            <File name="locations\dinfather" />
-            <File name="locations\dinmother" />
-            <File name="locations\dinnpc" />
-            <File name="locations\dinParty" />
-            <File name="locations\dinSex" />
-            <File name="locations\dinSex2" />
-            <File name="locations\dinsexFX" />
-            <File name="locations\dinsexgivi" />
-            <File name="locations\dinsister" />
-            <File name="locations\din_bad" />
-            <File name="locations\din_pav" />
-            <File name="locations\din_van" />
-            <File name="locations\divan" />
-            <File name="locations\dk" />
-            <File name="locations\DNA" />
-            <File name="locations\dom_gor" />
-            <File name="locations\dorm" />
-            <File name="locations\dort" />
-            <File name="locations\down" />
-            <File name="locations\dreams" />
-            <File name="locations\dvor" />
-            <File name="locations\elevator" />
-            <File name="locations\ender" />
-            <File name="locations\enderKik" />
-            <File name="locations\EndFight" />
-            <File name="locations\enemy" />
-            <File name="locations\etoexhib" />
-            <File name="locations\EvBoyBuh" />
-            <File name="locations\event" />
-            <File name="locations\events" />
-            <File name="locations\EvgopBuh" />
-            <File name="locations\EvOtelMan" />
-            <File name="locations\exhibitionistshop" />
-            <File name="locations\famdorfride" />
-            <File name="locations\fame" />
-            <File name="locations\family" />
-            <File name="locations\farmhomeride" />
-            <File name="locations\father" />
-            <File name="locations\fathersex" />
-            <File name="locations\fbDorm" />
-            <File name="locations\fbDormD" />
-            <File name="locations\fbGar" />
-            <File name="locations\fbHouse" />
-            <File name="locations\FedorEv" />
-            <File name="locations\femcyc" />
-            <File name="locations\fight" />
-            <File name="locations\fight1" />
-            <File name="locations\fight2" />
-            <File name="locations\fight3" />
-            <File name="locations\FightCrouch" />
-            <File name="locations\FightE" />
-            <File name="locations\FightE1" />
-            <File name="locations\FightE2" />
-            <File name="locations\FightE3" />
-            <File name="locations\fightFW" />
-            <File name="locations\FightStat" />
-            <File name="locations\film" />
-            <File name="locations\fit" />
-            <File name="locations\food" />
-            <File name="locations\foto" />
-            <File name="locations\frot" />
-            <File name="locations\FSfight" />
-            <File name="locations\FSgame" />
-            <File name="locations\FSroom" />
-            <File name="locations\FSstart" />
-            <File name="locations\FSstat" />
-            <File name="locations\furi" />
-            <File name="locations\furisex" />
-            <File name="locations\Gadbana" />
-            <File name="locations\Gaddvor" />
-            <File name="locations\Gadhouse" />
-            <File name="locations\gadriver" />
-            <File name="locations\Gadsarai" />
-            <File name="locations\gadprostitutes" />
-            <File name="locations\gadukino" />
-            <File name="locations\gameover" />
-            <File name="locations\gaptek" />
-            <File name="locations\garfather" />
-            <File name="locations\gargazel" />
-            <File name="locations\garmassiv" />
-            <File name="locations\gdk" />
-            <File name="locations\gdkbibl" />
-            <File name="locations\gdkin" />
-            <File name="locations\gdkkru" />
-            <File name="locations\gdksport" />
-            <File name="locations\gdktoilet" />
-            <File name="locations\generation" />
-            <File name="locations\gevent" />
-            <File name="locations\gkafe" />
-            <File name="locations\gKristinaZv" />
-            <File name="locations\glake" />
-            <File name="locations\gLakeNude" />
-            <File name="locations\gLakeNude_event" />
-            <File name="locations\gLakeNudeForest" />			
-            <File name="locations\Gnpc" />
-            <File name="locations\Gnpc2" />
-            <File name="locations\Gnpc_cinema" />
-            <File name="locations\goplust" />
-            <File name="locations\gopnew" />
-            <File name="locations\gopnik_house" />
-            <File name="locations\gopsex" />
-            <File name="locations\gopskver" />
-            <File name="locations\gopwho" />
-            <File name="locations\gpoli" />
-            <File name="locations\Gpornmark" />
-            <File name="locations\graveyard" />
-            <File name="locations\Grinok" />
-            <File name="locations\gschool_bathrooms" />
-            <File name="locations\gschool_detention" />
-            <File name="locations\gschool_events" />
-            <File name="locations\gschool_gossip" />
-            <File name="locations\gschool_grounds" />
-            <File name="locations\gschool_lessons" />
-            <File name="locations\gschool_lunch" />
-            <File name="locations\gschool_sex" />
-            <File name="locations\Gshveyfab" />
-            <File name="locations\gskino" />
-            <File name="locations\gskver" />
-            <File name="locations\gtelefon" />
-            <File name="locations\hairsalon" />
-            <File name="locations\hall" />
-            <File name="locations\hotel" />
-            <File name="locations\HotelAdmin" />
-            <File name="locations\HotelHole" />
-            <File name="locations\HotelRoom" />
-            <File name="locations\HotelWork" />
-            <File name="locations\hotel_resep" />
-            <File name="locations\housecall" />
-            <File name="locations\husb" />
-            <File name="locations\husbSex" />
-            <File name="locations\IgorEv" />
-            <File name="locations\igravt" />
-            <File name="locations\igrkart2" />
-            <File name="locations\indik" />
-            <File name="locations\indoors" />
-            <File name="locations\init" />
-            <File name="locations\initKik" />
-            <File name="locations\init_music" />
-            <File name="locations\inputProcessing" />
-            <File name="locations\ira" />
-            <File name="locations\IrinaRoom" />
-            <File name="locations\IvanEv" />
-            <File name="locations\ivanRoom" />
-            <File name="locations\izdevat" />
-            <File name="locations\JuliaMilGo" />
-            <File name="locations\JuliaMilHome" />
-            <File name="locations\JuliaMilVhod" />
-            <File name="locations\kafe" />
-            <File name="locations\kafe2" />
-            <File name="locations\kafeend" />
-            <File name="locations\kafeM" />
-            <File name="locations\kafesvid" />
-            <File name="locations\kakuzu" />
-            <File name="locations\kamera" />
-            <File name="locations\kameraKPZ" />
-            <File name="locations\katalkin" />
-            <File name="locations\katalkinAlko" />
-            <File name="locations\katalkinSex" />
-            <File name="locations\kathouse0" />
-            <File name="locations\katjaEv" />
-            <File name="locations\katjaEvDin" />
-            <File name="locations\KatjaHome" />
-            <File name="locations\KatjaHomeTalk" />
-            <File name="locations\katja_sex" />
-            <File name="locations\Katja_Tanga" />
-            <File name="locations\Katlake" />
-            <File name="locations\katspalnya" />
-            <File name="locations\kavkazkafe" />
-            <File name="locations\kazinosvid" />
-            <File name="locations\kazvar" />
-            <File name="locations\KGDbefore" />
-            <File name="locations\KGDexp" />
-            <File name="locations\KGDfight" />
-            <File name="locations\KGDgame" />
-            <File name="locations\KGDparty" />
-            <File name="locations\KGDstart" />
-            <File name="locations\KGOLboss" />
-            <File name="locations\KGOLenemy" />
-            <File name="locations\KGOLexpa" />
-            <File name="locations\KGOLfight" />
-            <File name="locations\KGOLgame" />
-            <File name="locations\KGstart" />
-            <File name="locations\KGZdyn" />
-            <File name="locations\KGZfight" />
-            <File name="locations\KGZgame" />
-            <File name="locations\KGZstart" />
-            <File name="locations\kid" />
-            <File name="locations\Kikatak" />
-            <File name="locations\kikbox" />
-            <File name="locations\kino" />
-            <File name="locations\kinoM" />
-            <File name="locations\kinosvid" />
-            <File name="locations\kiosk" />
-            <File name="locations\kisameQW" />
-            <File name="locations\kit_din" />
-            <File name="locations\klofdomhouse" />
-            <File name="locations\Komp" />
-            <File name="locations\kompMFC" />
-            <File name="locations\kompMFCtwo" />
-            <File name="locations\koncepod" />
-            <File name="locations\koncepod1" />
-            <File name="locations\korr" />
-            <File name="locations\korr2x" />
-            <File name="locations\korrPar" />
-            <File name="locations\kotovdom" />
-            <File name="locations\kotovEv" />
-            <File name="locations\kotovSex" />
-            <File name="locations\kotovtalker" />
-            <File name="locations\krol" />
-            <File name="locations\kruchess" />
-            <File name="locations\krupo" />
-            <File name="locations\krutishi" />
-            <File name="locations\kseniyaQW" />
-            <File name="locations\kuhr" />
-            <File name="locations\kuhr2x" />
-            <File name="locations\kuhrPar" />
-            <File name="locations\kutuzka" />
-            <File name="locations\Kwlake1" />
-            <File name="locations\Kwlake2" />
-            <File name="locations\lab" />
-            <File name="locations\lake" />
-            <File name="locations\LakeBoyDy" />
-            <File name="locations\LakeBoyZ" />
-            <File name="locations\lakecafe" />
-            <File name="locations\laketoilet" />
-            <File name="locations\larek" />
-            <File name="locations\LariskaGo" />
-            <File name="locations\LariskaHome" />
-            <File name="locations\LariskaStart" />
-            <File name="locations\LBZhouse" />
-            <File name="locations\LCporn" />
-            <File name="locations\LCwork" />
-            <File name="locations\lena" />
-            <File name="locations\lesbidomhouse" />
-            <File name="locations\lesbimistress" />
-            <File name="locations\lesbisubhouse" />
-            <File name="locations\lezbsex" />
-            <File name="locations\liam" />
-            <File name="locations\liamelkafe" />
-            <File name="locations\liames" />
-            <File name="locations\loadg" />
-            <File name="locations\LOCA" />
-            <File name="locations\love" />
-            <File name="locations\lug" />
-            <File name="locations\MagEncounterFairy" />
-            <File name="locations\magik" />
-            <File name="locations\mainQW" />
-            <File name="locations\Maria1" />
-            <File name="locations\masharoom" />
-            <File name="locations\MBallroom" />
-            <File name="locations\MBasement" />
-            <File name="locations\MBathrooms" />
-            <File name="locations\MConservatory" />
-            <File name="locations\MDining" />
-            <File name="locations\MDressing" />
-            <File name="locations\Meadow" />
-            <File name="locations\MEastbed" />
-            <File name="locations\meet" />
-            <File name="locations\Menu.Add" />
-            <File name="locations\Menu.AddCondition" />
-            <File name="locations\Menu.AddEvent" />
-            <File name="locations\Menu.AddModule" />
-            <File name="locations\Menu.Call" />
-            <File name="locations\Menu.Chosen" />
-            <File name="locations\Menu.Create" />
-            <File name="locations\Menu.Destroy" />
-            <File name="locations\Menu.Info" />
-            <File name="locations\Menu.Time" />
-            <File name="locations\Menu.Treatment" />
-            <File name="locations\MenuLoc" />
-            <File name="locations\MenuMainLoc" />
-            <File name="locations\metro" />
-            <File name="locations\metro_events" />
-            <File name="locations\mey_tamara_events" />
-            <File name="locations\mey_vika_events" />
-            <File name="locations\mey_vika_strings" />
-            <File name="locations\MGames" />
-            <File name="locations\MHall" />
-            <File name="locations\Military" />
-            <File name="locations\MiroslavaHome" />
-            <File name="locations\mirror" />
-            <File name="locations\misha" />
-            <File name="locations\mitka" />
-            <File name="locations\mitkabuh" />
-            <File name="locations\MKitchen" />
-            <File name="locations\MLanding" />
-            <File name="locations\MLibrary" />
-            <File name="locations\MLiving" />
-            <File name="locations\motel" />
-            <File name="locations\mother" />
-            <File name="locations\motherkafeboss" />
-            <File name="locations\motherQW" />
-            <File name="locations\mqroom" />
-            <File name="locations\MRear" />
-            <File name="locations\musorkaexh" />
-            <File name="locations\MWestbed" />
-            <File name="locations\namer" />
-            <File name="locations\narkopriton" />
-            <File name="locations\nastja" />
-            <File name="locations\NatBelGo" />
-            <File name="locations\NatBelHome" />
-            <File name="locations\NatBelVhod" />
-            <File name="locations\NewCloShop" />
-            <File name="locations\nill" />
-            <File name="locations\nogorslut" />
-            <File name="locations\Nord" />
-            <File name="locations\NormPR" />
-            <File name="locations\npc" />
-            <File name="locations\npcview" />
-            <File name="locations\Nudelake" />
-            <File name="locations\number1" />
-            <File name="locations\number2" />
-            <File name="locations\number3" />
-            <File name="locations\number4" />
-            <File name="locations\obekt" />
-            <File name="locations\obekt2" />
-            <File name="locations\obj_din" />
-            <File name="locations\obkitchen" />
-            <File name="locations\obroom" />
-            <File name="locations\office" />
-            <File name="locations\onobjsel" />
-            <File name="locations\oral" />
-            <File name="locations\orgasm" />
-            <File name="locations\orgazm" />
-            <File name="locations\outdoors" />
-            <File name="locations\pain" />
-            <File name="locations\Palatka" />
-            <File name="locations\ParChurch" />
-            <File name="locations\ParChurch2" />
-            <File name="locations\park" />
-            <File name="locations\parkBimbo" />
-            <File name="locations\parkdin" />
-            <File name="locations\parkivent" />
-            <File name="locations\ParkKafe" />
-            <File name="locations\parkM" />
-            <File name="locations\parks" />
-            <File name="locations\parksvid" />
-            <File name="locations\party" />
-            <File name="locations\party_boy" />
-            <File name="locations\party_boys" />
-            <File name="locations\party_girls" />
-			<File name="locations\pattest" />
-            <File name="locations\pavCommercial" />
-            <File name="locations\pavResidential" />
-            <File name="locations\paysex" />
-            <File name="locations\Peterroom" />
-            <File name="locations\pharmacy" />
-            <File name="locations\pirat" />
-            <File name="locations\piratbreak" />
-            <File name="locations\pirsingsalon" />
-            <File name="locations\placer" />
-            <File name="locations\placer_act" />
-            <File name="locations\placer_end" />
-            <File name="locations\placer_gop_orgy" />
-            <File name="locations\placer_gskver" />
-            <File name="locations\placer_house" />
-            <File name="locations\placer_house_one" />
-            <File name="locations\placer_man" />
-            <File name="locations\placer_sex" />
-            <File name="locations\podezdM" />
-            <File name="locations\podrsex" />
-            <File name="locations\podval_rape" />
-            <File name="locations\pod_ezd" />
-            <File name="locations\pod_whore" />
-            <File name="locations\poli" />
-            <File name="locations\police" />
-            <File name="locations\popu" />
-            <File name="locations\pornfilm" />
-            <File name="locations\pornhist" />
-            <File name="locations\pornschedule" />
-            <File name="locations\pornstudio" />
-            <File name="locations\portmirror" />
-            <File name="locations\portnoi" />
-            <File name="locations\portnoi2" />
-            <File name="locations\postdeliveries" />
-            <File name="locations\postevents" />
-            <File name="locations\postmaster" />
-            <File name="locations\postoffice" />
-            <File name="locations\preALT" />
-            <File name="locations\preSYS" />
-            <File name="locations\preCUST" />
-            <File name="locations\preTG" />
-            <File name="locations\priziv" />
-            <File name="locations\Prostitute" />
-            <File name="locations\psiklin" />
-            <File name="locations\ptu_dush" />
-            <File name="locations\qjob" />
-            <File name="locations\qwBarPolet" />
-            <File name="locations\qwBarPoletToilet" />
-            <File name="locations\qwbereg" />
-            <File name="locations\qwbereg2" />
-            <File name="locations\qwIzoldaApp" />
-            <File name="locations\qwloc" />
-            <File name="locations\qwloc2" />
-            <File name="locations\qwloc3" />
-            <File name="locations\qwloc4" />
-            <File name="locations\qwlocdog" />
-            <File name="locations\qwmeet" />
-            <File name="locations\qwmeet2" />
-            <File name="locations\qwmeet3" />
-            <File name="locations\qwpaluba" />
-            <File name="locations\rate" />
-            <File name="locations\ratinglist" />
-            <File name="locations\razrKik" />
-            <File name="locations\reks" />
-            <File name="locations\restoran" />
-            <File name="locations\restoranM" />
-            <File name="locations\result" />
-            <File name="locations\RimmaSexQW" />
-            <File name="locations\rinok" />
-            <File name="locations\rinwork" />
-            <File name="locations\road" />
-            <File name="locations\roma" />
-            <File name="locations\roulette" />
-            <File name="locations\RoundEnd" />
-            <File name="locations\RoundStop" />
-            <File name="locations\RynokHoz" />
-            <File name="locations\salon" />
-            <File name="locations\saloon" />
-            <File name="locations\sauna" />
-            <File name="locations\sauna2" />
-            <File name="locations\saunabed" />
-            <File name="locations\saunaroom" />
-            <File name="locations\saunawhore" />
-            <File name="locations\saunawork" />
-            <File name="locations\saveg" />
-            <File name="locations\sbReksHome" />
-            <File name="locations\seeparentsex" />
-            <File name="locations\seeporn" />
-            <File name="locations\selfplay" />
-            <File name="locations\sell_young_clothes" />
-            <File name="locations\Serge_kuh" />
-            <File name="locations\Serge_Shulgin" />
-            <File name="locations\Serpent" />
-            <File name="locations\sex" />
-            <File name="locations\sexdvanadva" />
-            <File name="locations\sexdvoe" />
-            <File name="locations\sexm" />
-            <File name="locations\sexorg" />
-            <File name="locations\sexshop" />
-            <File name="locations\Sgrup" />
-            <File name="locations\Sgrup1" />
-            <File name="locations\Sgrup2" />
-            <File name="locations\Sgrup3" />
-            <File name="locations\Sgrup4" />
-            <File name="locations\Sgrup5" />
-            <File name="locations\SgrupDisco" />
-            <File name="locations\shop" />
-            <File name="locations\shopdacha" />
-            <File name="locations\show_table" />
-            <File name="locations\shulgabath" />
-            <File name="locations\shulgabed" />
-            <File name="locations\shulgahall" />
-            <File name="locations\shulgahome" />
-            <File name="locations\shulgakuh" />
-            <File name="locations\shulga_room" />
-            <File name="locations\sister" />
-            <File name="locations\sisterQW" />
-            <File name="locations\sistersleep" />
-            <File name="locations\sister_party" />
-            <File name="locations\sitr" />
-            <File name="locations\sitr2x" />
-            <File name="locations\sitrPar" />
-            <File name="locations\skverdin" />
-            <File name="locations\Snpc" />
-            <File name="locations\sny" />
-            <File name="locations\soba" />
-            <File name="locations\soniaDisco" />
-            <File name="locations\spell" />
-            <File name="locations\sportShop" />
-            <File name="locations\stallion" />
-            <File name="locations\starenie" />
-            <File name="locations\start" />
-            <File name="locations\StasQW" />
-            <File name="locations\StasSex" />
-            <File name="locations\stat" />
-            <File name="locations\statBat" />
-            <File name="locations\stat_display" />
-            <File name="locations\stat_sklattrib" />
-            <File name="locations\stihi" />
-            <File name="locations\stol" />
-            <File name="locations\street" />
-            <File name="locations\street_event" />
-            <File name="locations\strela" />
-            <File name="locations\strelba" />
-            <File name="locations\stripclub" />
-            <File name="locations\stwork" />
-            <File name="locations\stwork2" />
-            <File name="locations\subkid" />
-            <File name="locations\SubLoss" />
-            <File name="locations\SubWin" />
-            <File name="locations\succubus" />
-            <File name="locations\svi" />
-            <File name="locations\svidan" />
-            <File name="locations\svidboy" />
-            <File name="locations\tanapartment" />
-            <File name="locations\tanhouse" />
-            <File name="locations\tanhousezal" />
-            <File name="locations\tanhozspal" />
-            <File name="locations\tankitchen" />
-            <File name="locations\tanNicholas" />
-            <File name="locations\tanroom" />
-            <File name="locations\tanspalnya" />
-            <File name="locations\tanvanr" />
-            <File name="locations\tatiana_missions" />
-            <File name="locations\taxi" />
-            <File name="locations\telefon" />
-            <File name="locations\Terminal" />
-            <File name="locations\test" />
-            <File name="locations\therapist" />
-            <File name="locations\Timofei" />
-            <File name="locations\TimofeiMetro" />
-            <File name="locations\tobiQW" />
-            <File name="locations\torgcentr" />
-            <File name="locations\torgpred" />
-            <File name="locations\trashplace" />
-            <File name="locations\train" />
-            <File name="locations\train_incidental" />
-            <File name="locations\trFatherMisha" />
-            <File name="locations\TV" />
-            <File name="locations\tvPar" />
-            <File name="locations\ugel" />
-            <File name="locations\ugol" />
-            <File name="locations\ugol1" />
-            <File name="locations\univer" />
-            <File name="locations\univer_din" />
-            <File name="locations\vann" />
-            <File name="locations\vanr" />
-            <File name="locations\vanr2x" />
-            <File name="locations\vanrPar" />
-            <File name="locations\vecher" />
-            <File name="locations\version" />
-            <File name="locations\Vika" />
-            <File name="locations\vipclub" />
-            <File name="locations\Vnlake1" />
-            <File name="locations\Vnlake2" />
-            <File name="locations\vokBimbo" />
-            <File name="locations\vokdin" />
-            <File name="locations\vokdinvera" />
-            <File name="locations\vokmantoiev" />
-            <File name="locations\vokzal" />
-            <File name="locations\vokzalG" />
-            <File name="locations\vokzalGin" />
-            <File name="locations\vokzalholle" />
-            <File name="locations\vokzalper" />
-            <File name="locations\vokzalperG" />
-            <File name="locations\vokzaltoilet" />
-            <File name="locations\vokzaltorg" />
-            <File name="locations\volAndGev" />
-            <File name="locations\VolleyTrenCentr" />
-            <File name="locations\VolleyTrenerSpeak" />
-            <File name="locations\Voltrener" />
-            <File name="locations\Voltrenersex" />
-            <File name="locations\VoltrenerSexShower" />
-            <File name="locations\webcam_site" />
-            <File name="locations\WorkHosp" />
-            <File name="locations\worksalon" />
-            <File name="locations\yarik" />
-            <File name="locations\yban" />
-            <File name="locations\ybass" />
-            <File name="locations\ybedr" />
-            <File name="locations\ybib" />
-            <File name="locations\ydet" />
-            <File name="locations\yesgorslut" />
-            <File name="locations\ykabinet" />
-            <File name="locations\ykamin" />
-            <File name="locations\ykuh" />
-            <File name="locations\ymans" />
-            <File name="locations\young_shop" />
-            <File name="locations\youplace" />
-            <File name="locations\youry" />
-            <File name="locations\ysport" />
-            <File name="locations\yvan" />
-            <File name="locations\yzal" />
-            <File name="locations\zaprF" />
-            <File name="locations\zaprFWash" />
-            <File name="locations\zoomagazine" />
-            <File name="locations\zsoft_gopskverGorSlut" />
-            <File name="locations\_attributes_average" />
-            <File name="locations\_attributes_burlesque" />
-            <File name="locations\_attributes_cheap" />
-            <File name="locations\_attributes_coat" />
-            <File name="locations\_attributes_exercise" />
-            <File name="locations\_attributes_exhibit" />
-            <File name="locations\_attributes_expensive" />
-            <File name="locations\_attributes_fetish" />
-            <File name="locations\_attributes_formal" />
-            <File name="locations\_attributes_office" />
-            <File name="locations\_attributes_school" />
-            <File name="locations\_attributes_swimwear" />
-            <File name="locations\_attributes_uniform" />
-            <File name="locations\_buy_item" />
-            <File name="locations\_buy_single_item" />
-            <File name="locations\_clothing_image" />
-            <File name="locations\_clothing_name" />
-            <File name="locations\_face_image" />
-            <File name="locations\_menu_addoldmenu" />
-            <File name="locations\_menu_autosave" />
-            <File name="locations\_menu_avariya" />
-            <File name="locations\_menu_bloknot" />
-            <File name="locations\_menu_body" />
-            <File name="locations\_menu_cheat" />
-            <File name="locations\_menu_clothes" />
-            <File name="locations\_menu_descrip" />
-            <File name="locations\_menu_face" />
-            <File name="locations\_menu_magic" />
-            <File name="locations\_menu_mobila" />
-            <File name="locations\_menu_obnovit" />
-            <File name="locations\_menu_pain" />
-            <File name="locations\_menu_pirs" />
-            <File name="locations\_menu_reputation" />
-            <File name="locations\_menu_skills" />
-            <File name="locations\_menu_statistika" />
-            <File name="locations\_menu_tattoos" />
-            <File name="locations\_short_description" />
-            <File name="locations\_single_stock_item" />
-            <File name="locations\_statcheck" />
-
-            <File name="locations\_stock_item" />
-            <File name="locations\lost_clothes_here" />
+	<Project name="GLife">
+		<Folder name="Locations">
+			<File name="locations\abduction" />
+			<File name="locations\abductionCustomer" />
+			<File name="locations\agentned" />
+			<File name="locations\AlbFatherQW" />
+			<File name="locations\albinaEv" />
+			<File name="locations\albinahome" />
+			<File name="locations\albinaporog" />
+			<File name="locations\albinaRide" />
+			<File name="locations\AlbStarsEnd" />
+			<File name="locations\alex" />
+			<File name="locations\alexgang" />
+			<File name="locations\amrul" />
+			<File name="locations\AnalPR" />
+			<File name="locations\AndreiHanter" />
+			<File name="locations\andrey" />
+			<File name="locations\anekdot" />
+			<File name="locations\annafrends" />
+			<File name="locations\arousal" />
+			<File name="locations\artemEv" />
+			<File name="locations\artemev2" />
+			<File name="locations\artemEv3" />
+			<File name="locations\artemhome" />
+			<File name="locations\artgar" />
+			<File name="locations\artstudia" />
+			<File name="locations\arturdin" />
+			<File name="locations\arturend" />
+			<File name="locations\arturHome" />
+			<File name="locations\arturkiosk" />
+			<File name="locations\arturQW" />
+			<File name="locations\arturRinok" />
+			<File name="locations\arturSex" />
+			<File name="locations\atak" />
+			<File name="locations\atakA" />
+			<File name="locations\atakA1" />
+			<File name="locations\atakB" />
+			<File name="locations\atakB1" />
+			<File name="locations\atakM" />
+			<File name="locations\authors3" />
+			<File name="locations\Autofight" />
+			<File name="locations\autosalonF" />
+			<File name="locations\autoservisF" />
+			<File name="locations\autotraidF" />
+			<File name="locations\avb" />
+			<File name="locations\avt" />
+			<File name="locations\avtonorm" />
+			<File name="locations\backwater" />
+			<File name="locations\balkon" />
+			<File name="locations\balkon2" />
+			<File name="locations\bandit" />
+			<File name="locations\banditbreak" />
+			<File name="locations\bank" />
+			<File name="locations\BanSexType" />
+			<File name="locations\barbershop" />
+			<File name="locations\bass" />
+			<File name="locations\BDman" />
+			<File name="locations\BDsex" />
+			<File name="locations\BDSM" />
+			<File name="locations\BDSM_Club" />
+			<File name="locations\BDSM_training" />
+			<File name="locations\bed" />
+			<File name="locations\bed1" />
+			<File name="locations\bed2" />
+			<File name="locations\bedr" />
+			<File name="locations\bedr2x" />
+			<File name="locations\bedrPar" />
+			<File name="locations\bedrPar2" />
+			<File name="locations\before" />
+			<File name="locations\beforeFW" />
+			<File name="locations\beg" />
+			<File name="locations\beg1" />
+			<File name="locations\begin" />
+			<File name="locations\belgang" />
+			<File name="locations\belpicknick" />
+			<File name="locations\BelSex" />
+			<File name="locations\bicycle" />
+			<File name="locations\billiard" />
+			<File name="locations\billsvid" />
+			<File name="locations\blackjack" />
+			<File name="locations\blackjackPlay" />
+			<File name="locations\blackjackView" />
+			<File name="locations\blowPR" />
+			<File name="locations\BMloc" />
+			<File name="locations\bobka" />
+			<File name="locations\body" />
+			<File name="locations\body_shape" />
+			<File name="locations\boilerroom" />
+			<File name="locations\bordel" />
+			<File name="locations\bordelv" />
+			<File name="locations\bouling" />
+			<File name="locations\boxing" />
+			<File name="locations\boy" />
+			<File name="locations\boy_likes" />
+			<File name="locations\boyfrend" />
+			<File name="locations\boylove" />
+			<File name="locations\boymass" />
+			<File name="locations\boyStat" />
+			<File name="locations\brosh" />
+			<File name="locations\brosok" />
+			<File name="locations\brother" />
+			<File name="locations\budgetclothes" />
+			<File name="locations\budilnik" />
+			<File name="locations\buklinik" />
+			<File name="locations\buklinik_event" />
+			<File name="locations\burger" />
+			<File name="locations\BurgerTip" />
+			<File name="locations\burgerWork" />
+			<File name="locations\butik" />
+			<File name="locations\butoilet" />
+			<File name="locations\cafe_parco" />
+			<File name="locations\cafe2" />
+			<File name="locations\cafe3" />
+			<File name="locations\card" />
+			<File name="locations\cardgame_durak" />
+			<File name="locations\cards" />
+			<File name="locations\carF" />
+			<File name="locations\carF1" />
+			<File name="locations\casino" />
+			<File name="locations\cfnm" />
+			<File name="locations\cikl" />
+			<File name="locations\cityTrain" />
+			<File name="locations\clener" />
+			<File name="locations\cloakroom" />
+			<File name="locations\clothing" />
+			<File name="locations\clothing_attributes" />
+			<File name="locations\clothing_descriptions" />
+			<File name="locations\clothing_QV" />
+			<File name="locations\club" />
+			<File name="locations\Club2" />
+			<File name="locations\comendant" />
+			<File name="locations\counter" />
+			<File name="locations\croupier" />
+			<File name="locations\croupier2" />
+			<File name="locations\cum_arrcheat" />
+			<File name="locations\cum_call" />
+			<File name="locations\cum_cleanup" />
+			<File name="locations\Cum_Manage" />
+			<File name="locations\cumarrput" />
+			<File name="locations\cuminsidereact" />
+			<File name="locations\cumreaction" />
+			<File name="locations\dachain" />
+			<File name="locations\dachamy" />
+			<File name="locations\dachaogr" />
+			<File name="locations\dachaogr0" />
+			<File name="locations\dachi" />
+			<File name="locations\danceclass" />
+			<File name="locations\danceGev" />
+			<File name="locations\DanceWhore1" />
+			<File name="locations\DanceWhore2" />
+			<File name="locations\DanceWhore3" />
+			<File name="locations\DanceWhore4" />
+			<File name="locations\DanceWhore5" />
+			<File name="locations\DanceWhore6" />
+			<File name="locations\DanceWhore7" />
+			<File name="locations\DanceWhore8" />
+			<File name="locations\dangeon" />
+			<File name="locations\daystart" />
+			<File name="locations\deckShuffle" />
+			<File name="locations\defence" />
+			<File name="locations\dibodi" />
+			<File name="locations\dima" />
+			<File name="locations\dimaGoHome2" />
+			<File name="locations\dimaHome" />
+			<File name="locations\dimaRudeEv" />
+			<File name="locations\DimkaWarning" />
+			<File name="locations\din_bad" />
+			<File name="locations\din_pav" />
+			<File name="locations\din_van" />
+			<File name="locations\dina" />
+			<File name="locations\dinBoroda" />
+			<File name="locations\dinfather" />
+			<File name="locations\dinmother" />
+			<File name="locations\dinnpc" />
+			<File name="locations\dinParty" />
+			<File name="locations\dinSex" />
+			<File name="locations\dinSex2" />
+			<File name="locations\dinsexFX" />
+			<File name="locations\dinsexgivi" />
+			<File name="locations\dinsister" />
+			<File name="locations\divan" />
+			<File name="locations\dk" />
+			<File name="locations\DNA" />
+			<File name="locations\dom_gor" />
+			<File name="locations\dorm" />
+			<File name="locations\dort" />
+			<File name="locations\down" />
+			<File name="locations\dreams" />
+			<File name="locations\dvor" />
+			<File name="locations\elevator" />
+			<File name="locations\ender" />
+			<File name="locations\enderKik" />
+			<File name="locations\EndFight" />
+			<File name="locations\enemy" />
+			<File name="locations\etoexhib" />
+			<File name="locations\EvBoyBuh" />
+			<File name="locations\event" />
+			<File name="locations\events" />
+			<File name="locations\EvgopBuh" />
+			<File name="locations\EvOtelMan" />
 			<File name="locations\exercise" />
-        </Folder>
-    </Project>
+			<File name="locations\exhibitionistshop" />
+			<File name="locations\famdorfride" />
+			<File name="locations\fame" />
+			<File name="locations\family" />
+			<File name="locations\farmhomeride" />
+			<File name="locations\father" />
+			<File name="locations\fathersex" />
+			<File name="locations\fbDorm" />
+			<File name="locations\fbDormD" />
+			<File name="locations\fbGar" />
+			<File name="locations\fbHouse" />
+			<File name="locations\FedorEv" />
+			<File name="locations\FedorEv2" />
+			<File name="locations\FedorEv3" />
+			<File name="locations\FedorEv4" />
+			<File name="locations\FedorMisc" />
+			<File name="locations\femcyc" />
+			<File name="locations\fight" />
+			<File name="locations\fight1" />
+			<File name="locations\fight2" />
+			<File name="locations\fight3" />
+			<File name="locations\FightCrouch" />
+			<File name="locations\FightE" />
+			<File name="locations\FightE1" />
+			<File name="locations\FightE2" />
+			<File name="locations\FightE3" />
+			<File name="locations\fightFW" />
+			<File name="locations\FightStat" />
+			<File name="locations\film" />
+			<File name="locations\fit" />
+			<File name="locations\food" />
+			<File name="locations\foto" />
+			<File name="locations\frot" />
+			<File name="locations\FSfight" />
+			<File name="locations\FSgame" />
+			<File name="locations\FSroom" />
+			<File name="locations\FSstart" />
+			<File name="locations\FSstat" />
+			<File name="locations\furi" />
+			<File name="locations\furisex" />
+			<File name="locations\Gadbana" />
+			<File name="locations\Gaddvor" />
+			<File name="locations\gadfield" />
+			<File name="locations\gadforest" />
+			<File name="locations\gadforest_event" />
+			<File name="locations\gadforestlost" />
+			<File name="locations\gadforestrelax" />
+			<File name="locations\gadforestswamp" />
+			<File name="locations\Gadgarden" />
+			<File name="locations\Gadhouse" />
+			<File name="locations\gadmarket" />
+			<File name="locations\gadprostitutes" />
+			<File name="locations\gadriver" />
+			<File name="locations\gadroad" />
+			<File name="locations\Gadsarai" />
+			<File name="locations\gadukino" />
+			<File name="locations\gadukino_event" />
+			<File name="locations\gameover" />
+			<File name="locations\gaptek" />
+			<File name="locations\garfather" />
+			<File name="locations\gargazel" />
+			<File name="locations\garmassiv" />
+			<File name="locations\gdk" />
+			<File name="locations\gdkbibl" />
+			<File name="locations\gdkin" />
+			<File name="locations\gdkkru" />
+			<File name="locations\gdksport" />
+			<File name="locations\gdktoilet" />
+			<File name="locations\generation" />
+			<File name="locations\gevent" />
+			<File name="locations\gkafe" />
+			<File name="locations\gKristinaZv" />
+			<File name="locations\glake" />
+			<File name="locations\gLakeNude" />
+			<File name="locations\gLakeNudeEvent" />
+			<File name="locations\gLakeNudeForest" />
+			<File name="locations\Gnpc" />
+			<File name="locations\Gnpc_cinema" />
+			<File name="locations\Gnpc2" />
+			<File name="locations\goplust" />
+			<File name="locations\gopnew" />
+			<File name="locations\gopnik_house" />
+			<File name="locations\gopsex" />
+			<File name="locations\gopskver" />
+			<File name="locations\gopwho" />
+			<File name="locations\gpoli" />
+			<File name="locations\Gpornmark" />
+			<File name="locations\grandmahelp" />
+			<File name="locations\grandpahelp" />
+			<File name="locations\graveyard" />
+			<File name="locations\Grinok" />
+			<File name="locations\Gshveyfab" />
+			<File name="locations\gschool_bathrooms" />
+			<File name="locations\gschool_detention" />
+			<File name="locations\gschool_events" />
+			<File name="locations\gschool_gossip" />
+			<File name="locations\gschool_grounds" />
+			<File name="locations\gschool_lessons" />
+			<File name="locations\gschool_lunch" />
+			<File name="locations\gschool_sex" />
+			<File name="locations\gskino" />
+			<File name="locations\gskver" />
+			<File name="locations\gtelefon" />
+			<File name="locations\hairsalon" />
+			<File name="locations\hall" />
+			<File name="locations\HanterLoveSex" />
+			<File name="locations\hanters" />
+			<File name="locations\hantersex" />
+			<File name="locations\hotel" />
+			<File name="locations\hotel_resep" />
+			<File name="locations\HotelAdmin" />
+			<File name="locations\HotelHole" />
+			<File name="locations\HotelRoom" />
+			<File name="locations\HotelWork" />
+			<File name="locations\house" />
+			<File name="locations\housecall" />
+			<File name="locations\husb" />
+			<File name="locations\husbSex" />
+			<File name="locations\changingroom" />
+			<File name="locations\Cheatmenu_din" />
+			<File name="locations\chessplay" />
+			<File name="locations\IgorEv" />
+			<File name="locations\IgorHanter" />
+			<File name="locations\igorhome" />
+			<File name="locations\igravt" />
+			<File name="locations\igrkart2" />
+			<File name="locations\indik" />
+			<File name="locations\indoors" />
+			<File name="locations\init" />
+			<File name="locations\init_music" />
+			<File name="locations\initKik" />
+			<File name="locations\inputProcessing" />
+			<File name="locations\ira" />
+			<File name="locations\IrinaRoom" />
+			<File name="locations\IvanEv" />
+			<File name="locations\ivanRoom" />
+			<File name="locations\izdevat" />
+			<File name="locations\JuliaMilGo" />
+			<File name="locations\JuliaMilHome" />
+			<File name="locations\JuliaMilVhod" />
+			<File name="locations\kafe" />
+			<File name="locations\kafe2" />
+			<File name="locations\kafeend" />
+			<File name="locations\kafeM" />
+			<File name="locations\kafesvid" />
+			<File name="locations\kakuzu" />
+			<File name="locations\kamera" />
+			<File name="locations\kameraKPZ" />
+			<File name="locations\katalkin" />
+			<File name="locations\katalkinAlko" />
+			<File name="locations\katalkinSex" />
+			<File name="locations\kathouse0" />
+			<File name="locations\katja_sex" />
+			<File name="locations\Katja_Tanga" />
+			<File name="locations\katjaEv" />
+			<File name="locations\katjaEvDin" />
+			<File name="locations\KatjaHome" />
+			<File name="locations\KatjaHomeTalk" />
+			<File name="locations\Katlake" />
+			<File name="locations\katspalnya" />
+			<File name="locations\kavkazkafe" />
+			<File name="locations\kazinosvid" />
+			<File name="locations\kazvar" />
+			<File name="locations\KGDbefore" />
+			<File name="locations\KGDexp" />
+			<File name="locations\KGDfight" />
+			<File name="locations\KGDgame" />
+			<File name="locations\KGDparty" />
+			<File name="locations\KGDstart" />
+			<File name="locations\KGOLboss" />
+			<File name="locations\KGOLenemy" />
+			<File name="locations\KGOLexpa" />
+			<File name="locations\KGOLfight" />
+			<File name="locations\KGOLgame" />
+			<File name="locations\KGstart" />
+			<File name="locations\KGZdyn" />
+			<File name="locations\KGZfight" />
+			<File name="locations\KGZgame" />
+			<File name="locations\KGZstart" />
+			<File name="locations\kid" />
+			<File name="locations\Kikatak" />
+			<File name="locations\kikbox" />
+			<File name="locations\kino" />
+			<File name="locations\kinoM" />
+			<File name="locations\kinosvid" />
+			<File name="locations\kiosk" />
+			<File name="locations\kisameQW" />
+			<File name="locations\kit_din" />
+			<File name="locations\klofdomhouse" />
+			<File name="locations\Komp" />
+			<File name="locations\kompMFC" />
+			<File name="locations\kompMFCtwo" />
+			<File name="locations\koncepod" />
+			<File name="locations\koncepod1" />
+			<File name="locations\korr" />
+			<File name="locations\korr2x" />
+			<File name="locations\korrPar" />
+			<File name="locations\kotovdom" />
+			<File name="locations\kotovEv" />
+			<File name="locations\kotovSex" />
+			<File name="locations\kotovtalker" />
+			<File name="locations\krol" />
+			<File name="locations\kruchess" />
+			<File name="locations\krupo" />
+			<File name="locations\krutishi" />
+			<File name="locations\kseniyaQW" />
+			<File name="locations\kuhr" />
+			<File name="locations\kuhr2x" />
+			<File name="locations\kuhrPar" />
+			<File name="locations\kutuzka" />
+			<File name="locations\Kwlake1" />
+			<File name="locations\Kwlake2" />
+			<File name="locations\lab" />
+			<File name="locations\lake" />
+			<File name="locations\LakeBoyDy" />
+			<File name="locations\LakeBoyZ" />
+			<File name="locations\lakecafe" />
+			<File name="locations\laketoilet" />
+			<File name="locations\larek" />
+			<File name="locations\LariskaGo" />
+			<File name="locations\LariskaHome" />
+			<File name="locations\LariskaStart" />
+			<File name="locations\LBZhouse" />
+			<File name="locations\LCporn" />
+			<File name="locations\LCwork" />
+			<File name="locations\lena" />
+			<File name="locations\leonid" />
+			<File name="locations\lesbidomhouse" />
+			<File name="locations\lesbimistress" />
+			<File name="locations\lesbisubhouse" />
+			<File name="locations\lezbsex" />
+			<File name="locations\liam" />
+			<File name="locations\liamelkafe" />
+			<File name="locations\liames" />
+			<File name="locations\loadg" />
+			<File name="locations\LOCA" />
+			<File name="locations\lost_clothes_here" />
+			<File name="locations\love" />
+			<File name="locations\lug" />
+			<File name="locations\MagEncounterFairy" />
+			<File name="locations\magik" />
+			<File name="locations\mainQW" />
+			<File name="locations\Maria1" />
+			<File name="locations\masharoom" />
+			<File name="locations\MBallroom" />
+			<File name="locations\MBasement" />
+			<File name="locations\MBathrooms" />
+			<File name="locations\MConservatory" />
+			<File name="locations\MDining" />
+			<File name="locations\MDressing" />
+			<File name="locations\Meadow" />
+			<File name="locations\MEastbed" />
+			<File name="locations\meet" />
+			<File name="locations\MenuLoc" />
+			<File name="locations\MenuMainLoc" />
+			<File name="locations\metro" />
+			<File name="locations\metro_events" />
+			<File name="locations\mey_home" />
+			<File name="locations\mey_tamara_events" />
+			<File name="locations\mey_vika_events" />
+			<File name="locations\mey_vika_strings" />
+			<File name="locations\MGames" />
+			<File name="locations\MHall" />
+			<File name="locations\Military" />
+			<File name="locations\Mirafather" />
+			<File name="locations\mirasex" />
+			<File name="locations\Miroslava" />
+			<File name="locations\MiroslavaHome" />
+			<File name="locations\mirror" />
+			<File name="locations\misha" />
+			<File name="locations\mitka" />
+			<File name="locations\mitkabuh" />
+			<File name="locations\mitkabuh_group" />
+			<File name="locations\mitkasex" />
+			<File name="locations\MKitchen" />
+			<File name="locations\MLanding" />
+			<File name="locations\MLibrary" />
+			<File name="locations\MLiving" />
+			<File name="locations\motel" />
+			<File name="locations\mother" />
+			<File name="locations\motherkafeboss" />
+			<File name="locations\motherQW" />
+			<File name="locations\mqroom" />
+			<File name="locations\MRear" />
+			<File name="locations\musorkaexh" />
+			<File name="locations\MWestbed" />
+			<File name="locations\namer" />
+			<File name="locations\narkopriton" />
+			<File name="locations\nastja" />
+			<File name="locations\NatBelGo" />
+			<File name="locations\NatBelHome" />
+			<File name="locations\NatBelVhod" />
+			<File name="locations\NewCloShop" />
+			<File name="locations\NikoDates" />
+			<File name="locations\NikoDreams" />
+			<File name="locations\NikoEv" />
+			<File name="locations\NikoEv2" />
+			<File name="locations\NikoPayback" />
+			<File name="locations\NikoSlut" />
+			<File name="locations\nill" />
+			<File name="locations\nogorslut" />
+			<File name="locations\Nord" />
+			<File name="locations\NormPR" />
+			<File name="locations\npc" />
+			<File name="locations\npc_intro" />
+			<File name="locations\npcbreeder" />
+			<File name="locations\npccleanc" />
+			<File name="locations\npcgeneratec" />
+			<File name="locations\npcgenext" />
+			<File name="locations\npcpreservec" />
+			<File name="locations\npcrnamefile" />
+			<File name="locations\npcstatic1" />
+			<File name="locations\npcstatic2" />
+			<File name="locations\npcstatic3" />
+			<File name="locations\npcstatic4" />
+			<File name="locations\npcstatic5" />
+			<File name="locations\npcview" />
+			<File name="locations\Nudelake" />
+			<File name="locations\number1" />
+			<File name="locations\number2" />
+			<File name="locations\number3" />
+			<File name="locations\number4" />
+			<File name="locations\obekt" />
+			<File name="locations\obekt2" />
+			<File name="locations\obj_din" />
+			<File name="locations\obkitchen" />
+			<File name="locations\obroom" />
+			<File name="locations\office" />
+			<File name="locations\onobjsel" />
+			<File name="locations\oral" />
+			<File name="locations\orgasm" />
+			<File name="locations\orgazm" />
+			<File name="locations\outdoors" />
+			<File name="locations\pain" />
+			<File name="locations\Palatka" />
+			<File name="locations\ParChurch" />
+			<File name="locations\ParChurch2" />
+			<File name="locations\park" />
+			<File name="locations\parkBimbo" />
+			<File name="locations\parkdin" />
+			<File name="locations\parkivent" />
+			<File name="locations\ParkKafe" />
+			<File name="locations\parkM" />
+			<File name="locations\parks" />
+			<File name="locations\parksvid" />
+			<File name="locations\party" />
+			<File name="locations\party_boy" />
+			<File name="locations\party_boys" />
+			<File name="locations\party_girls" />
+			<File name="locations\pattest" />
+			<File name="locations\pavCommercial" />
+			<File name="locations\pavCommercialOffices" />
+			<File name="locations\pavResidential" />
+			<File name="locations\paysex" />
+			<File name="locations\Peterroom" />
+			<File name="locations\pharmacy" />
+			<File name="locations\pirsingsalon" />
+			<File name="locations\placer" />
+			<File name="locations\placer_act" />
+			<File name="locations\placer_end" />
+			<File name="locations\placer_gop_orgy" />
+			<File name="locations\placer_gskver" />
+			<File name="locations\placer_house" />
+			<File name="locations\placer_house_one" />
+			<File name="locations\placer_man" />
+			<File name="locations\placer_sex" />
+			<File name="locations\pod_ezd" />
+			<File name="locations\pod_whore" />
+			<File name="locations\podezdM" />
+			<File name="locations\podrsex" />
+			<File name="locations\podval_rape" />
+			<File name="locations\poli" />
+			<File name="locations\police" />
+			<File name="locations\popu" />
+			<File name="locations\porn_view" />
+			<File name="locations\porn_view_construct" />
+			<File name="locations\porn_view_strings" />
+			<File name="locations\pornfilm" />
+			<File name="locations\pornhist" />
+			<File name="locations\pornschedule" />
+			<File name="locations\pornstudio" />
+			<File name="locations\portmirror" />
+			<File name="locations\portnoi" />
+			<File name="locations\portnoi2" />
+			<File name="locations\postdeliveries" />
+			<File name="locations\postevents" />
+			<File name="locations\postmaster" />
+			<File name="locations\postoffice" />
+			<File name="locations\preALT" />
+			<File name="locations\preCUST" />
+			<File name="locations\pregriskeval" />
+			<File name="locations\preSYS" />
+			<File name="locations\preTG" />
+			<File name="locations\priziv" />
+			<File name="locations\Prostitute" />
+			<File name="locations\psiklin" />
+			<File name="locations\ptu_dush" />
+			<File name="locations\qjob" />
+			<File name="locations\qwBarPolet" />
+			<File name="locations\qwBarPoletToilet" />
+			<File name="locations\qwbereg" />
+			<File name="locations\qwbereg2" />
+			<File name="locations\qwIzoldaApp" />
+			<File name="locations\qwloc" />
+			<File name="locations\qwloc2" />
+			<File name="locations\qwloc3" />
+			<File name="locations\qwloc4" />
+			<File name="locations\qwlocdog" />
+			<File name="locations\qwmeet" />
+			<File name="locations\qwmeet2" />
+			<File name="locations\qwmeet3" />
+			<File name="locations\qwpaluba" />
+			<File name="locations\rate" />
+			<File name="locations\ratinglist" />
+			<File name="locations\razrKik" />
+			<File name="locations\reks" />
+			<File name="locations\restoran" />
+			<File name="locations\restoranM" />
+			<File name="locations\result" />
+			<File name="locations\RimmaSexQW" />
+			<File name="locations\rinok" />
+			<File name="locations\rinwork" />
+			<File name="locations\road" />
+			<File name="locations\roma" />
+			<File name="locations\roulette" />
+			<File name="locations\RoundEnd" />
+			<File name="locations\RoundStop" />
+			<File name="locations\RynokHoz" />
+			<File name="locations\salon" />
+			<File name="locations\saloon" />
+			<File name="locations\sauna" />
+			<File name="locations\sauna2" />
+			<File name="locations\saunabed" />
+			<File name="locations\saunaroom" />
+			<File name="locations\saunawhore" />
+			<File name="locations\saunawork" />
+			<File name="locations\saveg" />
+			<File name="locations\saveupdater" />
+			<File name="locations\sbReksHome" />
+			<File name="locations\seeparentsex" />
+			<File name="locations\seeporn" />
+			<File name="locations\selfplay" />
+			<File name="locations\sell_young_clothes" />
+			<File name="locations\Serge_kuh" />
+			<File name="locations\Serge_Shulgin" />
+			<File name="locations\SergeiHanter" />
+			<File name="locations\serpent" />
+			<File name="locations\sex" />
+			<File name="locations\sexcontraprio" />
+			<File name="locations\sexdvanadva" />
+			<File name="locations\sexdvoe" />
+			<File name="locations\sexm" />
+			<File name="locations\sexorg" />
+			<File name="locations\sexprefrand" />
+			<File name="locations\sexshop" />
+			<File name="locations\Sgrup" />
+			<File name="locations\Sgrup1" />
+			<File name="locations\Sgrup2" />
+			<File name="locations\Sgrup3" />
+			<File name="locations\Sgrup4" />
+			<File name="locations\Sgrup5" />
+			<File name="locations\SgrupDisco" />
+			<File name="locations\shop" />
+			<File name="locations\shopdacha" />
+			<File name="locations\show_table" />
+			<File name="locations\shulga_room" />
+			<File name="locations\shulgabath" />
+			<File name="locations\shulgabed" />
+			<File name="locations\shulgahall" />
+			<File name="locations\shulgahome" />
+			<File name="locations\shulgakuh" />
+			<File name="locations\sister" />
+			<File name="locations\sister_party" />
+			<File name="locations\sisterQW" />
+			<File name="locations\sistersleep" />
+			<File name="locations\sitr" />
+			<File name="locations\sitr2x" />
+			<File name="locations\sitrPar" />
+			<File name="locations\skverdin" />
+			<File name="locations\Snpc" />
+			<File name="locations\sny" />
+			<File name="locations\soba" />
+			<File name="locations\soniaDisco" />
+			<File name="locations\SoniaHome" />
+			<File name="locations\spell" />
+			<File name="locations\sportShop" />
+			<File name="locations\stallion" />
+			<File name="locations\starenie" />
+			<File name="locations\start" />
+			<File name="locations\StasQW" />
+			<File name="locations\StasSex" />
+			<File name="locations\stat" />
+			<File name="locations\stat_display" />
+			<File name="locations\stat_sklattrib" />
+			<File name="locations\statBat" />
+			<File name="locations\stihi" />
+			<File name="locations\stol" />
+			<File name="locations\street" />
+			<File name="locations\street_event" />
+			<File name="locations\strela" />
+			<File name="locations\strelba" />
+			<File name="locations\stripclub" />
+			<File name="locations\stwork" />
+			<File name="locations\stwork2" />
+			<File name="locations\subkid" />
+			<File name="locations\SubLoss" />
+			<File name="locations\SubWin" />
+			<File name="locations\succubus" />
+			<File name="locations\svi" />
+			<File name="locations\svidan" />
+			<File name="locations\svidboy" />
+			<File name="locations\swamp" />
+			<File name="locations\swamp_yard" />
+			<File name="locations\swamphouse" />
+			<File name="locations\swampspring" />
+			<File name="locations\tanapartment" />
+			<File name="locations\tanhouse" />
+			<File name="locations\tanhousezal" />
+			<File name="locations\tanhozspal" />
+			<File name="locations\tankitchen" />
+			<File name="locations\tanNicholas" />
+			<File name="locations\tanroom" />
+			<File name="locations\tanspalnya" />
+			<File name="locations\tanvanr" />
+			<File name="locations\tatiana_missions" />
+			<File name="locations\taxi" />
+			<File name="locations\telefon" />
+			<File name="locations\Terminal" />
+			<File name="locations\TerminalOffice" />
+			<File name="locations\test" />
+			<File name="locations\therapist" />
+			<File name="locations\Timofei" />
+			<File name="locations\TimofeiMetro" />
+			<File name="locations\tobiQW" />
+			<File name="locations\torgcentr" />
+			<File name="locations\torgpred" />
+			<File name="locations\train" />
+			<File name="locations\train_incidental" />
+			<File name="locations\trashplace" />
+			<File name="locations\trFatherMisha" />
+			<File name="locations\TV" />
+			<File name="locations\ugel" />
+			<File name="locations\ugol" />
+			<File name="locations\ugol1" />
+			<File name="locations\univer" />
+			<File name="locations\univer_din" />
+			<File name="locations\vann" />
+			<File name="locations\vanr" />
+			<File name="locations\vanr2x" />
+			<File name="locations\vanrPar" />
+			<File name="locations\vecher" />
+			<File name="locations\version" />
+			<File name="locations\Vika" />
+			<File name="locations\vipclub" />
+			<File name="locations\Vnlake1" />
+			<File name="locations\Vnlake2" />
+			<File name="locations\vokBimbo" />
+			<File name="locations\vokdin" />
+			<File name="locations\vokdinvera" />
+			<File name="locations\vokmantoiev" />
+			<File name="locations\vokzal" />
+			<File name="locations\vokzalG" />
+			<File name="locations\vokzalGin" />
+			<File name="locations\vokzalholle" />
+			<File name="locations\vokzalper" />
+			<File name="locations\vokzalperG" />
+			<File name="locations\vokzaltoilet" />
+			<File name="locations\vokzaltorg" />
+			<File name="locations\volAndGev" />
+			<File name="locations\VolkovHome" />
+			<File name="locations\VolleyTrenCentr" />
+			<File name="locations\VolleyTrenerSpeak" />
+			<File name="locations\Voltrener" />
+			<File name="locations\Voltrenersex" />
+			<File name="locations\VoltrenerSexShower" />
+			<File name="locations\webcam_site" />
+			<File name="locations\WorkHosp" />
+			<File name="locations\worksalon" />
+			<File name="locations\yarik" />
+			<File name="locations\yban" />
+			<File name="locations\ybass" />
+			<File name="locations\ybedr" />
+			<File name="locations\ybib" />
+			<File name="locations\ydet" />
+			<File name="locations\yesgorslut" />
+			<File name="locations\ykabinet" />
+			<File name="locations\ykamin" />
+			<File name="locations\ykuh" />
+			<File name="locations\ymans" />
+			<File name="locations\young_shop" />
+			<File name="locations\youplace" />
+			<File name="locations\youry" />
+			<File name="locations\ysport" />
+			<File name="locations\yvan" />
+			<File name="locations\yzal" />
+			<File name="locations\zaprF" />
+			<File name="locations\zaprFWash" />
+			<File name="locations\zoomagazine" />
+			<File name="locations\zsoft_gopskverGorSlut" />
+			<File name="locations\_attributes_average" />
+			<File name="locations\_attributes_burlesque" />
+			<File name="locations\_attributes_coat" />
+			<File name="locations\_attributes_exercise" />
+			<File name="locations\_attributes_exhibit" />
+			<File name="locations\_attributes_expensive" />
+			<File name="locations\_attributes_fetish" />
+			<File name="locations\_attributes_formal" />
+			<File name="locations\_attributes_cheap" />
+			<File name="locations\_attributes_office" />
+			<File name="locations\_attributes_school" />
+			<File name="locations\_attributes_swimwear" />
+			<File name="locations\_attributes_uniform" />
+			<File name="locations\_buy_item" />
+			<File name="locations\_buy_single_item" />
+			<File name="locations\_clothing_image" />
+			<File name="locations\_clothing_name" />
+			<File name="locations\_face_image" />
+			<File name="locations\_menu_addoldmenu" />
+			<File name="locations\_menu_autosave" />
+			<File name="locations\_menu_avariya" />
+			<File name="locations\_menu_bloknot" />
+			<File name="locations\_menu_body" />
+			<File name="locations\_menu_clothes" />
+			<File name="locations\_menu_descrip" />
+			<File name="locations\_menu_face" />
+			<File name="locations\_menu_cheat" />
+			<File name="locations\_menu_magic" />
+			<File name="locations\_menu_mobila" />
+			<File name="locations\_menu_obnovit" />
+			<File name="locations\_menu_pain" />
+			<File name="locations\_menu_pirs" />
+			<File name="locations\_menu_reputation" />
+			<File name="locations\_menu_skills" />
+			<File name="locations\_menu_statistika" />
+			<File name="locations\_menu_tattoos" />
+			<File name="locations\_short_description" />
+			<File name="locations\_single_stock_item" />
+			<File name="locations\_statcheck" />
+			<File name="locations\_stock_item" />
+			<File name="locations\_stock_item_info" />
+		</Folder>
+	</Project>
 </NotepadPlus>

+ 17 - 0
glife.qproj

@@ -112,6 +112,7 @@
       <Location name="npcstatic3"/>
       <Location name="npcstatic4"/>
 	  <Location name="npcstatic5"/>
+	  <Location name="npc_intro"/>
       <Location name="saveupdater"/>
     </Folder>
     <Folder name="Combat">
@@ -370,6 +371,16 @@
       <Location name="mey_vika_events"/>
       <Location name="mey_tamara_events"/>
     </Folder>
+    <Folder name="Niko Volkov">
+      <Location name="VolkovHome"/>
+      <Location name="NikoEv"/>
+      <Location name="NikoEv2"/>
+      <Location name="NikoDates"/>
+      <Location name="NikoDreams"/>
+      <Location name="NikoPayback"/>
+      <Location name="NikoSlut"/>
+      <Location name="SoniaHome"/>
+    </Folder>
     <Folder name="Village">
       <Location name="famdorfride"/>
       <Location name="farmhomeride"/>
@@ -484,6 +495,10 @@
       <Location name="kotovEv"/>
       <Location name="IvanEv"/>
       <Location name="FedorEv"/>
+      <Location name="FedorEv2"/>
+      <Location name="FedorEv3"/>
+      <Location name="FedorEv4"/>
+      <Location name="FedorMisc"/>
       <Location name="strela"/>
       <Location name="kotovSex"/>
       <Location name="kotovdom"/>
@@ -714,6 +729,8 @@
       <Location name="svidan"/>
     </Folder>
     <Folder name="University">
+      <Location name="island"/>
+      <Location name="dolls"/>
       <Location name="party"/>
       <Location name="obkitchen"/>
       <Location name="obroom"/>

+ 10 - 10
locations/AnalPR

@@ -29,7 +29,7 @@ if $ARGS[0] = '1':
 		gs 'stat'
 	end
 
-	'<center><img src="images/shared/sex/anal/doggy/anal30.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal30.jpg"></center>'
 	'You immediately feel the man''s hands on your ass cheeks when you get on your hands and knees in the back seat. The man confidently guides his condom-covered cock to your sphincter, and slowly thrusts all of his <<dick>> centimeters inside you.'
 	'<<$analsex>>'
 	'After a few minutes of fucking your ass, the man groans and you feel his hips spasming against yours. He pulls out of you and takes the filled condom off his slowly shrinking cock.'
@@ -70,12 +70,12 @@ if $ARGS[0] = '2':
 	end
 
 	picanRand = RAND(1,6)
-	if picanRand = 1:'<center><img src="images/shared/sex/anal/mis/cowl.jpg"></center>'
-	if picanRand = 2:'<center><img src="images/shared/sex/anal/mis/cowl2.jpg"></center>'
-	if picanRand = 3:'<center><img src="images/shared/sex/anal/mis/cowl3.jpg"></center>'
-	if picanRand = 4:'<center><img src="images/shared/sex/anal/mis/cowl4.jpg"></center>'
-	if picanRand = 5:'<center><img src="images/shared/sex/anal/mis/cowl5.jpg"></center>'
-	if picanRand = 6:'<center><img src="images/shared/sex/anal/mis/cowl6.jpg"></center>'
+	if picanRand = 1:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl.jpg"></center>'
+	if picanRand = 2:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl2.jpg"></center>'
+	if picanRand = 3:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl3.jpg"></center>'
+	if picanRand = 4:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl4.jpg"></center>'
+	if picanRand = 5:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl5.jpg"></center>'
+	if picanRand = 6:'<center><img <<$set_imgh>> src="images/shared/sex/anal/mis/cowl6.jpg"></center>'
 
 	'As soon as you lie down on the hood of the car, the man parts your legs and eagerly presses the tip of his cock against your anus.'
 	gs 'arousal', 'anal', 15, 'sub'
@@ -141,7 +141,7 @@ if $ARGS[0] = '4':
 	pcs_throat += 1
 	gs'stat'
 
-	'<center><img src="images/shared/sex/blowjob/bjr.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bjr.jpg"></center>'
 	'"Hey, I did what you wanted! You owe m-" you begin, but he doesn''t let you finish. The man angrily punches you in the stomach, making you double over in pain.'
 	'"Fine! You''ll get your money... but you will correct your mistake, whore!" he snarls angrily.'
 	'He kneels down and thrusts his smelly cock all the way into your mouth, and says with a mean grin: "Start sucking, slut. It''s not coming out until it''s completely clean!"'
@@ -163,7 +163,7 @@ if $ARGS[0] = '5':
 	pcs_throat += 1
 	gs'stat'
 
-	'<center><img src="images/shared/sex/blowjob/bjr1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bjr1.jpg"></center>'
 	'You understand perfectly why he''s upset... that wasn''t very smart of you. You''ll have to think of a solution fast!'
 	'"I''m sorry, sir! Please allow me to make it up to you..." you tell him, while you drop to your knees obediently. This is going to be unpleasant, but you have to do something to keep him happy!'
 	'The man watches in disgust as you close your lips around his dirty cock. The taste and smell is awful! He''s still upset, but you can see his anger slowly fade away when you lick his dirty cock clean. It''s fully erect again by now, and you can tell he''s still very horny despite your mishap.'
@@ -179,7 +179,7 @@ if $ARGS[0] = '6':
 	money += ProsMoney*110
 	gs'stat'
 
-	'<center><img src="images/locations/shared/sex/car/sexcar20.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/shared/sex/car/sexcar20.jpg"></center>'
 	'You lie down obediently, giving the man a humble look as he takes place between your legs. He quickly put a condom on, not taking any more chances with you. You still have that awful taste in your mouth, but do your best to focus on giving the man pleasure.'
 	'The man drives his cock deep inside you and begins to fuck your pussy using long, firm strokes. He groans every time his hips slap against yours, and the intensity with which he fucks you makes you cry out as well.'
 	'After a few minutes, the man groans and you feel his hips spasming against yours. He pulls out of you and takes the filled condom off his slowly shrinking cock.'

+ 15 - 15
locations/AndreiHanter

@@ -9,7 +9,7 @@ gs'stat'
 
 '<center><b><font color = maroon>Andrew</font></b></center>'
 
-'<center><img src="images/locations/gadukino/hunters/AndreiHanter.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/AndreiHanter.jpg"></center>'
 
 'Andrew is one of the familiar hunters. He <<boyage>> years. He is divorced and lives in Gadyukino one.'
 if hantersAndreiQw < 0:'You and him had a bad relationship, he seems to hold on you some offense.'
@@ -25,7 +25,7 @@ act 'Chat':
     if hantersAndreiQw < 10:hantersAndreiQw += 1
     gs'stat'
     
-    '<center><img src="images/locations/gadukino/hunters/talk1.'+rand(1,3)+'.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/talk1.'+rand(1,3)+'.jpg"></center>'
     if hantersAndreiQw >= 0:'You chatted with Andrew, listening to interesting stories from his life, and telling your.'
     if hantersAndreiQw < 0:'You are talking with Andrew. He frowns and behaves not very friendly, but still supports the conversation.'
     
@@ -41,7 +41,7 @@ if hantersAndreiQw >= 10:
             if hantersSergeiQw >= 10 and hantersKnowSlut = 0:hantersSergeiQw -= 1        
             gs'stat'
         
-            '<center><img src="images/locations/gadukino/hunters/hanterflirt1.'+rand(1,3)+'.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt1.'+rand(1,3)+'.jpg"></center>'
             'You need is flirting with Andrew. He is glad of your company, and once you notice it wandering a clear view.'
             
 			gs 'arousal', 'foreplay', 120
@@ -51,7 +51,7 @@ if hantersAndreiQw >= 10:
                 cls
                 gs'stat'
 
-                '<center><img src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
                 'You smile sweetly at Andrew and flirting with him. Suddenly he nears his face to you and bites into your lips with a passionate, long kiss...'
 				
 				gs 'arousal', 'foreplay', 5
@@ -64,7 +64,7 @@ if hantersAndreiQw >= 10:
                     pcs_mood = 100
                     gs'stat'
 
-                    '<center><img src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
+                    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
                     'Your lips touch, you heart stops and breathing. <<$boydesc>> passionately kisses you and you answer him, clinging harder to his lips.'
                     
 					gs 'arousal', 'kiss', 5
@@ -76,7 +76,7 @@ if hantersAndreiQw >= 10:
                             minut += 5
                             gs'stat'
                         
-                            '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                             '- <<$pcs_nickname>>, I want you, - whispered in your ear <<$boydesc>>, when your lips finally parted. Seeing that you don`t mind <<$boydesc>> gently took you by the hand and led him.' 
                     
                             act 'Go':gt'HanterLoveSex'
@@ -87,7 +87,7 @@ if hantersAndreiQw >= 10:
                             minut += 5
                             gs'stat'                        
                         
-                            '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                             '- It was cool, <<$pcs_nickname>>, - said to you <<$boydesc>>, when your lips finally parted.'
                         
                             act'Further':gt $loc, $metka
@@ -101,7 +101,7 @@ if hantersAndreiQw >= 10:
                     hantersAndreiQw -= 50
                     gs'stat'
 
-                    '<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+                    '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
                     ' - No, <<$boydesc>>, don`t need this, you said, and trying not to look at Andrew gone.'                   
                         
                     act'Go':gt $loc, $metka    
@@ -119,7 +119,7 @@ if hantersAndreiQw >= 10:
             pcs_mood = 100      
             gs'stat'
         
-            '<center><img src="images/locations/gadukino/hunters/hanterlove1.'+rand(1,4)+'.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.'+rand(1,4)+'.jpg"></center>'
             'You spend with Andrew time together softly cooing kisses and hugs. He is glad of your company, you can`t help but notice its full of happiness look, and it makes you want to sing and fly.'
 			
 			gs 'arousal', 'foreplay', 120
@@ -137,7 +137,7 @@ if hantersAndreiLove > 0 and pcs_horny >= 60:
         hantersAndreisex += rand(6,24) 
 	    gs 'stat'
 				
-	    '<center><img src="images/locations/gadukino/hunters/hanterflirt2.'+rand(1,6)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt2.'+rand(1,6)+'.jpg"></center>'
 	    'You absolutely insolently wink Igor, languid sigh, swiping a tongue across the lips and Igor, all knowing, takes you by the hand and leads.'
 		
 		gs 'arousal', 'foreplay', 10
@@ -152,7 +152,7 @@ if hantersAndreiLove > 0 and pcs_horny <= 60 and hantersAndreiQw >= 10 and temp
     hantersAndreisex += rand(6,24) 
 	gs 'stat'
 	
-	'<center><img src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
 	'You approached Andrew to spend time together, but he suddenly stared at your lips with a passionate kiss and without a word pulled you with him..'
 	
 	gs 'arousal', 'kiss', 5
@@ -163,7 +163,7 @@ if hantersAndreiLove > 0 and pcs_horny <= 60 and hantersAndreiQw >= 10 and temp
 	    hantersAndreiQw += 1
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/hunters/hanterhands.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterhands.jpg"></center>'
 		'You go with Andrew holding hands, knowing that where he leads you. And you really don`t even mind.'
 		
 		gs 'arousal', 'foreplay', 5
@@ -177,7 +177,7 @@ if hantersAndreiLove > 0 and pcs_horny <= 60 and hantersAndreiQw >= 10 and temp
 	    hantersAndreiQw -= 1
 		gs 'stat'
 		
-        '<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+        '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
         ' - No, <<$boydesc>>, not now, you said, and trying not to look at it left.' 	
 	    act 'Go':gt $loc, $metka
     end     
@@ -191,7 +191,7 @@ if hantersAndreiLove > 0:
         hantersAndreiQw -= 100 
 	    gs 'stat'
 		
-	    '<center><img src="images/locations/gadukino/hunters/brosila.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/brosila.jpg"></center>'
 	    ' - <<$boydesc>>, I decided that our relationship had no future, and we must part, you said, and trying not to look at Andrew, went.'
 		
 	    act 'Go':gt $loc, $metka
@@ -206,7 +206,7 @@ if hantersAndreiQw < 10 and hantersAndreiLove > 0:
     hantersAndreiLove = 0
     hantersAndreiQw -= 10 
 	gs 'stat'
-	'<center><img src="images/locations/gadukino/hunters/brosil.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/brosil.jpg"></center>'
 	'You wanted to talk to Andrew, but he is ahead of you, not allowing to tell you to say nislova.'
 	' - <<$pcs_nickname>>, between us nothing, so we`d better leave, " he said firmly and walked away.'
 	' - Well , maybe it`s for the best, " you thought, going in the other direction.'

+ 33 - 33
locations/BDSM

@@ -12,10 +12,10 @@ act 'Begin participating in the shooting':
 	cla
 	*clr
 
-	if pcs_haircol = 0:'<center><img src="images/studia/brunette_2.jpg"></center>'
-	if pcs_haircol = 1:'<center><img src="images/studia/brown_2.jpg"></center>'
-	if pcs_haircol = 2:'<center><img src="images/studia/redhead_2.jpg"></center>'
-	if pcs_haircol = 3:'<center><img src="images/studia/blonde_2.jpg"></center>'
+	if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_2.jpg"></center>'
+	if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_2.jpg"></center>'
+	if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_2.jpg"></center>'
+	if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_2.jpg"></center>'
 
 	'You started filming a scene with two actors'
 
@@ -26,10 +26,10 @@ act 'Begin participating in the shooting':
 			stat['bj'] += 2
 			gang += 1
 
-			if pcs_haircol = 0:'<center><img src="images/studia/brunette_3.jpg"></center>'
-			if pcs_haircol = 1:'<center><img src="images/studia/brown_3.jpg"></center>'
-			if pcs_haircol = 2:'<center><img src="images/studia/redhead_3.jpg"></center>'
-			if pcs_haircol = 3:'<center><img src="images/studia/blonde_3.jpg"></center>'
+			if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_3.jpg"></center>'
+			if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_3.jpg"></center>'
+			if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_3.jpg"></center>'
+			if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_3.jpg"></center>'
 
 			'You purse your lips and start sucking on the first cock while vigorously pistoning the other shaft with your hand. You alternate sucking and pistoning each cock with gusto, going as far as trying to swallow both simultaneously all while making eye contact with the lense in the hope enticing your viewers.'
 
@@ -39,10 +39,10 @@ act 'Begin participating in the shooting':
 				stat['anal'] += 1
 				pcs_ass += 1
 
-				if pcs_haircol = 0:'<center><img src="images/studia/brunette_4.jpg"></center>'
-				if pcs_haircol = 1:'<center><img src="images/studia/brown_4.jpg"></center>'
-				if pcs_haircol = 2:'<center><img src="images/studia/redhead_4.jpg"></center>'
-				if pcs_haircol = 3:'<center><img src="images/studia/blonde_4.jpg"></center>'
+				if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_4.jpg"></center>'
+				if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_4.jpg"></center>'
+				if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_4.jpg"></center>'
+				if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_4.jpg"></center>'
 
 				'One of the actors bends on all fours and unceremoniously jams his rod up your ass. He then proceeds to pound your butt into submission while you continue sucking away on your 2nd costars juicy man meat...'
 
@@ -50,10 +50,10 @@ act 'Begin participating in the shooting':
 					cla
 					*clr
 
-					if pcs_haircol = 0:'<center><img src="images/studia/brunette_5.jpg"></center>'
-					if pcs_haircol = 1:'<center><img src="images/studia/brown_5.jpg"></center>'
-					if pcs_haircol = 2:'<center><img src="images/studia/redhead_5.jpg"></center>'
-					if pcs_haircol = 3:'<center><img src="images/studia/blonde_5.jpg"></center>'
+					if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_5.jpg"></center>'
+					if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_5.jpg"></center>'
+					if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_5.jpg"></center>'
+					if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_5.jpg"></center>'
 
 				'You change positions. Your fellow porn actor lies down and you proceed to impale your anal cavity on his rigid rod. The third actor shoves his cock in your face and you immediately return to your hooverish ways...'
 
@@ -61,10 +61,10 @@ act 'Begin participating in the shooting':
 					cla
 					*clr
 
-					if pcs_haircol = 0:'<center><img src="images/studia/brunette_6.jpg"></center>'
-					if pcs_haircol = 1:'<center><img src="images/studia/brown_6.jpg"></center>'
-					if pcs_haircol = 2:'<center><img src="images/studia/redhead_6.jpg"></center>'
-					if pcs_haircol = 3:'<center><img src="images/studia/blonde_6.jpg"></center>'
+					if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_6.jpg"></center>'
+					if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_6.jpg"></center>'
+					if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_6.jpg"></center>'
+					if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_6.jpg"></center>'
 
 					'Your male costars exchange roles fucking your face and ass. You slather away unpreoccupied by the taste of your own ass.'
 
@@ -74,10 +74,10 @@ act 'Begin participating in the shooting':
 						stat['vaginal'] += 1
 						pcs_vag += 1
 
-						if pcs_haircol = 0:'<center><img src="images/studia/brunette_7.jpg"></center>'
-						if pcs_haircol = 1:'<center><img src="images/studia/brown_7.jpg"></center>'
-						if pcs_haircol = 2:'<center><img src="images/studia/redhead_7.jpg"></center>'
-						if pcs_haircol = 3:'<center><img src="images/studia/blonde_7.jpg"></center>'
+						if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_7.jpg"></center>'
+						if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_7.jpg"></center>'
+						if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_7.jpg"></center>'
+						if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_7.jpg"></center>'
 
 						'Your juicy pussy is being jackhammered to heaven when you feel something large probing your backdoor. Your ass tingles with arousal as it stretches to accommodate your new invader.-'
 
@@ -85,10 +85,10 @@ act 'Begin participating in the shooting':
 							cla
 							*clr
 
-							if pcs_haircol = 0:'<center><img src="images/studia/brunette_8.jpg"></center>'
-							if pcs_haircol = 1:'<center><img src="images/studia/brown_8.jpg"></center>'
-							if pcs_haircol = 2:'<center><img src="images/studia/redhead_8.jpg"></center>'
-							if pcs_haircol = 3:'<center><img src="images/studia/blonde_8.jpg"></center>'
+							if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_8.jpg"></center>'
+							if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_8.jpg"></center>'
+							if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_8.jpg"></center>'
+							if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_8.jpg"></center>'
 
 							'You let yourself be manhandled and stretched by the two brutes fucking you into pleasure numbing submission with their large pleasure rods. They roll you over and spread your legs farther apart giving the camera an excellent view of dripping quim and orgasming rosebud.'
 
@@ -98,10 +98,10 @@ act 'Begin participating in the shooting':
 								facial += 1
 								swallow += 1
 
-								if pcs_haircol = 0:'<center><img src="images/studia/brunette_9.jpg"></center>'
-								if pcs_haircol = 1:'<center><img src="images/studia/brown_9.jpg"></center>'
-								if pcs_haircol = 2:'<center><img src="images/studia/redhead_9.jpg"></center>'
-								if pcs_haircol = 3:'<center><img src="images/studia/blonde_9.jpg"></center>'
+								if pcs_haircol = 0:'<center><img <<$set_imgh>> src="images/studia/brunette_9.jpg"></center>'
+								if pcs_haircol = 1:'<center><img <<$set_imgh>> src="images/studia/brown_9.jpg"></center>'
+								if pcs_haircol = 2:'<center><img <<$set_imgh>> src="images/studia/redhead_9.jpg"></center>'
+								if pcs_haircol = 3:'<center><img <<$set_imgh>> src="images/studia/blonde_9.jpg"></center>'
 
 								'Reaching their limits the men pull out of you in earnest. You quickly kneel and open your mouth licking your lips as you await your favorite tasty treat. The actors jackoff furiously as jets of hot cum start raining down on your face. You must have worked them pretty good as your face is rapidly drenched in cock juice that starts to drip down your chin and on to your chest!'
 
@@ -116,7 +116,7 @@ act 'Begin participating in the shooting':
 									actr = 0
 									gs 'stat'
 
-									'<center><img src="images/studia/dvd-disс.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/studia/dvd-disс.jpg"></center>'
 									'You spent 9 hours for the filming'
 									'and received <<pcs_apprnc * 125>> <b>₽</b> in cash'
 

+ 8 - 8
locations/BDSM_Club

@@ -9,7 +9,7 @@ if $ARGS[0] = 'Hos':
 	gs 'cum_cleanup'
 	pcs_breath = 0
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/hosjaika.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/hosjaika.jpg"></center>'
 	'After a few visits to your Mistress you are getting a little closer. Seeing her this evening, you catch her a little tipsy. Instead of already familiar perversions, you just sit in the kitchen and drink wine, talking about life. In conversation, the Mistress mentions a BDSM club. Sounds interesting, you and the Mistress pour glass after glass and slowly you gather details from her. Turns out, the city has an elite BDSM-club, and the missus is in it. After much persuasion, she gives you a business card – a piece of cardboard with three-dimensional logo without inscriptions, and explains how to get to the Club.'
 	act 'Leave':gt 'street'
 end
@@ -23,7 +23,7 @@ if $ARGS[0] = 'start':
 	cls
 	minut += 10
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/club.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/club.jpg"></center>'
 	if BDSMtaxi = 1 and BDSMmeet = 0:
 		'The taxi brings you in a gated community outside of town and drops you off at the closed wrought iron gate. From the booth comes a guard, you show him the business card. Without saying anything, he opens the gate and points you in the direction. You walk to a marble tiled walkway past the neatly clipped shrubs and flower beds. An other guard meets you, and leads you into the mansion through an inconspicuous side door.'
 		act 'Enter club':gt 'BDSM_Club', 'in'
@@ -69,7 +69,7 @@ if $ARGS[0] = 'in':
 		minut += 10
 		$BDSMrole = ''
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
 		'You''re standing in an office, at a table in front of you sits a woman in a strict business suit. Her strict gaze as looks right through you. You show her the card, she briefly says.'
 		'"Candidate? Passport."'
 		'Your hand trembles as you reach out your passport.'
@@ -94,7 +94,7 @@ if $ARGS[0] = 'in':
 				sub += 1
 				$BDSMrole = 's'
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
 				'The woman''s eyes light up. She stands up behind the desk and orders you.'
 				'"Stand up!"'
 				'You jump, than understand, why you did. The imperious voice of this Lady holds you in awe.'
@@ -125,7 +125,7 @@ if $ARGS[0] = 'in':
 				minut += 10
 				$BDSMrole = 'd'
 				gs 'stat'
-				!'<center><img src="images/bdsm_club/<<$BDSMrole>><<BDSMmeet>>_2.jpg"></center>'
+				!'<center><img <<$set_imgh>> src="images/bdsm_club/<<$BDSMrole>><<BDSMmeet>>_2.jpg"></center>'
 				'The woman sighs disappointedly.'
 				'"Pity, we are short on subs."'
 				'"There is a registration fee of 10,000 <b>₽</b>. You should wear a expensive or formal clothing."'
@@ -144,7 +144,7 @@ if $ARGS[0] = 's_start':
 	cls
 	sub += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
 	'You enter the club and Mistress Elektra is sitting at her desk overseeing admissions.'
 	if money > 10000:
 		BDSMpayDay = daystart
@@ -162,7 +162,7 @@ if $ARGS[0] = 'd_start':
 	cls
 	pcs_dom += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
 	'Elektra is sitting at the admissions desk and greets you informally.'
 	if money > 10000:
 		BDSMpayDay = daystart
@@ -182,7 +182,7 @@ if $ARGS[0] = 'reception':
     $location_type = 'event'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/1_1.jpg"></center>'
 	'You go to the reception, Mistress Elektra is sitting at her desk looking a little bored.'
 	act 'Go to west wing hall': gt 'MHall', 'west'
 	act 'Go to the garage': gt 'MRear', 'garage'

+ 42 - 42
locations/BDSM_training

@@ -27,7 +27,7 @@ if $ARGS[0] = '1':
 	minut += 10
 	sub += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
 	'You are in the Club, security check your name off the list and let you in.  You give an elderly bookkeeper money and the security guard takes you into a small outbuilding away from the mansion. As you enter, you understand, almost the entire wing is a large room for BDSM-sessions.'
 	'Hanging from the ceiling chains with hooks and ropes, on the walls – lashes, whips, handcuffs, gags.  Submerged in the darkness of the far end of the hall you can just make out pads, tables, crosses and some odd device, you can only guess as to what it does. You are met by the lady from yesterday, her suit replaced by tight leather.  She holds in her hands a stick with glands at the ends.'
 	'"W-Hello," you just about manage.'
@@ -36,7 +36,7 @@ if $ARGS[0] = '1':
 	act 'Further':
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
 		'"This is for electrical shocks." Explains Mistress. "You will meet him later."'
 		'She licks the contacts, then shifts her gaze to you.'
 		'"Are you still dressed, bitch?"'
@@ -51,7 +51,7 @@ if $ARGS[0] = '1':
 		act 'Obey':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
 			'The Mistress removes from the wall and you puts on you, a leather collar, then wrist cuffs and ankle bracelets with hooks. The collar presses. You reach up to loosen it, but that earns you a slap. The Mistress walks around, the toe of her boot pushes your feet.'
 			'"That''s right! This is the posture of attention. Does this position make the sub?'
 			'"I don''t know, Mistress!" You answer. Between your legs burns a flame, you feel it building, and flowing down your legs.'
@@ -70,7 +70,7 @@ if $ARGS[0] = '1':
 			act 'Listen':
 				cls
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
 				'Mistress hits you a few times on your inner thighs.'
 				'"During the session the submissive only speaks with permission. You may ask for permission to speak, but only if very important. Without permission sub only breathes. Permission is required to move, change positions or cum... we may only cum with permission.'
 				'Cumming without permission will be punished. You will usually be given just one minute to cum. Don''t manage it in that minute and you stop, immediately. When you cum, we need to report it.'
@@ -84,7 +84,7 @@ if $ARGS[0] = '1':
 				act 'Remember':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
 					'You feel covered in arousal. The Mistress sees your condition and puts her hand between your legs.'
 					'"You''re all wet! I knew that you were a perverted bitch. Yes?'
 					'"Yes, Mistress, yes!'
@@ -110,7 +110,7 @@ if $ARGS[0] = '1':
 						minut += 10
 						pcs_horny += 15
 						gs 'stat'
-						'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
 						'"Now we have found the first topic to practice - restraint."'
 						'Mistresses manicured finger lifts your chin and looks you in the eye.'
 						'"Cum only with permission, bitch! Clear?"'
@@ -118,7 +118,7 @@ if $ARGS[0] = '1':
 						act 'Follow':
 							cls
 							gs 'stat'
-							'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
 							'Mistress leads you to the diagonal cross and latches the bracelets to you. You can not move.'
 							'"Failure to comply will be punished."'
 							'Skillfully, Mistress plays with your clit, first fingers, then various tools. You moan, ready to cum, but she is very much aware. Noticing your condition, she removes her hand from your flower and whips you in the stomach.'
@@ -133,7 +133,7 @@ if $ARGS[0] = '1':
 								minut += 10
 								if pcs_horny < 100:pcs_horny = 100
 								gs 'stat'
-								'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
 								'Eventually, you stop noticing the difference between pain and pleasure. Your face is covered in sweat, you squirm on the cross. You beg mistress to let you cum, but she is adamant.'
 								'"You must earn it!"'
 								$orgasm_or = 'no'
@@ -144,7 +144,7 @@ if $ARGS[0] = '1':
 									pcs_horny = 10
 									pcs_mood += 25
 									gs 'stat'
-									'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
 									'You decide to cheat and, with an incredible force of will, take control of the body. It goes unnoticed, Mistress continues, and you rapidly cum.'
 									'"What''s going on?!" Yells Mistress in your ear. "You bitch, tricking me like that!'
 									'She unhooks you from the cross, puts you on your knees and slaps you a few times. You are so happy, being able to cum, that you laugh.'
@@ -159,7 +159,7 @@ if $ARGS[0] = '1':
 									minut += 10
 									if pcs_horny < 100:pcs_horny = 100
 									gs 'stat'
-									'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
 									'Mistress forbids you to cum, and you struggle, hampered.'
 									$orgasm_or = 'no'
 									gs 'stat'
@@ -177,7 +177,7 @@ end
 if $ARGS[0] = 'BDSMend':
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
 	'"Well, enough for today." You do not immediately understand, when Mistress announces the completion of the session. "A good start, but there is still work to do."'
 	'"Is that all?" You ask, having temporarily forgotten about the real world.'
 	'"Almost..."'
@@ -196,7 +196,7 @@ if $ARGS[0] = '2':
 	minut += 10
 	pcs_horny += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
 	'You are in the Club and go to the training hall. You are scared and excited. The thought of what awaits you, and of Mistress, has you wet between your legs.'
 	'Once you enter the hall, mistress walks up to you and slaps you.'
 	'"Late, bitch? I''ll teach you!"'
@@ -208,21 +208,21 @@ if $ARGS[0] = '2':
 		cls
 		minut += 10
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
 		'Mistress puts a collar, foot and hand bracelets on you, and puts you on the wooden platform.'
  		'"A good spanking will teach you not to be late!"'
 		'Mistress ties you onto the platform face down and picks up the whip.'
 		act 'Wait':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
 			'You are lying on the platform, Mistress, slowly and methodically, punishes you, using various whips, lashes and paddles.'
 			gs 'arousal', 'foreplay', 10, 'sub', 'lesbian', 'maso', 'bound'
 			gs 'stat'
 			act 'Endure':
 				cls
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
 				'It is becoming unbearable, and Mistress says.'
 				'"Tired, bitch? Take a break!"'
 				'She then sits in front of you, and squatting raises your head to her pussy. You diligently use your tongue to stimulate the labia and clitoris of mistress.'
@@ -233,7 +233,7 @@ if $ARGS[0] = '2':
 					if pcs_horny < 90: pcs_horny = 90
 					pcs_vag += 1
 					gs 'stat'
-					'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
 					'"Well, you deserve a little encouragement..."'
 					'Mistress unties you, flips you on your back and locks you up again. She holds up a huge vibrator and know it is intended for your pussy. Soon it has you ready to cum. Looking at Misstress, you ask.'
 					'"Mistress, cum! Please!'
@@ -245,14 +245,14 @@ if $ARGS[0] = '2':
 					act 'Further':
 						cls
 						gs 'stat'
-						'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
 						'Flogging resumes. The whole time you are kept on the brink of pain and pleasure.'
 						gs 'arousal', 'foreplay', 10, 'sub', 'lesbian', 'maso', 'bound'
 						gs 'stat'
 						act 'Further':
 							cls
 							gs 'stat'
-							'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
 							'"Let''s get weaving..."'
 							'Mistress unties you, leads to a large box, makes to climb on top with your butt in the air. Squinting your eyes, you see, she is unwinding rope. Immediately it is obvious, she has great experience.'
 							'Ropes cover your ankles, wrists, knees and pulling your neck, forcing your nose to the box. After a few minutes you realise, that can''t move. Your ass points to the ceiling, feet apart, displaying your pussy and ass. From helplessness and complete openness you get excited once more.'
@@ -263,14 +263,14 @@ if $ARGS[0] = '2':
 								cls
 								pcs_vag += 1
 								gs 'stat'
-								'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
 								'Mistress puts on a strap-on, makes you lick and suck it, then walks around behind you. You feel it press against your pussy, slipping inside with no resistance, it begins to thrust back and forth.'
 								gs 'arousal', 'vaginal_strap', 10, 'sub', 'lesbian', 'maso', 'bound'
 								gs 'stat'
 								act 'Further':
 									cls
 									gs 'stat'
-									'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
 									'Mistress Fucks you with a strapon and again brings to your peak, but does not give you the finish the desire.'
  									'"Boring..." Disappointedly Mistress pulls out, while you try to catch your breath. "How about hanging you?"'
 									'Mistresses fingers flash so quickly, you can''t keep up. She changes the location of the ropes, turns to you and rattles some chains. You realize with horror, she has tied you hanging from the ceiling chain. The motor sounds, and your body rises.'
@@ -284,7 +284,7 @@ if $ARGS[0] = '2':
 										minut += 10
 										pcs_horny += 5
 										gs 'stat'
-										'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
 										'The ropes cut into your skin, but mistress knows her stuff. For all it hurts, it isn''t so much as to drive away the excitement. You hang upside down and the room slowly rotates around you.'
 										gs 'arousal', 'foreplay', 10, 'sub', 'lesbian', 'maso', 'bound'
 										gs 'stat'
@@ -293,7 +293,7 @@ if $ARGS[0] = '2':
 											pcs_vag += 1
 											vgape = 2
 											gs 'stat'
-											'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_11.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_11.jpg"></center>'
 											'"Well, let''s see, how ready is your hole!"'
 											'Mistress pulls out a huge Dildo, attached to a stick, and enters it into your pussy. You think you are being torn apart. You scream out and beg for mercy, but it is useless. Mistress energetically moves the stick up and down, like she is unblocking a toilet.'
 											gs 'arousal', 'vaginal_dildo', 10, 'sub', 'lesbian', 'maso', 'bound', 'rough'
@@ -301,7 +301,7 @@ if $ARGS[0] = '2':
 											act 'Stop it':
 												cls
 												gs 'stat'
-												'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_12.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_12.jpg"></center>'
 												'Just as you are ready to scream "Red!", mistress takes the dildo out of you. Again the motor buzzes, you kneel on the floor. Madam binds your hands behind your back and puts you on the knees.'
 												'"Rest!"'
 												'Mistresses leg is in your face, and you understand what to do. You kiss and lick the foot, sucking her toes.'
@@ -313,7 +313,7 @@ if $ARGS[0] = '2':
 													pcs_ass += 1
 													agape = 2
 													gs 'stat'
-													'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_13.jpg"></center>'
+													'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_13.jpg"></center>'
 													'"And now for the ass!" Declares Mistress and knocks you sideways. You lose you balance and she quickly has you upside down supported on your shoulders and bound hands.'
 													'Her strapon rests on the edge of your anus, Mistress hisses with displeasure and with a sharp move of her hips, drives it in entirely. You scream and moan, but quickly the pain turns to pleasure.'
 													'"Oh fuck, cum! Please!" You can hardly form the words.'
@@ -325,7 +325,7 @@ if $ARGS[0] = '2':
 													act 'Recover':
 														cls
 														gs 'stat'
-														'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_14.jpg"></center>'
+														'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_14.jpg"></center>'
 														'"Finished?"  Mistress leans over to you.'
 														'"Yes, Mistress, thank you, Mistress!" You cry.'
 														'Mistress unties you. For a moment you think, that the session is ending, but no. Rope again binds your wrists, and she plugs your mouth with a ball-gag.'
@@ -338,7 +338,7 @@ if $ARGS[0] = '2':
 															cls
 															pcs_vag += 1
 															gs 'stat'
-															'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_15.jpg"></center>'
+															'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_15.jpg"></center>'
 															'Mistress lies on her back, and forces you to ride her, and you are grinding on her strap-on. The satisfied moans of Mistress and the clear visual evidence tell you she has already cum several times.'
 															'Satisfied, Mistress unties you, approvingly slaps you on the cheek and lets you go, ordering you to come tomorrow.'
 															gs 'arousal', 'vaginal_strap', 10, 'sub', 'lesbian', 'maso', 'bound'
@@ -366,13 +366,13 @@ if $ARGS[0] = '3':
 	minut += 10
 	pcs_horny += 10
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_1.jpg"></center>'
 	'You enter the training hall for your next training session. Mistress said you, this session is the last one before you will be admitted to the mansion. If you manage to fulfill all her instructions.'
 	'"Did you dress up pretty for me?" Says Mistress as she checks you out in a predatory manner, "Well, ready then? Get undressed and get over here!'
 	act 'Obey':
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_2.jpg"></center>'
 		'Mistress orders you to get into the cage, you are reminded of a parrot cage. Your body does not fit entirely, and your legs hang out. Your neck is held by a heavy iron collar, attached by chains to the bars of the cage. Mistress pushes a button and the cage rises.'
 		'"Straighten your legs! In front of you, here!" Orders Mistress. Your bare feet are in front of her.'
 		gs 'arousal', 'foreplay', 10, 'sub', 'lesbian','bound', 'feet'
@@ -380,7 +380,7 @@ if $ARGS[0] = '3':
 		act 'Further':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_3.jpg"></center>'
 			'Mistress tickles your heels and growls at you everytime you try to move your legs.'
 			'"Return to position!"'
 			'You obey. Mistress leans forward and you feel something touching your pussy. Then you hear a buzzing sound, and you feel the vibration.'
@@ -389,7 +389,7 @@ if $ARGS[0] = '3':
 			act 'Further':
 				cls
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_4.jpg"></center>'
 				'"Leg!"'
 				'You lift up your leg. Mistress is holding a thin cane, with considerable force, see hits the sole of your foot.'
 				'"And again..."'
@@ -399,7 +399,7 @@ if $ARGS[0] = '3':
 				act 'Further':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_5.jpg"></center>'
 					'You are responding, feeling waves of pleasure spread through your body. The vibrator buzzing and twitching, driving you crazy. Unable to restrain himself, you shout.'
 					'"Mistress, please! Come!"'
 					'"No! Restraint! Restraint!"'
@@ -408,7 +408,7 @@ if $ARGS[0] = '3':
 					act 'Restrain':
 						cls
 						gs 'stat'
-						'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_6.jpg"></center>'
 						'Mistress monitors your condition, and the moment before you orgasm, she turns off the vibrator.'
 						'"Well, you know the rules... Now let''s see you in action..."'
 						'Mistress frees you from the cage and puts you on your knees.'
@@ -420,7 +420,7 @@ if $ARGS[0] = '3':
 							cls
 							guy += 1
 							gs 'stat'
-							'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_7.jpg"></center>'
 							'"Show me you know how to suck!"'
 							'You obediently take cock in your mouth and carefully suck. Mistress walks around and says.'
 							'"C grade suck, C grade! Need to practice!"'
@@ -430,14 +430,14 @@ if $ARGS[0] = '3':
 								cls
 								pcs_vag += 1
 								gs 'stat'
-								'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_8.jpg"></center>'
 								'At a sign from Mistress, the man lies on the box. You climb up, lower your pussy onto his dick and start to ride. Mistress walks around and encourages with the cane.'
 								gs 'arousal', 'vaginal', 10, 'sub'
 								gs 'stat'
 								act 'Further':
 									cls
 									gs 'stat'
-									'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_9.jpg"></center>'
 									'"Stop!" Orders Mistress.'
 									'You stop, freezing in position. Mistress gets clothespins tied to ropes, and begins to attach them to you. The clothespins hurt, especially on your nipples and tongue, but you endure. At a silent command from Mistress, you resume movement.'
 									gs 'arousal', 'vaginal', 10, 'sub', 'maso'
@@ -446,7 +446,7 @@ if $ARGS[0] = '3':
 										cls
 										pcs_mood += 25
 										gs 'stat'
-										'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_10.jpg"></center>'
 										'"Now jerk!" Orders Mistress.'
 										'You begin to pull at your clit, while grinding on the dick. Soon you feel, that you are at the brink, and ask permission.'
 										'"Finish!" Allows Mistress.'
@@ -461,7 +461,7 @@ if $ARGS[0] = '3':
 											minut += 10
 											BDSMClubIn = 1
 											gs 'stat'
-											'<center><img src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_11.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r<<BDSMmeet>>_11.jpg"></center>'
 											'The lady takes you by the hair and turns your face to hers.'
  											'"Welcome to the Club, slave!"'
 											'Hardly able to walk and your legs buckling you get in the shower. As you exit, you are handed a membership card, you can now enter to the Club as a full member.'
@@ -487,14 +487,14 @@ if $ARGS[0] = 'd_start':
 	minut += 10
 	sub += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/r2_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r2_1.jpg"></center>'
 	'You enter the club, security check your name off on their list and let you in.  You give an elderly bookkeeper money they direct you to a small outbuilding away from the mansion. As you enter, you see that almost the entire building is a large room for BDSM-sessions.'
 	'Hanging from the ceiling chains with hooks and ropes, on the walls – lashes, whips, handcuffs, gags.  Submerged in the darkness of the far end of the hall you can just make out pads, tables, crosses and some odd device, you can only guess as to what it does. You are met by the lady from the front desk, her suit replaced by tight leather.'
 	'She holds in her hands a long whip.'
 	act 'Greet her':
 		*clr
 		cla
-		'<center><img src="images/locations/city/suburb/bdsm_club/r2_2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/r2_2.jpg"></center>'
 		'"Hello." you say to her, confidently.'
 		'"Hello <<$pcs_nickname>>." She replies. "We were not formally introduced, I am Mistress Elektra, you may call me Elektra."'
 		'She raises the whip and cracks it against the floor dramatically.'
@@ -503,13 +503,13 @@ if $ARGS[0] = 'd_start':
 		act 'Follow her':
 			*clr
 			cla
-			'<center><img src="images/locations/city/suburb/bdsm_club/sex/r2_3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/r2_3.jpg"></center>'
 			'Mistress Elektra walks over to a women, naked except for collar and cuffs and attaches a leash to her collar.'
 			'"A sub should be obedient and not speak unless spoken to, unless naked or wearing bondage gear, sub women should dress as maids and men as butlers."'
 			act 'Continue':
 				cls
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/sex/r2_6.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/r2_6.jpg"></center>'
 				'Elektra helps the sub into a harness and boots then points to the floor. The submissive women kneels down, being careful to position her legs and arms very precisely.'
 				'"This is the "slave" position, it displays your dominance over the sub. A dominant can do anything to a sub, but must not cause lasting harm."'
 				'"You must also stop immediately if they use their safe-word, this is always "red". As soon as they say "red", the session is ended. If their mouth is busy, they can shake their head 3 times and hum "and-and". If they can''t do either they can slam the palm of their hand. Clear?"'
@@ -521,7 +521,7 @@ if $ARGS[0] = 'd_start':
 					minut += 10
 					pcs_horny += 30
 					gs 'stat'
-					'<center><img src="images/locations/city/suburb/bdsm_club/sex/r3_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/r3_5.jpg"></center>'
 					'Elektra removes the harness and boots from the sub and leads her to a rectangular section of wooden floor and ties to it. Making a show of how she tied the knots and talking you through it.'
 					'"This isn''t actually required as I have covered the rules, except to say you must wear expensive or formal clothing when visiting the club. So this is a little bonus for you."'
 					'You do feel quite aroused and are about to thank Elektra, when she hands you a body massager. Normally she would have to ask to cum, but as this is your treat, you can stop when ever you like. For the first time since you met Eletra she cracks a smile.'

+ 14 - 14
locations/BDsex

@@ -9,7 +9,7 @@ if $ARGS[0] = 'start':
 
 	pcs_horny += 10
 	gs 'stat'
-	'<center><img src="images/shared/sex/pet/petting1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/pet/petting1.jpg"></center>'
 
 	if harakBoy = 0:
 		'<<$boydesc>> hugs you and gently caress your breasts.'
@@ -97,7 +97,7 @@ if $ARGS[0] = 'start':
 end
 
 if $ARGS[0] = 'kuni':
-	'<center><img src="images/shared/sex/kuni/kuni.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/kuni/kuni.jpg"></center>'
 	'You undress and lay on the bed, bringing his face to your pussy.'
 	'<<$boydesc>> lays down between your legs and begins to work his tongue across your pussy.'
 	gs 'arousal', 'cuni', 15, 'dom'
@@ -122,7 +122,7 @@ end
 if $ARGS[0] = 'sex':
 	pose = 0
 	gs 'stat'
-	'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 	gs 'arousal', 'vaginal', 10, 'sub'
 	gs 'stat'
 	gs 'BDsex', 'org'
@@ -161,7 +161,7 @@ if $ARGS[0] = 'sex2':
 	pose = 1
 	gs 'stat'
 	picrand = rand(1, 5)
-	'<center><img src="images/shared/sex/vag/doggy/vagcow<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/vag/doggy/vagdog<<picrand>>.jpg"></center>'
 	gs 'arousal', 'vaginal', 10, 'sub'
 	gs 'stat'
 	gs 'BDsex', 'org'
@@ -200,7 +200,7 @@ if $ARGS[0] = 'sex3':
 	pose = 0
 	gs 'stat'
 	picrand = rand(1, 5)
-	'<center><img src="images/shared/sex/vag/cowgirl/vagcow<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/vag/cowgirl/vagcow<<picrand>>.jpg"></center>'
 	gs 'arousal', 'vaginal', 10, 'sub'
 	gs 'stat'
 	gs 'BDsex', 'org'
@@ -217,7 +217,7 @@ end
 
 if $ARGS[0] = 'anal2':
 	picrand = rand(1, 10)
-	'<center><img src="images/shared/sex/anal/doggy/anal2<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal2<<picrand>>.jpg"></center>'
 	gs 'arousal', 'anal', 10, 'sub'
 	gs 'stat'
 	gs 'bdsex', 'an'
@@ -248,7 +248,7 @@ end
 
 if $ARGS[0] = 'hj':
 	!!handjob
-	'<center><img src="images/shared/sex/cum/handjob/hand1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand1.jpg"></center>'
 	'You take his <<dick>> centimeter penis and begin to caress the shaft, moving the skin over the crimson head.'
 	gs 'arousal', 'hj', 5
 	gs 'stat'
@@ -261,7 +261,7 @@ if $ARGS[0] = 'hj':
 			act 'Let ends':
 				cla
 				*clr
-				'<center><img src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
 				if protect = 1: 
 					gs 'cum_manage'
 					protect = 0
@@ -342,7 +342,7 @@ end
 if $ARGS[0] = 'minet':
 	!!blowjob
 	picrand = rand(24, 28)
-	'<center><img src="images/shared/sex/blowjob/bj<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj<<picrand>>.jpg"></center>'
 	gs 'arousal', 'bj', 10, 'sub'
 	gs 'stat'
 	gs 'bdsex', 'autobj'
@@ -355,7 +355,7 @@ if $ARGS[0] = 'minet':
 			act 'In the palm of your hand':
 				cla
 				*clr
-				'<center><img src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
 				if protect = 1: 
 					'<<$boydesc>> finishes, filling the condom with his cum.'
 					protect = 0
@@ -417,7 +417,7 @@ if $ARGS[0] = 'minet':
 			act 'In the palm of your hand':
 				cla
 				*clr
-				'<center><img src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand2.jpg"></center>'
 				if protect = 1: 
 					'<<$boydesc>> finishes, filling the condom with his cum.'
 					protect = 0
@@ -443,7 +443,7 @@ if $ARGS[0] = 'facial':
 	minut += 3
 	gs 'stat'
 	picrand = rand(11, 15)
-	'<center><img src="images/shared/sex/cum/facial/facial<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/facial<<picrand>>.jpg"></center>'
 	if protect = 1: 
 		'<<$boydesc>> finishes, filling the condom with his cum.'
 		protect = 0
@@ -461,7 +461,7 @@ if $ARGS[0] = 'swallow':
 	minut += 3
 	gs 'stat'
 	picrand = rand(20, 29)
-	'<center><img src="images/shared/sex/cum/mouth/cum<<picrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum<<picrand>>.jpg"></center>'
 	if protect = 1: 
 		'<<$boydesc>> finishes, and you feel the condom balloon up in your mouth.'
 		protect = 0
@@ -497,7 +497,7 @@ if $ARGS[0] = 'end':
 		pcs_hairbsh = 1
 		pcs_makeup = 1
 		dynamic $showerdin
-		'<center><img src="images/shared/home/bathroom/dush.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/dush.gif"></center>'
 		'You go into the bathroom and turn on the shower, lathering body and washing as well as you can.'
 		act 'Leave':dynamic $brodilr
 	elseif harakBoy = 1:

+ 344 - 197
locations/BelSex

@@ -11,138 +11,388 @@ if $ARGS[0] = '' or $ARGS[0] = 'sex':
 
 	if BelSexTime = 0:
 		belact = rand(1,3)
-		'You suck his tongue when he kisses you, doing your best to please him in any way you can... because who knows what he''ll do if you don''t. He crudely paws your ass, grabbing your ass cheeks and slapping them every which way.'
+		'You suck <<$boydesc>>''s tongue as he kisses you, doing your best to please him in any way you can... because who knows what he''ll do if you don''t. He crudely kneads your butt and upper thighs, grabbing your ass cheeks and slapping them, making your ass cheeks jiggle.'
 		
-		gs 'arousal', 'kiss', 15, 'sub', 'prostitution'
-		gs 'arousal', 'foreplay', 15, 'sub', 'prostitution'
+		gs 'arousal', 'kiss', 5, 'sub', 'prostitution'
+		gs 'arousal', 'foreplay', 5, 'sub', 'prostitution'
+		minut =- 5
 		gs 'stat'
 		
-		if rand(1,100) <= 70:
-			'Vadim puts his large hands on your shoulders and forces you downwards. Even though you''re trying to cooperate and drop to your knees as soon as you realize what he wants, he''s still kind of rough with you while forcing you down. "Start sucking, <<$pcs_nickname>>."'
-			act'Get down on your knees':BelSexTime = 1 & gt 'BelSex'
+		belybj = rand(0,2)
+		if belybj = 0:
+			'<<$boydesc>> puts his large hands on your shoulders and forces you downwards. Even though you''re trying to cooperate and drop to your knees as soon as you realize what he wants, he''s still kind of rough with you. "Start sucking, <<$pcs_nickname>>."'
+			act'On your knees':gt 'BelSex', 'bj1'
+		elseif belybj = 1:
+			'<<$boydesc>> tugs at your clothes, letting you know that he wants you naked. You quickly obey and assist him in taking your clothes off. He nods approvingly, definitely liking what he sees. "Very nice, girl... but you''d look even better with my cock in you."'
+			act'Drop down on your knees':gt 'BelSex', 'bj2'
 		else
-			'Vadim tugs at your clothes, indicating that he wants them off you. You quickly obey and assist him in taking your clothes off. He nods approvingly, definitely liking what he sees. "Very nice, girl... but you''d look even better with my dick in you."'
-			act'Kiss him again':BelSexTime = 10 & gt 'BelSex'
-			act'Get down on your knees':BelSexTime = 1 & gt 'BelSex'
+			'<<$boydesc>> is staring intently into your eyes, pawing between your legs while you unbutton his pants, grabbing hold, you strip them down to his knees. His cock is hanging freely, twitching from excitement...'
+			act'What now?':gt 'BelSex', 'bj3'
 		end
 	end
+end
 
-	if BelSexTime = 1:
+if $ARGS[0] = 'bj1':
 		bj_temp += 1
 		belact -= 1
-		mrapic = rand(0,12)
-		!'<<mrapic>>'
-		'<center><img src="images/shared/sex/blowjob/bj<<mrapic>>.gif"></center>'
-		'You take Vadim''s <<dick>> cm cock in your mouth and begin to suck him off, feeling him push it further and further down your throat.'
+		picrand = rand(0,12)
+		!'<<picrand>>'
+		'<center><img src="images/shared/sex/blowjob/bj<<picrand>>.gif"></center>'
+		'You take <<$boydesc>>''s <<dick>> cm cock in your mouth and begin stimulating his glans. You can clearly see on <<$boydesc>>''s face that he''s getting irritated at you for trying to prolonge things and just wants you to suck him off quickly.'
+		'You do your best to suck him off, trying to go deep as possible, but <<$boydesc>> is not pleased. He grabs you by the back of your head and begins forcing it closer and closer towards his fat stomach. You start gagging but he just tells you to relax your throat and it will all be fine.'
 
-		gs 'arousal', 'bj', 15, 'sub', 'prostitution'
+		gs 'arousal', 'bj', 10, 'sub', 'prostitution', 'deepthroat'
 		gs 'stat'
 		
 		if belact <= 0:
-			'<<$boydesc>> groans, and firms his grip on your hair.'
-			act'Open your mouth':
+			'<<$boydesc>> groans, clearly enjoying himself. He stands up, grabs you by the hair, and begins fucking your mouth. "Wider, you little slut, I don''t want to feel any teeth."'
+			'Not daring making him more upset you make sure your teeth don''t get in the way and open your mouth as wider.'
+			act'Open wide':
 				cls
-				sexpartkno = 1
-				spafinloc = 12
-				sexvolume = 5
-				gs 'cum_manage'
-				sexpartkno = 1
-				spafinloc = 11
-				sexvolume = 35
+				gs 'cum_call', 'mouth', 'Bely'
 				gs 'cum_manage'
 				gs'stat'
-				mrapic=rand(0,10)
-				!'<<mrapic>>'
-				'<center><img src="images/shared/sex/cum/mouth/cum<<mrapic>>.gif"></center>'
-				'Vadim indicates that he''s going to reach his orgasm soon: "Open your mouth, <<$pcs_nickname>>. You''re taking it in your mouth."'
-				'You meekly nod: "Yes Mr. Bely" and do as he says, opening your mouth as wide as you can. He jerks himself off over your face, and you soon feel his warm jets of sperm landing on your cheeks. He adjusts his aim a bit so some of it ends up in your mouth as well. You decide to just sit there with your eyes closed and your mouth open until he tells you otherwise, doing your best to ignore the taste of it.'
+				picrand=rand(0,10)
+				!'<<picrand>>'
+				'<center><img src="images/shared/sex/cum/mouth/cum<<picrand>>.gif"></center>'
+				'<<$boydesc>> indicates that he''s about to come, telling you to "Open wide, <<$pcs_nickname>>. You''re going to swallow every little drop."'
+				'You meekly nod and let out "Yesh, Mr. Bely..." doing as he says, opening your mouth as wide as you can. He jerks himself off all over your face and you soon feel his warm jets of sperm landing on your left cheek. He adjusts his aim a bit and some of it ends up in your mouth as well. You decide to just sit there with your eyes closed and your mouth open until he tells you otherwise, doing your best to ignore the taste.'
 				gs 'arousal', 'end'
 				gs 'stat'
 				act'Get up':BelSexTime = 1000 & gt 'BelSex'
 			end
 		end
 		if belact > 0:
-			if rand(1,100) <= 30:
-				 'Vadim puts his large hands on your shoulders and forces you downwards. Even though you''re trying to cooperate and drop to your knees as soon as you realize what he wants, he''s still kind of rough with you while forcing you down. "Start sucking, <<$pcs_nickname>>."'
-				act'Suck him off':BelSexTime = 1 & gt 'BelSex'
+		belyvag = rand(0,3)
+			if belyvag = 0:
+				 '<<$boydesc>> grunts loudly while you suck him off. "Time to give you a real pounding!"'
+				act'Get in position':gt 'BelSex', 'vaginal1'
+			elseif belyvag = 1:
+				'<<$boydesc>> paws at your ass while you suck him off before he tells you "Get on your back, <<$pcs_nickname>>. I''m going to fill you up."'
+				act'Lie down on your back':gt 'BelSex', 'vaginal2'
+			elseif belyvag = 2:
+				'<<$boydesc>> looks down on you as you''re sucking. He pulls out his cock, lifts you up and throws you onto the bed. "Show me your ass, <<$pcs_nickname>>."'
+				act 'Get on all fours':gt 'BelSex', 'doggy'
+			else
+				'<<$boydesc>> lies down on his back and begins playing with his cock waiting for you to straddle him.'
+				act 'Ride him':gt 'BelSex', 'cowgirl'
+			end
+		end
+end
+
+if $ARGS[0] = 'bj2':
+		bj_temp += 1
+		belact -= 1
+		picrand = rand(0,12)
+		!'<<picrand>>'
+		'<center><img src="images/shared/sex/blowjob/bj<<picrand>>.gif"></center>'
+		'You look at <<$boydesc>> with lust in your eyes. Dropping down on your knees without being asked, you unbutton his pants, exposing his full erect cock. Wrapping your <<$liptalk>> around his strong and warm cock, you quickly begin by sucking the head, caressing it with your tongue and lips.'
+		'<<$boydesc>> lets out a small groan, clearly enjoying himself. Turned on by seeing <<$boydesc>> enjoying the blowjob, you start sucking his cock while caressing his balls.'
+
+		gs 'arousal', 'bj', 10, 'sub', 'prostitution'
+		gs 'stat'
+		
+		if belact <= 0:
+			'Your tongue is giving every bit of his cock it can reach its attention as you bob your head back and forth.'
+			'Your lust takes over and you take him as deep into your mouth as you can, keeping him there until you start to gag and have to come up for air. Taking few breaths to recover, you take him inside again, rapidly moving your head, sucking and deepthroating him for all you''re worth.'
+			act'Keep sucking':
+				cls
+				gs 'cum_call', 'mouth', 'Bely'
+				gs 'cum_manage'
+				gs'stat'
+				picrand=rand(0,10)
+				!'<<picrand>>'
+				'<center><img src="images/shared/sex/cum/mouth/cum<<picrand>>.gif"></center>'
+				'Redoubling your efforts, you reach the base of his wet cock with your <<$liptalk>>. <<$boydesc>> stares you in the face while your lips glide up and down on his hard dick. You know he must be close now.'
+				'You don''t want him to cum yet so you switch it up, using your tongue instead, sliding up and down his shaft, pulling out all of your tricks to make him feel good. You even use some techniques you learned to stall his orgasm for a moment, making it all the more intense for him when he shoots his load into your mouth.'
+				gs 'arousal', 'end'
+				gs 'stat'
+				act'Take a shower':gt 'BelSex', 'shower'
+			end
+		end
+		if belact > 0:
+		belyvag = rand(0,3)
+			if belyvag = 0:
+				 '<<$boydesc>> grunts loudly while you suck him off. "Time to give you a real pounding!"'
+				act'Get in position':gt 'BelSex', 'vaginal1'
+			elseif belyvag = 1:
+				'<<$boydesc>> paws at your ass while you suck him off before he tells you "Get on your back, <<$pcs_nickname>>. I''m going to fill you up."'
+				act'Lie down on your back':gt 'BelSex', 'vaginal2'
+			elseif belyvag = 2:
+				'<<$boydesc>> looks down on you as you''re sucking. He pulls out his cock, lifts you up, and throws you onto the bed. "Show me your ass, <<$pcs_nickname>>."'
+				act 'Get on all fours':gt 'BelSex', 'doggy'
 			else
-				'Vadim paws at your ass for a second before telling you: "Get on your back, <<$pcs_nickname>>. I''m going to fill you up."'
-				act'Lie down on your back':BelSexTime = 10 & gt 'BelSex'
+				'<<$boydesc>> lies down on his back and begins playing with his cock waiting for you to straddle him.'
+				act 'Ride him':gt 'BelSex', 'cowgirl'
 			end 
 		end
-	end
+end
+
+if $ARGS[0] = 'bj3':
+		bj_temp += 1
+		belact -= 1
+		picrand = rand(0,12)
+		!'<<picrand>>'
+		'<center><img src="images/shared/sex/blowjob/bj<<picrand>>.gif"></center>'
+		'"Get down on your knees!" he commands. Unfazed by his boldness, you kneel down in front of him and lick up and down his length a few times before you take his <<dick>> cm cock into your mouth. As his cock enters, a rank odor enters your nostrils. You disregard the nasty aroma and begin moving your tongue around the head and you suck his dick as you start bobbing your head up and down while your hands take turns playing with his hairy balls. It''s hard for you to decide whether you want to move slowly and tease him, or speed up to avoid getting caught, but what you are doing seems to be to his liking.'
+		'"Good girl", he whispers, "I knew you could suck cock as soon as I saw you." His praise causes you to smile a little around his dick and you take him a little deeper in response.'
+		
+		gs 'arousal', 'bj', 10, 'sub', 'prostitution', 'deepthroat'
+		gs 'stat'
+		
+		if belact <= 0:
+			'<<$boydesc>> is grimacing, enjoying himself. He is sitting down, letting you do all the work. Encouraged, you take his cock deeper, trying to hold it down as long as possible.'
+			'"Good girl, keep on sucking my cock." All of a sudden his cock gets stiffer and he pulls out of your mouth. "I''m ready to cum..." You move your head towards his cock but he stops you...'
+			act'Continue':
+				cls
+				gs 'cum_call', 'mouth', 'Bely'
+				gs 'cum_manage'
+				gs'stat'
+				picrand=rand(0,10)
+				!'<<picrand>>'
+				'<center><img src="images/shared/sex/cum/mouth/cum<<picrand>>.gif"></center>'
+				'Instead, <<$boydesc>> starts jerking off, telling you "I''ll be done soon, <<$pcs_nickname>>. I want you to swallow every little drop." He doesn''t last much longer and cums all over your face.'
+				'He squeezes the last few drops of sperm into your mouth and then sticks his dick in your mouth. You swallow his cum obediently and then suck his dick clean, licking every tasty inch of it you can reach. Once he goes soft in your mouth, he pulls out his cock.' 
+				gs 'arousal', 'end'
+				gs 'stat'
+				act'Take a shower':gt 'BelSex', 'shower'
+			end
+		end
+		if belact > 0:
+		belyvag = rand(0,3)
+			if belyvag = 0:
+				 '<<$boydesc>> grunts loudly while you suck him off. "Time to give you a real pounding!"'
+				act'Get in position':gt 'BelSex', 'vaginal1'
+			elseif belyvag = 1:
+				'<<$boydesc>> paws at your ass while you suck him off before he tells you "Get on your back, <<$pcs_nickname>>. I''m going to fill you up."'
+				act'Lie down on your back':gt 'BelSex', 'vaginal2'
+			elseif belyvag = 2:
+				'<<$boydesc>> looks down on you as you''re sucking. He pulls out his cock, lifts you up, and throws you onto the bed. "Show me your ass, <<$pcs_nickname>>."'
+				act 'Get on all fours':gt 'BelSex', 'doggy'
+			else
+				'<<$boydesc>> lies down on his back and begins playing with his cock waiting for you to straddle him.'
+				act 'Ride him':gt 'BelSex', 'cowgirl'
+			end
+		end
+end
 
-	if BelSexTime = 10:
+if $ARGS[0] = 'vaginal1':
 		belact -= 1
 		sex_temp += 1
-		mrapic = rand(0,7)
-		!'<<mrapic>>'
-		'<center><img src="images/characters/pavlovsk/vadim/sex/mitka<<mrapic>>.gif"></center>'
-		''
-		dynamic $sexstart4
+		picrand = rand(0,7)
+		!'<<picrand>>'
+		'<center><img src="images/characters/pavlovsk/vadim/sex/mitka<<picrand>>.gif"></center>'
+		'<<$boydesc>> lifts you up, grabs you by the hair, and shoves you onto the bed. You land on your back, as he quickly moves in, you spread your legs. He starts touching your pussy lips with his fat fingers, you let out a moan as he penetrates you with his finger.'
+		'"That''s enough, you''re all wet and ready now." he says. He grabs hold of his penis slowly slides his member into your wet cunt, softly parting your nether lips. As your pussy walls envelops his cock you let out a soft moan.'
+		'Hanging over you, looking into your eyes he starts build up quite a bit of speed. "You''re a pretty good fuck <<$pcs_nickname>>, but I''ve had better." he says as his sweat drips all over you.'
 		
 		gs 'arousal', 'vaginal', 15, 'sub', 'prostitution'
 		gs 'stat'
 		
 		if belact <= 0:
-			dynamic $sexcum
-			act'Up':BelSexTime = 1000 & gt 'BelSex'
+			gs 'cum_call', '', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			'<center><img src="images/shared/sex/cum/vagcreampie/Creampie3.gif"></center>'
+			'<<$boydesc>>''s movements speed up as he keeps pounding you balls deep without showing any signs of slowing down. You think this will go on for a while, but suddenly you hear <<$boydesc>> grunting while cumming deep inside you.'
+			act'Take a shower':gt 'BelSex', 'shower'
 		end
 		if belact > 0:
-			tiperand = rand(1,100)
-			if tiperand <= 30:
-				'Vadim puts his large hands on your shoulders and forces you downwards. Even though you''re trying to cooperate and drop to your knees as soon as you realize what he wants, he''s still kind of rough with you while forcing you down. "Start sucking, <<$pcs_nickname>>."'
-				act'Take him in your mouth':BelSexTime = 1&gt 'BelSex'
-			elseif tiperand <= 90:
-				'Vadim wipes the sweat off his forehead, clearly worked up from fucking you. Nevertheless, he''s not done with you and tells you to spread your legs further for him.'
-				act'Spread your legs':BelSexTime = 10 & gt 'BelSex'
+			belanal = rand(0,2)
+			if belanal = 0:
+				'<<$boydesc>>''s sweat is dripping all over your body. He is huffing and puffing as he pulls out. "Give me a second to catch my breath and then I''ll finish this. Give me your sweet little ass," he says, breathing heavily'
+				act'Take him in your ass':gt 'BelSex', 'anal1'
+			elseif belanal = 1:
+				'<<$boydesc>> wipes the sweat off his forehead, clearly worked up from fucking you. Nevertheless, he''s not done with you and tells you to that he wants your ass next.'
+				act'Present your ass':gt 'BelSex', 'anal2'
 			else
-				'Vadim tells you to get on your hands and knees next: "It''s your asshole next, <<$pcs_nickname>>. Assume the position."'
-				act'Get fucked from behind':BelSexTime = 100 & gt 'BelSex'
+				'<<$boydesc>> pulls out of your pussy as the sensations make you moan; "Oh don''t worry sweetheart, I''m not done yet. It''s your asshole next. Assume the position."'
+				act'Get fucked from behind':gt 'BelSex', 'analdoggy'
 			end 
 		end
-	end
+end
 
-	if BelSexTime = 100:
+if $ARGS[0] = 'vaginal2':
 		belact -= 1
-		anal_temp += 1
-		mrapic = rand(0,12)
-		!'<<mrapic>>'
-		'<center><img src="images/shared/sex/anal/doggy/anal<<mrapic>>.gif"></center>'
-		''
-		dynamic $analsex2
+		sex_temp += 1
+		picrand = rand(0,7)
+		!'<<picrand>>'
+		'<center><img src="images/characters/pavlovsk/vadim/sex/mitka<<picrand>>.gif"></center>'
+		'<<$boydesc>> lifts you up, grabs you by the hair, and shoves you onto the bed. His cock, well greased from the blowjob, easily slides into your pussy.' 
+		'You feel his glans stretching the inner walls of your pussy and you let out a loud moan with each penetration. As he keeps fucking you it doesn''t take long before you get accustomed to his movements.'
+		'"Let''s see how deep I can go," he says as he rams his cock so deep that your pubes touch. You scream out loud, breathing fast and heavily and he continues pounding you.'
 		
-		gs 'arousal', 'anal', 15, 'sub', 'prostitution'
+		gs 'arousal', 'vaginal', 15, 'sub', 'prostitution'
 		gs 'stat'
 		
 		if belact <= 0:
-			spafinloc = 3
+			gs 'cum_call', '', 'Bely'
 			gs 'cum_manage'
-			'You can tell <<$boydesc>> is close to his orgasm, and seconds later he firmly grabs your hips. His movements become more erratic, and you feel his cock spasming inside you as he shoots his cum deep inside your asshole. The cum feels kind of warm inside you, and it slowly dribbles out once he pulls his cock out of you.'
-			
-			act'Get up':BelSexTime = 1000 & gt 'BelSex'
+			gs'stat'
+			'<center><img src="images/shared/sex/cum/vagcreampie/Creampie1.gif"></center>'
+			'<<$boydesc>> groans loudly. His cock stiffens as you feel a jet of warm sperm hitting deep inside your womb.'
+			act'Take a shower':gt 'BelSex', 'shower'
 		end
 		if belact > 0:
-			tiperand = rand(1,100)
-			if tiperand <= 30:
-				'Vadim puts his large hands on your shoulders and forces you downwards. Even though you''re trying to cooperate and drop to your knees as soon as you realize what he wants, he''s still kind of rough with you while forcing you down. "Start sucking, <<$pcs_nickname>>."'
-				act'Suck him off':BelSexTime = 1 & gt 'BelSex'
-			elseif tiperand <= 90:
-				'Vadim paws at your ass for a second before telling you: "Get on your back, <<$pcs_nickname>>. I''m going to fill you up."'
-				act'Spread your legs':BelSexTime = 10 & gt 'BelSex'
+			belanal = rand(0,2)
+			if belanal = 0:
+				'<<$boydesc>>''s sweat is dripping all over your body. He is huffing and puffing as he pulls out. "Give me a second to catch my breath and then I''ll finish this. Give me your sweet little ass," he says, breathing heavily'
+				act'Take him in your ass':gt 'BelSex', 'anal1'
+			elseif belanal = 1:
+				'<<$boydesc>> wipes the sweat off his forehead, clearly worked up from fucking you. Nevertheless, he''s not done with you and tells you to that he wants your ass next.'
+				act'Present your ass':gt 'BelSex', 'anal2'
 			else
-				'Vadim is giving you a rough asspounding, and he wipes the sweat from his forehead while he catches his breath. When you think he''s done and you try to get up, he pushes you back down: "I''m not done with your ass yet, <<$pcs_nickname>>. Stay down."'
-				act'Get fucked from behind':BelSexTime = 100 & gt 'BelSex'
-			end  
+				'<<$boydesc>> pulls out of your pussy as the sensations make you moan. "Oh don''t worry sweetheart, I''m not done yet. It''s your asshole next. Assume the position."'
+				act'Get fucked from behind':gt 'BelSex', 'analdoggy'
+			end 
 		end
-	end
+end
+
+if $ARGS[0] = 'doggy':
+		belact -= 1
+		sex_temp += 1
+		vagdog = rand(1,5)
+		!'<<picrand>>'
+		'<center><img src="images/shared/sex/vag/doggy/vagdog<<picrand>>.jpg"></center>'
+		'With his cock rock hard and nicely wet he lifts your body, turns you around, and tells you to get on all fours on the floor. He gets down on his knees. Streching your butt cheeks slowly, he runs his shaft along your wet pussy, teasing you, all of a sudden he shoves his cock into your pussy and starts pounding away, not caring about your enjoyment. He just wants to fuck.'
+		'Holding you by the hips, he pounds on without slowing the pace, only occasionally stopping to catch a breath. "Isn''t he going to slow down soon?" you think to yourself. But you''ve underestimated him, instead he grabs your hair and pushes himself even deeper inside.'
+		'You moan loudly as he rams his cock deeper and deeper. You hear him panting and grunting he must''ve reached his limit...'
+		
+		gs 'arousal', 'vaginal', 15, 'sub', 'prostitution'
+		gs 'stat'
+		
+		if belact <= 0:
+			gs 'cum_call', '', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			'<center><img src="images/shared/sex/cum/vagcreampie/Creampie4.gif"></center>'
+			'<<$boydesc>> keeps on pounding you from behind. You feel his cock getting stiffer and twitching inside of you. You turn your head and look him in the eyes, pleading that he pulls out and cums on your ass instead. But <<$boydesc>> isn''t budging. He keeps on going, pulling your hips towards him, filling your womb with splashes of semen.'
+			act'Take a shower':gt 'BelSex', 'shower'
+		end
+		if belact > 0:
+			belanal = rand(0,2)
+			if belanal = 0:
+				'<<$boydesc>>''s sweat is dripping all over your body. He is huffing and puffing as he pulls out. "Give me a second to catch my breath and then I''ll finish this. Give me your sweet little ass." he says, breathing heavily'
+				act'Take him in your ass':gt 'BelSex', 'anal1'
+			elseif belanal = 1:
+				'<<$boydesc>> wipes the sweat off his forehead, clearly worked up from fucking you. Nevertheless, he''s not done with you and tells you to that he wants your ass next.'
+				act'Present your ass':gt 'BelSex', 'anal2'
+			else
+				'<<$boydesc>> pulls out of your pussy as the sensations make you moan. "Oh don''t worry sweetheart, I''m not done yet. It''s your asshole next. Assume the position."'
+				act'Get fucked from behind':gt 'BelSex', 'analdoggy'
+			end 
+		end
+end
+
+if $ARGS[0] = 'cowgirl':
+		belact -= 1
+		sex_temp += 1
+		vagcow = rand(1,6)
+		!'<<vagcow>>'
+		'<center><img src="images/shared/sex/vag/cowgirl/vagcow<<picrand>>.gif"></center>'
+		'<<$boydesc>> lies on the bed. He smirks as he tells you that you''ll be doing all the work today. You look at him, still a bit confused after the blowjob you''ve given him. Wasn''t that enough? "Don''t waste my time <<$pcs_nickname>>. Come here!" Not daring to do upset him even more, you crawl on top of <<$boydesc>> and guide his cock inside your vagina.'
+		'He grabs your hips, controlling the rhythm as you to ride him. He wants it fast. Fast, deep and hard, without any regard to you, or that he actually bumps into your cervix in this position. You keep riding him at the same rhythm as he moves his hands grabbing you breasts instead.'
+		'Unable to think of anything but the pleasure, you moan so loudly that you are almost screaming. Wanting to ride out this intense feeling, you completely forget that you’’re supposed to please <<$boydesc>> as you orgasm while riding him.'
+		
+		$orgasm_or = 'yes' 
+		gs 'arousal', 'vaginal', 15, 'sub', 'prostitution'
+		gs 'stat'
+		
+		if belact <= 0:
+			gs 'cum_call', '', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			'<center><img src="images/shared/sex/cum/vagcreampie/Creampie2.gif"></center>'
+			'You keep switching the tempo as you ride <<$boydesc>>, from the looks on his face he''s ready to explode. You speed up even more wanting him to finish as soon as possible. As you''re thinking about pulling out not wanting him to cum inside you, you realize that you are too late. <<$boydesc>> suddenly explodes inside of you.'
+			act'Take a shower':gt 'BelSex', 'shower'
+		end
+		if belact > 0:
+			belanal = rand(0,2)
+			if belanal = 0:
+				'<<$boydesc>>''s sweat is dripping all over your body. He is huffing and puffing as he pulls out. "Give me a second to catch my breath and then I''ll finish this. Give me your sweet little ass," he says, breathing heavily'
+				act'Take him in your ass':gt 'BelSex', 'anal1'
+			elseif belanal = 1:
+				'<<$boydesc>> wipes the sweat off his forehead, clearly worked up from fucking you. Nevertheless, he''s not done with you and tells you to that he wants your ass next.'
+				act'Present your ass':gt 'BelSex', 'anal2'
+			else
+				'<<$boydesc>> pulls out of your pussy as the sensations make you moan. "Oh don''t worry sweetheart, I''m not done yet. It''s your asshole next. Assume the position."'
+				act'Get fucked from behind':gt 'BelSex', 'analdoggy'
+			end 
+		end
+end
+
+if $ARGS[0] = 'anal1':
+		belact -= 1
+		anal_temp += 1
+		!'<<picrand>>'
+		'<center><img src="images\shared\sex\anal\piledriver\kotovsexanal36.gif"></center>'
+		'<<$boydesc>> begins rubbing the tip of his dick against you anus. Before you can even protest, his <<dick>> cm cock has already painfully penetrated your ass. You instinctively want to flinch away, but he grabs your hips with surprising strength and forces his dick as far into your ass as he can... before he starts hammering away.'
+		'"All the other girls I''ve fucked over the years loved getting their ass destroyed," he informs you between slaps of flesh against flesh. "I hope you don''t mind." The only response you manage to let out is a little squeak as if you''re giving him permission to continue on, not that he needs it.'
+		
+		gs 'arousal', 'anal', 15, 'sub', 'prostitution', 'rough'
+		gs 'stat'
+		
+		if belact <= 0:
+			gs 'cum_call', 'anus', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			picrand=rand(1,2)
+			!'<<picrand>>'
+			'<center><img src="images\shared\sex\cum\analcreampie\cumAnal<<picrand>>.gif"></center>'
+			'You can tell <<$boydesc>> is close to his orgasm. He huffs and puffs quite heavily now. Seconds later he firmly grabs your hips, his movements more erratic, and you feel his cock spasming inside you as he shoots his cum deep inside your asshole. The cum feels kind of warm inside you, and it slowly dribbles from you asshole once he pulls out his cock.'
+			
+			act'Take a shower':gt 'BelSex', 'shower'
+		end
+end
+
+if $ARGS[0] = 'anal2':
+		belact -= 1
+		anal_temp += 1
+		picrand = rand(30,34)
+		!'<<picrand>>'
+		'<center><img src="images\shared\sex\anal\cowgirl\kotovsexanal<<picrand>>.gif"></center>'
+		'<<$boydesc>> lies on the bed, as you climb on top of him. <<$boydesc>> grabs hold of his cock, guiding his cock inside your tight anus.'
+		'You gasp as you start moving back and forth, controlling the rhythm as you ride him. First, slowly, as you adjust yourself. Soon enough you''re speeding up: fast, deep, and hard. You feel a sharp pain that quickly turns into a pleasant ache. You keep riding him at the same pace as he begins panting more and more.'
+		
+		gs 'arousal', 'anal', 15, 'sub', 'prostitution'
+		gs 'stat'
+		
+		if belact <= 0:
+			gs 'cum_call', 'anus', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			'<center><img src="images\shared\sex\cum\analcreampie\analcum.jpg"></center>'
+			'You can tell <<$boydesc>> is close to his orgasm. His cock is stiff and has gotten larger inside your anus. Seconds later he firmly grabs your hips and you feel his cock spasming inside you as he shoots his cum deep inside your asshole. The cum feels kind of warm inside you, and it slowly dribbles out as you get up off of him.'
+			
+			act'Take a shower':gt 'BelSex', 'shower'
+		end
+end
 
-	if BelSexTime = 1000:
+if $ARGS[0] = 'analdoggy':
 		belact -= 1
-		if sex_temp > 0:stat['vaginal'] += 1 & sex_temp = 0
-		if bj_temp > 0:bj_temp = 0 & stat['bj'] += 1
-		if anal_temp > 0:anal_temp = 0 & stat['anal'] += 1
-		'When Vadim is done with you, you get up and take a quick shower to wash his cum off your body.'
+		anal_temp += 1
+		picrand = rand(0,12)
+		!'<<picrand>>'
+		'<center><img src="images\shared\sex\anal\doggy<<picrand>>.gif"></center>'
+		'<<boydesc>> pulls his cock out of your pussy and begins to slowly rub against your asshole. "Don''t worry, <<$pcs_nickname>>. I''ll be gentle," he says grinning as he has you on all fours, wide spread.'
+		'"Enough foreplay. Your ass is ready me!" he shouts as <<boydesc>> starts pounding himself balls deep into you immediately. You bury your face into a pillow as he pounds your asshole roughly. The pain is unbearable and you flop with your legs trying to get away, but it only encourages <<boydesc>> on as he keep pummeling your anus.'
+
+		gs 'arousal', 'anal', 15, 'sub', 'prostitution'
+		gs 'stat'
+		
+		if belact <= 0:
+			gs 'cum_call', 'anus', 'Bely'
+			gs 'cum_manage'
+			gs'stat'
+			'<center><img src="images\shared\sex\cum\analcreampie\kafeanpie.jpg"></center>'
+			'You''re at your limit and just as you want to beg him to take it easier, you feel him twitching behind you. All of a sudden you feel his warm cum shooting inside you. It slowly dribbles down your thighs as he pulls out of you.'
+			
+			act'Take a shower':gt 'BelSex', 'shower'
+		end
+end
+
+if ARGS[0] = 'shower':
+		'<<$boydesc>> is finally done with you. He looks at you all pleased as you get up and head off to the bathroom to take a quick shower and freshen up.'
 		act 'Take a 15 minute shower':
 			cls
 			dynamic $showerdin
@@ -152,141 +402,38 @@ if $ARGS[0] = '' or $ARGS[0] = 'sex':
 			pcs_makeup = 1
 			if frost > 0:frost = 0
 			gs'stat'
-			'<center><img src="images/shared/home/bathroom/dush.jpg"></center>'
-			'You get into the nice and hot water stream of the shower, and lather your body up with a soapy sponge. Taking extra measures to make sure you wash all of his cum off your body, you then shampoo up your hair and rinse that out as well. You''re squeaky clean now.'
+			'<center><img src="images/shared/home/bathroom/dush.gif"></center>'
+			'You get into the nice, hot water stream of the shower and lather your body up with a soapy sponge. You carefully make sure to wash all of his cum that''s dripping out your holes, you then shampoo your hair and rinse that out as well. You''re squeaky clean now.'
 			act 'Get out of the bathroom':
+			if belgangPay <= 0:
 				cls
 				BelSexTime = 0
 				money += 500
 				gs'stat'
-				'<<$boydesc>> gives you 500 <b>₽</b> and compliments you on a job well done. He then escorts you to the exit.'
+				'"A job well done. Here take this." <<$boydesc>> hands you 500 <b>₽</b>, probably thinking how badly he wants to fuck you again. But nothing more happens and he escorts you to the door, as he''s closing the door you hear him say; "I''ll be seeing you around, <<$pcs_nickname>>."'
 				if $clothingworntype = 'swimwear': gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
 				
 				gs 'arousal', 'end'
 				gs 'stat'
 			
-				act'Exit to the streets of Pavlovsk':gt'pavResidential'
-			end
-		end
-	end
-	gs'stat'
-end
-
-if $ARGS[0] = 'outing':
-	daybelisex=daystart
-	'You see the by now familiar old Mitsubishi Pajero driving through the streets, with Vadim Bely and his gang. Your heart skips a beat as you notice one of them pointing at you, and soon they pull over.'
-	'The tinted window slides down, and you find yourself staring directly into Vadim''s face. "Slut, get in. It''s time you work off your debts."'
-	act'Get into the jeep':
-		cls
-		minut+=5
-		gs'stat'
-		'You open the door and take a seat in the back, as Vadim drives through the city.'
-		if month>=4 and month<=8:
-			tiperand=rand(0,1)
-			if tiperand=0:
-				'As the car leaves the city and goes off-road at some point, one of the more silent criminals feels the need to explain: "We have a little picnic planned for today. We know just the place... nice and quiet. You''ll be able to entertain us there without interruptions."'
-				'The way he says it puts a shiver down your spine.'
-				'Finally, a few minutes after the car has left the main roads, you stop somewhere. You have absolutely no idea where you are. The criminals get out of the car and Vadim does the same, telling you to get out and follow them.'
-				act'Get out of the car':gt'belpicknick'
-			end
-			if tiperand=1:
-				'The car pulls over in the driveway of a large mansion, surrounded by a high metal fence. Vadim says a few words into a microphone and the gates swing open. He drives the car to the entrance of the house, as the gates close automatically behind you. He then tells you to follow them, as the men get out of the car.'
-				act'Do as they say':gt'belgang'
-			end
-		else
-			'The car pulls over in the driveway of a large mansion, surrounded by a high metal fence. Vadim says a few words into a microphone and the gates swing open. He drives the car to the entrance of the house, as the gates close automatically behind you. He then tells you to follow them, as the men get out of the car.'
-			act'Do as they say':gt'belgang'
-		end
-	end
-end
-
-if $ARGS[0] = 'drive':
-	daybelisex=daystart
-	'You see the by now familiar old Mitsubishi Pajero driving through the streets, with Vadim Bely behind the wheel. He pulls over next to you, and as the window rolls down you see Vadim''s smug face.'
-	'"<<$pcs_nickname>>, get in the car. We''re going for a drive." It looks like he won''t take no for an answer.'
-	act'Get into the jeep':
-		cls
-		minut+=5
-		gs'stat'
-		'Afraid of what might happen if you decline, you meekly nod: "Yes mister Bely", and enter the jeep. The next few minutes you drive around town seemingly at random, and you''re not sure where he''s taking you.'
-		tiperand=rand(1,100)
-		if tiperand<=30:
-			'As Vadim drives the car through the streets of Pavlovsk, he unbuttons his pants and pulls out his hard cock.
-			"Go on <<$pcs_nickname>>, start sucking. I don''t have much time, make it quick."'
-			act'Suck his cock while he drives':
+				act'Leave':gt'pavResidential'
+				
+			else
 				cls
-				gs 'boyStat', 113
-				$boydesc = $npc_usedname['A113']
-				spafinloc = 12
-				sexpartkno = 1
-				gs 'cum_manage'
-				swallow+=1
-				money+=500
+				BelSexTime = 0
+				belgangPay -= 500
 				gs'stat'
-				mrapic=rand(0,5)
-				!'<<mrapic>>'
-				'<center><img src="images/shared/sex/blowjob/carbj<<mrapic>>.gif"></center>'
-				'You shift your hips a bit and lean over, taking the head of his dick in your mouth and begin to suck obediently. The fat man doesn''t last long at all, and within minutes you feel his nasty cum squirting into your mouth. Since you''re in his car you can''t just spit it out somewhere, and see no other option but to swallow it. When he recovers, he pulls over and shoves you out onto the street. Throwing 500 <b>₽</b> on top of your prone body, he then races off as you quickly get up and pocket the money, hoping no one saw you get kicked out of the car.'
+				'"You''re getting there whore. You''re still <<belgangPay>> short though." <<$boydesc>> writes off 500 <b>₽</b> from your debt. He looks at you probably planning what he could do next to you. "Run along now, I have business to take care off." he says as he''s escorting you to the door, as he''s closing the door you hear him say; "Don''t you ever forget who''s your master, <<$pcs_nickname>>."'
+				if $clothingworntype = 'swimwear': gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
 				
-				gs 'arousal', 'bj', 5, 'prostitution'
 				gs 'arousal', 'end'
 				gs 'stat'
-				
-				act'Dust yourself off':gt 'pavResidential'
-			end
-		else
-			'Within minutes, you approach a five-storey apartment. Vadim parks the car in front of it and says: "Get out and follow me", not waiting for a response.'
-			act'Look around':
-				cls
-				minut+=5
-				gs'stat'
-				'The apartment is actually in decent shape. The minimal amount of furniture and decorations don''t make it look very hospitable though, and you assume this might just be one of the places Vadim rented for business or pleasure, not for living in. Noticing you''re spending too much time looking around and aren''t following him swiftly enough, he grabs you by your hair and pulls your face to his, roughly shoving his tongue in your mouth. You can smell the tabacco on his breath, and do your best to ignore the taste as he kisses you.'
-				act'Kiss him':gt 'BelSex', 'sex'
+			
+				act'Leave':gt'pavResidential'
 			end
 		end
 	end
 end
 
-if $ARGS[0] = 'pay':
-	'As you walk through Pavlovsk, a shabby Mitsubishi Pajero stops near you. Vadim Bely steps out, along with several of his henchmen. He gives you a smile that you know is 100% fake, and behaves amicably while he asks: "<<$pcs_nickname>>, well well! How are you? I hope you have good news for me?"'
-	if money>=belgangPay:
-		act'Give him the money':
-			cls
-			gs'stat'
-			'You have the money, and give it over to Vadim while his henchmen keep watch. Again, that awkward smile. "It''s all there, right? I would hate to have to come back for the rest."'
-			'You nod at him and reassure him: "It''s all there, mister Bely. You can count it if you want."'
-         	'He takes a moment to count it, and nods approvingly. "Very good, it''s the full amount. Please doing business, <<$pcs_nickname>>. Take care of yourself."'
-			'He signals his crew to get back in the jeep. You barely manage to dodge the spray of pebbles and dirt the spinning tires spew your way, as they drive off as fast as they can, probably on their way to another ''business appointment''.'
-			belgangQW=9999
-			money-=belgangPay
-			gs'stat'
-			act 'Continue':gt 'pavResidential'
-		end
-	else
-		act'You don''t have the money':
-			cls
-			gs'stat'
-			'You have tears in your eyes as you look down at your shoes, not daring to look him in the eye. "I''m... I''m sorry, mister Bely. I simply don''t have that kind of money. If you can give me some more time, I wi-"'
-			'He frowns, he abruptly cuts you off. You can see the disapproval in his eyes when you glance up. "That is very unfortunate <<$pcs_nickname>>, I had such high hopes for you", he says. "I guess we will have to find an alternative way for you to pay off your debts."'
-			'He then directs his attention to two of his henchmen: "She''s coming with us."'
-			'Too scared to resist, you simply let it happen when two men grab you by your arms and pull you into the Mitsubishi. Vadim gets back behind the wheel and within minutes, you''re out of town. You notice you''re being taken to the city, and you wonder what plans they have with you there.'
-			act'In the city...':
-				cls
-				gs'stat'
-				minut+=60
-				belgangQW=10000
-				workDolg=belgangPay
-				workDolg -= money
-				money = 0
-				belgangPay=0
-				'The car pulls over in front of the sauna. After one of the criminals made sure the coast is clear, two of the men pull you out of the car and escort you to a room inside the sauna building. Vadim follows to them, and asks to be left alone with you for a minute. After the other guys leave the room, he explains: "Until you pay off your debts, we own you. You will live here and work here, until you pay off your debts. Any expenses you incur while you are here will be added to your debt. Understood?"'
-				'Silence fills the room as he waits for you to acknowledge what he just said. Mortified about what might happen if you don''t, you nod. He decides to paint the picture anyway: "If you try to escape or refuse to work, we''ll put a bullet in your head, chop you up and bury you in the woods in pieces. And that would be a waste, with a pretty face such as yours." He pinches your cheeks and then slaps your face; not hard enough to be painful, but it certainly drives the message home. You can tell he''s dead serious.'
-				'After looking you in the eyes for a few more seconds to make sure you get the message, he turns around and leaves. You are all alone now.'
-				act 'Look around':gt'saunaroom'
-			end	
-		end
-	end
-end
-
 --- BelSex ---------------------------------
 

+ 36 - 36
locations/BurgerTip

@@ -9,7 +9,7 @@ if $ARGS[0] = 'work':
 		act 'Go to the boss''s office':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/citycenter/diner/work2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work2.jpg"></center>'
 			bossrand = rand(0, 3)
 
 			if bossrand = 0:
@@ -18,7 +18,7 @@ if $ARGS[0] = 'work':
 				act 'Fetch him a coffee':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/citycenter/diner/work3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work3.jpg"></center>'
 					'You deliver him a coffee on a little tray, with cream and sugar on the side. He doesn''t comment on your extra effort.'
 				
 					if PSBBtimes = 1:
@@ -33,13 +33,13 @@ if $ARGS[0] = 'work':
 				act 'Go to the chief accountant':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/citycenter/diner/work9.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work9.jpg"></center>'
 					'You hand the papers over to the accountant. Lena mutters something under her breath, before reading though them and signing. "OK, back to Anatoly, girl," she says, handing you the documents.'
 					
 					act 'Back to Anatoly':
 						cls
 						gs 'stat'
-						'<center><img src="images/locations/city/citycenter/diner/work2.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work2.jpg"></center>'
 						'You the deliver the papers to the boss, and he sends you on your way.'
 
 						if PSBBtimes = 1:
@@ -55,14 +55,14 @@ if $ARGS[0] = 'work':
 				act 'Take the papers to Ivan':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/citycenter/diner/work7.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work7.jpg"></center>'
 					'You hand the papers to Ivan, telling him that Anatoly wants them done immediately.'
 					'Ivan takes the folder from you. He opens the folder, and flips though the papers. With a little nod, he sends you on your way.'
 
 					act 'Back to your desk':
 						cls
 						gs 'stat'
-						'<center><img src="images/locations/city/citycenter/diner/work.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work.jpg"></center>'
 						'With your mission accomplished, you get back to work.'
 
 						if PSBBtimes = 1:
@@ -77,7 +77,7 @@ if $ARGS[0] = 'work':
 				bossexrand = rand(0, 3)
 				pcs_horny += 10
 				gs 'stat'
-				'<center><img src="images/characters/city/anatoly/sex/boss<<bossexrand>>.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/boss<<bossexrand>>.jpg"></center>'
 				'When you enter Anatoly''s office, he approaches you with a hungry look in his eye.'
 
 				if bossexrand = 0:'He passionately presses you against the wall, and covers you with kisses.'
@@ -88,7 +88,7 @@ if $ARGS[0] = 'work':
 				act 'Kiss him':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/city/anatoly/sex/bossex.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossex.jpg"></center>'
 					'While you kiss him, Anatoly leads you to the couch. He soon has his face planted between your breasts, and a hand fondling your ass.'
 
 					gs 'arousal', 'give_kiss', 5, 'sub'
@@ -101,7 +101,7 @@ if $ARGS[0] = 'work':
 					act 'Have sex':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/city/anatoly/sex/bossex2.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossex2.jpg"></center>'
 						'Anatoly puts you on your back, and begins to undress you. His kisses and his hands run all over your body, soon his hand finds it''s way between your legs.'
 
 						bosstipsexrand = rand(1, 10)
@@ -125,13 +125,13 @@ if $ARGS[0] = 'work':
 				act 'Kneel':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/city/anatoly/sex/bossex1.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossex1.jpg"></center>'
 					'Kneeling before Anatoly, you begin to deftly undo his pants. He stares down at you silently, as work to get access to the bulge in his briefs.'
 
 					act 'Caress his cock through his briefs':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/city/anatoly/sex/bossbj.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbj.jpg"></center>'
 						'When his pants are around his ankles, you kiss and rub your hands along the fabric covering his bulge. Eventually you see the tip of his penis poking out his briefs, and can''t take it anymore. Playfully, you remove his underwear with your teeth.'
 
 						gs 'arousal', 'foreplay', 5, 'sub'
@@ -149,7 +149,7 @@ if $ARGS[0] = 'work':
 	elseif burand = 1:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/citycenter/diner/work5.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work5.jpg"></center>'
 
 		if PSBBtimes = 1:
 			bosstiprand = rand(0, 3)
@@ -251,7 +251,7 @@ if $ARGS[0] = 'work':
 						act 'Oh, I suppose':
 							cls
 							gs 'stat'
-							'<center><img src="images/locations/city/citycenter/diner/work7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work7.jpg"></center>'
 							'Sergei is delighted when you meet up with him after work'
 							'"Come on <<$pcs_nickname>>, let''s go hit the town," he says, as he takes your hand and leads you outside.'
 
@@ -263,7 +263,7 @@ if $ARGS[0] = 'work':
 								pcs_energy = 100
 								fat += 4
 								gs 'stat'
-								'<center><img src="images/locations/city/citycenter/diner/kafe.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/kafe.jpg"></center>'
 								'Sergei takes you to a local restaurant not far from work. he orders food and drinks for both of you, after you find a table. Soon you are chatting, eating and drinking wine with Sergei. Before you realize it, you start feeling a little tipsy, but the conversation is still pleasant enough. When you are finished Sergei pays for everything, and invites you back to his place.'
 						
 								act 'Let him down easy':
@@ -271,7 +271,7 @@ if $ARGS[0] = 'work':
 									minut += 15
 									sergeyPQW = 1
 									gs 'stat'
-									'<center><img src="images/locations/city/citycenter/diner/kafe2.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/kafe2.jpg"></center>'
 									'You tell him that you have to be getting home, and the little brat takes that as an opportunity to grope you, before you leave.'
 
 									act 'Leave.':gt 'down'
@@ -321,7 +321,7 @@ if $ARGS[0] = 'work':
 				act 'Go with Anatoly':
 					cls
 					gs 'stat'
-					'<center><img src="images/locations/city/shared/car.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/shared/car.jpg"></center>'
 					BurMestoRand = rand(0, 1)
 
 					if BurMestoRand = 0:
@@ -346,7 +346,7 @@ if $ARGS[0] = 'work':
 								act 'Drop to you knees':
 									cls
 									gs 'stat'
-									'<center><img src="images/characters/city/anatoly/sex/bossbjs.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjs.jpg"></center>'
 									'You kneel before your Anatoly, and shower his groin with gentle kisses and little licks. He is rock hard and ready in no time. You tease him a little by sucking on just the tip of his cock, for awhile. When it looks like he can''t take it anymore, you slide his entire cock into your mouth. You bob your head up and down vigorously, savoring the taste of the boss''s cock. Before you can finish him, he pulls himself from your mouth, and motions for you to follow him to the bench.'
 
 									gs 'arousal', 'bj', 5, 'sub'
@@ -357,7 +357,7 @@ if $ARGS[0] = 'work':
 										minut += 5
 										gs 'boyStat', 74
 										gs 'stat'
-										'<center><img src="images/characters/city/anatoly/sex/bosssexs.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bosssexs.jpg"></center>'
 										protect = 1
 										if preziktype = 2:
 											sexcontra = 7
@@ -406,7 +406,7 @@ if $ARGS[0] = 'work':
 							gs 'cum_manage'
 							swallow += 1
 							gs 'stat'
-							'<center><img src="images/characters/city/anatoly/sex/bossbjcar.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcar.jpg"></center>'
 							'Determined to send Anatoly home with a smile, you lean over and unzip his pants. You wrap your <<$lip1>> lips around his flaccid penis, and start working your magic. Soon your mouth is full of hard throbbing cock. You make an effort to get him home quickly, and suck like a woman possessed with the need for seed. He does finish quickly, and you slurp it all down with a smile. Anatoly gets himself back in his pants, and sends you on your way saying, "Thanks babe, you''re the best."'
 							
 							gs 'arousal', 'bj', 5, 'sub'
@@ -553,7 +553,7 @@ if $ARGS[0] = 'bj':
 	numbjrand = rand(0, 14)
 	wantrand = rand(0, 3)
 	gs 'stat'
-	'<center><img src="images/characters/city/anatoly/sex/bossbj<<numbjrand>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbj<<numbjrand>>.jpg"></center>'
 	'You greedily wrap your <<$lip1>> lips around the head of his cock. Smiling up at Anatoly, you give you lips a playfully little pop, before you begin to suck in earnest.'
 
 	gs 'arousal', 'bj', 5, 'sub'
@@ -671,7 +671,7 @@ if $ARGS[0] = 'bj_cum':
 	reaktrand = rand(0, 10)
 
 	if reaktrand <= 5:
-		'<center><img src="images/shared/sex/handjob/bossbjcum.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/handjob/bossbjcum.jpg"></center>'
 		'Not wanting a mouth full of cum, you decide to jerk Anatoly to completion. His semen pours out all over your hand. Exhausted, Anatoly lies back breathing heavily.'
 
 		gs 'arousal', 'hj', 5, 'sub'
@@ -685,7 +685,7 @@ if $ARGS[0] = 'bj_cum':
 	elseif reaktrand > 5 and reaktrand < 9:
 		spafinloc = 7
 		gs 'cum_manage'
-		'<center><img src="images/characters/city/anatoly/sex/bossbjcum2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcum2.jpg"></center>'
 		'Not wanting a mouth full of cum, you decide to jerk Anatoly to completion. Oh dear, it looks like your clever plan backfired. Anatoly managed to shoot his load all over your pretty outfit. It looks sexy, but you better head to the bathroom before it stains.'
 		
 		gs 'arousal', 'end'
@@ -697,7 +697,7 @@ if $ARGS[0] = 'bj_cum':
 		gs 'cum_manage'
 		spafinloc = 7
 		gs 'cum_manage'
-		'<center><img src="images/characters/city/anatoly/sex/bossbjcum3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcum3.jpg"></center>'
 		'Not wanting a mouth full of cum, you decide to jerk Anatoly to completion. You realize your error when jets of semen splatter against your face and clothes. You manage to get most of it off your face with a tissue, but you better get to the little girls room before it stains your top.'
 		
 		gs 'arousal', 'end'
@@ -714,7 +714,7 @@ if $ARGS[0] = 'bj2':
 	spafinloc = 12
 	gs 'cum_manage'
 	gs 'stat'
-	'<center><img src="images/characters/city/anatoly/sex/bossbjcum4.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcum4.jpg"></center>'
 	'Wanting to get a taste, you pick up the pace to finish him. Soon, his salty semen pours into your mouth. It tastes delicious.'
 
 	gs 'arousal', 'bj', 5, 'sub'
@@ -723,7 +723,7 @@ if $ARGS[0] = 'bj2':
 	act 'Show him how full your mouth is':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/city/anatoly/sex/bossbjcum5.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcum5.jpg"></center>'
 		'When his sperm ceases to flow into your mouth, you open to show Anatoly. You let his load slowly run from your mouth.'
 		boburand = rand(0, 10)
 
@@ -750,7 +750,7 @@ if $ARGS[0] = 'bj2':
 		cls
 		swallow += 1
 		gs 'stat'
-		'<center><img src="images/characters/city/anatoly/sex/bossbjcum6.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbjcum6.jpg"></center>'
 		'You swallow his cum down as fast as you can. You are left with the a strange, but not altogether unpleasant aftertaste in your mouth.'
 		boburand = rand(0, 10)
 
@@ -774,7 +774,7 @@ if $ARGS[0] = 'bend':
 	cls
 	gs 'stat'
 	!!bossfuck
-	'<center><img src="images/characters/city/anatoly/sex/bossbendover.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossbendover.jpg"></center>'
 	'You bend over the desk, spreading your cheeks to give Anatoly access to whatever he wants.'
 	bosstipsex = rand(0, 10)
 
@@ -794,7 +794,7 @@ if $ARGS[0] = 'sex':
 	pose = 1
 	gs 'stat'
 	!!bossfuck
-	'<center><img src="images/characters/city/anatoly/sex/bossfuck.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossfuck.jpg"></center>'
 	'You urge him on with your moans, and a little wiggle of your hips.'
 	!!dynamic $sexcum
 	bosswantrand = rand(0, 10)
@@ -828,7 +828,7 @@ if $ARGS[0] = 'anal':
 	pose = 1
 	gs 'stat'
 	!!bossfuck
-	'<center><img src="images/characters/city/anatoly/sex/bossanal.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossanal.jpg"></center>'
 	'You push your hips back presenting your ass for Anatoly.'
 	!!dynamic $sexcum
 	spafinloc = 4
@@ -853,7 +853,7 @@ if $ARGS[0] = 'sex2':
 	pose = 0
 	gs 'stat'
 	!!bossfuck
-	'<center><img src="images/characters/city/anatoly/sex/bossfuck2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossfuck2.jpg"></center>'
 	'You urge him on with your moans, and a little wiggle of your hips.'
 	!!dynamic $sexcum
 
@@ -888,7 +888,7 @@ if $ARGS[0] = 'anal2':
 	gs 'boyStat', 74
 	pose = 0
 	gs 'stat'
-	'<center><img src="images/characters/city/anatoly/sex/bossanal2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/anatoly/sex/bossanal2.jpg"></center>'
 	'You brace yourself, as he pushes his rock hard cock against your tight little sphincter.'
 	!!dynamic $sexcum
 	spafinloc = 3
@@ -917,7 +917,7 @@ if $ARGS[0] = 'Ivan_work':
 			kompromatBlackMail = 1
 			minut += 5
 			gs 'stat'
-			'<center><img src="images/locations/city/citycenter/diner/work5.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work5.jpg"></center>'
 			'Ivan frowns slightly when you don''t say anything. "OK baby, I will keep quiet for now, but this isn''t the end of this." Irritated, he puts the photo in his pocket.'
 
 			if PSBBtimes = 1:
@@ -935,7 +935,7 @@ if $ARGS[0] = 'Ivan_work2':
 	cls
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/citycenter/diner/work5.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work5.jpg"></center>'
 	'"Please Ivan, I need this job. What will it take to keep you quiet?" you ask.'
 	'Ivan chuckled, "I see you are ready to cooperate. Let''s go to my office to discuss it."'
 
@@ -959,7 +959,7 @@ if $ARGS[0] = 'Ivan_work2':
 				facial += 1
 				boy += 1
 				gs 'stat'
-				'<center><img src="images/characters/city/ivan/sex/ivanfacial.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/city/ivan/sex/ivanfacial.jpg"></center>'
 				'You kneel with mouth open waiting for what comes next. Ivan gets his dick out, and starts to masturbate in front of your face, coldly staring down at you. He shouts, "I knew you''d be my whore!" as sperm flies out of his cock and splatters against your face. After he is finished coating your face, he puts his dick back in his pants saying, "OK, get out of my office slut, and don''t forget unless you want the boss finding out about those pictures I own your ass."'
 
 				gs 'arousal', 'bj', 10, 'sub'
@@ -983,7 +983,7 @@ if $ARGS[0] = 'Ivan_work3':
 	cls
 	kompromatBlackMail = 1
 	gs 'stat'
-	'<center><img src="images/locations/city/citycenter/diner/work7.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work7.jpg"></center>'
 	'When you refuse to undress, Ivan says, "I''m tired of messing with you anyway, you stupid cunt. It''s easier just to get rid of you once and for all." With that, he opens the door and orders you to exit.'
 
 	if PSBBtimes = 1:
@@ -997,7 +997,7 @@ if $ARGS[0] = 'work4':
 	cls
 	kompromatBlackMail = 1
 	gs 'stat'
-	'<center><img src="images/locations/city/citycenter/diner/work7.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/diner/work7.jpg"></center>'
 	'When you refuse, Ivan says, "I''m tired of messing with you anyway, you stupid cunt. It''s easier just to get rid of you once and for all." With that, he turns and walks away.'
 
 	act 'Leave':gt 'down'

+ 84 - 27
locations/Cheatmenu_din

@@ -125,11 +125,50 @@ $cheatmenu['money'] = {
 }
 
 $cheatmenu['bodyMod'] = {
-   dounspell = 1
-   TaliaDoun = input ("Waist in cm?")
-   if TaliaDoun <= 0:TaliaDoun = 20
-   bedraDoun = input ("Hips in cm?")
-   if bedraDoun <= 0:bedraDoun = 40
+	clr
+	pl '<center><a href="exec:dynamic $cheatmenu"><b>Cheat menu</b></a></center>'
+	pl ''
+	pl '<center><a href="exec:dynamic $cheatmenu[''permanent'']">Return to last menu</a></center>'
+	pl ''
+	pl '<center><b><font color="red">WARNING!</font></b></center>'
+	pl ''
+	pl 'Using this function to change body shape does not resize clothes and may cause other adverse interactions.'
+	pl 'Use at your own risk!'
+	pl ''
+	pl 'You are currently <<$body>>.'
+	pl ''
+	pl 'You may select from the following sizes:'
+	pl ''
+	pl 'starving (No, you may not select ''starving'', it''s here to show where the scale starts)'
+	pl ''
+	if salocatnow ! 1:
+		pl '<a href="exec:salo = 20 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 1)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 2:
+		pl '<a href="exec:salo = 40 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 2)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 3:
+		pl '<a href="exec:salo = 60 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 3)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 4:
+		pl '<a href="exec:salo = 80 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 4)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 5:
+		pl '<a href="exec:salo = 100 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 5)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 6:
+		pl '<a href="exec:salo = 120 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 6)]>></a>'
+		pl ''
+	end
+	if salocatnow ! 7:
+		pl '<a href="exec:salo = 140 & gs ''body_shape'', ''softreset'' & gs ''stat'' & dynamic $cheatmenu[''bodyMod'']"><<$bodimgsets[((bodset * 10) + 7)]>></a>'
+		pl ''
+	end
 }
 
 $cheatmenu['addict'] = {
@@ -157,15 +196,23 @@ $cheatmenu['slutshot'] = {
 }
 
 $cheatmenu['Vibrator'] = {
-	if cheatVib = 0:
-		cheatVib = 1
+	if bedvibrator = 0:
+		bedvibrator = 1
 		dynamic $cheatmenu['permanent']
-	elseif cheatVib = 1:
-		cheatVib = 0
+	elseif bedvibrator = 1:
+		bedvibrator = 0
 		dynamic $cheatmenu['permanent']
 	end
 }
 
+$cheatmenu['BimboCloth'] = {
+	if $cheatBimbo = '<b>ON</b>':
+		$cheatBimbo = 'OFF'
+	elseif $cheatBimbo = 'OFF':
+		$cheatBimbo = '<b>ON</b>'
+	end
+}
+
 $cheatmenu['permanent'] = {
 	gs'stat'
 	clr
@@ -189,10 +236,11 @@ $cheatmenu['permanent'] = {
 	if NarkImmune = 1:$NarkImmune = '<b>ON</b>'
 	if cheatSlut = 0:$cheatSlut = 'NO'
 	if cheatSlut = 1:$cheatSlut = '<b>YES</b>'
-	if cheatVib = 0:$cheatVib = 'NO'
-	if cheatVib = 1:$cheatVib = '<b>YES</b>'
+	if bedvibrator = 0:$cheatVib = 'NO'
+	if bedvibrator = 1:$cheatVib = '<b>YES</b>'
 	if cheatBandit = 0:$cheatBandit = 'NO'
 	if cheatBandit = 1:$cheatBandit = '<b>YES</b>'
+	if $cheatBimbo = '':$cheatBimbo = 'OFF'
 
 	pl'<center><a href="exec:dynamic $cheatmenu"><b>Cheat menu</b></a></center>'
 	pl''
@@ -218,10 +266,11 @@ $cheatmenu['permanent'] = {
 	pl'<a href="exec:alko = 11 & dynamic $cheatmenu[''permanent'']">Drunk in dyminu</a>'
 	pl'<a href="exec:dynamic $cheatmenu[''Vibrator'']">Enable sleeping with vibrator inserted</a>: <<$cheatVib>>'
 	pl'<a href="exec:dynamic $cheatmenu[''Bandit'']">Bandit always horny</a>: <<$cheatBandit>>'
+	pl'<a href="exec:dynamic $cheatmenu[''BimboCloth''] & dynamic $cheatmenu[''permanent'']">Bimbo clothing without becoming bimbo</a>: <<$cheatBimbo>>'
 	pl''
 	pl'<a href="exec:pcs_horny = 100 & dynamic $cheatmenu[''permanent'']">Excite</a>'
 	pl'<a href="exec:pcs_horny = 0 & dynamic $cheatmenu[''permanent'']">Soothe</a>'
-	pl'<a href="exec:dynamic $cheatmenu[''bodyMod''] & dynamic $cheatmenu[''permanent'']">Body Modification</a>'
+    pl'<a href="exec:dynamic $cheatmenu[''bodyMod'']">Body Modification</a>'
 	pl''
 	pl'<a href="exec:dynamic $cheatmenu[''slutshot'']">Slut shot: Turn off pregnancy and periods</a>: <<$cheatSlut>>'
 	pl''
@@ -324,14 +373,14 @@ $cheatmenu['looks'] = {
 	pl''
 	pl'You are <a href="exec: pcs_dob += 10000 & dynamic $cheatmenu[''age'']">(-1)</a> <<age>> <a href="exec: pcs_dob -= 10000 & dynamic $cheatmenu[''age'']">(+1)</a> years old'
 	pl''
-	pl'<a href=>You look for <<vidage>> years</a>'
-	pl'<a href="exec:dynamic $cheatmenu[''visualage'']">Change Visible age</a>'
+	pl'<a href=>You look <<vidage>> years old</a>'
+	pl'<a href="exec:dynamic $cheatmenu[''visualage'']">Change apparent age</a>'
 	pl''
 	pl 'You have <<$titsize>> breasts'
-	if tits => 0 and tits < 10:pl'<a href="exec:silicone += 5 & dynamic $cheatmenu[''looks'']">Enlarge breasts(silicone)</a>'
+	if tits => 0 and tits < 11:pl'<a href="exec:silicone += 5 & dynamic $cheatmenu[''looks'']">Enlarge breasts(silicone)</a>'
 	if silicone => 1:pl'<a href="exec:silicone -= 5 & dynamic $cheatmenu[''looks'']">Shrink breasts(silicone)</a>'
-	if tits => 0 and tits < 10:pl'<a href="exec:nbsize += 5 & dynamic $cheatmenu[''looks'']">Enlarge breasts(natural)</a>'
-	if nbsize => 1:pl'<a href="exec:nbsize -= 5 & dynamic $cheatmenu[''looks'']">Shrink breasts(natural)</a>'
+	if tits => 0 and tits < 11:pl'<a href="exec:nbsize += 5 & dynamic $cheatmenu[''looks'']">Enlarge breasts(natural)</a>'
+	if nbsize => 1:pl'<a href="exec:nbsize -= 5 & titreduc = 1 & dynamic $cheatmenu[''looks'']">Shrink breasts(natural)</a>'
 	pl''
 	pl'<<$lip>>'
 	if pcs_lip < 4:pl'<a href="exec:pcs_lip += 1 & dynamic $cheatmenu[''looks'']">Enlarge lips</a>'
@@ -402,17 +451,17 @@ $cheatmenu['looks3'] = {
 	elseif pcs_haircol => 3:
 		pl'Your hair is now <a href="exec:pcs_haircol -=1 & dynamic $cheatmenu[''looks3'']">(prev)</a> <<$pcs_haircol>> (next)'
 	end
-	if pcs_hairlng > 575:
+	if pcs_hairlng > 975:
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng -= 100 & dynamic $cheatmenu[''looks3'']">-100</a> <a href="exec:pcs_hairlng -= 25 & dynamic $cheatmenu[''looks3'']">-25</a> <a href="exec:pcs_hairlng -= 5 & dynamic $cheatmenu[''looks3'']">-5</a> <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a>'
-	elseif pcs_hairlng > 500 and pcs_hairlng =< 575:
+	elseif pcs_hairlng > 900:
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng -= 100 & dynamic $cheatmenu[''looks3'']">-100</a> <a href="exec:pcs_hairlng -= 25 & dynamic $cheatmenu[''looks3'']">-25</a> <a href="exec:pcs_hairlng -= 5 & dynamic $cheatmenu[''looks3'']">-5</a> <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a> <a href="exec:pcs_hairlng += 25 & dynamic $cheatmenu[''looks3'']">+25</a>'
-	elseif pcs_hairlng =< 500 and pcs_hairlng => 100:
+	elseif pcs_hairlng >= 100:
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng -= 100 & dynamic $cheatmenu[''looks3'']">-100</a> <a href="exec:pcs_hairlng -= 25 & dynamic $cheatmenu[''looks3'']">-25</a> <a href="exec:pcs_hairlng -= 5 & dynamic $cheatmenu[''looks3'']">-5</a> <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a> <a href="exec:pcs_hairlng += 25 & dynamic $cheatmenu[''looks3'']">+25</a> <a href="exec:pcs_hairlng += 100 & dynamic $cheatmenu[''looks3'']">+100</a>'
-	elseif pcs_hairlng < 100 and pcs_hairlng => 25:
+	elseif pcs_hairlng >= 25:
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng -= 25 & dynamic $cheatmenu[''looks3'']">-25</a> <a href="exec:pcs_hairlng -= 5 & dynamic $cheatmenu[''looks3'']">-5</a> <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a> <a href="exec:pcs_hairlng += 25 & dynamic $cheatmenu[''looks3'']">+25</a> <a href="exec:pcs_hairlng += 100 & dynamic $cheatmenu[''looks3'']">+100</a>'
-	elseif pcs_hairlng < 100 and pcs_hairlng => 25:
+	elseif pcs_hairlng >= 5:
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng -= 5 & dynamic $cheatmenu[''looks3'']">-5</a> <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a> <a href="exec:pcs_hairlng += 25 & dynamic $cheatmenu[''looks3'']">+25</a> <a href="exec:pcs_hairlng += 100 & dynamic $cheatmenu[''looks3'']">+100</a>'
-	elseif pcs_hairlng < 25:
+	else
 		pl'Hair length (<<pcs_hairlng>>)  <a href="exec:pcs_hairlng += 5 & dynamic $cheatmenu[''looks3'']">+5</a> <a href="exec:pcs_hairlng += 25 & dynamic $cheatmenu[''looks3'']">+25</a> <a href="exec:pcs_hairlng += 100 & dynamic $cheatmenu[''looks3'']">+100</a>'
 	end
 	pl''
@@ -807,7 +856,7 @@ $cheatmenu['reputation'] = {
 		pl'You''ve been dating for <<daya>> days. <a href="exec:daya += 5 & dynamic $cheatmenu[''reputation'']">+5</a> <a href="exec:daya -= 5 & dynamic $cheatmenu[''reputation'']">-5</a>'
 	end
 	pl''
-	if pav_slut >= 25:pl'In Pavlovo you are known as a <<$gnikname>>'
+	if pav_slut >= 25:pl'In Pavlovsk you are known as a <<$gnikname>>'
 	if opusk > 0 or gnewQW < 4 or sipovka > 0:pl'<a href="exec:opusk = 0 & sipovka = 0 & gnewQW = 0 & dynamic $cheatmenu[''reputation'']">Clear reputation with Gopniks</a>'
 	if StoryLine = 1:
 		if motherKnowWhore > 0 or motherKnowSpravka > 0 or brotherSex >= 1 or evgenQW >= 3 or brotherknowslut > 0 or sisterknowslut > 0:
@@ -897,7 +946,6 @@ $cheatmenu['time'] = {
 		if femcycloop > 0:gs 'femcyc' & femcycloop -= 1 & jump 'femcycloop'
 	end
 	clr
-	gs 'outdoors', 'weather'
 	pl'<center><a href="exec:dynamic $cheatmenu"><b>Cheat menu</b></a></center>'
 	pl''
     if temp_minut > 9:
@@ -956,7 +1004,7 @@ $cheatmenu['time'] = {
 	pl''
 	pl' <a href="exec:dynamic $cheatmenu[''input_time'']">Direct input time</a>'
 	pl''
-	pl 'Weather: <a href="exec:sunWeather=iif(sunWeather=0,1,0) & $pogoda=iif(sunWeather=0,''Rain...'',''Clear...'') & dynamic $cheatmenu[''time'']">'+iif(sunWeather=0,'Rain','Sunny')+'</a>'
+	pl'Weather: <a href="exec:sunWeather=iif(sunWeather=0,1,0) & $pogoda=iif(sunWeather=0,''Rain...'',''Clear...'') & chWeather = 1 & gs ''outdoors'', ''weather'' & dynamic $cheatmenu[''time'']">'+iif(sunWeather=0,'Rain','Sunny')+'</a>'
 	pl''
 	pl'<a href="exec:day = temp_day & $month = $temp_month & month = temp_month & year = temp_year & hour = temp_hour & minut = temp_minut & currtimecheck = 1 & dynamic $cheatmenu[''time'']">Accept target date & time</a>'
 	pl'<a href="exec:temp_day = day & $temp_month = $month & temp_month = month & temp_year = year & temp_hour = hour & temp_minut = minut & dynamic $cheatmenu[''time'']">Reset target date & time</a>'
@@ -1373,6 +1421,14 @@ $cheatmenu = {
    	pl'<a href="exec:gt''dachi''">Teleport to Suburban Cooperative</a>'
 	pl'<b>Warning!</b> Teleporting while in event is likely to break your game!'
     pl''
+	if set_imgh > 0:
+		pl'Set Image height: <a href="exec:set_imgh=1+input(''Enter the height of the images'') & dynamic $cheatmenu"><<set_imgh-1>></a>, <a href="exec:set_imgh=0 & dynamic $cheatmenu">O</a>'
+		$set_imgh = 'height = <<set_imgh>>'
+	else
+		pl'Set Image height: <a href="exec:set_imgh=1+input(''Enter the height of the images'') & dynamic $cheatmenu">X</a>'
+		$set_imgh = ''
+	end
+	pl''
 	pl'Pregnancy speed multiplier: <a href="exec:if pregspeedcheat < 3:pregspeedcheat += 1 & dynamic $cheatmenu else pregspeedcheat = 0 & dynamic $cheatmenu"><b><<pregspeedcheat+1>></b></a>'
 	pl''
 	pl'<a href="exec:dynamic $cheatmenu[''vartracker'']"><b>Variable tracker</b></a>'
@@ -1455,6 +1511,7 @@ $cheatmenu['vartracker'] = {
 	pl'ferteggage: <<ferteggage>>'
 	pl'PregChem: <<PregChem>>'
 	pl'pillcon: <<pillcon>>'
+	pl'Believed pillcon: <<pillcon2>>'
 	pl'RecovH: <<RecovH>>'
 	pl'daylastperiod: <<daylastperiod>> (daystart difference: <<daystart-daylastperiod>>)'
 	pl'hypnoTime: <<hypnoTime>>'
@@ -1693,7 +1750,7 @@ $cheatmenu['bdimcstadd'] = {
 	pl '<a href="exec:killvar ''klsetask'' & dynamic $cheatmenu[''bdimmain'']"><b>Go Back</b></a>'
 	nl
 	pl 'This is where you can add a new image set to a game.'
-	pl 'To add an image set, create a folder in \images\body\shape\ and name it anything you want (shorter will be easier to remember). Then put in it any images you want named 1.jpg, 2.jpg, etc. up 5, 6, or 7. Just make sure it contains images 1 to 5. Once you have done that, click the link below and put in your folder name to add that set.'
+	pl 'To add an image set, create a folder in \images\pc\body\shape\ and name it anything you want (shorter will be easier to remember). Then put in it any images you want named 1.jpg, 2.jpg, etc. up 5, 6, or 7. Just make sure it contains images 1 to 5. Once you have done that, click the link below and put in your folder name to add that set.'
 	pl 'Note: This will only be for this instance/save of the game and you will have to redo the click the link step if you want to add the same folder to a different instance/save.'
 	nl
 	pl '<a href="exec:dynamic $cheatmenu[''bdimcstaddpro'']">Add Image Set</a>'

+ 10 - 10
locations/Club2

@@ -5,7 +5,7 @@ if $ARGS[0] = 'toilet1':
 	gs 'stat'
 	gs 'npcgeneratec', 0, 'Gloryhole Client', rand(18,60)
 	gs 'boyStat', $npclastgenerated
-	'<center><img src="images/locations/city/citycenter/nightclub/sex/glory.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory.jpg"></center>'
 	'You went into the booth and closed the door. The walls are covered with obscene graffiti in the walls and booths carved strange round holes. Sitting on the toilet you hear what that noise in the next stall. Through the hole in the wall you looked someone''s eyes.'
 	'In a hole in the wall squeezed fat cock. Lustful voice said, "here''s a yum yum, baby."'
 	'This is so not surprisingly, that you do not believe in the reality of what is happening to touch the finger member. It is hard and hot.'
@@ -21,7 +21,7 @@ if $ARGS[0] = 'toilet1':
 
 		guy += 1
 		pcs_throat += 1
-		'<center><img src="images/locations/city/citycenter/nightclub/sex/glory1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory1.jpg"></center>'
 		'You lean against a member, it''s so big, warm and solid, you licked it, then again and again.'
 		
 		gs 'arousal', 'bj', 5, 'sub'
@@ -30,7 +30,7 @@ if $ARGS[0] = 'toilet1':
 		act 'Cover lips':
 			cla
 			*clr
-			'<center><img src="images/locations/city/citycenter/nightclub/sex/glory2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory2.jpg"></center>'
 			'You bows member lips and start sucking it, trying to take it as deep as possible.'
 			'Suddenly, in your mouth and poured hot tart liquid.'
 
@@ -45,7 +45,7 @@ if $ARGS[0] = 'toilet1':
 				spafinloc = 12
 				gs 'cum_manage'
 				money += 1000
-				'<center><img src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
 				'You dial a mouthful of sperm, and then swallow it, sperm is not tasty, sticky and sharp taste.'
 				'A male voice telling you - excellent crumb, the money you deserve, a member of the hole and the hole disappears pushes 1,000 RUB.'
 
@@ -60,7 +60,7 @@ if $ARGS[0] = 'toilet1':
 				spafinloc = 11
 				gs 'cum_manage'
 				money += 500
-				'<center><img src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
 				'You dial a mouthful of sperm, the sperm is not tasty, sticky and sharp, you spit it on the floor.'
 				'A male voice telling you - excellent crumb, the money you deserve, a member of the hole and the hole disappears and is replaced by 500 RUB.'
 
@@ -91,7 +91,7 @@ if $ARGS[0] = 'toilet':
 		if pcs_exhibition < 30:exhibition_exp += rand(1,3)
 		money += 500
 		gs 'stat'
-		'<center><img src="images/shared/sex/mast/tomas.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/mast/tomas.jpg"></center>'
 		'You caress his fingers swollen pussy until you orgasm does not cover.'
 		'After orgasm, you take it easy, but hear from the next stall pant, look at the wall you see that someone is peeking through the hole located in the wall.'
 		'The man behind the wall and realized that found giggled, great show. Eye of the holes in the wall and disappeared into it squeezed 500 RUB.'
@@ -116,7 +116,7 @@ if $ARGS[0] = 'toilet2':
 	act 'Wait':
 		cla
 		slutiness += 10
-		'<center><img src="images/locations/city/citycenter/nightclub/sex/glory4.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory4.jpg"></center>'
 		'On both sides of your booth through holes in the walls climbed members. Voice on the wall said, come on, baby, come on, we''re fed.'
 		'You took both members and began to caress them, then bent over to one of the members and took it into his mouth.'
 		
@@ -128,7 +128,7 @@ if $ARGS[0] = 'toilet2':
 		wait 3000
 		cla
 		*clr
-		'<center><img src="images/locations/city/citycenter/nightclub/sex/glory5.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory5.jpg"></center>'
 		'You are enthusiastically fucked by both members in turn.'
 		
 		gs 'arousal', 'vaginal', 10, 'sub', 'group'
@@ -137,7 +137,7 @@ if $ARGS[0] = 'toilet2':
 		wait 3000
 		cla
 		*clr
-		'<center><img src="images/locations/city/citycenter/nightclub/sex/glory6.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory6.jpg"></center>'
 		'Finally one of the men ends up in your mouth.'
 		'You lick and start to finish processing the second term.'
 		
@@ -147,7 +147,7 @@ if $ARGS[0] = 'toilet2':
 		wait 3000
 		cla
 		*clr
-		'<center><img src="images/locations/city/citycenter/nightclub/sex/glory7.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory7.jpg"></center>'
 		'The second man also comes in your mouth.'
 		'You swallow a mouthful and wipe your face, but semen is smeared all over it.'
 		

+ 2 - 2
locations/Cum_Manage

@@ -117,7 +117,7 @@ if $ARGS[0] = '':
 
 	cumarrtemp = arrsize('$cumarrnam')
 
-	if sexcontra = 0 and pillcon > 1000: sexcontra = 2
+	if sexcontra = 0 and pillcon2 > 1000: sexcontra = 2
 
 !!{Check for previous deposit, and if it was by the same guy and precum, it sets cumarrtemp back by one}
 !!	if $cumarrnam[cumarrtemp-1] = $boy and cumarrkno[cumarrtemp-1] = -1:cumarrtemp -= 1 & sexspecpot = cumarrppt[cumarrtemp]
@@ -340,7 +340,7 @@ if $ARGS[0] = '':
 	!! creampie statistics:
 			if spafinloc = 0:
 				!! safe creampie (if cycle > 3 or on pill):
-				if cycle > 3 or pillcon > 1000:
+				if cycle > 3 or pillcon2 > 1000:
 					if sexunaware = 1 or sexcontra = 6:
 						pcs_cp_safe_unknown += 1
 					else

+ 6 - 6
locations/DanceWhore1

@@ -9,7 +9,7 @@ act 'Kneel':
 	cls
 	guy += 1
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bj.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bj.jpg"></center>'
 	'Efficiently, you get in his pants and begin working on him with your hand. He is rock hard in no time.'
 	'Looking him in the eye, you lick his cock from base to tip, and then give the head a little kiss.'
 	'When you finally take his entire length into your mouth, "Oh, God", is his only response.'
@@ -27,7 +27,7 @@ act 'Kneel':
 			if pcs_throat < dick:pcs_throat += 1
 
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/throat.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/throat.jpg"></center>'
 
 			if pcs_throat < dick / 2:
 				pcs_mood = 5
@@ -65,7 +65,7 @@ act 'Kneel':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
 					'You greedily suck down as much of his cum as for can.'
 					'By the time the time he is finished your entire face feels like a wet runny mess.'
 					gs 'arousal', 'end'
@@ -83,7 +83,7 @@ act 'Kneel':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
 					'Warm jets of semen begin to splatter against your face. You make little sounds of encouragement, until with a groan, he finishes with one last spurt that hits you right on the lips.'
 					gs 'arousal', 'end'
 					gs 'stat'
@@ -99,7 +99,7 @@ act 'Kneel':
 			spafinloc = 3
 			gs 'cum_manage'
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/anal.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/anal.jpg"></center>'
 			'Yoy present your ass to him, with a little giggle, you give it a wiggle.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -114,7 +114,7 @@ act 'Kneel':
 		act 'Lie on your back.':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/sex.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/sex.jpg"></center>'
 			'You spread your legs for him, and motion him to you invitingly.'
 			dynamic $sexstart
 			dynamic $sexstart2

+ 7 - 7
locations/DanceWhore2

@@ -12,7 +12,7 @@ act 'Get their pants off':
 	cls
 	guy += 2
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjd.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjd.jpg"></center>'
 	'Squatting down in front of the boys, you give them each a turn. Licking their shafts and giving little sucking kisses to their heads, you have them hard in no time.'
 	'By the time you start sucking them in earnest, they both have warm smiles of appreciation on their faces.'
 	gs 'arousal', 'bj', 10, 'sub', 'group'
@@ -32,7 +32,7 @@ act 'Get their pants off':
 			cls
 			minut += 30
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d.jpg"></center>'
 			'You suckle at the tip of one boys cock, while the other gets ready to enter your ass. You wiggle your hips in anticipation.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -55,7 +55,7 @@ act 'Get their pants off':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
 					'Choking slightly, you frantically swallow cum, until his cock finishes pouring his seed into your mouth.'
 					gs 'arousal', 'end'
 					gs 'stat'
@@ -70,7 +70,7 @@ act 'Get their pants off':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
 					'Cum splatters into your mouth, and across your face. It doesn''t stop until it''s dripping from your chin.'
 					gs 'arousal', 'end'
 					gs 'stat'
@@ -84,7 +84,7 @@ act 'Get their pants off':
 			cls
 			!!stat['vaginal'] += 1
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d1.jpg"></center>'
 			'You begin to suck dick, while the other guy spreads your legs.'
 			dynamic $sexstart
 			dynamic $sexstart2
@@ -106,7 +106,7 @@ act 'Get their pants off':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallow.jpg"></center>'
 					'Choking slightly you frantically swallow cum, until his cock finishes pouring his seed into your mouth.'
 					gs 'arousal', 'end'
 					gs 'stat'
@@ -122,7 +122,7 @@ act 'Get their pants off':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facial.jpg"></center>'
 					'Cum splatters into your mouth, and across your face. It doesn''t stop until it''s dripping from your face.'
 					gs 'arousal', 'end'
 					gs 'stat'

+ 6 - 6
locations/DanceWhore3

@@ -10,7 +10,7 @@ act 'Get on your knees':
 	cls
 	guy += 1
 	gs 'stat'
-	'<center><img src="images/shared/sex/blowjob/kotovbj50.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/kotovbj50.gif"></center>'
 	'Doing your best to show him what a good cock sucker you are, you lick him from base to tip, and then give the head a little kiss. He gives you a little chuckle of appreciation.'
 	'When you take him fully into you mouth you looks up seeking approval.'
 	'"That''s a good girl", he says stroking your cheek.'
@@ -25,7 +25,7 @@ act 'Get on your knees':
 		act 'Relax your throat':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/rought/oral4.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/rought/oral4.gif"></center>'
 
 			if pcs_throat < dick / 2:
 				pcs_mood = 5
@@ -60,7 +60,7 @@ act 'Get on your knees':
 					gs 'cum_manage'
 					swallow += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/cum/cumf60.gif"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cumf60.gif"></center>'
 					'You greedily suck down as much of his cum as for can.'
 					'By the time the time he is finished your entire face feels like a wet runny mess.'
 					gs 'arousal', 'bj', 10, 'sub', 'deepthroat'
@@ -78,7 +78,7 @@ act 'Get on your knees':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/shared/sex/cum/cumf10.gif"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cumf10.gif"></center>'
 					'You look him in the eye, and softly whisper: "Give it to me."'
 					'Warm jets of semen begin to splatter against your face. You make little sounds of encouragement, until with a groan, he finishes with one last spurt that hits you right on the lips.'
 					gs 'arousal', 'end'
@@ -95,7 +95,7 @@ act 'Get on your knees':
 			spafinloc = 3
 			gs 'cum_manage'
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/dog12.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/dog12.gif"></center>'
 			'You give it a wiggle, and he says smiling: "Ha, now that''s a good girl."' 
 			dynamic $sexstart
 			dynamic $analsex
@@ -109,7 +109,7 @@ act 'Get on your knees':
 		'He speaks: "On your back now, girl. Let''s see that pretty little pussy of yours."'
 		act 'Spread your legs for him':
 			cls
-			'<center><img src="images/shared/sex/vag/miss/kotovsexbonus2.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/kotovsexbonus2.gif"></center>'
 			'Laying on your back a little thrill runs though your body, as the rough Armenian prepares to enter you.'
 			dynamic $sexstart
 			dynamic $sexstart2

+ 7 - 7
locations/DanceWhore4

@@ -12,7 +12,7 @@ act 'Show them':
 	cls
 	guy += 2
 	gs 'stat'
-	'<center><img src="images/shared/sex/group/cocksucker6.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/group/cocksucker6.jpg"></center>'
 	'You kneel down in front of the two swarthy men to show them your skills.' 
 	'You playfully lick, jerk, and suck until they are both throbbing in your hands.'
 	'"Very nice little lamb, now take my cock. Take it all", one of the men says.'
@@ -31,7 +31,7 @@ act 'Show them':
 		act 'Get spit-roasted':
 			cls
 			gs 'stat'
-			'<center><img src="images/shared/sex/group/threesomepm8.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/group/threesomepm8.gif"></center>'
 			'You let out another playful bleat as you begin to get filled.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -56,7 +56,7 @@ act 'Show them':
 					minut += 10
 					gs 'arousal', 'end'
 					gs 'stat'
-					'<center><img src="images/pc/body/cum/swallow/swallow3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/swallow/swallow3.jpg"></center>'
 					'Choking slightly you frantically swallow cum, until his cock finishes pouring his seed down your throat.'
 					act 'Call a taxi': gt 'gdksport', 'cab_home'
 				end
@@ -70,7 +70,7 @@ act 'Show them':
 					minut += 10
 					gs 'arousal', 'end'
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/park/gop/sex/oral/cum/gif/cumf2.gif"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/sex/oral/cum/gif/cumf2.gif"></center>'
 					'Cum splatters into your mouth, and across your face. It doesn''t stop until it''s dripping from your face.'
 					'"Well done, little lamb", the man behind you praises, giving you a little smack on the ass.'
 					act 'Call a taxi': gt 'gdksport', 'cab_home'
@@ -84,7 +84,7 @@ act 'Show them':
 		act 'Enjoy':
 			cls
 			gs 'stat'
-			'<center><img src="images/shared/sex/group/threesomepm10.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/group/threesomepm10.gif"></center>'
 			'As you take one man''s cock into your mouth, as the man between your legs chuckles: "Wonderful, it looks like you have already been sheared."'
 			dynamic $sexstart
 			dynamic $sexstart2
@@ -109,7 +109,7 @@ act 'Show them':
 					minut += 10
 					gs 'arousal', 'end'
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/rought/oral1.gif"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/rought/oral1.gif"></center>'
 					'Choking slightly you frantically swallow cum, until his cock finishes pouring his seed down your throat.'
 					act 'Drive back': gt 'gdksport', 'cab_home'
 				end
@@ -124,7 +124,7 @@ act 'Show them':
 					minut += 10
 					gs 'arousal', 'end'
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/park/gop/sex/oral/cum/gif/cumf2.gif"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/sex/oral/cum/gif/cumf2.gif"></center>'
 					'Cum splatters into your mouth, and across your face. It doesn''t stop until it''s dripping from your chin.'
 					act 'Call a taxi': gt 'gdksport', 'cab_home'
 				end

+ 4 - 4
locations/DanceWhore5

@@ -13,7 +13,7 @@ act 'Squat down':
 	cls
 	guy += 3
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjt.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjt.jpg"></center>'
 	'Deciding that eager service is the best way to avoid any problem, you get down in front of the men'
 	'A few minutes of licking and stroking later, you are faced by three throbbing cocks ready for more.'
 	'One of the swarthy men compliments your skill: "You are very skilled for such a young thing, and eager. I like eager."'
@@ -33,7 +33,7 @@ act 'Squat down':
 		act 'Present your ass':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/f.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/f.jpg"></center>'
 			'You continue to languidly suck on the two remaining men, while the third man prepares to enter you from behind.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -58,7 +58,7 @@ act 'Squat down':
 					gs 'cum_manage'
 					facial += 1
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialt.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialt.jpg"></center>'
 					'The two men you''ve been blowing both finish at the same time. You flinch in surprise, when the first stream hits your face. By the time they finish, long streams of semen are dripping from your face.'
 					'The men all begin chatting among themselves, paying you no mind. From their excited tone, it certainly sounds like you did a good job. You smile, licking your lips with satisfaction.'
 					gs 'arousal', 'bj', 10, 'sub', 'gangbang'
@@ -72,7 +72,7 @@ act 'Squat down':
 					gs 'cum_manage'
 					swallow += 1
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallowt.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/swallowt.jpg"></center>'
 					'You kneel and eagerly open up for the two remaining men. They are surprisingly accurate, as they empty their loads into you mouth, other than a small drop on your chin they get it all in there.'
 					'Smiling up at them, you swallow it down.'
 					'The men all begin chatting among themselves, paying you no mind. From their excited tone, it certainly sounds like you did a good job. Smiling with satisfaction, you gather the last drop of cum from your chin with a finger, and lick it clean.'

+ 7 - 7
locations/DanceWhore6

@@ -9,7 +9,7 @@ npc_Malen[$npclastgenerated] = rand(10,15)
 
 gs 'stat'
 '<center>your thoughts</center>'
-'<center><img src="images/shared/home/tv/seeporn.gif"></center>'
+'<center><img <<$set_imgh>> src="images/shared/home/tv/seeporn.gif"></center>'
 'As the big black guy leads you into the room, your mind drifts to what you have seen watching porn.'
 'The thought of actually being one of those little white girls talking big black cock sends a thrill through you.'
 'You hope this guy lives up to the hype.'
@@ -18,7 +18,7 @@ act 'Find out':
 	cls
 	guy += 1
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjn.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjn.jpg"></center>'
 	'"Oh, my", you whisper softly, as you expose his girth.'
 	'"You like that baby? Go on, and give it a kiss. It won''t bite", he chuckles.'
 	'Wide eyed, you wrap your lips around his massive length. You relish the taste, as you begin to suck. It doesn''t taste like chocolate, but it tastes pretty damn good.'
@@ -34,7 +34,7 @@ act 'Find out':
 			if pcs_throat < dick:pcs_throat += 1
 
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/throatn.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/throatn.jpg"></center>'
 
 			if pcs_throat < dick / 2:
 				pcs_mood = 5
@@ -73,7 +73,7 @@ act 'Find out':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/pc/body/cum/swallow/swallow3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/swallow/swallow3.jpg"></center>'
 					'To keep from choking, you gulp it down, as quickly as possible.'
 					'Mmm, maybe it does taste like chocolate.'
 					'"Damn baby, you must''ve been thirsty", he smiles down at you.'
@@ -93,7 +93,7 @@ act 'Find out':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
 					'He grunts, and sticky streams of cum rain down around your face and mouth.'
 					'"Baby, you look like a fucking masterpiece, so fucking hot. I''m almost ready for another go just from looking at you.", he says panting.'
 					'You give him a wink, as you lick your lips'
@@ -112,7 +112,7 @@ act 'Find out':
 			spafinloc = 3
 			gs 'cum_manage'
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/analn.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/analn.jpg"></center>'
 			'"Please be gentle", you whisper as he prepares to enter you.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -126,7 +126,7 @@ act 'Find out':
 		act 'Open legs for him':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/sexn.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/sexn.jpg"></center>'
 			'A little nervously, you slowly spread your legs for him. The big black guy moves between your legs, and prepares to penatrate you.'
 			dynamic $sexstart
 			dynamic $sexstart2

+ 8 - 8
locations/DanceWhore7

@@ -13,7 +13,7 @@ npc_Malen[$npclastgenerated] = rand(10,15)
 
 gs 'stat'
 '<center>your thoughts</center>'
-'<center><img src="images/shared/home/tv/seeporn.gif"></center>'
+'<center><img <<$set_imgh>> src="images/shared/home/tv/seeporn.gif"></center>'
 'As the two big black guys lead you into the room, your mind drifts to what you have seen watching porn.'
 'The thought of actually being one of those little white girls talking big black cock sends a thrill through you.'
 'Taking care of two at the same time sounds even more delightfully naughty.'
@@ -22,7 +22,7 @@ act 'Get them':
 	cls
 	guy += 2
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjdn.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjdn.jpg"></center>'
 	'Hands on your hips you playfully announce to the men: "OK boys, pants off, let''s see them."'
 	'"Now that''s my kind of woman", one of the men smiles as they both start to undress. You tap your foot with feigned impatience, while they get naked.'
 	'"I''m impressed boys. How is a sweet young thing like me ever going to manage?", you say smiling, as you kneel at their feet.'
@@ -41,7 +41,7 @@ act 'Get them':
 		act 'Give him your ass':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/dn.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/dn.jpg"></center>'
 			'You continue sucking away at the first guy, as the other prepares to enter your backdoor.'
 			dynamic $sexstart
 			dynamic $analsex
@@ -64,7 +64,7 @@ act 'Get them':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
 					'You swallow it down, looking up at him seeking approval.'
 					'He pats you on the head: "I guess you white girls really do crave it.'
 					gs 'arousal', 'end'
@@ -81,7 +81,7 @@ act 'Get them':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
 					'you make appreciative sounds, as hot streams of semen rain down on your face'
 					'After he is finished, you clean him up with licks and gentle kisses.'
 					'"Damn girl, I guess you are what they would call a hot mess", one of the men laughs.'
@@ -98,7 +98,7 @@ act 'Get them':
 		act 'Get filled':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d1n.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/d1n.jpg"></center>'
 			'You take one man in your mouth, while the other guy spreads your legs.'
 			dynamic $sexstart
 			dynamic $sexstart2
@@ -120,7 +120,7 @@ act 'Get them':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
 					'You swallow it down, looking up at him seeking approval.'
 					'He pats you on the head: "I guess you white girls really do crave it.'
 					gs 'arousal', 'end'
@@ -137,7 +137,7 @@ act 'Get them':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialn.jpg"></center>'
 					'you make appreciative sounds, as hot streams of semen rain down on your face'
 					'After he is finished, you clean him up with licks and gentle kisses.'
 					'"Damn girl, I guess you are what they would call a hot mess", one of the men laughs.'

+ 5 - 5
locations/DanceWhore8

@@ -19,7 +19,7 @@ npc_Malen[$npclastgenerated] = rand(10,15)
 
 gs 'stat'
 '<center>your thoughts</center>'
-'<center><img src="images/shared/home/tv/seeporn.gif"></center>'
+'<center><img <<$set_imgh>> src="images/shared/home/tv/seeporn.gif"></center>'
 'This is just like one of those movies you''ve seen. Three big black guys leading a young little white girl into a hotel room, oh whatever will you do?'
 '"Let''s get this party started boys", you say smiling, as you take of your top.'
 '"Aren''t you just an eager little minx", one of the men laughs, as they begin to take off their pants.'
@@ -29,7 +29,7 @@ act 'Crawl to them':
 	cls
 	guy += 3
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjtn.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/bjtn.jpg"></center>'
 	'The guys all rush to be first, when you make it over to them.'
 	'"One at a time boys. I know what I''m doing, but I can''t fit all three of those things in my mouth", you playfully chastise them.'
 	'The men laugh, as you settle into a rythm of sucking and stroking. The thought of all this hot black meat eager to be serviced is making your thighs ache with hunger.'
@@ -51,7 +51,7 @@ act 'Crawl to them':
 			spafinloc = 3
 			gs 'cum_manage'
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/fn.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/fn.jpg"></center>'
 			'The sight of three big black guys rushing over to you puts a big smile on your face.'
 			'Two of the men move to get service from your mouth, while the third prepares to penetrate you.'
 			'"That''s one fine ass booty you got there, white girl", he says'
@@ -76,7 +76,7 @@ act 'Crawl to them':
 					facial += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialtn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/sex/prostitute/facialtn.jpg"></center>'
 					'You kneel down, and look up at the two remaining men stroking themselves toward the finish.'
 					'"Oh fuck, I''m going to paint that pretty face white for you, baby!", one of them says grunting.'
 					'Both men erupt at the same time. So much of it splatters against your face that it almost doesn''t seem real. You giggle wildly at the thrill of it all, after they have finished.'
@@ -92,7 +92,7 @@ act 'Crawl to them':
 					swallow += 1
 					minut += 10
 					gs 'stat'
-					'<center><img src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/swallow/swallow8.jpg"></center>'
 					'You eagerly suck the two remaining men to finish. It''s not long before both of them have poured their loads down you throat.'
 					'"Our little kitty must have been thirsty", one of the men laughs.'
 					'You look up and give him a little "meow", and lick your lips.'

+ 2 - 2
locations/DimkaWarning

@@ -10,7 +10,7 @@ if dimkawarn = 1:
 	minut += 5     
 	gs 'stat'
 
-   '<center><img src="images/characters/pavlovsk/school/head/7.jpg"></center>'
+   '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/7.jpg"></center>'
    'There is a knock at your door. You open the door and are shocked to see Lesco Tsarev.'
    '"What do you want?" you ask rather more sharply than you intended.'
    '"I was told to bring this to you." Lesco replies, never taking his gaze off your chest and he hands you an envelope.'
@@ -29,7 +29,7 @@ elseif dimkaWarn >= 2:
 	minut += 5     
 	gs 'stat'
 
-	'<center><img src="images/locations/pavlovsk/resident/apartment/home/package1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/package1.jpg"></center>'
 	'You go into the hallway and see a package on the cabinet near the mirror. Curious, you look to see who it is for and see that it is addressed to your mother. You feel horror wash over you as you recognise the handwriting as well as the "Private" written on the box as being Dimka''s.'
 	'Grabbing the package, you take it into the bathroom and carefully open it, trying not to damage the wrapping. Fortunately, Dimka only used very small pieces of tape to seal the box so you were able to open it. As you feared, the box contains copies of the pictures from the video only this time your face is blacked out as is the background making it impossible to tell who it is in the picture. You rip up the pictures into very small pieces and flush them down the toilet. Spying some sample shampoo bottles you got at the market the other day, you put them in the box and reseal it.'
 	'Taking the resealed package, you put it back on the cabinet before returning to the corridor.'

+ 38 - 38
locations/EvBoyBuh

@@ -14,7 +14,7 @@ $din_gorodok_boy_bj = {
 		gs 'boymass', 'B'
 		bmBJ[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
 		'You squat before him as you wrap your fingers around his shaft, and slowly begin to jerk him off.'
 
 		act 'Suck his dick':
@@ -32,7 +32,7 @@ $din_gorodok_boy_bj = {
 			end
 
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
 			dynamic $dinrandbj
 
 			act 'Continue':
@@ -46,7 +46,7 @@ $din_gorodok_boy_bj = {
 				spafinloc = 7
 				gs 'cum_manage'
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
 				dynamic $dinrandswallow
 
 				act 'Leave':gt 'gdk'
@@ -74,7 +74,7 @@ $din_gorodok_boy_bj = {
 			end
 
 			gs 'stat'
-			'<center><img src="images/shared/sex/public/boysex.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/boysex.jpg"></center>'
 			'You turn around, bend over, pull down your panties, and lean your hands against a wall for support. <<$boydesc>> immediately gets behind you.'
 			dynamic $sexstart
 			dynamic $sexstart2
@@ -101,13 +101,13 @@ $d_gorodok_boy_hj={
 				if boynumBlock > 0 and bmTOTSEX[Tboynum] = 0:guy += 1
 
 				stat['hj'] += 1
-				'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 				'You begin to move your hand up and down his shaft slowly, but slowly pick up the pace while you kiss him as you control the action. The man moans into your mouth but doesn''t dare move, leaving you in full control of the situation.'
 				'When his moans grow shorter and more intent, you aim his cock away from you and watch it. Mere seconds later his cock erupts, sending his sperm flying through the air and landing on the ground a little ways away.'
 
 				act 'Go back to the disco':gt 'gdkin'
 			elseif evhjrand = 1:
-				'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 				'You begin to move your hand up and down his shaft slowly, but slowly pick up the pace while you kiss him dominantly.'
 				'<<$boydesc>> wants more however, and suddenly places his hands on your shoulder. He firmly pushes downwards, forcing you to squat before him.'
 				dynamic $din_gorodok_boy_bj
@@ -118,9 +118,9 @@ $d_gorodok_boy_hj={
 
 music_on = 0
 minut += 5
-$boydesc = $npc_firstname[$npclastgenerated]
+$boydesc = $npc_firstname[$npclastcalled]
 gs 'stat'
-'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 'You leave the disco with <<$boydesc>> and walk for a few minutes, until he leads you into a quiet garden area.'
 
 if pav_slut < 25:
@@ -128,7 +128,7 @@ if pav_slut < 25:
 	act'Don''t drink the beer':
 		cla
 		*clr
-		'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 		if alko<3:'You smile at him but say: "No thanks, I''m not really in the mood for beer right now..."'
 		if alko>=3:'You''re already fairly tipsy and mumble: "I don''t thi-*hic* think I should... *hic*"'
 		'<<$boydesc>> offers you a disarming smile and says: "Alright, no problem! We can just chat!"'
@@ -136,7 +136,7 @@ if pav_slut < 25:
 			cla
 			*clr
 			minut+=10
-			'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 			'You spend about ten minutes getting to know <<$boydesc>> a bit better. Then he checks his watch and says: "I have to get going, but I really enjoyed chatting with you!"'
 			randvnesh = RAND(40,120)
 
@@ -191,7 +191,7 @@ if pav_slut < 25:
 					gs 'stat'
 
 					if DPtipe = 2:
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/grab.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/grab.jpg"></center>'
 						'The guy is too drunk to notice your objections and slides a hand underneath your clothes, squeezing your boobs in his hands.'
 						dynamic $din_gorodok_boy_bj
 
@@ -216,7 +216,7 @@ if pav_slut < 25:
 							end
 
 							gs 'stat'
-							'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 							'The guy undresses you quite roughly, too horny and drunk to care about how you feel about it. Before you know it, you''re naked on the ground before him, while he stands over you with his <<$dick_girth>> cock dangling out of his pants.'
 							dynamic $sexstart
 							dynamic $sexstart2
@@ -227,7 +227,7 @@ if pav_slut < 25:
 					else
 						pcs_horny += 10
 						gs 'stat'
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 						'<<$boydesc>>''s head slumps for just a moment and his movements slow down, but he''s not quite willing to let go of your boobs just yet.'
 
 						if pcs_horny < 75:
@@ -262,7 +262,7 @@ if pav_slut < 25:
 				end
 
 				gs 'stat'
-				'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 				'The guy undresses you quite roughly, too horny and drunk to care about how you feel about it Before you know it, you''re naked on the ground before him, while he stands over you with his impressive cock dangling out of his pants.'
 				dynamic $sexstart
 				dynamic $sexstart2
@@ -310,7 +310,7 @@ if pav_slut < 25:
 					minut += 3
 					bmKISS[Tboynum] += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 					'You lean into him and kiss him back. Slowly at first, but soon the two of you kiss each other more and more passionately. <<$boydesc>> sure knows how to make your heart flutter. Wow, he''s a good kisser!'
 					'Then you feel his hands on your chest.'
 
@@ -322,7 +322,7 @@ if pav_slut < 25:
 						minut += 3
 						bmTITS[Tboynum] += 1
 						gs 'stat'
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 						'You ignore <<$boydesc>>''s hands and just keep kissing him, letting him pull your clothes aside so your <<$titsize>> breasts fall out. He kneads them eagerly and continues to kiss and lick them, making your nipples poke out fiercely in the evening air.'
 						'Then he takes your hand and guides it towards his groin. It''s fairly warm to the touch, even through his trousers, and you can tell that his cock is very erect.'
 
@@ -334,7 +334,7 @@ if pav_slut < 25:
 								pcs_horny += 10
 								minut += 3
 								gs 'stat'
-								'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 								'As soon as you pull your hand away from his groin, <<$boydesc>> slips his hand underneath your clothes and rubs two fingers against your snatch. You were already fairly turned on, and softly moan in embarrassment when he slides his finger back and forth over your wet pussy lips. Now he knows it too.'
 
 								if pcs_horny <= 90:act 'Leave and go back to the disco':gt 'gdkin'
@@ -351,7 +351,7 @@ if pav_slut < 25:
 										pcs_horny += 5
 										minut += 3
 										gs 'stat'
-										'<center><img src="images/shared/sex/cock/cock3.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/cock/cock3.jpg"></center>'
 										'Once the most intense part of your orgasm is over, you relax a little and moan softly with pleasure. In your daze of happiness your legs can''t support your weight and you drop down, kneeling in front of <<$boydesc>>.'
 										'When you catch your breath and can focus again, you see <<$boydesc>>''s very erect penis directly in front of your face!'
 
@@ -368,7 +368,7 @@ if pav_slut < 25:
 												bmBJ[Tboynum] += 1
 												sub += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
 												'Without even realizing it, you move in to gently kiss the penis. After a few kisses and licks you let it slide into your mouth and begin to suck him off diligently, wanting to repay him for the pleasure he just gave you.'
 
 												act 'Continue':
@@ -392,7 +392,7 @@ if pav_slut < 25:
 													end
 
 													gs 'stat'
-													'<center><img src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
+													'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
 													'A jet of sperm lands in your mouth, without any warning from <<$boydesc>>. You almost gag in surprise, but manage to suppress your gag reflex and continue to suck on the head of his dick gently. You can''t stop him from pulling his cock out of your mouth, and shooting the last few drops of his load over your face.'
 													'Some of his sperm drips down your lips and onto your clothes, while he tucks his cock back into his pants with a satisfied grin.'
 
@@ -400,7 +400,7 @@ if pav_slut < 25:
 														cls
 														minut += 1
 														gs 'stat'
-														'<center><img src="images/shared/sex/cum/cocksuck3.jpg"></center>'
+														'<center><img <<$set_imgh>> src="images/shared/sex/cum/cocksuck3.jpg"></center>'
 														'<<$boydesc>> still has his hand on your head, and grunts: "Look at me."'
 														'You look him in the eye, your mouth half open. His load is still in it, and you''re not sure whether you should spit it out or not.'
 														'He gives you a blissful smile and says: "You''re a great cocksucker, <<$pcs_nickname>>! That was great."'
@@ -432,7 +432,7 @@ if pav_slut < 25:
 												spafinloc = 7
 												gs 'cum_manage'
 												gs 'stat'
-												'<center><img src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
 												'As if spellbound, you remain kneeled in front of <<$boydesc>>.'
 												'You simply stare at his erection, still softly panting as you recover from your orgasm. Meanwhile, he begins to jerk off in front of you.'
 												'In no time at all, his cock erupts and a thick gob of his sperm lands on your nose. <<$boydesc>> groans loudly as he shoots several more jets of his cum onto your face. You flinch and close your eyes so you won''t get anything in them, and don''t dare opening them again until you''re sure he''s finished.'
@@ -451,7 +451,7 @@ if pav_slut < 25:
 												stat['hj'] += 1
 												pcs_dom += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 												'You stand up confidently and smile at him: "That was great! Now, I believe I owe you something."'
 												'Wrapping your fingers around his cock, you begin to masturbate him while you kiss the guy again. You let him grab your boobs while you stroke his length quickly, and in no time at all he lets out a muffled groan. Thick gobs of his sperm fly through the air, and land on the ground a few feet away from where you''re standing.'
 
@@ -468,7 +468,7 @@ if pav_slut < 25:
 							pcs_horny += 5
 							minut += 3
 							gs 'stat'
-							'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 							'You kiss <<$boydesc>> again while you begin to pet his cock through his pants, feeling the outline of it very clearly through the fabric.'
 							'"Mmmm... do you have something for me?" you ask him sweetly, and he lets out a needy groan.'
 
@@ -479,7 +479,7 @@ if pav_slut < 25:
 								pcs_horny += 10
 								minut += 3
 								gs 'stat'
-								'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 								'You slide your hand into his pants and caress his hard cock. After a few moments of teasing, you pull his pants down and let his cock spring free.'
 
 								if pcs_horny <= 90:act 'Go back to the disco':gt 'gdkin'
@@ -518,7 +518,7 @@ $din_gorodok_boy_pristal = {
 		gs 'boymass', 'B'
 		bmKISS[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 		'You lean into him and reciprocate the kiss. Slowly at first, but soon the two of you kiss each other more and more passionately. <<$boydesc>> sure knows how to make your heart flutter. Wow, he''s a good kisser!'
 		'Then you feel his hands on your chest.'
 
@@ -530,7 +530,7 @@ $din_gorodok_boy_pristal = {
 			minut += 3
 			bmTITS[Tboynum] += 1
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 			'You ignore <<$boydesc>>''s hands and just keep kissing him, letting him pull your clothes aside so your <<$titsize>> breasts fall out. He kneads them eagerly and continues to kiss and lick them, making your nipples poke out fiercely in the evening air.'
 			'Then he takes your hand and guides it towards his groin. It''s fairly warm to the touch, even through his trousers, and you can tell that his cock is very erect.'
 
@@ -542,7 +542,7 @@ $din_gorodok_boy_pristal = {
 					pcs_horny += 10
 					minut += 3
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 					'As soon as you pull your hand away from his groin, <<$boydesc>> slips his hand underneath your clothes and rubs two fingers against your snatch. You were already fairly turned on, and softly moan in embarrassment when he slides his finger back and forth over your wet pussy lips.'
 
 					if pcs_horny <= 90:act 'Remove his hands and walk away':gt 'gdkin'
@@ -559,7 +559,7 @@ $din_gorodok_boy_pristal = {
 							pcs_horny += 5
 							minut += 3
 							gs 'stat'
-							'<center><img src="images/shared/sex/cock/cock3.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/cock/cock3.jpg"></center>'
 							'Once the most intense part of your orgasm is over, you relax a little and moan softly with pleasure. In your daze of happiness your legs can''t support your weight and you drop down, kneeling in front of <<$boydesc>>.'
 							'When you catch your breath and can focus again, you see <<$boydesc>>''s very erect penis directly in front of your face!'
 
@@ -576,7 +576,7 @@ $din_gorodok_boy_pristal = {
 									bmBJ[Tboynum] += 1
 									sub += 1
 									gs 'stat'
-									'<center><img src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
 									'Without even realizing it, you move in to gently kiss the penis. After a few kisses and licks you let it slide into your mouth and begin to suck him off diligently, wanting to repay him for the pleasure he just gave you.'
 
 									act 'Continue':
@@ -600,7 +600,7 @@ $din_gorodok_boy_pristal = {
 										end
 
 										gs 'stat'
-										'<center><img src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
 										'A jet of sperm lands in your mouth, without any warning from <<$boydesc>>. You almost gag in surprise, but manage to suppress your gag reflex and continue to suck on the head of his dick gently. You can''t stop him from pulling his cock out of your mouth, and shooting the last few drops of his load over your face.'
 										'Some of his sperm drips down your lips and onto your clothes, while he tucks his cock back into his pants with a satisfied grin.'
 
@@ -608,7 +608,7 @@ $din_gorodok_boy_pristal = {
 											cls
 											minut += 1
 											gs 'stat'
-											'<center><img src="images/shared/sex/cum/cocksuck3.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/shared/sex/cum/cocksuck3.jpg"></center>'
 											'<<$boydesc>> still has his hand on your head, and grunts: "Look at me."'
 											'You look him in the eye, your mouth half open. His load is still in it, and you''re not sure whether you should spit it out or not.'
 											'He gives you a blissful smile and says: "You''re a great cocksucker, <<$pcs_nickname>>! That was great."'
@@ -642,7 +642,7 @@ $din_gorodok_boy_pristal = {
 									spafinloc = 7
 									gs 'cum_manage'
 									gs 'stat'
-									'<center><img src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
 									'As if spellbound, you remain kneeled in front of <<$boydesc>>.'
 									'You simply stare at his erection, still softly panting as you recover from your orgasm. Meanwhile, he begins to jerk off in front of you.'
 									'In no time at all, his cock erupts and a thick gob of his sperm lands on your nose. <<$boydesc>> groans loudly as he shoots several more jets of his cum onto your face. You flinch and close your eyes so you won''t get anything in them, and don''t dare opening them again until you''re sure he''s finished.'
@@ -662,7 +662,7 @@ $din_gorodok_boy_pristal = {
 				pcs_horny += 5
 				minut += 3
 				gs 'stat'
-				'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 				'You kiss <<$boydesc>> again while you begin to pet his cock through his pants, feeling the outline of it very clearly through the fabric.'
 				'"Mmmm... do you have something for me?" you ask him sweetly, and he lets out a needy groan.'
 
@@ -674,7 +674,7 @@ $din_gorodok_boy_pristal = {
 					minut += 3
 					pcs_dom += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 					'You slide your hand into his pants and caress his hard cock. After a few moments of teasing, you pull his pants down and let his cock spring free.'
 
 					if pcs_horny <= 90:act 'Go back to the disco':gt 'gdkin'
@@ -739,7 +739,7 @@ elseif pav_slut > 150:
 		bmHJ[Tboynum] += 1
 		money += 50
 		gs 'stat'
-		'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
 		'You squat before him as you wrap your fingers around his shaft, and slowly begin to jerk him off.'
 
 		act 'Suck his dick':
@@ -748,7 +748,7 @@ elseif pav_slut > 150:
 			pcs_horny += 10
 			bmBJ[Tboynum] += 1
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
 			dynamic $dinrandbj
 
 			act 'Continue':
@@ -760,7 +760,7 @@ elseif pav_slut > 150:
 				spafinloc = 12
 				gs 'cum_manage'
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
 				dynamic $dinrandswallow
 
 				act 'Leave':gt 'gdk'

+ 18 - 18
locations/EvOtelMan

@@ -15,7 +15,7 @@ if $ARGS[0] = '':
 			BeInOtel += 1
 			minut += 5
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
 			'<<$boydesc>> actually has a fairly nice room. He must''ve counted on bringing someone back to the room with him, because a bottle of whisky and a fruit platter are already waiting at the table.'
 			'He invites you to sit down in a comfortable chair and pours two glasses of whiskey, offering you one.'
 			'"Let''s drink to meeting new acquaintances! I''m very fortunate to have met a beautiful and wonderful girl such as yourself, <<$pcs_nickname>>", he toasts cheerfully.'
@@ -36,7 +36,7 @@ if $ARGS[0] = 'sex':
 		gs 'cum_cleanup'
 		pcs_breath = 0
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 		'You can tell he didn''t cheap out on the whisky at all, this is good stuff!'
 		'The two of you enjoy the drink. Then <<$boydesc>> stands up and walks up to you, placing his hands on your shoulders while his lips find yours. He gives you a deep kiss while he begins to take off your clothes confidently.'
 		
@@ -44,7 +44,7 @@ if $ARGS[0] = 'sex':
 		gs 'stat'
 	else
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 		'Immediately as you enter his hotel room, <<$boydesc>> puts his hands on your hips and pulls you close for a deep kiss. He slides his hands up and down your body, trying to find a way to get underneath your clothes.'
 		
 		gs 'arousal', 'kiss', 5
@@ -89,7 +89,7 @@ if $ARGS[0] = 'sex':
 
 				act 'Squat before him': gt 'EvOtelMan', 'Blow'
 			else
-				'<center><img src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
 				'<<$boydesc>>''s eyes grow a bit wider, the moment you say the word ''virgin''.'
 				'"Wow, you''re a virgin? Really?" he asks in an intrigued voice. "Can I see your pussy? Please? I haven''t seen a virgin pussy in forever... I''ll give you 500 <b>₽</b>! I just want to look at it, no touching!"'
 
@@ -106,7 +106,7 @@ if $ARGS[0] = 'sex':
 							cls
 							money += 500
 							gs 'stat'
-							'<center><img src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
 							'You wordlessly extend your hand, and <<$boydesc>> readily gives you the money.'
 							act 'Squat before him': gt 'EvOtelMan', 'Blow'
 						end
@@ -120,7 +120,7 @@ if $ARGS[0] = 'sex':
 					sub += 1
 					money += 500
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/community/disco/sex/kiska.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/kiska.jpg"></center>'
 					'You shrug and think to yourself: "That''s an easy way to make some money!"'
 					'You slowly take off your clothes and get down on his bed, spreading your legs widely. You can''t help but laugh a little when he comes back with a large flashlight.'
 					'"So I can see it better!" he grins at you, almost giddy with anticipation. He''s clearly looking forward to this a lot.'
@@ -133,7 +133,7 @@ if $ARGS[0] = 'sex':
 						bmSEX[Tboynum] += 1
 						money += 5000
 						gs 'stat'
-						'<center><img src="images/shared/sex/vag/miss/sex.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/sex.jpg"></center>'
 						'"Well... alright", you say softly as you extend your hand. He gives you a hearty handshake and happily says: "Deal!"'
 						'He puts a large pile of bank notes in your hand, and you quickly count it. It''s all there, as promised. When you put the money away, <<$boydesc>> eagerly throws you onto the bed and has you spread your legs for him.'
 						dynamic $sexstart
@@ -179,7 +179,7 @@ if $ARGS[0] = 'sex':
 			pcs_dom += 1
 			minut += 5
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
 			'You look at the clock and fake a yawn: "Oh wow, is it that late already? It''s been fun spending time with you, <<$boydesc>>, but I really should get going!"'
 			'<<$boydesc>> frowns and protests: "Already? But we were having such a nice time!"'
 			'"I know, babe!" you smile at him, letting the words linger in the air for moment. "I have to get up early tomorrow to find a new job, though! Money is very tight, you know?"'
@@ -193,7 +193,7 @@ if $ARGS[0] = 'sex':
 				bmSEX[Tboynum] += 1
 				money += 3000
 				gs 'stat'
-				'<center><img src="images/shared/sex/vag/miss/sex.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/sex.jpg"></center>'
 				'"You''re a lifesaver, <<$boydesc>>! Thank you so much!" you smile at him, and quickly put away the money he counted out for you. You barely get to finish the sentence as <<$boydesc>> throws you down onto the bed and immediately jumps on top of you.'
 				'"Finally! I''ve been dying to fuck you this whole evening... spread ''em, girl!" he grunts in your ear.'
 				dynamic $sexstart
@@ -211,7 +211,7 @@ if $ARGS[0] = 'sex':
 					cls
 					pcs_dom += 1
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/otel.jpg"></center>'
 					'You laugh and say: "That''s very kind of you, but that''s too much! I don''t think I could thank you enough..."'
 					'Before he is able to say anything, you get to the point: "And I really do need to leave soon. But... how about I give you a blowjob for 500 <b>₽</b>?"'
 					'<<$boydesc>> looks a little disappointed at first, he really hoped he''d get to fuck you tonight. However, he is into you way too much to reject your offer.'
@@ -240,7 +240,7 @@ if $ARGS[0] = 'sex':
 
 		bmSEX[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/vag/miss/sex.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/sex.jpg"></center>'
 		'<<$boydesc>> throws you down onto the bed and immediately jumps on top of you.'
 		'"Finally! I''ve been dying to fuck you this whole evening... spread ''em, girl!" he grunts in your ear.'
 		dynamic $sexstart
@@ -261,7 +261,7 @@ if $ARGS[0] = 'Blow':
 	if boynumBlock > 0 and bmTOTSEX[Tboynum] = 0:guy += 1
 	bmBJ[Tboynum] += 1
 	gs 'stat'
-	'<center><img src="images/shared/sex/blowjob/bj43.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj43.jpg"></center>'
 	'You squat in front of <<$boydesc>> and take his throbbing cock in your hand. With a devious smile you slowly pull his foreskin back, and carefully place some kisses and licks on the tip of his penis.'
 	'It doesn''t take long at all for him to start begging: "<<$pcs_nickname>>, please... I''m going to cum in no time if you keep that up!"'
 	
@@ -273,7 +273,7 @@ if $ARGS[0] = 'Blow':
 		spafinloc = 12
 		gs 'cum_manage'
 		gs 'stat'
-		'<center><img src="images/shared/sex/blowjob/bj44.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj44.jpg"></center>'
 		'With a satisfied smile you wrap your lips around his cock and begin to suck, carefully clasping your <<$liptalk2>> around his shaft.'
 		'In no time at all, you already feel the first jet of sperm land in your mouth! Either he was pent up for a while, or you''re really good at this...'
 
@@ -285,7 +285,7 @@ if $ARGS[0] = 'Blow':
 			swallow += 1
 			water -= 10
 			gs 'stat'
-			'<center><img src="images/shared/sex/cum/mouth/bj49.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/bj49.jpg"></center>'
 			'You look him in the eye while you continue to suck him off, feeling spray after spray land on your tongue. Wow, he must have been saving up for you!'
 			'He cums so much that you don''t have enough time to swallow it all, and some of it flows out of your mouth onto the head of his penis.'
 			'<<$boydesc>> groans happily and finally takes his cock out of your mouth, once you lap up the remains of his sperm. The pungent taste of sperm in your mouth is very strong, and you have no doubt that your breath smells like it too.'
@@ -302,7 +302,7 @@ if $ARGS[0] = 'Blow':
 			gs 'cum_manage'
 			facial += 1
 			gs 'stat'
-			'<center><img src="images/shared/sex/cum/facial/facial20.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/facial20.jpg"></center>'
 			'You let his member slip out of your mouth, and smile happily at him when you feel another jet of sperm immediately land on your forehead. You close your eyes so no sperm can get in them but otherwise let him cover your face with his load, which <<$boydesc>> does with great enthusiasm.'
 			
 			gs 'arousal', 'bj', 10, 'prostitution'
@@ -318,7 +318,7 @@ if $ARGS[0] = 'Blow':
 		gs 'cum_manage'
 		bmANAL[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
 		dynamic $sexstart
 		dynamic $analsex
 		
@@ -332,7 +332,7 @@ if $ARGS[0] = 'Blow':
 		cls
 		bmSEX[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/vag/miss/sex.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/sex.jpg"></center>'
 		'When you lie down on his bed on your back, <<$boydesc>> pounces on top of you in no time and eagerly makes you spread your legs.'
 		'"Finally! I''ve been dying to fuck you this whole evening... spread ''em, girl!" he grunts in your ear.'
 		dynamic $sexstart
@@ -350,7 +350,7 @@ if $ARGS[0] = 'End':
 	cls
 	minut += 15
 	gs 'stat'
-	'<center><img src="images/pc/activities/otel1.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/pc/activities/otel1.gif"></center>'
 	'After the two of you relax for a while longer, you smile at <<$boydesc>> and say: "That was fun! But I should really get going..."'
 	'<<$boydesc>> stretches lazily on the bed, not bothering to get up. "You were great, <<$pcs_nickname>>! I hope I''ll run into you again, next time I''m in Pavlovsk!"'
 

+ 38 - 38
locations/EvgopBuh

@@ -14,7 +14,7 @@ $din_gorodok_boy_bj = {
 		gs 'boymass', 'B'
 		bmBJ[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
 		'You squat before him as you wrap your fingers around his shaft, and slowly begin to jerk him off.'
 
 		act 'Suck his dick':
@@ -26,7 +26,7 @@ $din_gorodok_boy_bj = {
 			bmGossip[Tboynum] = 2
 
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
 			dynamic $dinrandbj
 
 			act 'Continue':
@@ -40,7 +40,7 @@ $din_gorodok_boy_bj = {
 				spafinloc = 7
 				gs 'cum_manage'
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
 				dynamic $dinrandswallow
 
 				act 'Leave':gt 'gdk'
@@ -62,7 +62,7 @@ $din_gorodok_boy_bj = {
 			bmGossip[Tboynum] = 1
 
 			gs 'stat'
-			'<center><img src="images/shared/sex/public/boysex.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/boysex.jpg"></center>'
 			'You turn around, bend over, pull down your panties, and lean your hands against a wall for support. <<$boydesc>> immediately gets behind you.'
 			dynamic $sexstart
 			dynamic $sexstart2
@@ -89,13 +89,13 @@ $d_gorodok_boy_hj={
 				if boynumBlock > 0 and bmTOTSEX[Tboynum] = 0:guy += 1
 
 				stat['hj'] += 1
-				'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 				'You begin to move your hand up and down his shaft slowly, but slowly pick up the pace while you kiss him as you control the action. The man moans into your mouth but doesn''t dare move, leaving you in full control of the situation.'
 				'When his moans grow shorter and more intent, you aim his cock away from you and watch it. Mere seconds later his cock erupts, sending his sperm flying through the air and landing on the ground a little ways away.'
 
 				act 'Go back to the disco':gt 'gdkin'
 			elseif evhjrand = 1:
-				'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 				'You begin to move your hand up and down his shaft slowly, but slowly pick up the pace while you kiss him dominantly.'
 				'<<$boydesc>> wants more however, and suddenly places his hands on your shoulder. He firmly pushes downwards, forcing you to squat before him.'
 				dynamic $din_gorodok_boy_bj
@@ -107,8 +107,8 @@ $d_gorodok_boy_hj={
 music_on = 0
 minut += 5
 gs 'stat'
-$boydesc = $npc_firstname[$npclastgenerated]
-'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+$boydesc = $npc_firstname[$npclastcalled]
+'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 'You leave the disco with <<$boydesc>> and walk for a few minutes, until he leads you into a quiet garden area.'
 
 if pav_slut < 25:
@@ -116,7 +116,7 @@ if pav_slut < 25:
 	act'Don''t drink the beer':
 		cla
 		*clr
-		'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 		if alko<3:'You smile at him but say: "No thanks, I''m not really in the mood for beer right now..."'
 		if alko>=3:'You''re already fairly tipsy and mumble: "I don''t thi-*hic* think I should... *hic*"'
 		'<<$boydesc>> offers you a disarming smile and says: "Alright, no problem! We can just chat!"'
@@ -124,7 +124,7 @@ if pav_slut < 25:
 			cla
 			*clr
 			minut+=10
-			'<center><img src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/dk_night.jpg"></center>'
 			'You spend about ten minutes getting to know <<$boydesc>> a bit better. Then he checks his watch and says: "I have to get going, but I really enjoyed chatting with you!"'
 			randvnesh = RAND(40,120)
 
@@ -179,7 +179,7 @@ if pav_slut < 25:
 					gs 'stat'
 
 					if DPtipe = 2:
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/grab.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/grab.jpg"></center>'
 						'The guy is too drunk to notice your objections and slides a hand underneath your clothes, squeezing your boobs in his hands.'
 						dynamic $din_gorodok_boy_bj
 
@@ -198,7 +198,7 @@ if pav_slut < 25:
 							bmGossip[Tboynum] = 1
 
 							gs 'stat'
-							'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 							'The guy undresses you quite roughly, too horny and drunk to care about how you feel about it. Before you know it, you''re naked on the ground before him, while he stands over you with his <<$dick_girth>> cock dangling out of his pants.'
 							dynamic $sexstart
 							dynamic $sexstart2
@@ -209,7 +209,7 @@ if pav_slut < 25:
 					else
 						pcs_horny += 10
 						gs 'stat'
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 						'<<$boydesc>>''s head slumps for just a moment and his movements slow down, but he''s not quite willing to let go of your boobs just yet.'
 
 						if pcs_horny < 75:
@@ -239,7 +239,7 @@ if pav_slut < 25:
 				bmGossip[Tboynum] = 1
 
 				gs 'stat'
-				'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 				'The guy undresses you quite roughly, too horny and drunk to care about how you feel about it Before you know it, you''re naked on the ground before him, while he stands over you with his <<$dick_girth>> cock dangling out of his pants.'
 				dynamic $sexstart
 				dynamic $sexstart2
@@ -287,7 +287,7 @@ if pav_slut < 25:
 					minut += 3
 					bmKISS[Tboynum] += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 					'You lean into him and kiss him back. Slowly at first, but soon the two of you kiss each other more and more passionately. <<$boydesc>> sure knows how to make your heart flutter. Wow, he''s a good kisser!'
 					'Then you feel his hands on your chest.'
 
@@ -299,7 +299,7 @@ if pav_slut < 25:
 						minut += 3
 						bmTITS[Tboynum] += 1
 						gs 'stat'
-						'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 						'You ignore <<$boydesc>>''s hands and just keep kissing him, letting him pull your clothes aside so your <<$titsize>> breasts fall out. He kneads them eagerly and continues to kiss and lick them, making your nipples poke out fiercely in the evening air.'
 						'Then he takes your hand and guides it towards his groin. It''s fairly warm to the touch, even through his trousers, and you can tell that his cock is very erect.'
 
@@ -311,7 +311,7 @@ if pav_slut < 25:
 								pcs_horny += 10
 								minut += 3
 								gs 'stat'
-								'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 								'As soon as you pull your hand away from his groin, <<$boydesc>> slips his hand underneath your clothes and rubs two fingers against your snatch. You were already fairly turned on, and softly moan in embarrassment when he slides his finger back and forth over your wet pussy lips. Now he knows it too.'
 
 								if pcs_horny <= 90:act 'Leave and go back to the disco':gt 'gdkin'
@@ -328,7 +328,7 @@ if pav_slut < 25:
 										pcs_horny += 5
 										minut += 3
 										gs 'stat'
-										'<center><img src="images/shared/sex/cock/cock3.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/cock/cock3.jpg"></center>'
 										'Once the most intense part of your orgasm is over, you relax a little and moan softly with pleasure. In your daze of happiness your legs can''t support your weight and you drop down, kneeling in front of <<$boydesc>>.'
 										'When you catch your breath and can focus again, you see <<$boydesc>>''s very erect penis directly in front of your face!'
 
@@ -345,7 +345,7 @@ if pav_slut < 25:
 												bmBJ[Tboynum] += 1
 												sub += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
 												'Without even realizing it, you move in to gently kiss the penis. After a few kisses and licks you let it slide into your mouth and begin to suck him off diligently, wanting to repay him for the pleasure he just gave you.'
 
 												act 'Continue':
@@ -363,7 +363,7 @@ if pav_slut < 25:
 													bmGossip[Tboynum] = 2
 
 													gs 'stat'
-													'<center><img src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
+													'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
 													'A jet of sperm lands in your mouth, without any warning from <<$boydesc>>. You almost gag in surprise, but manage to suppress your gag reflex and continue to suck on the head of his dick gently. You can''t stop him from pulling his cock out of your mouth, and shooting the last few drops of his load over your face.'
 													'Some of his sperm drips down your lips and onto your clothes, while he tucks his cock back into his pants with a satisfied grin.'
 
@@ -371,7 +371,7 @@ if pav_slut < 25:
 														cls
 														minut += 1
 														gs 'stat'
-														'<center><img src="images/shared/sex/cum/cocksuck3.jpg"></center>'
+														'<center><img <<$set_imgh>> src="images/shared/sex/cum/cocksuck3.jpg"></center>'
 														'<<$boydesc>> still has his hand on your head, and grunts: "Look at me."'
 														'You look him in the eye, your mouth half open. His load is still in it, and you''re not sure whether you should spit it out or not.'
 														'He gives you a blissful smile and says: "You''re a great cocksucker, <<$pcs_nickname>>! That was great."'
@@ -403,7 +403,7 @@ if pav_slut < 25:
 												spafinloc = 7
 												gs 'cum_manage'
 												gs 'stat'
-												'<center><img src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
 												'As if spellbound, you remain kneeled in front of <<$boydesc>>.'
 												'You simply stare at his erection, still softly panting as you recover from your orgasm. Meanwhile, he begins to jerk off in front of you.'
 												'In no time at all, his cock erupts and a thick gob of his sperm lands on your nose. <<$boydesc>> groans loudly as he shoots several more jets of his cum onto your face. You flinch and close your eyes so you won''t get anything in them, and don''t dare opening them again until you''re sure he''s finished.'
@@ -422,7 +422,7 @@ if pav_slut < 25:
 												stat['hj'] += 1
 												pcs_dom += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 												'You stand up confidently and smile at him: "That was great! Now, I believe I owe you something."'
 												'Wrapping your fingers around his cock, you begin to masturbate him while you kiss the guy again. You let him grab your boobs while you stroke his length quickly, and in no time at all he lets out a muffled groan. Thick gobs of his sperm fly through the air, and land on the ground a few feet away from where you''re standing.'
 
@@ -439,7 +439,7 @@ if pav_slut < 25:
 							pcs_horny += 5
 							minut += 3
 							gs 'stat'
-							'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 							'You kiss <<$boydesc>> again while you begin to pet his cock through his pants, feeling the outline of it very clearly through the fabric.'
 							'"Mmmm... do you have something for me?" you ask him sweetly, and he lets out a needy groan.'
 
@@ -450,7 +450,7 @@ if pav_slut < 25:
 								pcs_horny += 10
 								minut += 3
 								gs 'stat'
-								'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 								'You slide your hand into his pants and caress his hard cock. After a few moments of teasing, you pull his pants down and let his cock spring free.'
 
 								if pcs_horny <= 90:act 'Go back to the disco':gt 'gdkin'
@@ -489,7 +489,7 @@ $din_gorodok_boy_pristal = {
 		gs 'boymass', 'B'
 		bmKISS[Tboynum] += 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 		'You lean into him and reciprocate the kiss. Slowly at first, but soon the two of you kiss each other more and more passionately. <<$boydesc>> sure knows how to make your heart flutter. Wow, he''s a good kisser!'
 		'Then you feel his hands on your chest.'
 
@@ -501,7 +501,7 @@ $din_gorodok_boy_pristal = {
 			minut += 3
 			bmTITS[Tboynum] += 1
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 			'You ignore <<$boydesc>>''s hands and just keep kissing him, letting him pull your clothes aside so your <<$titsize>> breasts fall out. He kneads them eagerly and continues to kiss and lick them, making your nipples poke out fiercely in the evening air.'
 			'Then he takes your hand and guides it towards his groin. It''s fairly warm to the touch, even through his trousers, and you can tell that his cock is very erect.'
 
@@ -513,7 +513,7 @@ $din_gorodok_boy_pristal = {
 					pcs_horny += 10
 					minut += 3
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 					'As soon as you pull your hand away from his groin, <<$boydesc>> slips his hand underneath your clothes and rubs two fingers against your snatch. You were already fairly turned on, and softly moan in embarrassment when he slides his finger back and forth over your wet pussy lips.'
 
 					if pcs_horny <= 90:act 'Remove his hands and walk away':gt 'gdkin'
@@ -530,7 +530,7 @@ $din_gorodok_boy_pristal = {
 							pcs_horny += 5
 							minut += 3
 							gs 'stat'
-							'<center><img src="images/shared/sex/cock/cock3.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/cock/cock3.jpg"></center>'
 							'Once the most intense part of your orgasm is over, you relax a little and moan softly with pleasure. In your daze of happiness your legs can''t support your weight and you drop down, kneeling in front of <<$boydesc>>.'
 							'When you catch your breath and can focus again, you see <<$boydesc>>''s very erect penis directly in front of your face!'
 
@@ -547,7 +547,7 @@ $din_gorodok_boy_pristal = {
 									bmBJ[Tboynum] += 1
 									sub += 1
 									gs 'stat'
-									'<center><img src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksuck.jpg"></center>'
 									'Without even realizing it, you move in to gently kiss the penis. After a few kisses and licks you let it slide into your mouth and begin to suck him off diligently, wanting to repay him for the pleasure he just gave you.'
 
 									act 'Continue':
@@ -565,7 +565,7 @@ $din_gorodok_boy_pristal = {
 										bmGossip[Tboynum] = 2
 
 										gs 'stat'
-										'<center><img src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cocksuck2.jpg"></center>'
 										'A jet of sperm lands in your mouth, without any warning from <<$boydesc>>. You almost gag in surprise, but manage to suppress your gag reflex and continue to suck on the head of his dick gently. You can''t stop him from pulling his cock out of your mouth, and shooting the last few drops of his load over your face.'
 										'Some of his sperm drips down your lips and onto your clothes, while he tucks his cock back into his pants with a satisfied grin.'
 
@@ -573,7 +573,7 @@ $din_gorodok_boy_pristal = {
 											cls
 											minut += 1
 											gs 'stat'
-											'<center><img src="images/shared/sex/cum/cocksuck3.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/shared/sex/cum/cocksuck3.jpg"></center>'
 											'<<$boydesc>> still has his hand on your head, and grunts: "Look at me."'
 											'You look him in the eye, your mouth half open. His load is still in it, and you''re not sure whether you should spit it out or not.'
 											'He gives you a blissful smile and says: "You''re a great cocksucker, <<$pcs_nickname>>! That was great."'
@@ -607,7 +607,7 @@ $din_gorodok_boy_pristal = {
 									spafinloc = 7
 									gs 'cum_manage'
 									gs 'stat'
-									'<center><img src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/facial.jpg"></center>'
 									'As if spellbound, you remain kneeled in front of <<$boydesc>>.'
 									'You simply stare at his erection, still softly panting as you recover from your orgasm. Meanwhile, he begins to jerk off in front of you.'
 									'In no time at all, his cock erupts and a thick gob of his sperm lands on your nose. <<$boydesc>> groans loudly as he shoots several more jets of his cum onto your face. You flinch and close your eyes so you won''t get anything in them, and don''t dare opening them again until you''re sure he''s finished.'
@@ -627,7 +627,7 @@ $din_gorodok_boy_pristal = {
 				pcs_horny += 5
 				minut += 3
 				gs 'stat'
-				'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 				'You kiss <<$boydesc>> again while you begin to pet his cock through his pants, feeling the outline of it very clearly through the fabric.'
 				'"Mmmm... do you have something for me?" you ask him sweetly, and he lets out a needy groan.'
 
@@ -639,7 +639,7 @@ $din_gorodok_boy_pristal = {
 					minut += 3
 					pcs_dom += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 					'You slide your hand into his pants and caress his hard cock. After a few moments of teasing, you pull his pants down and let his cock spring free.'
 
 					if pcs_horny <= 90:act 'Go back to the disco':gt 'gdkin'
@@ -704,7 +704,7 @@ elseif pav_slut >= 130:
 		bmHJ[Tboynum] += 1
 		money += 50
 		gs 'stat'
-		'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj.jpg"></center>'
 		'You squat before him as you wrap your fingers around his shaft, and slowly begin to jerk him off.'
 
 		act 'Suck his dick':
@@ -713,7 +713,7 @@ elseif pav_slut >= 130:
 			pcs_horny += 10
 			bmBJ[Tboynum] += 1
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj2.jpg"></center>'
 			dynamic $dinrandbj
 
 			act 'Continue':
@@ -725,7 +725,7 @@ elseif pav_slut >= 130:
 				spafinloc = 12
 				gs 'cum_manage'
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
 				dynamic $dinrandswallow
 
 				act 'Leave':gt 'gdk'

+ 441 - 75
locations/FedorEv

@@ -2,103 +2,469 @@
 
 !!Fedor Kotov - npcstatic id = A5
 
-numnpc = 5
-$static_num = 'A5'
-gs 'stat'
-'<center><b><font color="maroon"><<$npc_firstname[$static_num]>> <<$npc_lastname[$static_num]>></font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
-
-if pav_slut < 25:
-	if kotovLoveQW > 0 and week < 5 and kotovVSkozlov = 0:
-		kotovVSkozlov = 1
-		'When you approach Fedor, Vitek sees you walking Fedor''s way and follows you right away. He shoves Fedor roughly: "What do you think you''re doing, punk? <<$pcs_nickname>> is mine!"'
-		'Fedor turns his face to Vitek and calmly says: "I''m not doing anything. <<$pcs_nickname>> is with me now, so you should just leave us alone."'
-		'Vitek theatrically moves his hand to his ear, and says in a threatening voice: "What did you just say!?" to which Fedor calmly replies: "You heard me."'
-		'You can tell that Vitek is seething with rage now, the knuckles on his clenched fists turning white. Fedor moves his face even closer to Vitek''s and repeats, also clenching his fists: "You heard me. Get away from <<$pcs_nickname>>, Vitek."'
-
-		act 'Tell Vitek you want to be with Fedor':
+if $ARGS[0] = '' or $ARGS[0] = 'Start':
+	numnpc = 5
+	$static_num = 'A5'
+	cls	
+	gs 'stat'
+	'<center><b><font color="blue"><<$npcName[numnpc]>> <<$npcSurName[numnpc]>></font></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+
+	if kotovLoveQW > 0 and week < 5 and kotovVSkozlov = 0 and fedorKozlovQW >= 10:
+	   gt 'FedorEv', 'Vitek Vs Fedor'
+	elseif kotovVSkozlov = 1:
+	   gt 'FedorEv', 'Strela Chat'
+	elseif FedorvsDimka = 2:
+		gt 'FedorEv4', 'Dimka Aftermath'
+	elseif GorSlut = 1 and fedorkoztalk = 0 and FedorLove = 0:
+	   gt 'FedorEv', 'Gorslut'
+	elseif fedorKozlovQW >= 10 and GorSlut > 1 and FedorLove = 0:
+	   gt 'FedorEv', 'Gorslut 2'
+	 elseif fedorKozlovQW = 10 and FedorLuv < -5:
+		gt 'FedorEv2', 'Fedor Breakup'
+	elseif fedorKozlovQW >= 10 and dimaFilm = 1 and FedorvsDimka = 1:
+		gt 'FedorMisc', 'Fedor Vs Dimka'	   
+	elseif fedorKozlovQW >= 20 and GorSlut < 2 and sub > 0:
+	   gt 'FedorEv', 'Fedor Date 2'
+	elseif fedorKozlovQW >= 20 and GorSlut < 2 and pcs_dom >= 0:
+	   gt 'FedorEv', 'Fedor Date 3'
+	else
+	   gt 'FedorEv', 'Fedor Date'
+	end
+end	
+
+if $ARGS[0] = 'Vitek Vs Fedor':
+	cls
+	kotovVSkozlov = 1
+	gs 'stat'
+	'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+	'When you approach Fedor, Vitek sees you walking Fedor''s way and follows you right away. He shoves Fedor roughly: "What do you think you''re doing, punk?'
+	'<<$pcs_firstname>> is <b>mine!</b>" Fedor turns his face to Vitek and calmly says, "I''m not doing anything. <<$pcs_firstname>> is with me now,'
+	'so you should just leave us alone." Vitek theatrically moves his hand to his ear, and says, in a threatening voice: "What did you just say!?" to which Fedor' 
+	'calmly replies: "You heard me." You can tell that Vitek is seething with rage now, the knuckles on his clenched fists turning white. Fedor moves his face' 
+	'even closer to Vitek''s and repeats, also clenching his fists: "You heard me. Get away from <<$pcs_firstname>>, Vitek."'
+
+	act 'Tell Vitek you want to be with Fedor':
+		cls
+		minut += 5
+		kotovLoveQW = -1
+		gs 'stat'
+		'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+		'You tell Vitek that you don''t want to be with him any more. You can tell he''s very angry, and has to restrain himself from hitting you in the face. Ultimately he exclaims' 
+		'"Fuck you, bitch!" and leaves, kicking over several garbage cans on the way. You fear that this might not be the last thing you''ve heard of him.'
+
+		act 'Continue':gt $curloc
+	end
+
+	act 'Don''t interrupt and see what happens':
+		cls
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/fvsv.jpg"></center>'
+		'Vitek suddenly hits Fedor on the chin with a quick jab, which sends Fedor flying backwards landing on his back on the pavement. Vitek immediately gets on top of him,' 
+		'grabbing him by the collar with his left hand while he keeps punching Fedor in the face with his right hand. Fedor tries to ball up and kick Vitek, but doesn''t manage' 
+		'and Vitek gives him a hard kick in the ribs when he gets back up, which makes Fedor double over grasping his stomach. When Fedor tries to get up, Vitek kicks him against' 
+		'the head which makes Fedor fall over again. Then you see Vasily and Dan coming around the corner, they run towards Vitek when they notice he''s fighting. "Vitek, what''s' 
+		'going on?" Vasily asks. Vitek kicks the now prone Fedor once more in his sides. "This fucker is trying to steal my girl!" he exclaims, pointing at Fedor. For a moment' 
+		*nl
+		'you''re scared he''s going to beat you up too, but he doesn''t. Dan moves over to Fedor''s barely conscious body and asks: "Hasn''t anyone told you that it''s rude to steal' 
+		'someone''s girl, Fedor? What do you have to say for yourself?" Fedor looks up, barely realizing what''s going on any more. His face is all busted up, but he''s not willing' 
+		'to let it go: "<<$pcs_firstname>> is my girl..." he moans. Vasily laughs like a jackal, while Vitek is furious once more: "You little shit! I''m going to..." Dan interrupts' 
+		'him: "Relax, Vitek. Look at his face. I think he realizes his mistake. Or do you want to make things even worse for yourself?" That last question was directed at Fedor.'
+		'<center><b><font color="maroon"><<"Vasily [Shulga] Shulgin">></font></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/11.jpg"></center>'
+
+		act 'Remain silent':
 			cls
-			minut += 5
-			kotovLoveQW = -1
+			strelaDay = daystart
+			strelaQW = 1
 			gs 'stat'
-			'You tell Vitek that you don''t want to be with him any more. You can tell he''s very angry, and has to restrain himself from hitting you in the face. Ultimately he exclaims "Fuck you, bitch!" and leaves, kicking over several garbage cans on the way. You fear that this might not be the last thing you''ve heard of him.'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorangry.jpg"></center>'
+			'Fedor slowly rises to his feet, and softly mutters: "Fucking Gopniks..."'
+			'Vasily hears him though, and immediately slams his fist into Fedor''s face. Fedor tries to keep standing, but immediately gets hit by Dan as well. No longer able to' 
+			'support his weight, he falls to his hands and knees. Vasily jokes: "Look at him... already assuming the position!" making the other Gopniks laugh. Vitek kicks him in' 
+			'the stomach again, and Fedor lies flat on the ground. Vitek looks at Dan and asks: "Can you believe I have to put up with this shit?" Dan replies: "We could ask' 
+			*nl
+			'Vadim Bely to take care of him. He''ll know how to punish Fedor in a way that he''ll never forget." Vitek nods: "Good plan. Set it up, will you?" He then turns to Fedor' 
+			'"We''re settling this tomorrow, kid. You better be here after school, it''ll be ten times worse for you if you don''t." He then waves for his friends to follow him' 
+			'"Come on guys. Let''s go have some beers in the park, I need to relax. <<$pcs_nickname>>, if you want to join us, you know where we''ll be." Vitek and Dan leave Fedor' 
+			'on the ground and head for the schoolyard exit, but Vasily walks over to Fedor and kicks him in the ribs one more time, still laughing that signature jackal laugh of his.' 
+			'He then joins his friends, and moments later they''re gone.'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/fedor.jpg"></center>'
 
-			act 'Continue':gt $curloc
+			act 'Leave the school courtyard':gt 'pavResidential'
 		end
+	end
+end
+
+if $ARGS[0] = 'Strela Chat':
+	cls
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/FedorUpset.jpg"></center>'
+	'You see Fedor sitting in a corner by himself, as you approach him Fedor turns to you and says, "I''m sorry <<$pcs_firstname>> but I... I can''t talk right now"'
+
+	act 'Walk away':gt 'gschool_grounds', 'main'
+end
 
-		act 'Don''t interrupt and see what happens':
+if $ARGS[0] = 'Gorslut':
+	cls
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorSad.jpg"></center>'
+	'Fedor looks clearly troubled "<<$pcs_firstname>> I''ve been hearing rumors about you being a <<$gnikname>>, Please tell me that they are not true."'
+
+	act 'Tell Fedor the truth':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorSad.jpg"></center>'
+		'You lower your head in shame and tell Fedor the truth. Fedor slowly nods and after a few moments asks "Was this only a one time slip up or do you plan to keep flirting with other guys? Because I need to know right now."'
+
+		act 'Convince Fedor that he can trust you':
 			cls
-			minut += 5
+			fedorkoztalk = 1
 			gs 'stat'
-			'Vitek suddenly hits Fedor on the chin with a quick jab, which sends Fedor flying backwards landing on his back on the pavement. Vitek immediately gets on top of him, grabbing him by the collar with his left hand while he keeps punching Fedor in the face with his right hand. Fedor tries to ball up and kick Vitek, but doesn''t manage and Vitek gives him a hard kick in the ribs when he gets back up, which makes Fedor double over grasping his stomach. When Fedor tries to get up, Vitek kicks him against the head which makes Fedor fall over again.'
-			'Then you see Vasily and Daniil coming around the corner, they run towards Vitek when they notice he''s fighting. "Vitek, what''s going on?" Vasily asks.'
-			'Vitek kicks the now prone Fedor once more in his sides. "This fucker stole my girl!" he exclaims, pointing at Fedor. For a moment you''re scared he''s going to beat you up too, but he doesn''t. Dan moves over to Fedor''s barely conscious body and asks: "Hasn''t anyone told you that it''s rude to steal someone''s girl, Fedor? What do you have to say for yourself?"'
-			'Fedor looks up, barely realizing what''s going on any more. His face is all busted up, but he''s not willing to let it go: "<<$pcs_nickname>> is my girl..." he moans. Vasily laughs like a jackal, while Vitek is furious once more: "You little shit! I''m going to..."'
-			'Dan interrupts him: "Relax, Vitek. Look at his face. I think he realizes his mistake. Or do you want to make things even worse for yourself?" That last question was directed at Fedor.'
-
-			act 'Don''t interfere':
-				cls
-				strelaDay = daystart
-				strelaQW = 1
-				gs 'stat'
-				'Fedor slowly rises to his feet, and softly mutters: "Fucking Gopniks..."'
-				'Vasily hears him though, and immediately slams his fist into Fedor''s face. Fedor tries to keep standing, but immediately gets hit by Dan as well. No longer able to support his weight, he falls to his hands and knees. Vasily jokes: "Look at him... already assuming the position!" making the other Gopniks laugh. Vitek kicks him in the stomach again, and Fedor lies flat on the ground.'
-				'Vitek looks at Dan and asks: "Can you believe I have to put up with this shit?"'
-				'Dan replies: "We could ask Vadim Bely to take care of him. He''ll know how to punish Fedor in a way that he''ll never forget."'
-				'Vitek nods: "Good plan. Set it up, will you?" He then turns to Fedor: "We''re settling this tomorrow, kid. You better be here after school, it''ll be ten times worse for you if you don''t."'
-				'He then waves for his friends to follow him: "Come on guys. Let''s go have some beers in the park, I need to relax. <<$pcs_nickname>>, if you want to join us, you know where we''ll be." Vitek and Dan leave Fedor on the ground and head for the schoolyard exit, but Vasily walks over to Fedor and kicks him in the ribs one more time, still laughing that signature jackal laugh of his. He then joins his friends, and moments later they''re gone.'
-
-				act 'Leave the school courtyard':gt 'pavResidential'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+			'"It was a stupid mistake that I wish I could take back, I had too many drinks and..." Fedor raises his hand and says, "You don''t need to tell me more, let''s just put this behind us." You lean forward and greatfully kiss Fedor on the cheek he then hugs you for a few moments and walks away.'
+
+			act 'Move away':
+				if $loc = 'gschool_lunch':
+					gs 'gschool_lessons', 'afternoon'
+				else
+					gt 'gschool_grounds', 'main'
+				end
+			end	
+		end	
+		act 'Break up with Fedor':
+			cls		
+			fedorkoztalk = 1
+			fedorKozlovQW = -1
+			gs 'stat'	
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorangry.jpg"></center>'
+			'"I''m sorry Fedor but I enjoy the attention of men and I''m not really one for commitment. I thought you understood this." Fedor lowers his head clearly upset but after a few seconds he raises his head then looks in your eyes and says, "I guess what we had was a lie then...Go be with as many men as you want, I wont hold you back anymore." he takes a few steps back, never breaking eye contact with you until he suddenly turns away and walks off.'
+			
+			act 'Move away':
+				if $loc = 'gschool_lunch':
+					gs 'gschool_lessons', 'afternoon'
+				else
+					gt 'gschool_grounds', 'main'
+				end
 			end
 		end
-
-		exit
-	end
-
-	'Fedor is coming towards you and gently hugs you around the waist.'
-
-	act 'Kiss him':
+	end	
+	act 'Lie to Fedor':
 		cls
-		pcs_horny += 5
+		fedorkoztalk = 1
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
-		'You kiss Fedor passionately.'
-		$ev_name = 'Fedor'
-		$ev_name_a = 'Fedor'
-		$ev_name_om = 'Fedor'
-		dick = 17
-
-		silavag = 0
-
-		if gnpcSex[numnpc] = 0:
-			!!sex was not
-			placerand = rand(0, 2)
-
-			if placerand = 0:place = 1 & $textEvent = ' "Let''s go for a walk in the park?"'
-			if placerand = 1:place = 2 & $textEvent = ' "Want to go to the movies?"'
-			if placerand = 2:place = 3 & $textEvent = ' "Let''s hang out at my place."'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You step forward and place your hand on Fedors cheek as you softly tell him "I would never do such a thing! you know how rumors can be, I''m sure it''s just some guy with a hard on for me trying to tear us apart" Fedor lowers his head but after a few moments raises it with a smile on his face and says," I knew it had to be a lie, I know you''re better than that, I''m sorry I jumped the gun on this one but I will find a way to make it up to you" while carressing his cheek with your hand you lean forward and give him a soft kiss on his other cheek and whisper "There is no need."'
+
+		act 'Move away':
+			if $loc = 'gschool_lunch':
+				gs 'gschool_lessons', 'afternoon'
+			else
+				gt 'gschool_grounds', 'main'
+			end
 		end
+	end	
+end		
 
-		!!sex was
-		if gnpcSex[numnpc] > 0:$textEvent = ' ""'
+if $ARGS[0] = 'Gorslut 2':
+	cls
+	fedorKozlovQW = -1
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorangry.jpg"></center>'
+	'Fedor looks distraught: "<<$pcs_firstname>>, I trusted you with all my heart, and you turn out to be just another <<$gnikname>>. I never should have trusted you... I see now that everything we had was a lie... Just stay away from me!" He turns around and walks away. Looks like he wants nothing more to do with you.'
 
-		'You kiss Fedor passionately, neither of you willing to break it off. Finally when you stop kissing, <<$ev_name>> suggests: <<$textEvent>>'
+	act 'Move away':
+		if $loc = 'gschool_lunch':
+			gs 'gschool_lessons', 'afternoon'
+		else
+			gt 'gschool_grounds', 'main'
+		end
+	end
+end
+	
+if $ARGS[0] = 'Fedor Date':
+	cls
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/fedor.jpg"></center>'
+	'As you walk toward Fedor, he smiles and waves you over and as you approach Fedor he stands up and gently holds you in his arms, which gives you a strange sense of comfort and safety.'	
+	if fedorkozqw = 0:
+		act 'Return the hug':gt 'FedorEv', 'Park'
+	elseif fedorkozqw = 1:
+		act 'Return the hug':gt 'FedorEv', 'Cinema'
+	elseif fedorkozqw = 2:
+		act 'Return the hug':gt 'FedorEv', 'Home'
+	elseif fedorkozqw = 3:
+		act 'Return the hug':gt 'FedorEv', 'Skate'
+	elseif fedorkozqw = 4:
+		act 'Return the hug':gt 'FedorEv', 'Park 3'
+	elseif fedorkozqw = 5:
+		act 'Return the hug':gt 'FedorEv', 'Cinema'
+	end   
+end
 
-		act 'Apologize, say you can''t and leave':gt 'pavResidential'
+if $ARGS[0] = 'Park':
+   cls
+   gs 'stat'
+   '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+	'You wrap your arm around Fedor''s neck while enjoying his embrace and after a few moments he asks you "Hey <<$pcs_nickname>>, would you like to go for a walk in the park?"'
+	
+	act 'Sure':
+		cls
+		fedorkozqw = 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+		'"I could use a nice walk" you tell Fedor and he gives you a pleased smile and places his arm gently on your back as he leads you toward the park'	
+	
+		act 'Go to the park with Fedor':gt 'FedorEv2'
+	end
+	act 'Not now':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do" he then nods with a forced smile and responds, "I guess I''ll catch you next time" But as you leave you look back and notice that Fedor lowers his head trying to hide a light frown on his face as he watches you walk away.'
+		
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
+end
 
-		act 'Go with Fedor':
+if $ARGS[0] = 'Cinema':
+   cls
+   gs 'stat'
+   '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+   'You place your arm around Fedor''s neck while enjoying his embrace and after a few moments he says, to you "There is a movie playing in a bit that I''m sure you will love, Would you be up for a good horror?" He then shrugs and sarcastically says, "Buuut if your too scared then we could always pick flowers or something."'
+   
+   if fedorkozqw = 5:
+		act 'Sure, that sounds fun':
 			cls
+			fedorkozqw = 2
 			gs 'stat'
-			Frend_num = 1
-			gt 'placer'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+			'You grin as you say, "I''m always up for a good horror but I must warn you, I don''t scare easily" Fedor responds, "We''ll see about that" he then leads you to the cinema.'	
+		
+			act 'Go to the movies with Fedor':gt 'FedorEv2', 'Cinema'
 		end
+	else
+		act 'Sure, that sounds fun':
+			cls
+			fedorkozqw = 2
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+			'You grin as you say, "I''m always up for a good horror but I must warn you, I don''t scare easily" Fedor responds, "We''ll see about that" he then leads you to the cinema.'	
+		
+			act 'Go to the movies with Fedor':gt 'FedorEv2', 'Movies'
+		end	
+	end	
+	act 'Not now':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do" he then nods with a smirk and responds, "Too scared huh... well I guess I''ll catch you next time" You give him a light punch in the arm with a smirk on your face and walk away.'
+		
+		act 'Move away':gt 'gschool_grounds', 'main'
 	end
-else
-	fedorKozlovQW = -1
-	'Fedor looks distraught: "<<$pcs_nickname>>, I trusted you with all my heart, and you turn out to be just another ordinary slut. I never should have trusted you... everything we had was a lie. Just stay away from me!" He turns around and walks away. Looks like he wants nothing to do with you any more.'
+end
+
+if $ARGS[0] = 'Home':
+	cls
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+	'You place your arm around Fedor''s neck while enjoying his embrace and after a few moments he says, to you "I always enjoy spending time with you and I wanted to know if you would like to come over to my place to hang out and watch some movies I downloaded? I have some really good import movies from America and some Japanese horrors."'
+	
+	act 'I would love too':
+		cls
+		fedorkozqw = 3
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+		'You giggle lightly then tell Fedor "I would love to go with you and watch some movies that I''m sure you downloaded...legally" as you grin at him he says, "Yeah..about that..." which causes both of you to laugh similtaniously. Fedor then wraps his arm gently around your neck and leads you to his house.'	
+		
+		act 'Go with Fedor to his home':gt 'FedorEv2', 'Home'
+	end
+	
+	act 'I can''t right now':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do" he then nods with a forced smile and responds, "I guess I''ll catch you next time" But as you leave you hear him whistper to himself "I guess it was too soon" you then look back to notice that Fedor lowers his head trying to hide a frown on his face as he watches you walk away.'
+		
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
+end
 
-	act 'Return to Pavlovsky':gt 'pavResidential'
+if $ARGS[0] = 'Skate':
+	if month = 12 or month < 3:
+		gt 'FedorEv', 'Skate Date'
+	else
+		gt 'FedorEv', 'Park 3'
+	end
+end	
+
+if $ARGS[0] = 'Skate Date':
+   cls
+   gs 'stat'
+   '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+   'You place your arm around Fedor''s neck while enjoying his embrace and after a few moments he says, to you "It''s a bit chilly today. Would you like to go ice skating?"'
+      
+	act 'I would love too':
+		cls		
+		fedorkozqw = 4
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+		'You give Fedor a sweet smile as you reply, "Sure, that sounds like fun" Fedor returns your smile "Alright let''s go have some fun." Fedor then leads you to the Skating ring.'	
+		
+		act 'Go skating with Fedor':gt 'FedorEv2', 'Skate'
+	end
+	
+	act 'I can''t right now':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do" he then nods with a forced smile and responds, "I guess I''ll catch you next time" But as you leave you hear him whistper to himself "I guess it was too soon" you then look back to notice that Fedor lowers his head trying to hide a frown on his face as he watches you walk away.'
+		
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
 end
 
+if $ARGS[0] = 'Park 3':
+	cls
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+	'You wrap your arm around Fedor''s neck while enjoying his embrace and after a few moments he asks you "Hey <<$pcs_nickname>>, would you like to go for another walk in the park?"'
+	
+	act 'Sure':
+		cls
+		fedorkozqw = 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+		'"Sure. Let''s have some fun." you tell Fedor and he gives you a pleased smile and places his arm gently on your back as he leads you toward the park.'	
+	
+		act 'Go to the park with Fedor':gt 'FedorEv2', 'Park 2'
+	end
+	act 'Not now':
+		cls
+		gs 'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do" he then nods with a forced smile and responds, "I guess I''ll catch you next time" But as you leave you look back and notice that Fedor lowers his head trying to hide a light frown on his face as he watches you walk away.'
+		
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
+end
+	
+if $ARGS[0] = 'Fedor Date 2':
+	cls
+	horny += 5
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/fedor.jpg"></center>'
+	'You look Fedor in the eyes, lean forward and give him a passionate kiss, feeling his warm lips on yours and his tongue enter your mouth and begin to softly massage yours.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+	$ev_name = 'Fedor'
+	$ev_name_a = 'Fedor'
+	$ev_name_om = 'Fedor'
+	gs 'arousal', 'kiss', 5
+	gs 'arousal', 'end'	
+	gs'stat'
+	
+	placerand = rand(1, 2)
+	
+	if placerand = 0:$place = 'Park 2' & $textEvent = ' "Wanna go for a walk in the park and see what kind of trouble we can get into?"'
+	if placerand = 1:$place = 'Cinema 2' & $textEvent = ' "<<$pcs_nickname>> are you up for another movie?"'
+	if placerand = 2:$place = 'Home 2' & $textEvent = ' "Would you like some "Alone time" at my place?."'
+
+	'You continue to kiss Fedor passionately, neither of you willing to break it off. After what felt like an hour <<$ev_name>> finishes kissing you and suggests: <<$textEvent>>'
+
+	act 'I would love too': gt 'FedorEv', $place
+
+	act 'I can''t right now':gt 'FedorEv', 'No Date'
+end	
+
+if $ARGS[0] = 'Fedor Date 3':
+	cls
+	horny += 5
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/fedor.jpg"></center>'
+	if FedorLove = 1:
+		'You look Fedor in the eyes, lean forward and give him a passionate kiss, feeling his warm lips on yours and his tongue enter your mouth and begin to softly massage yours. After a few seconds Fedor slowly pulls away and asks "Hello my love, I want to spend some time with you. Is there any place in particular that you would like to go?"'	
+	else
+		'You look Fedor in the eyes, lean forward and give him a passionate kiss, feeling his warm lips on yours and his tongue enter your mouth and begin to softly massage yours. After a few seconds Fedor slowly pulls away and asks "Hey <<$pcs_firstname>> I want to spend some time with you. Is there any place in particular that you would like to go?"'	
+	end
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+	
+	act 'Let''s go to the movies': gt 'FedorEv3', 'Movies'
+
+	act 'I''d like to spend alone time at your place':gt 'FedorEv4', 'Home'
+	
+	act 'I can''t right now':gt 'FedorEv', 'No Date'
+end	
+
+if $ARGS[0] = 'Park 2':
+    cls
+    gs 'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/walk1.jpg"></center>'
+	'Fedor smiles as he said "Great, lets get going" he then takes your hand and walks you to the park'
+	
+	act 'Go to the park': gt 'FedorEv2', 'Park 2'	
+end	
+
+if $ARGS[0] = 'Cinema 2':
+    cls
+    gs 'stat'
+	if fedorKozlovQW = -15:
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/Incognito.jpg"></center>'
+		'Fedor nods "Sure, that sounds like fun." he then raises his hood to cover his face, obviously not wanting to get spotted by Viktor as he walks with you to the Cinema.'
+	else	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/walk.jpg"></center>'
+		'"Excellent, I''ve heard some good things about this movie, let''s go and have some fun" Fedor said as he wraps his arm around your waist and walks you to the cinema'
+	end	
+
+	act 'Go to the cinema': gt 'FedorEv3', 'Movies'	
+end
+
+if $ARGS[0] = 'Home 2':
+    cls
+    gs 'stat'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/hold.jpg"></center>'
+		'"I would like to spend some alone time with you. How about we head down to your place and watch some moivies?" Fedor smiles as he replies, "Sure thing, I always love spending time with you <<$pcs_firstname>>." you wrap your arms around his neck then walk with Fedor to his house.'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/city/boyfriend/boygo.jpg"></center>'
+		'"Fedor leans forward and whispers in your ear "My parents are out for the evening, so we have the whole place to ourselves, Lets go." he then rests his arm on your shoulders as he leads you to his house.'
+	end
+	
+	act 'Go with Fedor': gt 'FedorEv4', 'Home'		
+end
+
+if $ARGS[0] = 'No Date':
+	cls
+	gs 'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	'You slowly pull back and say to Fedor "I can''t go right now, I have something I need to do." he then nods with a forced smile and responds, "I guess I''ll catch you next time" But as you leave you look back and notice that Fedor lowers his head trying to hide a light frown on his face as he watches you walk away.'
+
+	act 'Leave':gt 'gschool_grounds', 'main'
+end
+
+
 --- FedorEv ---------------------------------
 

+ 1020 - 0
locations/FedorEv2

@@ -0,0 +1,1020 @@
+# FedorEv2
+
+if $ARGS[0] = '' or $ARGS[0] = 'Start':
+	cls
+	minut += 10				
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/walk.jpg"></center>'
+	'As you arrive at the park Fedor reaches out for your hand and leads you down the main path. You turn to him to see a gentle smile on his face which you are quite surprised to see. Usually Fedor is pretty crude when he is hanging out with the other jocks but there may be a softer side to him you think to yourself as Fedor leads you through the park. During your walk you both hear some people loudly laughing nearby, Fedor turns to you "Sounds like someone is having fun, wanna check it out?"'
+	act 'Check it out':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="maroon"><<"Vasily [Shulga] Shulgin">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/Park/GopnikDance'+rand(1,2)+'.gif"></center>'
+		'You and Fedor follow the laughing to find a clearly drunk Vasily dancing in front of Vitek and Dan as they cheer him on. Dan shouts "Keep going and remember if you fall over then you owe us 300<b>₽</b> " as he records Shulgin''s drunken dance on his phone. Fedor laughs "It seems like they are having fun. We should probally go before they notice us because I''m sure that having you by my side will only make those poor guys jealous" you lower your head and feel yourself getting flushed as you reply, "I''m sure you say that to all the girls" he then responds, "Only if they were as beautiful as you <<$pcs_firstname>>" after a few moments of silence Fedor chuckles as he takes you by the hand and leads you back down the main path.'
+
+		act 'Continue walking':gt 'FedorEv2', 'Park Walk'
+	end	
+	act 'Ignore it and Continue walking':gt 'FedorEv2', 'Park Walk'				
+end
+
+if $ARGS[0] = 'Park Walk':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/swingset.jpg"></center>'
+	'While walking along the path you and Fedor Start getting to know each other until you come across an unused swing set. Fedor smiles as he asks "<<$pcs_firstname>> would you like a push on the swing?"'
+
+	act 'I would love too.':
+		cls
+		pcs_mood += 5
+		pcs_willpwr += 5
+		minut += 5
+		FedorLuv += 1						
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/swing.jpg"></center>'
+		'"That sounds like fun" Fedor then leads you to the swing and after you sit down Fedor grabs your waist firmly and gives you a light push and as you continue to swing he slowly increases the pace. After you have a good pace going then Fedor stands in front of you watching you swing while encouraging you to swing higher.'	
+		
+		if tanga = 0:
+			act 'Flash Fedor':
+				cls
+				pcs_mood += 5
+				pcs_willpwr += 5
+				FedorLuv += 2
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/swingflash.gif"></center>'
+				'While swinging, you give Fedor a seductive grin, as you spread your legs after each swing, giving Fedor a close up of your vagina which gives you a rush of excitement. You can see a shocked look on Fedor''s face which soon turns to a very pleased grin, "<<$pcs_nickname>> you little minx." You then slide off the swing, landing on your feet and walk past Fedor, giving him a seductive wink while taking his hand and continuing your walk together.'
+				gs 'arousal', 'flash_pussy', 5, 'exhibitionism'
+				gs 'arousal', 'end'	
+				gs'stat'
+							
+				act 'Finish your walk':gt 'FedorEv2', 'Train Tracks'
+			end	
+		end	
+		act 'Ask Fedor to swing with you':
+			cls
+			pcs_mood += 5
+			pcs_willpwr += 5
+			FedorLuv += 1
+			minut += 10
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/swing2.jpg"></center>'
+			'You continue swinging for a few minutes and then Fedor offers you his hand and gently pulls you up from the swing and asks "I hope you had fun. Shall we continue our walk?" and you respond with a smile "Sure thing, lead the way." and you both continue to walk through the park.'
+			
+			act 'Continue your walk':gt 'FedorEv2', 'Train Tracks'
+		end	
+	end
+	act 'I''m too old for that':
+		cls
+		minut += 5
+		FedorLuv -= 2						
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+		'"Nah, I''m too old for that, Let''s find something more my age." Fedor''s smile melts away as he responds, "Sorry <<$pcs_firstname>>, I didn''t mean to...Let''s just forget I asked." and you both continue walking together in silence.'
+
+		act 'Continue your walk':gt 'FedorEv2', 'Train Tracks'				
+	end		
+end
+			
+if $ARGS[0] = 'Train Tracks':
+	cls
+	pcs_mood += 5
+	pcs_willpwr += 5
+	minut += 20
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/tracks.jpg"></center>'
+	'Fedor leads you by the hand to some old train tracks. Fedor tells you how this the place he goes to when he is feeling upset. You and Fedor chat and quickly become deeply engrossed in the conversation. You are both so engrossed you never realize that you''ve been walking on one of the tracks as Fedor walks on the other. As the both of you chat, you hear a train coming on the neighboring track. You and Fedor watch the train speed by, carrying a large gust of wind which knocks you off balance, as you are falling to the ground you feela a hand on your waist and one behind your head and realized that Fedor has caught you. You turn to Fedor as he helps you on your feet. With his hands still on your waist he moves in to kiss you...'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/tracks2.jpg"></center>'
+	
+	act 'Kiss Fedor':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		FedorLuv += 2			
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/kiss.jpg"></center>'
+		'As you stare into Fedor''s eyes you see a look of desire in his eyes and you can almost feel how badly he wants you which causes your heart to race and unable to resist you further, Fedor moves in and kisses you passionately, massaging your lips with his while never breaking eye contact. You occasionally feel his breath on your upper lip, his hands on your hips ans his lips on yours. the passionate kiss lasts for what feels like an hour until Fedor slowly lowers you to your feet as he whispers in your ear "<<$pcs_firstname>>, I''ve never met a girl like you, I feel like I can relax around you" Fedor then lowers you back to you feet "I had a great time with you but I should really get you home before it gets too late. I wouldn''t want your parents to scorn me but feel free to meet me after school whenever you would like to go out again." Fedor says, as he takes your hand and walks you home.'
+		gs 'arousal', 'kiss', 10, 'sub'
+		gs 'arousal', 'end'	
+		gs'stat'			
+
+		act 'Walk home with Fedor': gt 'pavResidential'	
+	end	
+	act 'Offer him your hand':
+		cls
+		pcs_mood += 10
+		pcs_willpwr += 10
+		minut += 10
+		FedorLuv -= 2			
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/nokiss.jpg"></center>'
+		'You think to yourself "This is going too fast." so you offer Fedor your hand. He is a little surprised at first but kisses your hand nonetheless. Fedor lowers your hand as he releases it and after a few moments of silence you notice a Fedor''s posture lowers as he turns away from you "It''s starting to get late, we should probally get going before your parents start to worry about you." He says, with a meek smile as he takes your hand and walks you home.'
+			
+		act 'Walk home with Fedor':gt 'pavResidential'
+	end	
+end	
+
+if $ARGS[0] = 'Movies':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/jogging.jpg"></center>'
+	'As you are walking to the cinema you glance around to see Ivan jogging through the park, he stops in front of Fedor. "Hey Fedor, Did you check out those vids I sent you?" he then notices you. "Hey <<$pcs_firstname>>, it''s good to see you, What are you two up to?" Fedor tells him that you are going to the cinema together and Ivan looks you up and down then nods to Fedor approvingly "Don''t let me keep you." as he steps aside. You and Fedor walk past Ivan then Fedor smiles as he says, "Sorry about that <<$pcs_firstname>>, let''s keep moving before all the good seats are taken" he then reaches out for your hand...'
+	
+	act 'Hold hands':
+		cls
+		pcs_mood += 5
+		pcs_willpwr += 5
+		FedorLuv += 1				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/handkiss.jpg"></center>'
+		'As you offer Fedor your hand, he lifts it up to his face and very romantically kisses it softly while staring into your <<$pcs_eyecol>> eyes. You give Fedor a gentle smile and say, "I never took you for a romantic." he then responds, "Well stick with me and I''ll surprise you." Fedor then returns the smile as you both continue toward the cinema.'
+
+		act 'Enter the cinema':gt 'FedorEv2', 'Cinema'
+	end
+	act 'Put your hands in your pockets':
+		cls
+		FedorLuv -= 2				
+		gs'stat'	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+		'You put your hands in your pockets, Fedor raises one of his eyebrows as he says, "Afraid of getting cooties?" and you respond, "Maybe I just don''t trust you." Fedor sighs then replies, "Fine, Suit yourself." and with a disappointed look on his face turns around. You and Fedor continue walking to the cinema in silence.'
+
+		act 'Enter the cinema':gt 'FedorEv2', 'Cinema'
+	end	
+end
+
+if $ARGS[0] = 'Cinema':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/couple.jpg"></center>'
+	'As you enter the cinema Fedor takes the lead and shows the tickets to a man at the ticket check. You look around you see a young couple at the concession stand buying snacks causing you think about what snacks you might want, Until you feel Fedor''s hand on your back. Fedor then leads you to the concession stand and asks you what you would like.'
+	
+	act 'Small Popcorn and medium drink':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/couple.jpg"></center>'
+		'Fedor walks up to the counter and buys 2 popcorn bags and 2 medium drinks then hands you one. As you both start walking toward the theater you hear loud shouting. You turn to see a gopnik getting carried out of the theater by security after what appears to be a fight that broke out. Fedor smirks then shrugs. "Fucking gopniks... Always making asses of themselves." after which he holds the door open for you.'
+
+		act 'Find a seat':
+			cls
+			pcs_health += 10
+			pcs_mood += 20
+			pcs_willpwr += 20
+			pcs_energy += 20
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_breath = 0				
+			gs'stat'				
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/seat.jpg"></center>'
+			'You enter the theater to see it pretty packed and Fedor leads you to the back corner row where there are 4 empty seats. as you both get settled in Fedor hands you your popcorn and snacks then the lights start to dim and the advertisments start up meaning the movie is getting ready to start.'
+		
+			act 'Watch the movie':gt 'FedorEv2', 'Movies 2'
+		end	
+	end		
+	act 'Large Popcorn, snacks and a large drink':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/couple.jpg"></center>'
+		'Fedor walks up to the counter and buys 2 Popcorn bags some snacks and 2 large drinks, he hands you a drink and gummy bears and holds the rest for when you get inside the theater. You and Fedor start walking toward the theater and hear loud shouting then turn to see a gopnik getting carried out of the theater by security after what appears to be a fight that broke out. Fedor smirks then shrugs. "Fucking gopniks... Always making asses of themselves." after which he holds the door open for you.'
+
+		act 'Find a seat':
+			cls
+			pcs_health += 10
+			pcs_mood += 20
+			pcs_willpwr += 20
+			fat += 1
+			pcs_energy += 30
+			cumspclnt = 2	
+			gs 'cum_cleanup'
+			pcs_breath = 0				
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/seat.jpg"></center>'
+			'You enter the theater to see it pretty packed and Fedor leads you to the back corner row where there are 4 empty seats. as you both get settled in Fedor hands you a bag of popcorn then the lights start to dim and the advertisments start up meaning the movie is getting ready to start.'
+
+			act 'Watch the movie':gt 'FedorEv2', 'Movies 2' 
+		end	
+	end
+end	
+	
+if $ARGS[0] = 'Movies 2':
+	cls
+	pcs_mood += 20
+	pcs_willpwr += 20
+	minut += 60
+	gs'stat'
+	'The movie starts and you and Fedor sit quietly watching the movie but you occationally see Fedor staring at you when he thinks you aren''t looking. You continue watching the movie in silence until a jump scare flashes on the screen causing you to jump up in your seat and after you collect yourself, you look down to notice that you were clutching Fedor''s hand. As you look at Fedor''s face, he giggles and wraps his fingers around your hand as he gazes intently into your <<$pcs_eyecol>> eyes and a few seconds of silence Fedor leans in closer to you...'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/scare.gif"></center>'
+	
+	act 'Kiss him':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		FedorLuv += 2				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/scarekiss.gif"></center>'
+		'You lean forward slightly and kiss his lips, Feeling his soft lips massaging yours enjoying the passionate kiss for what feels like half an hour. When you both finish, Fedor whispers in your ear "Your lips are so soft <<$pcs_firstname>>, I could kiss you for days." Which causes you to feel a little flushed as you start sipping your soda trying to hide how red your face is.'
+		gs 'arousal', 'kiss', 5	
+		gs'stat'
+
+		act 'Unzip his pants':
+			cls				
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex3.jpg"></center>'
+			'You slowly turn back to Fedor and notice that he forgot to zip his pants and you can see his underwear poking out, so you slowly reach out to zip it for him when you feel sudden excitement as your hand is over his crootch and with out thinking you reach into his pants and start rubbing on his penis. You can feel how rock hard his cock is and unable to stop yourself you start jerking him off hearing him softly moan. You then look up to him to see him biting his lip trying not to make to much noise.'
+			
+			act 'Continue jerking him':
+				cls
+				pcs_mood += 20
+				pcs_willpwr += 20
+				FedorLuv += 3
+				pcs_dom += 3						
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/hj.jpg"></center>'
+				'Feeling his warm penis in your hand and seeing his expression just fills you with excitement and a sense of power as you are in full control his pleasure. You continue to jerk him off as you admire the look of pleasure in his face and the slow throbbing of his cock. Soon Fedor''s head slams back in his chair and he lets out a muffled groan as his cock starts rapidly throbbing and erupting squirt after squire of semen on your pants and hands. Fedor lays back motionlessly for a few seconds then turns to you with a very satisfied look on his face, he leans toward you and kiss you on the cheek as he whispers "Wow <<$pcs_nickname>>, You are the best." then leans back in his chair, zipping his pants."'
+				gs 'arousal', 'hj', 5, 'dom'
+				gs 'boyStat', 'A5'
+				gs 'cum_call', 'clothesgroin', $boy
+				gs 'cum_call', 'hands', $boy						
+				gs 'arousal', 'end'
+				gs 'stat'						
+				
+				act 'Finish watching movie':gt 'FedorEv2', 'Movie 3'
+			end	
+		end
+		act 'Finish watching movie':gt 'FedorEv2', 'Movie 3'
+	end
+	act 'Turn away':
+		cls
+		FedorLuv -= 1				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/turnaway.jpg"></center>'
+		'As Fedor leans in for a kiss, You turn away, pretending not to notice and continue watching the movie. After a few seconds you glance over to Fedor to see a really disappointed look on his face as he continues watching the movie in silence.'
+
+		act 'Finish watching movie':gt 'FedorEv2', 'Movie 3'
+	end	
+end
+
+if $ARGS[0] = 'Movie 3':
+	cls
+	pcs_mood += 20
+	pcs_willpwr += 20
+	minut += 30
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/seat2.jpg"></center>'
+	'You and Fedor continue to watch the movie until the credits eventually roll and then most people in the theater start to leave and you and Fedor wait for most of the people to leave while chatting about your favorite part on the movie then Fedor gets up and throws out the popcorn bags and cups.'
+	
+	act 'Finish date':gt 'FedorEv2', 'Movie 4'
+end
+
+if $ARGS[0] = 'Movie 4':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	'Fedor quietly walks up to you and takes you by the hand then you both walk out of the cinema and as Fedor walks you home you both discuss what you liked best about the movie. When you both get to your door, Fedor smiles "<<$pcs_firstname>> I hope you had as much fun as I have." as he stares into your <<$pcs_eyecol>> eyes for a few seconds, then slowly moves his face closer to yours inching closer to your lips...'
+	
+	act 'Kiss Fedor':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		FedorLuv += 3				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/endkiss.gif"></center>'
+		'You press your lips against his and share a soft passionate kiss, as he lightly rubs your cheek with his hand, you softly rub his and with yours. You feel Your heart pounding as you get lost in the passion of the moment. Fedor finally pulls away with his eyes never losing contact with yours. "<<$pcs_firstname>>, You are the most amazing girl I have ever been with. I can''t wait to see you again." he then gives you a soft kiss and you enter your apartment while smiling back at him as you close the door.'
+		gs 'arousal', 'kiss', 5
+		gs 'arousal', 'end'	
+		gs'stat'			
+
+		act 'Go Home':gt 'korrPar'
+	end
+	act 'Say goodbye and leave':
+		cls
+		minut += 5
+		FedorLuv -= 4				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/endbye.gif"></center>'
+		'You put your index finger on his lips. "Sorry but I just re-applied my lipstick." and then you back up into your appartment as you say, "Bye" Fedor then tilts his head downward and looks noticably upset as you close the door.'
+
+		act 'Go Home':gt 'korrPar'
+	end
+end	
+	
+if $ARGS[0] = 'Home':
+	cls
+	minut += 5				
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	'You and Fedor both walk to his house and he unlocks the door then holds it open for you and as you enter, Fedor gives you a firm hug from bedind and kisses your cheek. You feel the warmth of both his embrace and his heater which is obviously of high quality. Fedor asks "Are you up for some movies or what?" he smiles as he removes your coat and hangs it on the rack as you take off you shoes.'
+	
+	act 'Sure thing':
+		cls
+		gs'stat'			
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/sitting.jpg"></center>'
+		'"Have a seat" Fedor guides you to the couch and then walks to the TV and sets up the movie and after a few moments he walks to the kitchen and comes back with some popcorn and snacks then sits down next to you with a remote. The movie starts and it appears to be a sci-fi action film.'
+		
+		act 'Watch Movie':
+			cls
+			minut += 90
+			pcs_health += 15	
+			pcs_mood += 40
+			pcs_willpwr += 40
+			fat += 2
+			pcs_energy += 90
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_breath = 0				
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/sitting.jpg"></center>'
+			'You and Fedor watch the movie and eating snacks while occasional discussing events in the movie. The movie ends and Fedor wraps his arm around your waist, he then gazes into your <<$pcs_eyecol>> eyes and asks you "<<$pcs_firstname>> would you like to go to my bedroom?"'
+			
+			act 'How can I say no to that? <b><h4><font color=#ff00cc>[Go steady]</font></h4></b>':
+				cls
+				minut += 5
+				gs'stat'	
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/bedroomkiss1.gif"></center>'
+				'Fedor immedietly lifts you up and carries you in his arms to the bedroom. As soon as you both reach his bedroom he genly puts you down in front of him. He then stares into your <<$pcs_eyecol>> eyes hungrily craving you. Fedor suddenly starts kissing you very lustfully as you both undress each other.'
+				*nl	
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/bedroomkiss2.gif"></center>'
+
+				act 'Push him onto the bed':
+					cls
+					gs'stat'
+					'You gently push Fedor onto the bed and he lays back anxiously waiting to see what you do next and you climb on the bed and start licking his dick and then begin sucking his hard cock causing him to moan softly. you occasionally pull it out and lick the length of his penis to keep him from cumming too quickly. After a few moments he sits up and lifts you up by you shoulders and drops you onto the bed on your back.'			
+					*nl	
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/bj.gif"></center>'
+					gs 'arousal', 'bj', 5, 'dom'	
+					gs'stat'						
+
+					if pcs_vag = 0:
+						act 'Tell him you''re a virgin':gt 'FedorEv2', 'Virgin Sex'	
+					else
+						act 'Spread your legs':gt 'FedorEv2', 'Vaginal Sex'
+					end	
+				end		
+				act 'Lean back on the bed':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cuni.gif"></center>'
+					'You break off the kiss and climb onto the bed and lean back giving Fedor a seductive wink while rubbing your clitoris. Fedor knew exacty what you wanted and burried his face between your legs gently licking your clitoris and after a few minutes, you feel your entire body begin to spasm in a really powerful orgasm. Fedor then licks up your juices and climbs up to kiss you and you feel his penis rubbing against your vaginal lips.'
+					*nl	
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cuni2.gif"></center>'
+					gs 'arousal', 'cuni', 5, 'dom'
+					gs'stat'						
+					
+					if pcs_vag = 0:
+						act 'Tell him you''re a virgin':gt 'FedorEv2', 'Virgin Sex'			
+					else
+						act 'Let him enter you':gt 'FedorEv2', 'Vaginal Sex'
+					end	
+				end		
+			end
+			act 'Sorry Fedor, but I''m not ready':
+				cls
+				minut += 5
+				gs'stat'
+				'You tell Fedor that you need to go and he wraps his arms around you, giving you a warm hug as he replies, "I understand, maybe next time." and he walks you home. Fedor fetches your coat and walks you out the door. When you arrive at your apartment, You give Fedor a soft kiss on the cheek. "Until next time." as you give him a wink and close the door.'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/endbye.gif"></center>'
+				
+				act 'Go home':gt 'korrPar'
+			end			
+		end		
+	end	
+end
+
+if $ARGS[0] = 'Vaginal Sex':
+	cls	
+	fedorKozlovQW = 20
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag.gif"></center>'
+	'Suddenly you feel Fedor''s <<dick>> centimeter penis enter your vagina then you and Fedor let out a moan similatiously as he begins to thrust inside you. Thrust after thrust you feel the pleasure building up inside you and the warmth of his body pressed up against yours, your heart racing as you wrap your legs around his waist wanting him deeper inside you, Losing yourself in blissful pleasure.'
+	gs 'arousal', 'vaginal', 5, 'sub'
+	gs'stat'				
+
+	act 'Finish':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag2.gif"></center>'
+		'Fedor starts pumping you harder and you can feel the pleasrure buiding inside you as you lay back and enjoy Fedor hard cock rubbing inside your wet pussy, Enjoying every second and every thrust while feeling his sweat dripping down your chest, his breath on your neck. Your muscles start to tense and you feel a warm heat in your groin, then your breath stops and you suddenly feel a burst of pleasure erupt inside you causing you to moan loudly as your body spasms out of your control.'
+		*nl	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/orgasm.gif"></center>'
+		gs 'arousal', 'vaginal', 5, 'sub'
+		gs 'boyStat', 'A5'
+		gs 'cum_call', 'stomach', $boy
+		gs'stat'		
+
+		act 'Orgasm':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagcum.gif"></center>'
+			'After a few minutes you feel Fedor start breathing rapidly and then his breath stops, he then quickly pulls out of you and groans as he cums all over your stomach. Squirt after squirt, Fedor drains his penis over your stomach, he takes a second to catch his breath, then tells you "You were amazing <<$pcs_firstname>>" as he wipes the sweat off his forehead. You take a few seconds to catch your breath then respond, "You were great as well...Thank you."'
+			gs 'arousal', 'vaginal', 5, 'sub'
+			gs 'arousal', 'end'	
+			gs'stat'				
+			
+			act 'Get up':gt 'FedorEv2', 'Wash Up'
+		end		
+	end	
+end
+
+if $ARGS[0] = 'Virgin Sex':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virgintalk.jpg"></center>'
+	'"Fedor...This is my first time" you tell Fedor and he responds with a puzzled look "First time?...ohh you mean ...I see..." Fedor lightly bites his lip and asks "<<$pcs_firstname>>, Will you let me be your first?...I promise I will take it slow and be as gentle as possible but if you aren''t ready we could try another position" he asks while gently rubbing your legs.'
+	
+	act 'Lose Virginity <b><h4><font color=#ff00cc>[Go steady]</font></h4></b>':
+		cls
+		fedorKozlovQW = 20
+		gs'stat'
+		'"It''s ok, I''m...I''m ready" you give him a sweet smile and he replies, "I''m so glad that you will let me be your first. I promise I will be gentle." you lightly grip his hand and respond, "I know I can trust you." Fedor smiles and starts rubbing his penis head against your pussy lips and after a few seconds slowly pushes his <<dick>> centimeter penis into your vagina. You feel his penis move deeper inside until it is pressing against your hymen and a second later, you feel it burst through and you can''t help but let out a loud moan when you feel your cherry get popped.'
+		*nl	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginvag.gif"></center>'
+		gs 'arousal', 'vaginal', 5, 'sub'
+		gs'stat'	
+
+		act 'Continue':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginvag2.gif"></center>'
+			'Fedor stops for a moment to make sure that you are alright. Fedor rubs your cheek with his hand and then starts to thrust. You feel you vagina stretching for his <<dick>> centimeter penis and as he continues to thrust you feel the pain fade and pleasure take it''s place as you lay back and enjoy the pleasure building up.'
+			gs 'arousal', 'vaginal', 5, 'sub'
+			gs'stat'	
+			
+			act 'Cowgirl':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virgincg.gif"></center>'
+				'After a few seconds, Fedor grabs you by your shoulders and lifts you on top of him as he leans back, so that you are now on top of him and you realize that he wants you to ride him, so you do your best to please him by puching his penis deeper inside you. Feeling your lack of experience you begin to feel a little worried about your performance but after studying Fedor''s reactions to your thrusting, you start to feel more confident as you continue riding Fedor''s cock. Fedor suddenly sits up and kisses you passionately.'
+				*nl	
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss.gif"></center>'
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs'stat'				
+				
+				act 'Passionate kiss':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss2.gif"></center>'
+					'You return his kiss as you continue to thrust yourself up and down and soon you feel the pleasure that was building erupt and suddenly all your muscles tenses up, and you feel a warm heat in your groin and your breath stops then suddenly you feel a burst of pleasure erupt inside you. Unable to think of anything but the pleasure you moan so loudly you are almost screaming and you ride out this intense feeling. when it is over you realize that you have just had your first vaginal orgasm then suddenly Fedor pushes you on your back.'
+					*nl	
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/orgasm.gif"></center>'
+					$orgasm_or = 'yes'
+					gs 'arousal', 'end'	
+					gs'stat'	
+					
+					act 'Let him come':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagcum.gif"></center>'
+						'Fedor groans while jerking his cock over your stomach as you lay back enjoying the warmth of his seed washing over you. You can''t help but feel great joy seeing Fedor so blissful. After Fedor''s finishes, he looks down at you with an adoring gaze as he tells you. "<<$pcs_firstname>>, You are the sexiest girl I''ve ever met...Thank you for letting me be your first, you was amazing." and you respond. "You were incredible Fyodor, I will never forget this day." and he leans forward and gives you a gentle kiss.'
+						*nl	
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagkiss.gif"></center>'
+						gs 'arousal', 'kiss', 5, 'sub'
+						gs 'arousal', 'end'		
+						gs 'boyStat', 'A5'
+						gs 'cum_call', 'stomach', $boy
+						gs'stat'			
+						
+						act 'Shower':gt 'FedorEv2', 'Wash Up'
+					end					
+				end				
+			end			
+		end		
+	end		
+	act 'Anal':gt 'FedorEv2', 'Anal Sex'
+end
+
+if $ARGS[0] = 'Anal Sex':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal.jpg"></center>'
+	'"If I lose my virginity now then my mother will kill me but I guess you can...do my ass if you like." Fedor gives you a warm smile. "It''s ok I know how tough parents can be." he kisses you then flips you on your stomach as he licks his fingers and lubricates your asshole. After a few seconds you can feel Fedor''s penis pressing against your anus.'
+	
+	act 'Anal':
+		cls			
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal2.gif"></center>'
+		'Fedor slowly enters your asshole, as you feel your anus tighten up aound his penis, you clutch the pillow with both hands as you feel the rest of your body tensing up. Fedor gives your ass a chance to adjust to his dick for a few seconds then whispers in your ear "<<$pcs_nickname>>, are you ready?" you nod and he begins thrusting and lets out a soft moan. You moan loudly, focusing on his warm penis inside you and enjoying every thrust, bitting your lip as you surrender yourself to the pain and pleasure.'
+		*nl	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal3.gif"></center>'
+		gs 'arousal', 'anal', 5, 'sub'
+		gs 'arousal', 'end'	
+		gs'stat'				
+		
+		act 'Continue':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal4.gif"></center>'
+			'Fedor wraps his arms around your shoulders and starts to fuck you faster and faster and you can''t help but let out high pitched moans as he rapidly fucks your ass.'
+			gs 'arousal', 'anal', 5, 'sub'
+			gs 'arousal', 'end'	
+			gs'stat'	
+			
+			act 'Finish':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/analcum.gif"></center>'
+				'After a few seconds you feel Fedor''s entire body tense as his breathing stops. Fedor then lets out a loud groan and you feel a warmth growing in your ass as he fills your ass with his seed. After a few seconds, Fedor''s body relaxes and you can feel his heart beating as he lies on top of you. He then pulls out and you feel his sperm leaking out of your ass. You take some time to catch your breath as Fedor tells you. "You were amazing <<$pcs_firstname>>." and you respond, "You were incredible yourself." as you give him a blissful smile.'
+				gs 'arousal', 'anal', 5, 'sub'
+				gs 'arousal', 'end'	
+				gs 'boyStat', 'A5'
+				gs 'cum_call', 'anus', $boy		
+				gs'stat'	
+				
+				act 'Clean up':gt 'FedorEv2', 'Wash Up'
+			end			
+		end		
+	end	
+end
+
+if $ARGS[0] = 'Wash Up':
+	cls
+	pcs_mood += 25
+	pcs_willpwr += 25
+	if pcs_health < 100:pcs_health = 100
+	sweat = 7 + rand(0,4)
+	hapri = 1
+	mop = 1
+	cumspclnt = 1
+	gs 'cum_cleanup'	
+	frost = 0
+	FedorLuv = 100
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cleanup.jpg"></center>'
+	'Fedor then picks you up and carries you to the shower where you both carefully wash each other while feeling the warm water washing over you and Fedor''s strong hands' 
+	'lathering your body. You turn around and start washing Fedor and after you both rinse off Fedor wraps his arms around your waist and kisses you very passionately before' 
+	'turning off the water and drying you off. Fedor then grabs his comb and carefully combs your hair then helps you into your clothes as you help him into his.'
+	gs 'arousal', 'kiss', 10
+	gs 'arousal', 'end'		
+	gs'stat'				
+
+	act 'Get ready to leave':
+		cls
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'Fedor walks you out of the bathroom then takes out his phone and asks you to strike a pose. You happily comply, Fedor takes a picture and says, "Thank you <<$pcs_firstname>>, I needed some beautiful wallpaper for my phone." you reply with a smirk "Flatterer." Fedor chuckles then leads you to the front door, where he helps you into your coat then kisses you on the cheek. "<<$pcs_nickname>> are you ready to head home?" you turn to him, smile, nod then grab his hand and start walking home with Fedor.'
+		'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+		*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'		
+		
+		act 'Walk Home':
+			cls
+			fedorkozqw = 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/endkiss.gif"></center>'
+			'As you walk home, you and Fedor start talking about current events and gossiping about some of your classmates until you reach your apartment and Fedor gives you a big hug and a very passionate kiss that lasts for a full minute until you get interrupted by a couple leaving their apartment while shouting at each other. While watching the couple fight Fedor says, "I guess today can''t be perfect for everyone." he then turns to face you. "but it was for me. Thank you <<$pcs_firstname>>." and you respond, "It was a perfect day for us both." as you back into your apartment, blowing Fedor a kiss.'
+			gs 'arousal', 'kiss', 5, 'sub'
+			gs 'arousal', 'end'	
+			gs'stat'
+				
+			act 'Go home':gt 'korrPar'
+		end	
+	end	
+end
+
+if $ARGS[0] =  'Skate':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	'When you and Fedor enter the skating ring, Fedor approaches the counter and pays for the skates then hands you a pair then puts a pair on himself. When both of you have your skates on, Fedor reaches out for your hand.'
+
+	act 'Take his hand':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/ring1.jpg"></center>'
+		'You take Fedor''s hand and he flashes you a smile "Feel free to lean on me if you feel like you are going to fall." as he guides you onto the skating ring.'	
+
+		act 'Skate':
+			VK = rand(1,2)
+			if VK = 1:
+				gt 'FedorEv2', 'Trip'
+			else
+				gt 'FedorEv2', 'No Trip'
+			end	
+		end		
+	end
+	act 'Skate past him':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/ring2.jpg"></center>'
+		'You skate past Fedor. "What are you waiting for? Let''s get skating." Fedor responds, "Planning on starting this date without me huh?" and then begins following you.'
+
+		act 'Skate':	
+			VK = rand(1,2)
+			if VK = 1:
+				gt 'FedorEv2', 'Trip'
+			else
+				gt 'FedorEv2', 'No Trip'
+			end	
+		end
+	end	
+end		
+		
+if $ARGS[0] = 'Trip':	
+	cls
+	pcs_mood += 10
+	pcs_willpwr += 10
+	minut += 50
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/skate1.jpg"></center>'
+	'You both skate together while chatting about your favorite hobbies for almost an hour. While skating you feel your foot stick on a lump in the ice causing you to be slip backward. As you fall, you feel arms grip your shoulders preventing you from falling then look up to see Fedor holding you with a smile on his face "Whoa, That was close." you return the smile. "It''s a good thing you''re here." he responds, "You never need to worry with me around. I''ll keep you safe."'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/skate2.jpg"></center>'
+	
+	act 'Kiss Fedor':gt 'FedorEv2', 'Skate Kiss'
+	
+	act 'Sit down':gt 'FedorEv2', 'Skate End'
+end
+
+if $ARGS[0] = 'No Trip':	
+	cls
+	pcs_mood += 15
+	pcs_willpwr += 15
+	minut += 50
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/skate3.jpg"></center>'
+	'You and Fedor skate together while chatting about your favorite hobbies for what feels like an hour. While you are skating you feel Fedor''s chest press against your back as his hands wrap around your waist. You grip Fedor''s hands with your own as you both continue skating together.'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/skate4.jpg"></center>'
+	
+	act 'Kiss Fedor':gt 'FedorEv2', 'Skate Kiss'
+	
+	act 'Sit down':gt 'FedorEv2', 'Skate End'
+end
+
+if $ARGS[0] = 'Skate Kiss':	
+	cls
+	pcs_mood += 20
+	pcs_willpwr += 20
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/kiss.jpg"></center>'
+	'You slow down the speed of your skating then turn to face Fedor and look into his eyes. You slowly lean your head forward toward his as he does the same. After a second you feel his lips pressed against yours. You and Fedor enjoy a long kiss. After a minute you both pull away from each other then Fedor says, "I had a great time with you <<$pcs_firstname>>. would you like me to walk you home or will you be fine on your own?"'
+	gs 'arousal', 'kiss', 5
+	gs 'arousal', 'end'	
+	gs'stat'		
+	
+	act 'Walk home with Fedor':gt 'korrPar'
+	
+	act 'I''ll be fine on my own':gt 'pavResidential'
+end
+
+if $ARGS[0] = 'Skate End':	
+	cls
+	pcs_mood += 10
+	pcs_willpwr += 10
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Park/skate/skate5.jpg"></center>'
+	'You and Fedor decide that you''ve had enough skating for today, so you both sit down on a nearby bench and discuss your favorite subjucts in school, along with past experiences. After a few minutes of chatting Fedor says, "I had a great time with you <<$pcs_firstname>>. Would you like me to walk you home or will you be fine on your own?"'
+	
+	act 'Walk home with Fedor':gt 'korrPar'
+	
+	act 'I''ll be fine on my own':gt 'pavResidential'
+end
+
+if $ARGS[0] = 'Cafe':	
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/park/VKwip.jpg"></center>'
+	'Fedor walks you to the cafe in the finacial district then orders you some food and as you both sit down and chat, the food arrives and "Hey <<$pcs_nickname>> wanna get something to eat before we leave?"'
+	
+	act 'Go to class':gt 'gschool_lessons', 'afternoon'
+end
+
+if $ARGS[0] =  'Park 2':
+	cls
+	minut += 15
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/walk1.jpg"></center>'
+	'As you and Fedor reach the park, he turns to you with a pleasant smile on his face. "It is such a beautiful day, What would you like to do today?"'
+
+	act 'Head to the swing set':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing.jpg"></center>'
+		'You turn to Fedor and say, "How about we enjoy a relaxing ride on the swing?" Fedor grabs your hand and leads you to the swing set.'		
+
+		act 'Sit on the swing':	
+			cls
+			minut += 15
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing1.jpg"></center>'
+			'Fedor guides you onto the swing then places his hands gently on your waist and begins pushing you on th swing. You can feel the presure of your own weight as you are swinging and the breeze hit your face which causes you to feel more at ease with each swing. After a few minutes of swinging Fedor slows his pace until you stop completely then offers you his hand.'
+			
+			act 'Kiss Fedor':	
+				cls
+				pcs_mood += 20
+				pcs_willpwr += 20
+				FedorLuv += 2
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing2.jpg"></center>'
+				'You take Fedor''s hand and pull his face down toward yours then tilt your head forward, planting your lips on his, in a passioate show of affection. You can feel his tongue enter your mouth as you caress it with yours, feeling some of his saliva dripping into your mouth as you swallow it eagarly while completely lost in the moment. After a minute of passion, Fedor slowly pulls away and says, "<<$pcs_firstname>> you are so beautiful and your tongue...so soft." You give him a smile followed by a wink then grab his shoulders, using them to pull yourself to your feet.'
+				gs 'arousal', 'kiss', 10
+				gs 'arousal', 'end'	
+				gs'stat'		
+				
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end	
+			act 'Take his hand':	
+				cls
+				pcs_mood += 15
+				pcs_willpwr += 15
+				minut += 10
+				gs'stat'
+				'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+				if fedorKozlovQW = -15:
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+				end	
+				'You take Fedor''s hand and he helps you off the swing and onto your feet. Fedor gives you a smile as he asks "Did you enjoy yourself?" You respond, "It was very relaxing. Thanks Fedor." Fedor responds, "Anytime <<$pcs_firstname>>. So would you like me to take you home? or would you like to stay here?"'
+				
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end				
+		end	
+		act 'Get on the swing with Fedor':	
+			cls
+			minut += 10
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing3.jpg"></center>'
+			'You guide Fedor onto the swing as he sits on the swing you climb on top of him which surprises him at first but he then places his hands around you waist as he begins rocking back and forth on the swing, increasing the pace with each swing. You stare into his eyes as you both swing in a very comfortable silence for a few minutes.'
+			
+			act 'Kiss Fedor':	
+				cls
+				pcs_mood += 20
+				pcs_willpwr += 20
+				FedorLuv += 2
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing4.jpg"></center>'
+				'You grab the back of Fedor''s neck then slowly pull it toward you while tilting your head forward until you feel Fedor''s lips make contact with yours. You passionately kiss Fedor while running your fingers though his hair gently. The kiss lasts for a few minutes but soon after you lower your head then look back up at Fedor''s eyes as he says, "<<$pcs_firstname>> you are such a great kisser and your lips are so soft." yuo give Fedor a smile as you reply, "Keep treating me right and I may do more for you in the future." Fedor returns the smile as he responds, "I''ll treat you better than "Right" just stay with me and I''ll show you how a woman should be treated. Anyway are you ready to head home or do you have some bussiness in town to attend to?"'
+				gs 'arousal', 'kiss', 10, 'dom'
+				gs 'arousal', 'end'	
+				gs'stat'		
+				
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end	
+			act 'Hug Fedor':	
+				cls
+				pcs_mood += 15
+				pcs_willpwr += 15
+				FedorLuv += 1
+				minut += 10
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing5.jpg"></center>'
+				'You lean forward and place your head on his shoulder as you wrap your arms around his chest. Fedor returns the hug as he whispers in your ear "You''re really sweet <<$pcs_firstname>>. I always enjoy spending time with you." you respond, "I feel the same way Fedor. I hope we could do this kind of stuff more often." Fedor replies, "I would like that. Are you ready for me to take you home? or would you like to stay here?"'
+				
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end			
+		end	
+	end
+	if VKwip = 100:
+		act 'Go jogging':	
+			cls
+			speed_exp += rand(1, 2)	
+			fat -= 1
+			pcs_mood -= 5
+			pcs_sweat += 30			
+			minut += 30
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing5.jpg"></center>'
+			'VKwip'
+
+			act 'VKwip':	
+				cls
+				agil_exp += rand(1, 2)
+				fat -= 1
+				pcs_mood -= 5
+				pcs_sweat += 30			
+				minut += 30
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/swing5.jpg"></center>'
+				'VKwip'
+
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end
+		end
+	end	
+	act 'Relax under a tree':	
+		cls
+		minut += 15
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tree.jpg"></center>'
+		'You turn to Fedor and say, "It''s really hot today. Let''s get some shade." Fedor nods then grabs your hand and leads you to a nearby tree which you both get comfortable under.'
+
+		act 'Kiss Fedor':	
+			cls
+			pcs_mood += 20
+			pcs_willpwr += 20
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tree2.jpg"></center>'
+			'You and Fedor relax for a few minutes, chatting until you turn around to face Fedor then stare deep into his eyes for a few seconds before leaning forward to kiss him. Your lips press against Fedor''s as his tongue wanders into your mouth. You caress Fedor''s tongue with yours while enjoying his strong arms wraped around your waist. After kissing for a few minutes, Fedor pulls away then whispers "<<$pcs_firstname>> you are the sweetest girl I know and the hotest one as well." you give him a quick kiss before responding "You''re such a charmer." Fedor smiles as he gives you another kiss. "I better take you home before it gets too late or would you rather stay here?"'
+			gs 'arousal', 'kiss', 15, 'dom'
+			gs 'arousal', 'end'	
+			gs'stat'		
+			
+			act 'Take me home':gt 'FedorEv2', 'Park End'
+			
+			act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+		end
+		act 'Relax':	
+			cls
+			minut += 15
+			pcs_mood += 15
+			pcs_willpwr += 15
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tree1.jpg"></center>'
+			'You lay back, leaning against Fedor, feeling his heart beating as you both discuss current events for a few minutes. After you both feel fully rested, Fedor leans over your shoulder and tells you "It''s really good to just relax sometimes isn''t it?" you respond, "Sure is. I had a great time hanging out with you Fyodor." Redor gives you a smile as he responds, "Yeah we should do this again sometime. Are you ready to head home or would you like to stay here a bit longer?"'
+
+			act 'Take me home':gt 'FedorEv2', 'Park End'
+			
+			act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+		end
+		act 'Unzip his pants':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tree2.jpg"></center>'
+			'Fedor lays back against a tree as you sit next to him. You reach down and begin rubbing on his crotch and Fedor immediately looks up at you with a mischievous smile on his face. "In a public park? What a naughty girl you are." he then leans his head forward kissing your lips as you begin unbuttoning his pants.'
+			gs 'arousal', 'foreplay_give', 5, 'dom'
+			gs 'arousal', 'end'	
+			gs'stat'		
+			
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/sex/BJ2.gif"></center>'
+				'You give Fedor a seductive wink as you unbutton his pants then begin jerking his penis while staring him in the eyes before leaning forward and taking his dick into your mouth, caressing it with your tongue, trying your very best to bring him as much pleasure as you can while enjoying the warmth of his penis in your mouth. Fedor tries to stifle his moans as he occasionally looks around to see if anyone has noticed you. After a few more seconds Fedor whispers to you "I can''t last much longer. I''m gonna cum."'
+				gs 'arousal', 'bj', 10, 'dom'
+				gs 'arousal', 'end'	
+				gs'stat'		
+				
+				act 'Make him cum':	
+					cls
+					pcs_mood += 20
+					pcs_willpwr += 20
+					FedorLuv += 4
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/BJ3.gif"></center>'
+					'You give Fedor a wink as you continue sucking on his dick at an increased pace. Fedor tilts his head back then bites his lips as you feel a stream of warm cum filling your mouth and shooting down your throut, you begin swallowing every drop of Fedor''s cum as you stare up at him, enjoying the twitching of his body as he cums in your mouth. After a few seconds Fedor''s body eases as he leans his head against the tree behind him. He then looks down to you. "That was incredible <<$pcs_nickname>>. Thank you." you give Fedor a wink as you respond, "I know how to keep my man satisfed and maybe someday you will be <b>MY MAN</b>." Fedor smiles as he responds, "I better try real hard then." and you give Fedor a seductive wink. Fedor zips his pants then sits up and asks "Are you ready to go home or would you like to remain here?"'	
+					gs 'arousal', 'bj', 5, 'dom'
+					gs 'arousal', 'end'	
+					gs 'boyStat', 'A5'
+					gs 'cum_call', 'mouth', $boy	
+					gs'stat'		
+					
+					act 'Take me home':gt 'FedorEv2', 'Park End'
+					
+					act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+				end
+				act 'Stop before he cums':	
+					cls
+					minut += 5
+					FedorLuv -= 5
+					gs'stat'
+					'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+					'You pull away from him and say, "I would rather not get any cum on me right now." Fedor looks at you with a surprised look on his face. "C''mon <<$pcs_firstname>>, You can''t stop now." you give him a confident grin. "Maybe I''ll give you one later but for now I need to head home. See you later Fedor." You then get up and leave the park.'	
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/endbye.gif"></center>'
+					
+					act 'Leave':minut += 15 & gt 'pavResidential'
+				end						
+			end	
+		end		
+	end
+	act 'Train Tracks':	
+		cls
+		minut += 10
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/park/tracks.jpg"></center>'
+		'You take Fedor by the hand and say, "Let''s hang out at the tracks again." Fedor gives you a warm smile as he leads you to the old tracks. You both approach one of the pair of train tracks that are no longer used.'
+
+		act 'Sit on the tracks':	
+			cls
+			minut += 15
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks1.jpg"></center>'
+			'You and Fedor sit on the train tracks and discuss various topics while enjoying each others company, when you both hear a train approaching a nearby track. As the train speeds by Fedor wraps his arms around you, pressing your head against his chest, trying to keep the gust of wind following the train to get dirt in your eyes. You spend a few seconds both listening to the train speed by with one ear and Fedor''s calm beating heart with the other.'
+			
+			act 'Kiss Fedor':	
+				cls
+				minut += 5
+				FedorLuv += 2
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks2.jpg"></center>'
+				'You slowly turn to look Fedor in the eyss as you lean forward and press your lips gently against his. Fedor returns the kiss, passionately massaging your lips with his as he wraps his hand around you head to keep you close. You then lightly pull away from him and stand up before he pulls your head back to his face and continues kissing you. You both share an extended kiss for another minute before Fedor finally lets go of you and says, "I can''t get enough of your lips <<$pcs_nickname>>. Beautiful and soft just like you." your face already flushed from the kiss, grows more red as you respond. "You''re just too sweet Fedor. Thank you." You give him a warm smile as he asks you "Are you ready to head back home or would you like to hang around here for a bit?"'
+				gs 'arousal', 'kiss', 5
+				gs 'arousal', 'end'	
+				gs'stat'					
+			
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end	
+			act 'Continue chatting':	
+				cls
+				minut += 10
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks3.jpg"></center>'
+				'You lightly pull away from Fedor then continue chatting about various topics, getting to know each other better while enjoying the fresh air. After a few more minutes of chatting Fedor leans back and says, "This was fun. It''s always nice to enjoy moments like these. I should take you home. Are you ready to go or would you like to remain here?"'
+			
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end				
+		end		
+		act 'Lay down between the tracks':	
+			cls
+			minut += 20
+			gs'stat'
+			'You approach the train tracks then sit down between them as Fedor sits next to you and both of you begin chatting about various topics for what feels like an hour and after a while Fedor begins laying down as you wrap your arms around his head lightly pulling him onto your lap, where you begin gently stroking his hair while enjoying his beautiful blue eyes and his warm smile.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks4.jpg"></center>'
+			
+			act 'Kiss Fedor':	
+				cls
+				minut += 5
+				FedorLuv += 2
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks4.jpg"></center>'
+				'You continue running your finger through his hair as he plays with your hair. After a few seconds on staring into his eyes you lower you head and bring your lips to his. You both share a very passionate kiss that lasts for what feels like an hour. Feeling his warm lips against yours and his hot breath on your chin. After a few more minutes you slowly pull away from him and he casually sits up and says, "Damn <<$pcs_firstname>>. Keep kissing me like that and I''m going to fall for you real hard." you respond, "So my plan is working?... Good" You both share a chuckle then Fedor asks "Are you ready to head back home or would you like to relax here for a bit longer?"'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks5.jpg"></center>'
+				gs 'arousal', 'kiss', 5
+				gs 'arousal', 'end'	
+				gs'stat'					
+			
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end	
+			act 'Continue chatting':	
+				cls
+				minut += 10
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/tracks6.gif"></center>'
+				'You and Fedor continue chatting for a few more minutes before Fedor sits up, gives you a kiss on the forhead then checks his phone and says, "Wow, time really flies doesn''t it? I should really get you home before it gets too late or would you rather stay here?"'
+			
+				act 'Take me home':gt 'FedorEv2', 'Park End'
+				
+				act 'I''ll be fine here':minut += 15 & gt 'pavResidential'
+			end				
+		end					
+	end		
+end
+
+if $ARGS[0] = 'Park End':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/park/walk2.jpg"></center>'
+	'Fedor takes you by the hand then leads you to your apartment while you both chat about various things. When you arrive at your apartment, Fedor spins you around then gives you a passionate kiss as he pushes you against the wall for a more passionate kiss, before pulling off you and giving you a wink as he turns away and walks off.'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/endkiss.gif"></center>'
+	gs 'arousal', 'kiss', 15, 'sub'
+	gs 'arousal', 'end'	
+	gs'stat'		
+	
+	act 'Leave':gt 'korrPar'
+end		
+
+if $ARGS[0] = 'Fedor Breakup':
+	cls
+	fedorkozqw = 0
+	fedorKozlovQW = 0
+	FedorLuv = 0
+	fedorkozbreak += 1
+	npc_rel['A5'] = 40
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+	'Fedor approaches you with a serious look on his face. "Look <<$pcs_firstname>>, I''ve noticed that you and I don''t seem to be progressing at all in this relationship and I feel like I would only be holding you back if I continued this, so I think we should break this off...I''m sorry that I couldn''t be the man you needed." and before you get to say a word he turns around and leaves.'
+	
+	act 'Leave':gt 'pavResidential'
+end		
+
+--- FedorEv2 ---------------------------------
+

+ 1304 - 0
locations/FedorEv3

@@ -0,0 +1,1304 @@
+# FedorEv3
+
+if $ARGS[0] = '' or $ARGS[0] = 'Movies':
+	cls
+	minut += 15
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/couple.jpg"></center>'
+	'As you and Fedor arrive at the cinema, Fedor presented the tickets at the entrance then brought you to the concession stand.' 
+	'Fedor then aaks "What can I treat my beautiful girlfirend to today?"'
+				
+	act 'Small Popcorn and medium drink':
+		cls			
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/caress.gif"></center>'	
+		'As you both wait for the food to arrive, you feel Fedor''s hand on your ass and you turn to Fedor, immedietly grabbing the back of his head and giving him a passionate kiss.' 
+		'You can feel one of his hands rise up to your chest and he starts lightly squeezing your <<$titsize>> breasts while carrassing your ass with his other hand.' 
+		'The food arrives causing both of you to pull away from one another. Fedor pays for the food and then holds everything for you as he leads you both to the theater.'
+				
+		act 'Follow Fedor''s lead':gt 'FedorEv3', 'Food'		
+	end	
+	act 'Large Popcorn, snacks and a large drink':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/caress.gif"></center>'			
+		'As you both wait for the food to arrive, you feel Fedor''s hand on your ass and you turn to Fedor, immedietly grabbing the back of his head and giving him a passionate kiss.' 
+		'You can feel one of his hands rise up to your chest and he starts lightly squeezing your <<$titsize>> breasts while carrassing your ass with his other hand.' 
+		'The food arrives causing both of you to pull away from one another. Fedor pays for the food and then holds everything for you as he leads you both to the theater.'
+				
+		act 'Follow Fedor''s lead':gt 'FedorEv3', 'Food 2'
+	end	
+end	
+		
+if $ARGS[0] = 'Food':
+	cls
+	minut += 5		
+	pcs_health += 5	
+	pcs_mood += 15
+	pcs_willpwr += 15
+	pcs_energy += 30
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0				
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/Seat.jpg"></center>'		
+	'Upon entering the theater you notice plenty of empty seats, a few seats in the front next to the big screen,' 
+	'2 seats in the crowded middle and 4 seats in the back in a secluded corner. Fedor turns to you and asks "which seat would you like?'
+				
+	act 'At the front':gt 'FedorEv3', 'Front'
+								
+	act 'in the middle':gt 'FedorEv3', 'Middle'
+								
+	act 'In the back':gt 'FedorEv3', 'Back'
+end	
+		
+if $ARGS[0] = 'Food 2':
+	cls
+	minut += 5
+	pcs_health += 10	
+	pcs_mood += 20
+	pcs_willpwr += 20
+	fat += 2
+	pcs_energy += 60
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0				
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/movies/Seat.jpg"></center>'
+	'Upon entering the theater you notice plenty of empty seats, afew seats in the front next to the big screen,' 
+	'2 seats in the crowded middle and 4 seats in the back in a secluded corner. Fedor turns to you and asks "which seat would you like?'
+				
+	act 'At the front':gt 'FedorEv3', 'Front'
+								
+	act 'in the middle':gt 'FedorEv3', 'Middle'
+								
+	act 'In the back':gt 'FedorEv3', 'Back'
+end	
+	
+if $ARGS[0] = 'Front':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You point to the front seats. "Let''s sit up front, so that we can get the best view in the theater." And Fedor responds, "Just seeing you is the best view I could ask for"' 
+	'You lightly flick his nose with your finger as you reply. "Oh stop, your''re going to make me blush"'
+				
+	act 'Take a seat':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		minut += 70
+		gs'stat'
+		'You and Fedor take a seat and he hands you your popcorn and snacks then gives you a kiss on the cheek as the lights dim and the movie begins.'
+		'You enjoy your snacks and popcorn as you continue watching the movie. You slowly turn to Fedor to see him staring at you with a sweet smile on his face,'
+		'he then leans forward, kissing you while gazing into your <<$pcs_eyecol>> eyes'
+		*nl	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/kissing.jpg"></center>'
+		gs 'arousal', 'kiss', 5
+		gs'stat'
+					
+		act 'Unzip his pants':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex2.jpg"></center>'	
+			'While kissing Fedor, you reach down and with one hand unzip his pants and start to jerk him off.'
+			'He then starts carefully looking around to see if anyone is watching, obviously worried about getting caught'
+			'but the idea only excites you knowing that someone can look your way at any time.'
+			gs 'arousal', 'hj', 5, 'dom'
+			gs'stat'
+		
+			act 'Continue jerking him':
+					VK = rand(1,10)
+					if VK <= 8:
+						gt 'FedorEv3', 'Front HJ'							
+					else
+						gt 'FedorEv3', 'Front Caught'
+					end	
+			end	
+			act 'Finish and continue watching movie':gt 'FedorEv3', 'Movies 2'
+		end				
+		act 'Finish and continue watching movie':gt 'FedorEv3', 'Movies 2'	
+		
+		act 'Go to the restroom':gt 'FedorEv3', 'Restroom Break'
+	end			
+end		
+
+if $ARGS[0] = 'Front HJ':						
+	cls			
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/hj.jpg"></center>'
+	'You continue jerking Fedor off, feeling his warm cock in your hand start to lightly throb with pre cum, hearing his faint moans.'
+	'While enjoying the thrill of jerking Fedor off in a public theater, you start sliding your free hand down your body until it reaches your clitoris'
+	'and you begin softly rubbing your clitoris both worried about someone seeing you and wanting someone to see you at the same time. After a few minutes, Fedor bites his lip'
+	'and lets out a muffled groan as his cock starts to rapidly throb in your hand spraying cum all over your legs and leaking on your hand.'
+	'Fedor leans over to you and whispers in your ear "You know just how to satify me. Thanks <<$pcs_nickname>>" as he kisses your cheek and then your lips.'
+	gs 'boyStat', 'A5'
+	gs 'cum_call', 'clothesgroin', $boy
+	gs 'cum_call', 'hands', $boy
+	gs 'arousal', 'kiss', 5
+	gs 'arousal', 'hj', 5	, 'sub'		
+	gs 'arousal', 'end'				
+	gs 'stat'
+		
+	act 'Finish and continue watching movie':gt 'FedorEv3', 'Movies 2'
+end	
+		
+if $ARGS[0] = 'Front Caught':
+	cls 
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex4.jpg"></center>'
+	'You continue jerking Fedor off, feeling his warm cock in your hand start to lightly throb with pre cum, hearing his faint moans'
+	'but soon you start hearing some whispers to your left and turn to see that a couple has noticed you and the woman is clearly disgusted,'
+	'telling her boyfriend "Look at that girl jerking off that guy in a public theater like some trashy whore! I can''t believe this shit.'
+	'Does she have no shame?" her boyfriend responds, "Some girls just have no morals." while trying to hide the envious look on his face'
+	*nl	
+	'as he watches you and Fedor. You to pull your hand back as you bite your lip with embarrassment while trying to watch the movie, hoping that they will forget what they saw.'
+	gs 'arousal', 'end'
+				
+	act 'Continue watching movie':gt 'FedorEv3', 'Movies 2'
+end	
+								
+if $ARGS[0] = 'Middle':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You point to the middle seats. "I hear the middle is the warmest." and Fedor responds, "It may be warm but you''re the only hot one here."' 
+	'You lightly flick his nose with your finger as you reply, "Oh stop, your''re going to make me blush '
+				
+	act 'Take a seat':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		minut += 70
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/staring.jpg"></center>'
+		'You and Fedor take a seat and he hands you your popcorn and snacks then gives you a kiss on the cheek as the lights dim and the movie begins.' 
+		'You enjoy your snacks and popcorn as you watch the movie. You continue watching the movie until you hear Fedor whisper in your ear "Hey <<$pcs_nickname>> show me your tits."'
+					
+		act 'Pull down your shirt':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/top1.jpg"></center>'	
+			'You pull down your shirt and Fedor begins pawing at your breast giving you an exciting thrill, feeling his strong hands caressing your breasts.' 
+			'After a few seconds Fedor unzips his pants as he whispers in your ear "I want to feel your lips around my dick"'
+			gs 'arousal', 'breasts', 'sub', 'exhibitionism'
+			
+			act 'Suck his dick':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/bj.jpg"></center>'	
+				'You lean over and take Fedor''s dick into your mouth and do your best to suck and massage his dick with your tongue.' 
+				'Fedor combs his fingers through your hair as you continue pleasing him. After a few minutes Fedor lets out a muffled groan then shoots his load into your mouth' 
+				'which you happily swallow before returning to watching the movie like nothing happened.'
+				gs 'boyStat', 'A5'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'bj', 5			
+				gs 'arousal', 'end'				
+				gs 'stat'
+			
+				act 'Finish and continue watching movie':gt 'FedorEv3', 'Movies 2'
+			end
+			act 'Well you need to wait until we are alone':gt 'FedorEv3', 'Movies 2'
+			
+		end
+		act 'Continue watching movie':gt 'FedorEv3', 'Movies 2'
+		
+		act 'Go to the restroom':gt 'FedorEv3', 'Restroom Break'
+	end		
+end		
+								
+if $ARGS[0] = 'Back':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You point to the back seats. "Let''s sit in the back where we can get some privacy." and Fedor responds, "Like it in the back huh?"' 
+	'You lightly flick his nose with your finger as you reply, "Oh stop, your''re going to make me blush'
+				
+	act 'Take a seat':
+		cls
+		pcs_mood += 20
+		pcs_willpwr += 20
+		minut += 60
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/staring.jpg"></center>'
+		'You and Fedor sit on 2 of the back seats and he hands you your popcorn and snacks then gives you a kiss on the cheek as the lights dim and the movie begins.' 
+		'You enjoy your snacks and popcorn as you watch the movie. You continue watching the movie when you hear Fedor whisper in your ear.' 
+		'"We''re all alone back here <<$pcs_firstname>>, wanna have some fun?"'
+					
+		act 'I''m always up for some fun':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex3.jpg"></center>'
+			'Fedor gives you a lustful smirk as he lean forwad and gives you a passionate kiss. You soon feel Fedor pulling your top down, exposing your breasts which fills you with excitement. You reach out for Fedor groin as he kisses you slowly unzipping his pants and then gently stroking his cock after a minute Fedor whispers in your ear. "<<$pcs_nickname>> I dare you to get down on your knees and suck me off right here in the theater."'
+			gs 'arousal', 'kiss', 5						
+			gs 'stat'
+
+			act 'Challenge accepted':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex5.jpg"></center>'
+				'You slide down to your knees as Fedor quietly pulls down his pants and leans back. You start leaning forward to suck his dick when you hear the guy sitting in the seat in front of you cough which starles you for a second causing you to start second guess what you are doing until you turn to Fedor and see the blissful smile on his face almost begging you to continue.'	
+				
+				act 'Suck his dick':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex6.jpg"></center>'
+					'Not wanting to disappoint him, you start sucking Fedor''s dick enjoying both the wamth of his penis and the excitement of giving a blowjob in a public theater. Fedor starts petting your head as you continue to suck him and after 2 minutes he suggests. "Pull down your pants and ride me." with a confident smile on his face.'
+					gs 'arousal', 'bj', 5							
+					gs 'stat'
+					
+					act 'As you wish':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex7.jpg"></center>'
+						'You nerviously pull down your pants and slowly rise up, very worried that someone might turn around and see you but you gather your courage and slide Fedor''s dick into your pussy and start riding him while your heart pounds with both fear and excitement. A few minutes pass then Fedor grabs you by your hips and pushes you onto the nearby seat.'
+						gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+						gs'stat'								
+						
+						act 'Spread your legs for him':
+							VK = rand(1,10)
+							if VK <= 7 and FedorLoveTalk < 1:
+								gt 'FedorEv3', 'Back Sex'
+							elseif VK <= 7 and FedorLoveTalk = 1:
+								gt 'FedorEv3', 'Back Preg'
+							else	
+								gt 'FedorEv3', 'Back Caught'
+							end
+						end	
+					end
+				end		
+			end
+			act 'Maybe next time':gt 'FedorEv3', 'Movies 2'
+		end
+		act 'Watching the movie is fun enough for me':gt 'FedorEv3', 'Movies 2'
+		
+		act 'Go to the restroom':gt 'FedorEv3', 'Restroom Break'
+	end		
+end		
+		
+if $ARGS[0] = 'Back Sex':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex8.jpg"></center>'
+	'You spread your legs and feel Fedor enter you, causing you to moan lightly and Fedor start to thrust faster. You completely forget where you are as you enjoy Fedor roughly fucking your pussy until he lets out a muffled groan as he pulls out of you and paints your stomach with his seed. After a few seconds he pulls up his pants as you put on yours. "You are a great fuck <<$pcs_firstname>>. I knew I picked the right girl when I chose you." he then kisses your lips.'
+	gs 'boyStat', 'A5'
+	gs 'cum_call', 'stomach', $boy
+	gs 'arousal', 'kiss', 5
+	gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'		
+	gs 'arousal', 'end'				
+	gs 'stat'			
+	
+	act 'Finish watching movie':gt 'FedorEv3', 'Movies 2'
+end	
+
+if $ARGS[0] = 'Back Caught':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex9.jpg"></center>'	
+	'You spread your legs and feel Fedor enter you, causing you to moan lightly and Fedor start to thrust faster. You completely forget where you are as you enjoy Fedor roughly fucking your pussy until he lets out a muffled groan as he pulls out of you and paints your stomach with his seed. You open your eyes to see a flashlight shined on you, then Fedor exclaims. "Oh shit!" as many people in the theater are staring at both of you. You quickly put on you pants while trying to cover yourself as much as possible then you and Fedor quickly walk out of the theater.'
+	gs 'boyStat', 'A5'
+	gs 'cum_call', 'stomach', $boy	
+	gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'	
+	gs 'arousal', 'end'				
+	gs 'stat'				
+	
+	act 'Leave the theater':gt 'FedorEv3', 'Movies 3'
+end	
+	
+if $ARGS[0] = 'Back Preg':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'Fedor leans forward and whispers in your ear. "Would you like to try for a baby here or would you like me to pull out?"'		
+	
+	act 'Cum inside me':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/sex/kinosex8.jpg"></center>'
+		'You spread your legs and feel Fedor enter you, causing you to moan lightly and Fedor start to thrust faster. You completely forget where you are as you enjoy Fedor roughly fucking your pussy until he lets out a muffled groan,' 
+		'filling you with his seed. After a few seconds he pulls up his pants as you put on yours. He looks you in the eyes. "<<$pcs_nickname>> You are so precious to me." he then kisses you softly as you both get seated looking around to see if anyone noticed.'
+		*nl	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'	
+		gs 'boyStat', 'A5'
+		gs 'cum_call', '', $boy
+		gs 'arousal', 'kiss', 5
+		gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'		
+		gs 'arousal', 'end'				
+		gs 'stat'			
+	
+		act 'Finish watching movie':gt 'FedorEv3', 'Movies 2'
+	end	
+	act 'Pull out please':
+		VK = rand(1,10)
+		if VK <= 7:
+			gt 'FedorEv3', 'Back Sex'
+		else	
+			gt 'FedorEv3', 'Back Caught'
+		end	
+	end		
+end	
+	
+if $ARGS[0] = 'Movies 2':
+	cls
+	pcs_mood += 20
+	pcs_willpwr += 20
+	EndMovie = 1
+	minut += 5			
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'The movie ends and the crowd gets up and starts leaving the theater. Fedor collects the popcorn, drinks and candy bags and throws them in the trash then returns to you. Fedor kisses you on the cheek and asks "Are you ready to go home?"'
+				
+		act 'I''m ready to go home':gt 'FedorEv3', 'Movies 3'
+	if FedorRest = 0:
+		act 'I''d like to wash up first':gt 'FedorEv3', 'Restroom Fedor'
+	else
+		act 'I''d like to wash up first':gt 'FedorEv3', 'Restroom'
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Break':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You turn to Fedor. "I need to use the restroom, I''ll be back soon." as you lean over and give Fedor a quick kiss. Fedor then asks "Will you be alright on your own or would you like me walk you to the restroom?"'
+	
+	act 'Walk with me':gt 'fedorev3', 'Restroom Fedor'
+	
+	act 'I''ll be fine on my own':gt 'fedorev3', 'Restroom'
+end
+		
+if $ARGS[0] = 'Restroom':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/Restrooms.jpg"></center>'
+	'You give Fedor a kiss on the cheek then head to the restroom, once you get there you see the men''s restroom and the ladies restrooom.'
+	
+	act 'Enter the ladies room':gt 'FedorEv3', 'Ladies Room'
+	
+	act 'Enter the Men''s room':gt 'FedorEv3', 'Mens Room'			
+end	
+
+if $ARGS[0] = 'Ladies Room':
+	cls
+	$metka = 'Ladies Room'
+	$loc = 'FedorEv3'
+	$metkaM = 'Ladies Room'
+	$locM = 'FedorEv3'
+	$location_type = 'bathroom'		
+	gs'stat'
+	'<center><b><h4><font color=#ff00cc>Restroom</font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/LadiesRestroom.jpg"></center>'
+	'The ladies room is very clean and has 3 <a href="exec:gt ''mirror'', ''start''">mirrors</a>, 3 sinks and 4 stalls.'
+	
+	act 'Have a quick wash (0:10)':
+		VK = rand(1,10)
+		if VK <= 4:
+			gt 'FedorEv3', 'Restroom Lady'
+		else
+			gt 'FedorEv3', 'Restroom Wash'
+		end	
+	end	
+	
+	if EndMovie = 1:
+		act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+	else
+		act 'Go back to theater':gt 'FedorEv3', 'Movies 2'
+	end	
+end		
+		
+if $ARGS[0] = 'Mens Room':
+	cls
+	$metka = 'Mens Room'
+	$loc = 'FedorEv3'
+	$metkaM = 'Mens Room'
+	$locM = 'FedorEv3'	
+	$location_type = 'bathroom'		
+	gs'stat'
+	'<center><b><h4><font color="blue">Restroom</font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/LadiesRestroom.jpg"></center>'
+	'The Men''s room is a little dirty and has a long <a href="exec:gt ''mirror'', ''start''">mirror</a>, 2 sinks and 4 stalls.'		
+
+	act 'Have a quick wash (0:10)':
+		VK = rand(1,20)
+		if VK <= 5 and WithFedor = 0:
+			gt 'FedorEv3', 'Restroom Man'
+		elseif VK <= 10 and WithFedor = 0:
+			gt 'FedorEv3', 'Restroom Man 2'
+		elseif VK <= 15 and WithFedor = 0:
+			gt 'FedorEv3', 'Restroom Gang'						
+		elseif VK <= 8 and WithFedor = 1:
+			gt 'FedorEv3', 'Restroom Rescue'
+		else
+			gt 'FedorEv3', 'Restroom Wash 2'
+		end	
+	end	
+	
+	if EndMovie = 1:
+		act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+	else
+		act 'Return to theater':gt 'FedorEv3', 'Movies 2'
+	end	
+end	
+		
+if $ARGS[0] = 'Restroom Fedor':
+	cls
+	FedorRest = 1
+	WithFedor = 1
+	gs'stat'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You and Fedor head toward the restroom while chatting about the movie on the way there. When you both arrive, Fedor tells you "Go on <<$pcs_nickname>>, I''ll wait for you here."'
+				
+	act 'Enter the ladies room':gt 'FedorEv3', 'Ladies Room'
+
+	act 'Enter the Men''s room':gt 'FedorEv3', 'Mens Room'			
+	
+	act 'Pull Fedor in the men''s restroom':gt 'FedorEv3', 'Fedor Restroom'	
+end	
+	
+if $ARGS[0] = 'Fedor Restroom':
+	cls
+	FedorRestTimes += 1
+	gs 'boyStat', 'A5'
+	gs'stat'
+	if fedorKozlovQW < -10:
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end	
+	'You grab Fedor by the hand and pull him into the restroom with you. Fedor is surprised at first then starts to fondle your breasts as you pull down his pants then kneel in front of him.'
+				
+	act 'Blowjob':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/Fedrest1.jpg"></center>'	
+		'You wrap your lips around Fedor''s cock and begin sucking and massaging his dick. Fedor rubs your head as he remarks "That''s my girl, Keep sucking just like that." so you continue at the same pace until Fedor then lifts you up by the shoulders and asks you "Which do you prefer? front or back?"'
+		gs 'arousal', 'bj', 5, 'sub'	
+		
+		act 'Front':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestF1.jpg"></center>'	
+			'Fedor lifts you up to your feet with almost no effort then pulls down you shirt exposing your breasts, he then lifts you up by your waist and places you on the sink where he inserts his <<dick>> centimeter penis into you pussy. Fedor starts slow then begins to pick up the pace.'
+			gs 'arousal', 'vaginal', 5, 'sub'	
+			
+			act 'Continue':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestF2.jpg"></center>'	
+				'Fedor continues pounding your pussy harder and harder causing you to moan uncontrollably, feeling the growing pleasure building up and watching Fedor''s eyes hungrily craving you. After a few seconds Fedor tells you that he is ready to cum.'
+				gs 'arousal', 'vaginal', 5, 'sub'			
+				
+				act 'Get on your knees':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface1.gif"></center>'	
+					'You pull Fedor''s cock out of you then get down on your knees just as Fedor groans and paints your face with his seed. You sit for a few seconds feeling his warm cum slowly' 
+					'leaking down your face as Fedor puts his pants back on then says, "Your pussy is so tight <<$pcs_firstname>>, I feel like I could fuck you for days but I should get you back' 
+					'home before it gets too late." Fedor then helps you back to your feet and gets you dressed up before walking to the sink to get cleaned up.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/Fedrestcum.jpg"></center>'
+					gs 'boyStat', 'A5'
+					gs 'cum_call', 'face', $boy
+					gs 'arousal', 'kiss', 5
+					gs 'arousal', 'vaginal', 5, 'sub'		
+					gs 'arousal', 'end'				
+					gs 'stat'	
+					
+					act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'
+				end	
+				act 'Tell him to pull out':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestF2.jpg"></center>'	
+					'You say to Fedor. "Pull out please, I can''t afford to get pregnant" he then pulls out and groans as he sprays his warm semen all over your stomach. You then grab him by' 
+					'the back of his head and bring his lips to yours, sharing a deep passionate kiss together and Fedor whispers in your ear "<<$pcs_firstname>> you''re as amazing as ever."' 
+					'he then puts his pants back on and helps you get dressed before leading you to the sink to get cleaned up.'	
+					*nl
+					'<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumBelly4.gif"></center>'
+					gs 'boyStat', 'A5'
+					gs 'cum_call', 'stomach', $boy
+					gs 'arousal', 'kiss', 5
+					gs 'arousal', 'vaginal', 5, 'sub'		
+					gs 'arousal', 'end'				
+					gs 'stat'	
+					
+					act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'							
+				end
+				if FedorLoveTalk = 1:
+					act 'Tell him to cum inside':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestF2.jpg"></center>'
+						'You tell Fedor "Please cum inside me!" he nods, then you feel a warmth filling your womb, his penis throbing inside you filling you up more and more with each pump.' 
+						'Fedor catches his breath then looks down to you. "I''m so lucky to have you <<$pcs_firstname>>, I hope we remain together forever." You can feel your cheeks growing' 
+						'red as you reply, "Fedor you are so sweet, There is no one I care about more than you." as you both share a kiss before getting dressed.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Home/bedroom/cum/cum5.gif"></center>'
+						gs 'boyStat', 'A5'
+						gs 'cum_call', '', $boy
+						gs 'arousal', 'kiss', 5
+						gs 'arousal', 'vaginal', 5, 'sub'
+						gs 'arousal', 'end'				
+						gs 'stat'	
+
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'
+					end	
+				end	
+			end	
+		end		
+		act 'Back':					
+			cls
+			gs 'boyStat', 'A5'
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestB.jpg"></center>'		
+			'Fedor grabs you by your waist and flips you around then pushes you onto the sink as he pulls your shirt open exposing your breasts. You soon feel his <<dick>> centimeter Penis enter your vagina giving you jolt of stimulation as he begins to thrust his hips.'
+			gs 'arousal', 'vaginal', 5, 'sub'
+			
+			act 'lean against the sink':
+				cls
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestB2.jpg"></center>'	
+				'After a few seconds Fedor leans forward and kisses your neck while giving your breasts a gentle squeeze. You can feel Fedor increasing the pace of his thrust which causes your growing pleasure to build up. You turn to face Fedor to see his lustful eyes meet yours.'
+				gs 'arousal', 'vaginal', 5, 'sub'								
+				
+				act 'Rest leg on the sink':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestB3.jpg"></center>'	
+					'As you feel Fedor pounding your pussy you turn to the mirror over the sink to watch yourself getting fucked. At that time the reality of the situation sinks in and you think' 
+					'to yourself "I am watching myself being fucked in a public bathroom that someone can walk into at any moment." and the thought excites you so much that you don''t even notice' 
+					'that you are almost climbing onto the sink trying to get Fedor to penetrate you deeper. After a few seconds Fedor tells you that he is ready to cum.'
+					gs 'arousal', 'vaginal', 5, 'sub'									
+					
+					act 'Get on your knees':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface1.gif"></center>'	
+						'You pull Fedor''s cock out of you then get down on your knees just as Fedor groans and paints your face with his seed. You sit for a few seconds feeling his warm semen' 
+						'slowly leaking down your face as Fedor puts his pants back on then remarks "Your pussy is so tight <<$pcs_firstname>>, I feel like I could fuck you for days but I should' 
+						'get you back home before it gets too late." Fedor then helps you back to your feet and gets you cleaned up before walking you out of the restroom.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/Fedrestcum.jpg"></center>'						
+						gs 'boyStat', 'A5'
+						gs 'cum_call', 'face', $boy
+						gs 'arousal', 'kiss', 5
+						gs 'arousal', 'vaginal', 5, 'sub'		
+						gs 'arousal', 'end'				
+						gs 'stat'	
+					
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'	
+					end	
+					act 'Tell him to pull out':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestB3.jpg"></center>'	
+						'You tell Fedor "Pull out please, I can''t afford to get pregnant" he then pulls out and groans as he sprays his warm semen all over your ass.' 
+						'You then spin around and grab him by the back of his head, bringing his lips to yours, sharing a deep passionate kiss together. Fedor whispers' 
+						'in your ear "<<$pcs_firstname>> you''re as amazing as ever." he then puts his pants back on and helps you get cleaned before you both exit the restroom together.'	
+						*nl
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+						gs 'boyStat', 'A5'
+						gs 'cum_call', 'stomach', $boy
+						gs 'arousal', 'kiss', 5
+						gs 'arousal', 'vaginal', 5, 'sub'		
+						gs 'arousal', 'end'				
+						gs 'stat'	
+					
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'													
+					end
+					if FedorLoveTalk = 1:
+						act 'Tell him to cum inside':
+							cls
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/fedor/FedrestB3.jpg"></center>'	
+							'You tell Fedor "Please cum inside me!" he then nods and then you feel a warmth filling your womb, his penis throbing inside you filling you up' 
+							'more and more with each pump. Fedor catches his breath then look down to you and says, "I''m so lucky to have you <<$pcs_firstname>>, I hope we' 
+							'remain together forever." You can feel your cheeks growing red as you reply, "Fedor you are so sweet, I can''t picture myself with anyone other' 
+							'than you." as you both share a kiss before getting dressed.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum10.gif"></center>'
+							gs 'boyStat', 'A5'
+							gs 'cum_call', '', $boy
+							gs 'arousal', 'kiss', 5
+							gs 'arousal', 'vaginal', 5, 'sub'			
+							gs 'arousal', 'end'				
+							gs 'stat'	
+
+							act 'Wash up':gt 'FedorEv3', 'Restroom Wash 3'						
+						end	
+					end		
+				end	
+			end	
+		end	
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Lady':
+	cls
+	minut += 5
+	FedorRestTimes += 3
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady1.jpg"></center>'
+	'As you approach the sink you see a woman. She appears to be applying her mascara. You stand next to her and she gives you a friendly smile as she continues brushing her eyelashes. You turn on the water and prepare to wash up when you notice that the girl is checking you out while biting her lip clearly aroused.'
+	
+	act 'Seduce her':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady2.jpg"></center>'
+		'You ask "See anything you like?" she shyly turns away clearly embarassed that you caught her checking you out, so you decide to turn things up. You approach her from' 
+		'behind then place your hands on her hips. The woman turns her head to face you with a lustful smile as you rub your hands down her leg then back up her skirt enjoying the feel of her soft smooth skin.'
+		gs 'arousal', 'foreplay_give', 5, 'lesbian', 'dom'
+		gs 'stat'				
+	
+		act 'Undress her':
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady3.jpg"></center>'
+			'When you notice that she isn''t objecting you begin to undress her while consistanly kissing her body as you expose it. After she is undressed you turn her around and start licking her breast as you undress yourself' 
+			'and soon you are both undressed with your nude bodies pressed against one another as you share a passionate kiss.'
+			*nl	
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/kiss1.jpg"></center>'
+			gs 'arousal', 'kiss_give', 5, 'lesbian', 'dom'
+			gs 'arousal', 'foreplay_give', 5, 'lesbian', 'dom'
+			gs 'stat'					
+			
+			act 'Give her cuni':
+				cls
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady4.jpg"></center>'
+				'You slowly break off the kiss and then lightly push her down onto a nearby chair and get down on all fours and crawl to her in a catlike manner, trying to entertain her as you make your way to her pussy.' 
+				'When you arrive she reaches out for your head with her hand and lightly pets you as you bury your head in between her legs. You do your best to continue stimulating her, Never taking your tongue off her clitoris.'
+				gs 'arousal', 'cuni_give', 5, 'lesbian', 'dom'
+				gs 'stat'							
+				
+				act 'Continue':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady5.jpg"></center>'
+					'You continue licking her as she leans further back trying to push her pussy further in your face but then slips off the chair, you do your best to catch her and then you both laugh as you help her back up.' 
+					'"I''m such a clutz. But let''s not let this stop us" She then waves you toward her and as you bury your face inbetween her legs. She lift her right leg over her head. You can''t help but think to yourself' 
+					'"She must be a cheerleader" as you continue licking her clit while enjoying the sight of her juices leaking down her leg.'
+					gs 'arousal', 'cuni_give', 5, 'lesbian', 'dom'
+					gs 'stat'	
+					
+					act 'Make her cum':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady5.jpg"></center>'
+						'You start to pick up the pace and she begins moaning louder as you get her closer to her orgasm. You alternate between your tongue and finger to keep your tongue from getting tired and after a few minutes you can feel her body start to spasm and her legs begin to give out. You do your best to support her weight as you finish her off.' 
+						'After her body relaxes you lick her juices off both her legs and her pussy before holding her in your arms, kissing her passionately. After a minute you both help each other get dressed then the girl tells you "That was incredable! Thank you so much, That was exactly what I needed." as she moves in for one last kiss before leaving.'
+						*nl	
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/kiss2.jpg"></center>'
+						gs 'arousal', 'kiss', 5,'lesbian', 'dom'
+						gs 'arousal', 'end'
+						gs 'stat'							
+
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash'
+					end								
+				end	
+			end				
+			act 'Pull her head to your crotch':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady6.jpg"></center>'
+				'You both continue kissing as your hands wander down her body, caressing her curves until you grab her by her hair then pull away from her as you begin laying backward on a nearby wall,' 
+				'lightly pulling her head down to your crotch. She looks up at you then begins eagarly licking your vaginal lips while working her way up to your clitoris.'
+				gs 'arousal', 'cuni', 5, 'lesbian', 'dom'
+				gs 'stat'	
+						
+				act 'Rest leg on counter':
+					cls
+					minut -= 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady7.jpg"></center>'
+					'As the woman is licking your clitoris, you raise your right leg and place your foot on the counter giving the woamn easier access to your vagina which she takes full advantage of as she shoves her tongue inside your pussy,' 
+					'lapping up your juices. She returns to licking your clitoris doing the best she can to pleasure you which is working as you can feel the pleasure building quickly as she increases her pace.'
+					gs 'arousal', 'cuni', 5, 'lesbian', 'dom'
+					gs 'stat'
+
+					act 'Cum':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/lady7.jpg"></center>'
+						'The pleasure begins building quickly as you close your eyes, surrendering yourself to the pleasure and soon you feel your entire body begin to heat up as you reach your breaking point. You suddenly feel your muscles stiffen as you hit an explosive' 
+						'orgasm causing your body to twitch and spasm as her soft tongue continues massaging your clit. You ride out your orgasm then take a few seconds to catch your breath before opening your eyes to see the woman''s face in front of yours as she says,' 
+						'"It looks like you enjoyed yourself. I guess I still have it. I have to go now but I had a great time and I do hope to see you again." she then gets dressed and leaves the restroom.'
+						*nl	
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/ladies/kiss1.jpg"></center>'
+						$orgasm_or = 'yes'
+						gs 'arousal', 'kiss', 5, 'lesbian'
+						gs 'arousal', 'end'
+						gs 'stat'							
+
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash'
+					end	
+				end
+			end
+		end
+	end	
+	act 'Ignore her and wash up':gt 'FedorEv3', 'Restroom Wash 2'
+end
+
+if $ARGS[0] = 'Restroom Man':
+	cls
+	minut += 5
+	FedorRestTimes += 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/urinal.jpeg"></center>'
+	'You approach the sink and turn on the water as a man enters the restroom and starts to use the urinal. The man clearly doesn''t notice you.'
+	
+	act 'Walk up behind him and grab his penis':
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene5.jpg"></center>'
+		'You walk up behind him and wait for him to finish peeing then you reach out and grab his penis. The man jumps up obviously surprised, He quickly turns to face you with a skocked look on his face but after looking you up and down he smiles and lays against the wall and enjoys your touch gently stroking your hair as you continue to slowly stroke his penis.'
+		gs 'arousal', 'hj', 5, 'dom'					
+		gs 'stat'
+		
+		act 'Anal':
+			cls 				
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/SceneA1.jpg"></center>'
+			'The man grabs your shoulders and spins you around then begins undressing you as he kisses your ass and legs, he then turns on the tap and wets his fingers then uses them to lube up your anus. The man rubs his dick against your anus and then thrusts his dick in your ass causing you to moan loudly.' 
+			'The pain in your rectum is sharp at first but as he remains still inside you your asshole begins to adjust to his cock.'
+			gs 'arousal', 'anal', 5, 'sub'					
+			gs 'stat'
+			
+			act 'Continue':
+				cls	
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/SceneA2.jpg"></center>'
+				'The man begins thrusting his hips rubbing his cock against your anus slow at first then he continues picking up the pace until all you can hear is the smacking of his hips against your ass. You are moaning uncomtrolably as you feel the pain fade and pleasure build. You turn your head to see a reflection of yourself and the reality of the situation dawns on you causing you to think to yourself' 
+				'"I can''t believe that I am being fucked by a stranger in a public bathroom." before you can finish your thought you hear the man say, "OH FUCK I''m gonna cum!"'
+				gs 'arousal', 'anal', 5, 'sub', 'exhibitionism'				
+				gs 'stat'
+				
+				act 'Get down on you knees':
+					cls				
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface1.gif"></center>'
+					'You quickly pull off him and get on your knees in front of him as he qroans then paints your face with his seed. He continues to spray his load in your face until he has nothing left, he then takes a few seconds to catch his breath while admiring the view. You begin wiping the cum off of your eyelids as the man says,' 
+					'"Woah, I have to be the luckiest guy in the world right now, You were amazing girl. I hope we meet again." he then pulls up his pants then leaves the restroom.'
+					gs 'cum_call', 'face'						
+					gs 'arousal', 'hj', 5, 'sub'					
+					gs 'arousal', 'end'
+					gs 'stat'
+					
+					act 'Wash up':gt 'FedorEv3', 'Restroom Wash 2'
+				end
+				act 'Let him cum inside':
+					cls				
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal1.gif"></center>'
+					'Instead of pulling off him you start pushing against his crotch and he grabs your hips firmly as he groans and fills your ass with his seed. you can feel him pumping his seed into your ass almost filling you up completely, he then suddenly pulls out of you' 
+					'sending a splurt of semen to leak out of your ass and drip on the floor. The man watches you for a few seconds then says, "Damn girl, I don''t know what I did to deserve this but thank you, You are a real angel." He kisses you on the forehead as he pulls up his pants then leaves the restroom.'
+					gs 'cum_call', 'anus'							
+					gs 'arousal', 'anal', 5, 'dom'					
+					gs 'arousal', 'end'
+					gs 'stat'
+					
+					act 'Wash up':gt 'FedorEv3', 'Restroom Wash 2'
+				end	
+			end
+		end	
+	end
+	act 'Ignore him and continue washing up':gt 'FedorEv3', 'Restroom Wash 2'		
+end	
+
+if $ARGS[0] = 'Restroom Man 2':
+	cls
+	FedorRestTimes += 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene.jpg"></center>'
+	'You approach the sink and turn on the water then suddenly you feel your shirt being pulled down and someones hands on your breasts. You jump in shock and the man behind you whispers in your ear "Keep quiet bitch and this will be over quickly."'
+	gs 'arousal', 'foreplay', 5, 'sub', 'rough'					
+	gs 'stat'
+	
+	act 'Submit':
+		cls				
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene1.jpg"></center>'
+		'Not wanting to risk angering him you remain silent and the guy pulls you to the ground where he removes your clothes while he whispers in your ear "You know your place, Good girl." as he pats your head. After he removes your pants he stands up and points to the sink. "Now get over there and spread you legs!"'
+		
+		act 'Do as he says,':
+			cls	
+			minut -= 5			
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene2.jpg"></center>'
+			'You move to the sink then spread your legs he then pushes you onto the sink and penetrates your pussy causing slight pain at first, then he begins thrusting his hips,' 
+			'fucking you at a modest pace. You do your best to make the most of it thinking to yourself "He may be raping me but I might as well try to enjoy it." as he starts pumping even harder.'
+			gs 'arousal', 'vaginal', 5, 'sub', 'rough'							
+			gs 'stat'
+			
+			act 'Continue':
+				cls 				
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene3.jpg"></center>'
+				'after a few minutes the guy pulls away from you and start masterbating as he tells you "Get down on your knees and finish me off" You obediently do as he asks. Crawling to him then looking up at him as you wrap your lips around his dick, doing your best to make him cum as quickly as possible. After a few seconds the guy says, "I''m cumming."'
+				gs 'arousal', 'bj', 5, 'sub', 'rough'							
+				gs 'stat'
+				
+				act 'Nod':
+					cls	
+					PyotrPhoto = 1					
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface1.gif"></center>'
+					'The man reaches into his pocket and takes out his phone then he pulls his dick out of your mouth. "Open up and say ahh." he then groans as he shoots his load' 
+					'over your face and in your mouth. You can feel his cum leaking down your face and hear the snaping of photos as the man is taking pictures of you with his phone,' 
+					'thinking to yourself "I hope these photos don''t come back to haunt me." he then says, "Good girl, I can''t wait until we meet again, luckily I''ll have something' 
+					'to remember you by." as he waves his phone over your face and he then pulls up his pants and walks out of the restroom.'
+					gs 'cum_call', 'face', 'Pyotr'
+					gs 'cum_call', 'mouth', 'Pyotr'
+					gs 'arousal', 'bj', 5, 'sub', 'rough'							
+					gs 'arousal', 'end'
+					gs 'stat'
+					
+					act 'Wash up':gt 'FedorEv3', 'Restroom Wash 2'
+				end	
+			end
+		end	
+	end	
+	act 'Splash water in his face':
+		VK = rand(1,3)
+		if VK = 1:
+			gt 'FedorEv3', 'Restroom Escape'
+		else
+			gt 'FedorEv3', 'Restroom Rape'
+		end	
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Escape':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/mensrestroom.jpg"></center>'
+	'You carefully move your hand under the tap and fill your hand with water and then splash it in the attackers face and luckily it stuns him long enough for you to escape.'
+				
+	if EndMovie = 1:
+		act 'Escape':gt 'FedorEv3', 'Movies 3'
+	else
+		act 'Escape':gt 'FedorEv3', 'Movies 2'
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Rape':
+	cls
+	pcs_health -= 10				
+	pcs_mood -= 20
+	pcs_willpwr -= 5	
+	pain['tummy'] += 15
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/rape.jpg"></center>'
+	'You carefully move your hand under the tap and fill your hand with water and then splash it in the attackers face but sadly it only makes him angrier, he then slams you' 
+	'against the wall and then punches you in the stomach as he strips you. The man grabs you by the throat as he exclaims "STUPID BITCH! I warned you but you had to be a brave' 
+	'little bitch! now I''m going to take my time with you!"'
+	
+	act 'Plead':
+		cls
+		minut -= 5
+		sub += 3
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/rape1.gif"></center>'
+		'You plead with the man but his only response is "Shut the fuck up! The only thing a whore like you is good for is a getting fucked, so spread your legs and keep quiet!"' 
+		'he then restrains your arms with one hand as he rubs your clitoris with his other. Your heart pounding as you get the growing feeing of helplessness as you are unable to stop this man in any way.'
+		gs 'arousal', 'vaginal', 5, 'sub', 'rough'	
+		gs'stat'
+		
+		act 'Wait and see what he does next':
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape3.gif"></center>'
+			'He then grabs you by the hair and pulls you up to his dick. You try your best to break free but he is too strong, Just as he lifts his hand to slap you, You raise your hand in submission and then wrap your lips around his cock doing your best to satify him, so that this can end as quickly as possible.' 
+			'he then says, "You''re starting to understand your place. Good! Now get up bitch!"'
+			gs 'arousal', 'bj', 5, 'sub', 'rough'	
+			gs'stat'				
+			
+			act 'Do as he says':
+				cls
+				pain['asshole'] += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape1.gif"></center>'
+				'You start preparing to stand up when he lifts you up by your shoulders and then unzips his pants and you can feel his dick pressing against your anus. You plead' 
+				'with him "Please at least lube..." He then drives his cock into your ass causing a sharp pain. You scream loudly but then he places his hand over your mouth and' 
+				'whispers in your ear "No screaming for you. The only thing I want to hear out of your mouth is "Fuck me harder."'
+				gs 'arousal', 'anal', 5, 'sub', 'rough'	
+				gs'stat'				
+					
+				act 'Let him fuck you':
+					cls
+					pain['asshole'] += 5
+					minut -= 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape1.gif"></center>'
+					'You continue to give in knowing that there is nothing more you can do. Feeling both pain and fear not knowing what will happen next, how long will this last or if he will even let you go after he is done. You can only try your best to distract yourself from the almost unbearable pain.'
+					gs 'arousal', 'anal', 5, 'sub', 'rough'	
+					gs'stat'				
+					
+					act 'Continue':
+						cls
+						pain['asshole'] += 5
+						PyotrPhoto = 1
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/mensrestroom.jpg"></center>'
+						'After what feels like 2 hours he finally graons and fills your ass with his seed then pushes you on the ground and you lay there feeling relieved that' 
+						'he has stoped but still fearful as to what he will do next. You just listen trying your best to stay still as you hear him taking photos with his phone' 
+						'and then he pulls up his pants. "Now that is what a whore is good for. Remember this before you try some stupid shit like that again!" as he walks out of the restroom.'
+						gs 'arousal', 'anal', 5, 'sub', 'rough'	
+						gs 'arousal', 'end'
+						gs 'cum_call', 'anus', 'Pyotr'
+						gs'stat'						
+						
+						act 'Wash up':gt 'FedorEv3', 'Restroom Wash 2'
+					end
+				end	
+			end		
+		end			
+	end
+end	
+		
+if $ARGS[0] = 'Restroom Gang':
+	cls
+	FedorRestTimes += 1
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/hide.jpg"></center>'
+	'You approach the sink then turn on the water, when you hear some roudy guys outside, you quickly run into one of the stalls then hear the door slam open and the guys start hollering as they share stories that you can''t quite hear.'
+
+	act 'Eavesdrop':
+		cls 
+		gs'stat'
+		'You approach the door to listen to what they are talking about. One guy says, "You had to see the tits on that girl. She was basically flying out of her top." and the other guy said "That''s nothing. I had this one girl with tits so big you could fuck them for days." another guy replies, "This one bitch I saw claimed that she was..." One of the guys yells out "Hold on guys! We got a girl is in here." You look up to see a man peeking over the stall and your heart stops as someone starts pushing the stall door open.'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang.jpg"></center>'
+		
+		act 'Hold the door closed':
+			cls
+			minut += 5
+			gs'stat'	
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang1.jpg"></center>'
+			'You quickly push the door closed and hold it then the guys start slaming the door while the guy peeping yells to the others "Check this out guys. This girl is hot! I bet she came in here looking for a good fucking." the guys start hollering even louder as the guy continues to make vulgar comments about you. After a few seconds you feel them slaming even harder on the door when it finally gives in, swinging open. You see the men all staring into the stall with lustful looks on their faces.'
+		
+			act 'Plead with them':
+				cls 
+				sub += 3
+				gs'stat'	
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang2.jpg"></center>'
+				'"I didn''t mean to interrupt. Can I please go." One of the guys grins. "You can go...After we''re done with you." He then lunges into the stall and grabs you by the throat and whispers in your ear "I bet you came in here hoping to get caught, so that you can get a good fucking. Well we''ll give you a fucking you''ll never forget." he then pulls you out of the stall where the other guys are waiting with their cocks in their hand.'
+
+				act 'Submit':
+					cls
+					minut -= 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang3.jpg"></center>'
+					'Knowing that you are not strong enough to overpower them, you submit to them allowing them to remove your top as they bend you over, so that one of the guys cock is pressing against your lips. You wrap your lips around his dick provoking a moan from him as the rest of the guys touch you all over your body. "Look at this slut. She looks a lot better than that girl from the party. I bet she''s a better fuck too." and the other guy responds, "I bet you 200<b>₽</b> that she will be able to take all of our dicks without passing out." and the other guy gives him a high five.'
+					gs 'arousal', 'foreplay', 5, 'sub', 'rough', 'gangbang'	
+					gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+					gs'stat'						
+
+					act 'Continue sucking':
+						cls 
+						minut -= 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang4.jpg"></center>'
+						'As you are sucking, The guy behind you shoves his dick into your vagina causing a rush of pain and pleasure. The pain quickly subsides and you start to actually feel less afraid as you enjoy the pleasure build up. You can hear one of the guys say, "Hey look at her. I think she''s starting to like it." and another responds, "I knew she was a dirty whore when I saw her." the words offend you at first but begin to excite you as you continue geting fucked.'
+						gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'gangbang'
+						gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+						gs'stat'							
+											
+						act 'Enjoy':
+							cls
+							minut -= 10
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang5.jpg"></center>'
+							'One of the guys grabs you by your legs and lifts you up as another one lays under you then you feel a sharp sting in your ass as you are lowered onto a guy''s dick. You let out a pained grunt as you feel another guy''s dick enter you vagina and one in your mouth so you continue sucking trying your best to make them cum, so that they will no longer need you and hopefully let you go.'
+							gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'gangbang'
+							gs 'arousal', 'anal', 5, 'sub', 'rough', 'gangbang'									
+							gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+							gs'stat'						
+								
+							act 'Continue':
+								cls 
+								minut -= 10
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/gang6.jpg"></center>'
+								'You continue to let them do as they please and after a few minutes one of the guys grabs your throat. "Are you ready for our cum whore?"'
+								gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'gangbang'
+								gs 'arousal', 'anal', 5, 'sub', 'rough', 'gangbang'									
+								gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+								gs'stat'											
+								
+								act 'Beg them to pull out':
+									cls
+									minut -= 15
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/cum/cum1.jpg"></center>'
+									'"You plead. "Please pull out, I want your cum all over my body" and one of the guys responds, "You heard her gentlemen, let''s cover this bitch from head to toe." as they begin to pull out of you and one by one they release their load on a different part of your body covering you with their cum.'
+									gs 'cum_call', 'face'
+									gs 'cum_call', 'breasts'
+									gs 'cum_call', 'stomach'
+									gs 'cum_call', 'legs'
+									gs 'cum_call', 'labia'
+									gs 'arousal', 'anal', 10, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'hj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'hj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'vaginal', 10, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'end'
+									gs 'stat'											
+
+									act 'See what they do':
+										cls
+										minut += 5
+										gs'stat'
+										'Without even realizing it you are rubbing their cum all over your body as you stare at them gazing in adoration at you. "Whoa this whore is a real gem. I''ll be having dreams of this one." and another responds, "If you love her so much why don''t you marry her and have fun explaining it to that loud mouth bitch you call a mother!" Causing the first guy to tackle the other and the 2 guys begin fighting as the rest of them start cheering them on. You use this time to quickly grab your clothes then run out of the men''s room and into the ladies room.'
+										*nl	
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/fight.jpg"></center>'
+										
+										act 'Wash up':gt 'FedorEv3', 'Restroom Wash'
+									end	
+								end	
+								act 'Nod yes':
+									cls
+									minut -= 15
+									sub += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/cum/cum2.jpg"></center>'
+									'You meekly nod yes and one of the guys says, "Alright boys, Lets fill this whore up." and one by one the guys begin to cum inside all of your' 
+									'holes and on your face and stomach. After they finish they pull out of you while slowly guiding you to the floor. You lay back to catch your' 
+									'breath as you feel the warm cum sliding down and dripping out of your vagina, anus and off your body. "This has got to be the filthiest whore' 
+									'I have ever seen." and another responds, "That''s exactly what I said after I fucked your sister." Causing the first guy to tackle the other'
+									*nl	
+									'and the 2 guys begin fighting as the rest of them start cheering them on. You use this time to quickly grab your clothes then run out of the' 
+									'men''s room and into the ladies room'
+									*nl	
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/fight.jpg"></center>'
+									gs 'cum_call', 'anus'
+									gs 'cum_call', 'face'
+									gs 'cum_call', 'breasts'
+									gs 'cum_call', 'stomach'
+									gs 'cum_call', 'legs'
+									gs 'cum_call', 'labia'
+									gs 'arousal', 'anal', 10, 'sub', 'rough', 'gangbang'
+									gs 'cum_call'
+									gs 'arousal', 'hj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'hj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'bj', 5, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'vaginal', 10, 'sub', 'rough', 'gangbang'
+									gs 'arousal', 'end'
+									gs 'stat'
+									
+									act 'Wash up':gt 'FedorEv3', 'Restroom Wash'
+								end	
+							end		
+						end			
+					end				
+				end					
+			end
+		end	
+	end
+	act	'Hide':	
+		cls
+		minut += 10
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/hide2.jpg"></center>'
+		'You climb onto the seat, so that no one can see you feet under the stall door, remaining as quiet as possible, so that no one hears you. Waiting until you hear the men leave. Just to be on the safe side, you wait an additional 2 minutes then head back toward the sink.'
+		
+		act 'Wash up':gt 'FedorEv3', 'Restroom Wash 2'
+	end	
+end
+
+if $ARGS[0] = 'Restroom Rescue':
+	cls
+	FedorRestTimes += 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene.jpg"></center>'
+	'You approach the sink and turn on the water then suddenly you feel your shirt being pulled down and someone''s hands on your breasts. You jump in shock and the man behind you whispers in your ear "Keep quiet bitch and this will be over quickly."'
+	gs 'arousal', 'foreplay', 5, 'sub', 'rough'
+	gs 'arousal', 'end'
+	gs'stat'				
+	
+	act 'Cry for help':
+		cls
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		if fedorKozlovQW = -15:
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		end		
+		'You cry for help then suddenly, the door bursts open and Fedor storms into the room and punches the guy in the face knocking him into the wall. The guy grabed his face in pain as Fedor approached him then drove his knee into the guy''s face, breaking his nose. Fedor grabed the guy then dragged him into one of the stalls where he dipped the guy''s head into the toilet and began drowning him while shouting "How dare you touch my girl! <b>I WILL FUCKING KILL YOU!</b>"'
+
+		act 'Calm Fedor':
+			cls
+			cumspclnt = 1
+			gs 'cum_cleanup'
+			if pcs_sweat < 30:
+				pcs_sweat = 15 + rand(0,4)
+			else
+				pcs_sweat -= 10 + rand(0,4)
+			end			
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			if fedorKozlovQW = -15:
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+			end		
+			'You wrap your arms around Fedor''s chest and lightly pull him off the guy as you tell him "Hey Fedor, It''s over now. I''m safe, thanks to you." as you give him a innocent smile. Fedor closes his eyes as he tilts his head back trying to collect his thoughts and then responds, "You''re right <<$pcs_nickname>>, I don''t know what came over me." You hug him as you tell him "I''m so lucky to have you." Fedor kisses you then stays with you as you wash up. After you finish Fedor walks you out of the restroom.'
+				
+			if EndMovie = 1:
+				act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+			else
+				act 'Leave the mens restroom':gt 'FedorEv3', 'Ladies Room'
+			end	
+		end	
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Wash':
+	cls
+	minut += 10
+	FedorRestTimes += 1
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end
+	pcs_hairbsh = 0			
+	gs'stat'
+	'<center><b><h4><font color=#ff00cc>Restroom</font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself as thoughly as posible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
+	
+	if FedorRestTimes > 2 and EndMovie = 1:
+		act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+	elseif FedorRestTimes > 2 and EndMovie = 0:
+		act 'Go back to theater':gt 'FedorEv3', 'Movies 2'
+	else	
+		act 'Dry off':gt 'FedorEv3', 'Ladies Room'		
+	end	
+end	
+
+if $ARGS[0] = 'Restroom Wash 2':
+	cls
+	minut += 10
+	FedorRestTimes += 1
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end
+	pcs_hairbsh = 0
+	gs'stat'
+	'<center><b><h4><font color="blue">Restroom</font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself as thoughly as posible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
+
+	if FedorRestTimes > 2 and EndMovie = 1:
+		act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+	elseif FedorRestTimes > 2 and EndMovie = 0:
+		act 'Go back to theater':gt 'FedorEv3', 'Movies 2'
+	else	
+		act 'Dry off':gt 'FedorEv3', 'Mens Room'
+	end	
+end	
+	
+if $ARGS[0] = 'Restroom Wash 3':
+	cls
+	minut += 10
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end
+	pcs_hairbsh = 0
+	gs'stat'
+	'<center><b><h4><font color="blue">Restroom</font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then aproach the sink to clean yourself as thoughly as posible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
+				
+	if EndMovie = 1:
+		act 'Leave restroom':gt 'FedorEv3', 'Movies 3'
+	else
+		act 'Go back to theater':gt 'FedorEv3', 'Movies 2'
+	end	
+end	
+		
+if $ARGS[0] = 'Movies 3':
+	cls
+	pcs_mood += 10
+	pcs_willpwr += 10
+	minut += 5			
+	FedorRest = 0
+	WithFedor = 0
+	EndMovie = 0
+	FedorRestTimes = 0
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'Fedor walks you home and you both spend the whole time talking about the movie and some future films you both want to see. After a few minutes you are right in front of your building and Fedor gives your ass a grab as he says, to you "<<$pcs_firstname>> I hope you had as much fun as I had. I can''t wait to see you again." You respond, "Don''t worry Fedor, You wont have to wait long." as you kiss him and then walk away with a confident smile.'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss.gif"></center>'
+
+	act 'Walk away':gt 'pavResidential'
+end		
+
+--- FedorEv3 ---------------------------------
+

+ 3478 - 0
locations/FedorEv4

@@ -0,0 +1,3478 @@
+# FedorEv4
+if $ARGS[0] = '' or $ARGS[0] = 'Home':
+	cls
+	minut -= 5
+	FedorHomeDate = 1
+	WithFedor = 1
+	gs'stat'
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+	'As you arrive at Fedor''s house and he opens the door for you then gives you a pat on the ass with a playful smile on his face as you walk in. You respond by pushing him against the wall while grabbing the back of his head and passionately kissing his lips as you rub on his crotch.'
+	gs 'arousal', 'foreplay', 5, 'sub'
+	gs 'arousal', 'kiss', 5, 'dom'								
+	gs'stat'
+	
+	act 'Head to the livingroom':gt 'FedorEv4', 'Home 2'
+	
+	act 'Get down on your knees':
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall1.gif"></center>'
+		'You unzip then drop Fedor''s pants as you continue kissing him while stroking his cock. After a few seconds, you drop to your knees and start sucking his dick without ever breaking eye contact. Fedor moans a bit. "You know just what I like." You respond with "What kind of girlfriend would I be if I didn''t know how to please my man."'
+		gs 'arousal', 'bj', 5, 'dom'									
+		gs'stat'
+		
+		act 'Continue':
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/blowjob2.gif"></center>'
+			'Fedor says, "Let''s see how much you can take." as he grabs you by the back of your head and begins pushing his cock further down you throat. You do your best not to gag as Fedor begin fucking your throat. The sensation is unpleasant but you do your best to please Fedor, letting him fuck your throat deeper and rougher while trying to hold back the tears streaming down your face. After a few seconds Fedor notices your discomfort and releases you. Fedor then kneels down front of you and kisses you gently. "Since you did that for me, I''m going to give you a reward."'
+			gs 'arousal', 'bj', 5, 'sub', 'deepthroat'									
+			gs'stat'			
+
+			VK = rand(1,4)
+			if VK = 4 and fedorKozlovQW > -10:
+				act 'See what he does':gt 'FedorEv4', '3Way'
+			elseif VK < 4 and pcs_dom > 0:
+				act 'See what he does':gt 'FedorEv4', 'Hall Sex'	
+				
+				act 'Put your feet in his face':
+					cls
+					pcs_dom += 2
+					minut -= 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall6.jpg"></center>'
+					'You lean back and lift your feet to his face. "Good, Kiss my feet." Fedor is surprised at first but then starts slowly rubbing your ankles with his hands as he begins gently kissing your feet. Fedor begins kissing each of your toes one at a time then starts to suck on them as you watch him in excitement of how much he is willing to do for you and how much he enjoys pleasing you.'
+					gs 'arousal', 'foreplay_give', 10, 'dom', 'feet'									
+					gs'stat'
+					
+					act 'Give him a footjob':
+						cls
+						minut -= 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall7.jpg"></center>'
+						'You pull your foot away from Fedor''s mouth then place it on his chest lightly pushing him on his back as you wrap both your feet around his dick and begin to stroking his cock while staring into his eyes, enjoying the very adoring look he is giving you. Fedor remarks. "Wow <<$pcs_nickname>>, Your feet are so soft."'
+						'You respond, "And so is your dick. I want to ride it." as you withdraw your feet then crawl on top of Fedor, burying his dick in your pussy while forcing your tongue in Fedor''s mouth as he caresses it with his.'
+						gs 'arousal', 'footjob', 10, 'dom', 'feet'									
+						gs'stat'
+						
+						act 'Ride Fedor':
+							cls
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall8.jpg"></center>'	
+							'You ride Fedor''s cock slowly at first but then begin picking up the pace as you see him begin to squirm. You can see that he is trying to keep himself from cumming.'
+							gs 'arousal', 'vaginal', 5, 'dom'								
+							gs'stat'
+							
+							act 'Make hime come':
+								cls
+								pcs_dom += 2
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum7.gif"></center>'
+								'You continue picking up the pace while staring into Fedor''s eyes, feeling both the rush of pleasure and the thrill of dominance, Knowing that Fedor''s pleasure is completely in your hands. Thrusting faster and faster until you hear Fedor say, "I can''t hold on much longer. I''m gonna cum." You give him 3 more thrust then pull Fedor''s dick out of you and begin rubbing it with your hands as he cums on your feet. You do your best to milk him dry while staring into his eyes as he cums for you. Fedor takes a few seconds to catch his breath. "Damn <<$pcs_firstname>>, I love it when you take control."'
+								'You respond, "What can I say? I know what my man needs."'
+								'Fedor begins dressed as he replies, "You certainly do... So are you still up for a good movie?"'
+								'You reply, "Sure but I need to wash up first."'
+								gs 'arousal', 'vaginal', 5, 'dom'	
+								gs 'cum_call', 'hands', $boy
+								gs 'cum_call', 'legs', $boy
+								gs 'arousal', 'end'
+								gs'stat'								
+								
+								act 'Go wash up':gt 'FedorEv4', 'Bathroom Wash'
+							end
+							if FedorLoveTalk = 1:
+								act 'Make him come inside you':
+									cls
+									pcs_dom += 2
+									minut += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum3.gif"></center>'
+									'You continue picking up the pace while staring into Fedor''s eyes, feeling both the rush of pleasure and the thrill of dominance, Knowing that Fedor''s pleasure is completely in your hands. Thrusting faster and faster until you hear Fedor say, "I can''t hold on much longer. I''m gonna cum." You start thrusting rapidly, ready to take his load inside you and after the fourth thrust Fedor groans and you can feel his cum filling you with it''s warmth. You continue riding him, doing your best to milk his dick dry, feeling him filling your womb almost completely.'
+									'Fedor take a few seconds to catch his breath. "<<$pcs_firstname>> you''re so damn good at that."'
+									'You respond, "I will always do my best to please you Fyodor."'
+									'Fedor gives you a warm smile then begins getting dressed as he replies, "Tha''s my girl. Shall we go and watch a movie together?"'
+									'You reply, "Sure but I need to wash up first.'
+									gs 'cum_call', '', $boy
+									gs 'arousal', 'vaginal', 5, 'dom'	
+									gs 'arousal', 'end'
+									gs'stat'	
+									
+									act 'Clean up':gt 'FedorEv4', 'Bathroom Wash'
+								end	
+							end	
+						end
+					end	
+				end	
+			else
+				act 'See what he does':gt 'FedorEv4', 'Hall Sex'				
+			end	
+		end
+	end
+end	
+
+if $ARGS[0] =  'Hall Sex':	
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall2.jpg"></center>'	
+	'Fedor licks his finger tips then he leans forward and begins kissing you as he reaches down between your legs and rubs your vagina. You spread your legs for him, giving him easier access. You continue to kiss Fedor while enjoying his finger tips on your clit until he eventually picks you up by your shoulders and then lightly pushes you against the wall then buries his head between your legs.'
+	gs 'arousal', 'foreplay', 10, 'sub'									
+	gs'stat'		
+
+	act 'Spread your legs':
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall3.jpg"></center>'	
+		'You spread your legs enjoying the feeling of Fedor''s tongue on your clitoris, gently caressing it. You can feel the pleasure build up as Fedor continues to massage your clitoris with his tongue.'
+		gs 'arousal', 'cuni', 5, 'sub'									
+		gs'stat'			
+		
+		act 'Continue':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall4.jpg"></center>'
+			'Fedor grabs your leg and lifts it up on his shoulders, giving himself better access to you pussy as he continues caressing your clitoris at an increased pace, trying his best to give you an orgasm. You tilt your head back and say, "Ohh yes Fedor, just like that." as he continues to pick up the pace making you feel weak in the knees as his strong arms hold you up.'
+			gs 'arousal', 'cuni', 10, 'sub'									
+			gs'stat'	
+			
+			act 'Enjoy his embrace':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall5.gif"></center>'
+				'After a few seconds Fedor gets up then turns you around, pressing his body against yours as he enters your vagina from behind. Thrusting his dik deep inside you while his hips smack against your ass causing your whole body to bounce against the wall. You continue getting fucked while enjoying the warmth of  Fedor''s body pressing against yours and the feeling of his hot breath on your back while he holds your hips firmly. Fedor whispers in your ear. "I''m ready to cum, How would you like it?"'			
+				gs 'arousal', 'vaginal', 10, 'sub'									
+				gs'stat'	
+				
+				act 'In my mouth':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/yum.gif"></center>'				
+					'Fedor then pulls out of you and begins jerking himself while you turn around and take his penis into your mouth. You start sucking and licking until you feel a jet or sperm fill your mouth and instead of swallowing, you look up to Fedor with an open mouth then stare into his eyes as you swallow his cum. Fedor looks at you with a very pleased expression. "You know just what I like." then rubs your forehead, before geting dressed. When you are both dressed Fedor asks "So <<$pcs_firstname>>, are you still up for that movie?'
+					gs 'arousal', 'bj', 10, 'sub'
+					gs 'cum_call', 'mouth', $boy
+					gs 'arousal', 'end'
+					
+					act 'Sure thing':gt 'FedorEv4', 'Bathroom Wash'
+				end	
+				act 'On my face':
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/chest/cumbreats.gif"></center>' 				
+					'Fedor then pulls out of you and begins jerking himself while you turn around and kneel down in front of him, firmly massaging your breast as you watch him jerking off. You close your eyes in anticipation of his cum covering your face. After a few seconds you feel squirts of cum over your face. The warmth of if causes you to feel very at ease before you carefully open your eyes to see Fedor admiring the veiw with a very pleased smile on his face. Fedor says, "That''s a good look for you."'
+					'You respond, "If I really look that good then why don''t you come over here and give me a kiss." You then lead forward bringing your face to his as he pulls away.'
+					'"Uhhh, Maybe after you wash up first." You both laugh as Fedor guides you to the bathroom to clean up.'
+					gs 'cum_call', 'face', $boy
+					gs 'arousal', 'end'
+					
+					act 'Clean up':gt 'FedorEv4', 'Bathroom Wash'
+				end
+				if FedorLoveTalk = 1:	
+					act 'Inside me':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum10.gif"></center>'			
+						'Fedor nods his head as he continues thrusting faster. You lay against the wall enjoying his thrusts as you soon feel a burst of warmth fill your womb. Fedor holds you tightly as he fills you with his seed. You do your best to milk him dry as you feel his cum slowly leaking out of your pussy and after a few seconds Fedor catches his breath then says, "Ohh <<$pcs_nickname>> You''re an absolute gem."'
+						'The affectionate tone of his voice fills your heart with a sudden wamth. "Oh Fedor, you''re so sweet." You and Fedor both get dressed and then Fedor leads you to the bathroom to get washed up.'
+						gs 'cum_call', '', $boy
+						gs 'arousal', 'vaginal', 5, 'sub'
+						gs 'arousal', 'end'
+						gs'stat'						
+						
+						act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+					end
+				end	
+			end
+		end
+	end	
+end
+
+if $ARGS[0] =  '3Way':
+	cls
+	minut -= 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/hall5.gif"></center>'
+	'Fedor kisses you then lifts you up to your feet as he approaches you from behind and then sticks two of his fingers inside of your vagina, gently rubbing your insides. After a few seconds he begins sliding his cock inside of your pussy giving you a rush of pleasure. He slowly starts thrusting his dick deeper inside you giving you the occasional smack on the ass. You turn to face Fedor and see someone standing in the doorway, causing your breath to stop as you notice that not only have you both forgot to close the door but someone has been watching you this whole time.'
+	gs 'arousal', 'vaginal_finger', 5, 'sub'
+	gs 'arousal', 'vaginal', 5, 'sub'
+	gs'stat'	
+
+	act 'Look closer':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/3.jpg"></center>'
+		'You look closely at the person in the doorway then recognize him as Ivan. You exclaim. "Fedor, Ivan is standing in the doorway!"'
+		'Fedor quickly stops and turns to Ivan and says, "Ohh shit, I totally forgot that I invited Ivan to hang out with me this afternoon."'
+		'Ivan approaches you casually as he says, "I could come back later if this is a bad time but I wouldn''t say no to joining in on the fun... if you don''t mind sharing, that is."'
+		'Fedor responds, "Sharing? Sharing wha.. ohh...I see." Fedor turns to you with a curious look on his face. "What do you think <<$pcs_firstname>>?"'
+		
+		act 'Invite Ivan to join':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/sex/chat.jpg"></center>'
+			'You respond, "If it''s fine with you, I wont object."'
+			'Fedro ponders for a few seconds then tells Ivan "Alright I''m willing to share as long as you promise not to get my girl pregnant."'
+			'Ivan chuckles, then responds, "I know what I''m doing and plus, I wouldn''t have any time to raise a kid of my own."'
+			'Fedor smirks and says, "I guess it''s settled then, you can sign right here." as he lifts his fist up which Ivan bumps with his.'
+			
+			act 'Continue':
+				VK = rand(1,3)
+				if VK <= 1:
+					gt 'FedorEv4', '3way1'
+				elseif VK <= 2:
+					gt 'FedorEv4', '3way2'
+				else
+					gt 'FedorEv4', '3way3'					
+				end				
+			end
+		end	
+		
+		act 'Refuse and get dressed':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+			'You scold Fedor and as you state "I''m not that kind of girl Fedor!"'
+			'He stammers as he responds, "I didn''t mean to imply that you... I''m sorry <<$pcs_firstname>>."'
+			'Ivan then responds, "Don''t worry <<$pcs_firstname>>. It was just a joke. I wouldn''t want to come in between you...Or would I?" he then laughs as he walks away.'
+			'You get dressed then grab Fedor by the hand. "It''s alright Fedor, I know you care for me, so I''m willing to look past this." as you give Fedor a sweet smile while leading him to the livingroom.'
+			gs 'arousal', 'end'
+			
+			act 'Go with Fedor':gt 'FedorEv4', 'Home 2'
+		end
+	end	
+end	
+
+if $ARGS[0] =  '3way1':
+	cls
+	minut -= 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed1.gif"></center>'
+	'Ivan spanks your ass. "Let''s head to the bedroom and get started." You grab both of their hands and lead them to the bedroom while Fedor caresses your breasts with his free hand as Ivan does the same to your ass. When you reach the bedroom Ivan and Fedor begin undressing as you climb onto the bed waving your finger with a comehither gesture. They both climb onto the bed on both sides of you and you begin stroking their cocks gently while staring Fedor in the eyes as Ivan paws at your ass which urges you to pick up the pace and stroke their cocks faster.'
+	gs 'arousal', 'foreplay', 5	
+	gs 'arousal', 'hj', 5, 'dom'
+	gs 'arousal', 'hj', 5, 'dom'										
+	gs'stat'
+
+	act 'Ride Fedor':	
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed2.gif"></center>'	
+		'You feel Ivan''s hands clench your waist as he lifts you up and pushes you down on Fedor dick causing a instant rush of arousal and excitement to flow through you. You reach over to continue jerking Ivan as you Ride Fedor''s dick so that Ivan wont feel left out and you can see a very pleased smile on his face as he stares into your eyes while you jerk him off. Ivan then lays back, making himself comfortable. After a few seconds Ivan leans forward and smacks your ass. "Hey <<$pcs_nickname>> why don''t you put that pretty mouth of yours to work?"'
+		gs 'arousal', 'vaginal', 5, 'sub'	
+		gs 'arousal', 'hj', 5, 'dom'									
+		gs'stat'
+		
+		act 'Suck Ivan''s dick':	
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed3.gif"></center>'	
+			'You happily nod as you lean forward and wrap you lips around Ivan''s dick causing an almost instant moan from him. Fedor turns you on your side as he continues to thrust his cock inside your pussy. You spread your legs as wide as you can to give him the easiest access to your pussy. Fedor continues picking up the pace and you continue sucking Ivan''s dick trying your best to keep up with Fedor''s pace. Fedor turns you onto your back as he continues to fuck you harder as you do your best not to release Ivan''s dick from your mouth as you continue licking and sucking his dick trying your best to get him off.'
+			'Ivan asks Fedor "Are you ready to cover her up?"'
+			'Fedor replies, "That depends, <<$pcs_firstname>> Where do you want it?"'
+			gs 'arousal', 'vaginal', 5, 'sub'	
+			gs 'arousal', 'bj', 5, 'dom'									
+			gs'stat'			
+			
+			act 'Pull out':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed4.gif"></center>'	
+				'"Cover me in your cum." you say before wrapping your lips back around Ivan''s dick as he turns to Fedor.'
+				'"You heard the girl, Let''s give her some body paint." Ivan then gives him a high five as they continue spitroasting you. After a few seconds Fedor pulls out and starts covering your stomach with his seed and soon after Ivan pulls out of your mouth and immediately begins spraying his load all over you face. They both continue covering your body as you try to catch their cum with your hand then rub it all over your body.'
+				'Ivan turns to Fedor. "Holy shit, <<$pcs_nickname>> is nasty...I almost envy you." as he gets out of the bed and exits the bedroom to clean up.'
+				'Fedor turns to you "That was great <<$pcs_nickname>>. Maybe we can do it again sometime."'
+				'You give him a mischievous smile as you respond, "Continue treating me right and I might agree to do this again."'
+				'Fedor then replies, "You have yourself a deal." with a playful smile as he lifts you up and carries you to the bathroom to wash up.'
+				*nl	
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/stomach/cumbelly2.gif"></center>'
+				gs 'arousal', 'vaginal', 5, 'sub'	
+				gs 'arousal', 'bj', 5, 'dom'
+				gs 'cum_call', 'face', $boy
+				gs 'cum_call', 'stomach', $boy
+				gs 'arousal', 'end'
+				gs'stat'
+				
+				act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+			end
+			if FedorLoveTalk = 1 and IvanPregChat = 0:
+				act 'Inside me':	
+					cls
+					IvanPregChat = 1
+					gs 'boyStat', 'A3'
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed4.gif"></center>'	
+					'"Cum inside me!" you say before wrapping your lips back around Ivan''s dick and Fedor responds, "Sure thing."'
+					'Ivan then turns to Fedor. "You''re gonna get <<$pcs_nickname>> pregnant...Well If that''s what you want but don''t go asking me to babysit for you." Ivan and Fedor begin pumping you faster. After a few seconds Fedor groans and you feel his seed filling your womb causing a muffled moan from you which seems to push Ivan over the edge as he begins shooting his load directly down your throat while you do your best to swallow every drop of. When they are finished Fedor slowly pulls out of you, causing the cum in your womb to almost gush out of your vagina and onto the bed.'
+					'You lay back catching your breath as you listen to Fedor and Ivan talking. "Dude I can''t believe you''re already knocking up a girl. Do your parents know?"' 'Fedor shakes his head. "Nah man, You have to keep quiet about this or my mom will freak out."'
+					'Ivan responds, "No problem man but I''d be more worried about <<$pcs_firstname>>''s parents finding out, if I were you"'
+					'Fedor remains silent as Ivan pats him on the back. "Don''t let it get it you down. I''m sure It will all work out in the end." and then he gets dressed and walks out of the room.'
+					'Fedor sits still for a second before turning to you. "Let''s get you washed up <<$pcs_nickname>>." then carries you to the bathroom.'	
+					*nl	
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'	
+					gs 'arousal', 'vaginal', 5, 'sub'	
+					gs 'arousal', 'bj', 5, 'dom'
+					gs 'cum_call', 'mouth', $boy
+					gs 'boyStat', 'A5'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'end'
+					gs'stat'
+					
+					act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+				end				
+			elseif FedorLoveTalk = 1 and IvanPregChat = 1:	
+				act 'Inside me':	
+					cls
+					gs 'boyStat', 'A3'
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed4.gif"></center>'	
+					'"Cum inside me!" you say before wrapping your lips back around Ivan''s dick as he turns to you. "Don''t worry <<$pcs_nickname>>. We''ll fill you up real good."'
+					'Ivan and Fedor begin pumping you faster. After a few seconds Fedor groans and you feel his seed filling your womb causing a muffled moan from you which seems to push Ivan over the edge as he begins shooting his load directly down your throat which you do your best to swallow every drop of. When they are finished Fedor slowly pulls out of your causing the cum in your womb to almost gush out of your vagina and onto the bed.'
+					'You lay back catching your breath as you listen to Fedor and Ivan chatting. "<<$pcs_firstname>> is an amazing girl. You gotta invite me here more often."'
+					'Fedor shrugs. "It''s all up to <<$pcs_firstname>>."'
+					'Ivan responds, "Whipped huh?" he then looks up your body. "I can''t say I blame you. <<$pcs_nickname>>''s ia quite the fox."'
+					'Fedor gives Ivan a fist bump before Ivan gets dressed and walks out of the room. Fedor turns to you "So how did you enjoy that?"'
+					'You reply, "You were both amazing. I had a great time."'
+					'Fedor responds, "Awesome, now let''s get you cleaned up." Fedor then lifts you up and carries you to the bathroom.'
+					*nl	
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'
+					gs 'arousal', 'vaginal', 5, 'sub'	
+					gs 'arousal', 'bj', 5, 'dom'
+					gs 'cum_call', 'mouth', $boy
+					gs 'boyStat', 'A5'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'end'
+					gs'stat'
+					
+					act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+				end	
+			end		
+		end
+	end	
+end	
+	
+if $ARGS[0] =  '3way2':
+	cls
+	minut -= 10
+	gs'stat'
+	'Ivan grabs you by the waist and carries you to the bedroom as Fedor follows closely behind. Ivan gives you an occasional smack on the ass as he carries you to the bedroom. When you arrive, Ivan tosses you onto the bed then begins undressing as Fedor does the same. You lustfully stare at their big cocks as they climb on the bed on both sides of you and start rubbing you all over your body as you reach for their dicks and begin jerking them off. Fedor brings his face to yours and looks you in the eyes, giving you a strange rush of excitement. Fedor then lies back as Ivan lifts you up and pushes you down on Fedor''s dick which gives you a rush of excitement.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed5.gif"></center>'
+	gs 'arousal', 'jj', 5, 'sub'
+	gs 'arousal', 'jj', 5, 'sub'	
+	gs 'arousal', 'bj', 5, 'sub'									
+	gs'stat'	
+	
+	act 'Cowgirl':	
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed6.gif"></center>'	
+		'You begin riding Fedor''s dick as Ivan shoves his dick down your throat and starts to throat fuck you while Fedor continues fucking your pussy. You gag on Ivan''s cock and he pulls away. Ivan gives you a few seconds to catch your breath as he raises his dick to your mouth and begins brushing your lips with his cock. When you finish catching your breath, you casually wrap your lips around Ivan''s dick and do your best to lick and suck him off. After a few miniutes Ivan says, "Hey <<$pcs_firstname>>, Now that I''m all lubed up, It''s time to fuck your ass."'
+		gs 'arousal', 'anal', 5, 'sub'	
+		gs 'arousal', 'bj', 5, 'sub'									
+		gs'stat'
+		
+		act 'Spitroast':	
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/bed7.gif"></center>'	
+			'"Sure thing." Ivan pushes you on your hands and moves up behind you as Fedor approaches you with his dick in his hand. You wrap your lips around it as you feel Ivan''s cock slowly entering your anus which cause a slight pain as your ass adjusts to Ivan''s dick. After a few seconds Ivan begins thrushing his dick further in your ass which causes pain at first but then fades into pleasure. You feel a thrill of being fucked from two sides as Ivan''s large dick in your ass begins pushing deeper inside you.'
+			'Ivan asks "Hey <<$pcs_nickname>>, Do you mind if I fill up your ass?"'
+			gs 'arousal', 'anal', 5, 'sub'	
+			gs 'arousal', 'bj', 5, 'sub'									
+			gs'stat'
+			
+			act 'Pull out please':	
+				cls
+				gs 'boyStat', 3
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface3.gif"></center>'	
+				'You turn to Ivan, letting Fedors dick slide out of your mouth but then extend your hand to jerk him off as you respond, "I''d rather you both cover me in your cum."'
+				'Ivan grins. "Damn <<$pcs_nickname>> you''re a little minx aren''t you?" he then rapidly increases his pace and then Fedor pulls out of you and holds your face to his dick as he unloads all his cum into your face which seems to cause Ivan to groan and pull out just in time to paint both your ass and back with his load.'
+				'You lay on your back catching your breath as you listen to Fedor and Ivan chat. "Damn Fedor, you really lucked out with <<$pcs_firstname>>. I never fucked a girl with an ass as fine as her''s."'
+				'Fedor responds, "I like to believe that it''s more than luck but I can''t help but feel very lucky everytime I look at her."'
+				'Fedor''s comments cause you to blush as Ivan responds, "<<$pcs_nickname>>''s a good catch. I wish you both the very best." as he gets dressed then walks out of the room.'
+				'Fedor turns to you then gives you a kiss on the forhead "Let''s get you cleaned up." he lifts you up then carries you to the bathroom.'	
+				*nl	
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum3.gif"></center>'	
+				gs 'arousal', 'anal', 5, 'sub'	
+				gs 'arousal', 'bj', 5, 'sub'
+				gs 'cum_call', 'face', $boy
+				gs 'boyStat', 'A5'
+				gs 'cum_call', 'butt', $boy
+				gs 'cum_call', 'back', $boy
+				gs 'arousal', 'end'
+				gs'stat'				
+				
+				act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+			end
+			act 'Fill me up':	
+				cls
+				gs 'boyStat', 'A3'
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal2.gif"></center>'	
+				'You turn to Ivan, letting Fedors dick slide out of your mouth but then extend your hand to jerk him off as you respond, "I want you both to fill me up."'
+				'Ivan grins. "Hell yeah <<$pcs_firstname>> I''ll fill you up real good." he then rapidly increases his pace and soon Ivan grabs your hips tightly as he pumps his load into your ass, doing his best to fill your ass to the brim with his seed. Soon after Fedor groans as he shoots his load down your throat which you swallow obediently, savoring every drop.'
+				'When they both finish with you, they begin chatting with each other. "<<$pcs_nickname>> is an great catch. You need to hold onto this one Fey."'
+				'Fedor responds, "Don''t worry, I don''t plan on letting her go, She is my number one girl." as he gently rubs your ass.'
+				'Ivan gets dressed then leaves the room and Fedor turns to you "You''re a great girl. I hope you enjoyed yourself as much as we did."'
+				'You reply, "I had a wonderful time getting fucked by 2 strong men." Fedor smiles as he kisses you on your forhead before lifting you up and carrying you to the bathroom to get cleaned up.'	
+				*nl	
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum1.gif"></center>'
+				gs 'arousal', 'anal', 5, 'sub'	
+				gs 'arousal', 'bj', 5, 'sub'
+				gs 'cum_call', 'anus', $boy
+				gs 'boyStat', 'A5'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'end'
+				gs'stat'
+		
+				act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  '3way3':
+	cls
+	minut -= 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/foreplay1.gif"></center>'
+	'Ivan kisses you on the neck then places his hands on your shoulders pushing you down to your knees as he and Fedor stand directly in front of you with their crotches in you face. You know exactly what they want, so you pull down their pants and begin gently stroking their cocks while alternating whose eyes you stare into, trying to give them both equal satisfaction. Fedor pats you on the head and shortly after, Ivan lightly grabs your chin and turns your face to his as he says to you "I''m planning on fucking your ass in a bit, so you might want to lube me up."'
+	gs 'arousal', 'hj', 5, 'sub'	
+	gs 'arousal', 'hj', 5, 'sub'									
+	gs'stat'	
+
+	act 'Suck Ivan''s dick':	
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/foreplay2.gif"></center>'	
+		'You eagerly wrap your lips around Ivan''s dick as you continue to masturbate Fedor. Knowing that Ivan will fuck your ass soon, you do your best to lube up Ivan''s dick by licking, sucking and even spitting on his dick, getting it nice and slick as Fedor begins pawing at your breasts and occasionally brushing the hair off your face.'
+		gs 'arousal', 'bj', 5, 'sub'	
+		gs 'arousal', 'bj', 5, 'sub'									
+		gs'stat'			
+		
+		act 'Anal':	
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/hall1.gif"></center>'	
+			'After a few moments, Ivan pulls away from you, so you instinctively start sucking Fedor''s dick in Ivan''s place but soon you feel strong hands around your shoulders then realize that Ivan has lifted you 2 feet off the ground. Ivan carries you to the living room then drops you on your feet. Ivan roughly bends you over the edge of the sofa and before you know what''s happening, Ivan enters your anus causing you to groan in pain. Fedor then shouts "Ivan take it easy. Are you trying to cripple my girl!?"'
+			'Ivan responds, "Yeah, I guess I did get a bit carried away, Sorry <<$pcs_firstname>>. I''ll slow down for you." and true to his word he slows his pace allowing your ass to adjust for his dick before slowly increasing his pace. You are beginning to enjoy Ivan''s dick in your ass as Fedor sits down in front of you watching you get fucked which turns you on. While Ivan continues pounding your ass, Fedor gets up and tells Ivan. "Hey Ivan, don''t go hogging my girl now."'
+			gs 'arousal', 'anal', 5, 'sub'										
+			gs'stat'			
+			
+			act 'Spit roast':	
+				cls
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/hall2.gif"></center>'	
+				'Ivan chuckles then looks around then grabs you by the waist and guides you to a nearby stool then sits you down on it. Fedor walks in front of you and presses his dick against your lips as you happily open your mouth, welcoming his dick inside as you feel Ivan''s hands on your waist, lifting your ass up off the stool then inserting his dick slowly into your ass. You do your best to match Ivan''s thrusts with your own hips as you continue to please Fedor the best you can.'	
+				gs 'arousal', 'anal', 5, 'sub'	
+				gs 'arousal', 'bj', 5, 'sub'										
+				gs'stat'				
+
+				act 'Double penetration':	
+					cls
+					minut -= 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/hall3.gif"></center>'	
+					'After a few minutes Ivan grabs your legs and lifts you up without removing his dick from your ass. Ivan then walks to the couch with you in his arms, he then leans back onto the couch causing his dick to go even further in your anus evoking a loud moan from you, enjoying every inch of his dick inside you. You finally open your eyes to see that Ivan was holding your legs open as Fedor was entering your vagina immediately resulting in another loud moan as you are filled in both of your whole by 2 big cocks. The pleasure feels intense as they both continue roughly fucking you. After a few minutes you can hear Ivan saying "It''s almost end time. Where do you want it <<$pcs_nickname>>?"'
+					gs 'arousal', 'anal', 5, 'sub'	
+					gs 'arousal', 'vaginal', 5, 'sub'										
+					gs'stat'					
+					
+					act 'All over my face':	
+						cls
+						gs 'boyStat', 'A3'
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface3.gif"></center>'	
+						'Ivan grins as he nods then continues to pound your ass before he pulls out of you then pulls you to your knees as he and Fedor jerk off right in front of you. You patiently watch them with a very seductive smile, waiting for their cum to shower you. Ivan cums first, spraying his load all over your face with some of it getting in your hair and then Fedor grabs the top of your head and tilts it toward his dick as he lets out a groan and showers you with his seed. You do your best to catch as much of it in your mouth but most of it covers your face and chest.'
+						'After they are done, they both watch you dripping with their cum as Ivan says, "Damn <<$pcs_firstname>> you have got to be the naughtiest little minx I ever met." You tilt your head while sharing a playful smile as Ivan gets dressed and waves goodbye then walks out of the house.'
+						'Fedor gives you a light pat on the butt "I hope you enjoyed yourself. I know I did." you lean forward and give him a kiss on the cheek. Fedor then lifts you up and carries you to the bathroom to get washed up.'
+						*nl	
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface2.gif"></center>'
+						gs 'cum_call', 'hair', $boy
+						gs 'cum_call', 'face', $boy
+						gs 'boyStat', 'A5'
+						gs 'cum_call', 'face', $boy					
+						gs 'arousal', 'anal', 5, 'sub'
+						gs 'arousal', 'vaginal', 5, 'sub'	
+						gs 'arousal', 'end'
+						gs'stat'
+						
+						act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+					end
+					if FedorLoveTalk = 1 and IvanPregChat = 0:
+						act 'Inside me':	
+							cls
+							IvanPregChat = 1
+							gs 'boyStat', 'A3'
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/Double.gif"></center>'	
+							'"I want both of you to fill me up at the same time. Think you can do that?"'
+							'Fedor nods and Ivan has a puzzled look on his face as he says, "Uhh sure, I''m down." as he picks up the pace. You lay in between Ivan and Fedor completely in a trance of pleasure, waiting for them to finish and soon enough you hear them groan as you feel a warm rush filling both your anus and womb simultaneously, causing all of you to let out a perfectly in sync moan as they pump their seed into both of your holes.'
+							'While you are catching your breath Ivan pulls out from under you and asks "<<$pcs_firstname>> I trust that you are you on the pill...right?"'
+							'You lower your head and turn away as you hesitantly reply, "Well...Not exactly..."'
+							'Ivan shoots Fedor a shocked look. "Fedor you are intentionally getting <<$pcs_firstname>> pregnant?!"'
+							'Fedor scratches the back of his neck as he responds, "Yeah we''ve both decided to take our relationship to the next level."'
+							'Ivan says, "I hope you both know what you are doing. I trust that you will both find a way to make it work." as he gets dressed and leaves the house.'
+							'Fedor slowly turns to you "I know things will work out great for us."'
+							'You respond, "Of course it will. Nothing can tear us apart." Fedor gives you a kiss on your forhead before lifting you up and carrying you to the bathroom to get cleaned up.'
+							*nl	
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum8.gif"></center>'
+							gs 'cum_call', 'anus', $boy
+							gs 'boyStat', 'A5'
+							gs 'cum_call', '', $boy			
+							gs 'arousal', 'anal', 5, 'sub'	
+							gs 'arousal', 'vaginal', 5, 'sub'
+							gs 'arousal', 'end'
+							gs'stat'							
+
+							act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+						end	
+					elseif FedorLoveTalk = 1 and IvanPregChat = 1:	
+						act 'Inside me':	
+							cls
+							gs 'boyStat', 'A3'
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/3way/Double.gif"></center>'	
+							'"I want both of you to fill me up at the same time. Think you can do that?"'
+							'Fedor and Ivan nod as Ivan says, "Damn right, I can do that. You ready Fedor?"'
+							'Fedor responds, "Hell yeah, it should be easy enough." as he picks up the pace. You lay in between Ivan and Fedor completely in a trace of pleasure, waiting for them to finish and soon enough you hear them groan as you feel a warm rush filling both your anus and womb simultaneously causing all of you to let out a perfectly in sync moan as they pump their seed into both of your holes.'
+							'While you are catching your breath Ivan pulls out from under you. "<<$pcs_firstname>> You fuck like a bunny. I love it and can''t wait till next time."'
+							'Fedor turns to him. "Only when I''m involved. I don''t want you getting any idea Ivan."'
+							'Ivan laughs as he responds, "Worried that I''m going to take your girl? You have nothing to worry about Fey. I would never steal my friend''s girl." as he gets dressed and leaves the house.'
+							'Fedor chuckles then turns to you "You know I was just kidding with Ivan right? I trust you completely."'
+							'You respond, "Of course. I know that we will be together forever." Fedor gives you a passionate kiss before lifting you up then carrying you to the bathroom to get washed up.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum8.gif"></center>'
+							gs 'cum_call', 'anus', $boy
+							gs 'boyStat', 'A5'
+							gs 'cum_call', '', $boy				
+							gs 'arousal', 'anal', 5, 'sub'
+							gs 'arousal', 'vaginal', 5, 'sub'
+							gs 'arousal', 'end'
+							gs'stat'							
+
+							act 'Wash up':gt 'FedorEv4', 'Bathroom Wash'
+						end	
+					end	
+				end
+			end
+		end
+	end	
+end
+if $ARGS[0] =  'Home 2':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/sitting.jpg"></center>'
+	'You walk into the living room then take a seat on the couch. Fedor walks into the kitchen and returns with a bowl of <a href="exec:gt ''FedorEv4'', ''Popcorn''">popcorn</a>, some <a href="exec:gt ''FedorEv4'', ''Snacks''">snacks</a> and a few cans of soda then lays them down on the table. Fedor grabs the remote then sits down next to you as he begins flipping through channels.'	
+	
+	act 'Wait for Fedor to pick a channel':
+		VK = rand(1,4)
+		if VK <= 1:
+			gt 'FedorEv4', 'Movie Family'
+		elseif VK = 2:
+			gt 'FedorEv4', 'Movie Sports'
+		elseif VK = 3:
+			gt 'FedorEv4', 'Movie Porn'
+		else
+			gt 'FedorEv4', 'Movie Action'					
+		end	
+	end
+	
+	if pcs_dom > 0:
+		act 'Watch Action':gt 'FedorEv4', 'Movie Action'
+		
+		act 'Watch Sports':gt 'FedorEv4', 'Movie Sports'
+
+		act 'Watch Family film':gt 'FedorEv4', 'Movie Family'
+		
+		act 'Watch Porn':gt 'FedorEv4', 'Movie Porn'
+	end		
+end	
+
+if $ARGS[0] =  'Popcorn':
+	cls
+	minut += 5
+	pcs_health += 10
+	pcs_willpwr += 20
+	pcs_mood += 20
+	fat += 1
+	pcs_energy += 30
+	cumspclnt = 2	
+	gs 'cum_cleanup'
+	pcs_breath = 0	
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/munch2.jpg"></center>'
+	'You begin munching on some popcorn and drinking some soda as Fedor continues flipping through channels.'
+
+	act 'Wait for  Fedor to pick a channel':
+		VK = rand(1,4)
+		if VK <= 1:
+			gt 'FedorEv4', 'Movie Family'
+		elseif VK = 2:
+			gt 'FedorEv4', 'Movie Sports'
+		elseif VK = 3:
+			gt 'FedorEv4', 'Movie Porn'
+		else
+			gt 'FedorEv4', 'Movie Action'					
+		end	
+	end
+	if pcs_dom > 0:
+		act 'Watch Action':gt 'FedorEv4', 'Movie Action'
+		
+		act 'Watch Sports':gt 'FedorEv4', 'Movie Sports'
+
+		act 'Watch Family film':gt 'FedorEv4', 'Movie Family'
+		
+		act 'Watch Porn':gt 'FedorEv4', 'Movie Porn'
+	end		
+end	
+
+if $ARGS[0] =  'Snacks':
+	cls
+	minut += 5
+	pcs_health += 10
+	pcs_willpwr += 20
+	pcs_mood += 20
+	pcs_energy += 20
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0	
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/munch1.jpg"></center>'
+	'You begin enjoyibg some strawberries and drinking soda as Fedor continues flipping through channels.'
+
+	act 'Wait for  Fedor to pick a channel':
+		VK = rand(1,4)
+		if VK <= 1:
+			gt 'FedorEv4', 'Movie Family'
+		elseif VK = 2:
+			gt 'FedorEv4', 'Movie Sports'
+		elseif VK = 3:
+			gt 'FedorEv4', 'Movie Porn'
+		else
+			gt 'FedorEv4', 'Movie Action'					
+		end	
+	end
+	if pcs_dom > 0:
+		act 'Watch Action':gt 'FedorEv4', 'Movie Action'
+		
+		act 'Watch Sports':gt 'FedorEv4', 'Movie Sports'
+
+		act 'Watch Family film':gt 'FedorEv4', 'Movie Family'
+		
+		act 'Watch Porn':gt 'FedorEv4', 'Movie Porn'
+	end	
+end
+
+if $ARGS[0] =  'Movie Action':
+	cls
+	pcs_mood += 15
+	pcs_willpwr += 15		
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvkino'+rand(2,3)+'.gif"></center>'
+	'You and Fedor begin watching an action/drama movie while occasionally discussing your favorite scenes as you see them.'
+
+	act 'Finish movie':gt 'FedorEv4', 'Home 3'
+end
+
+if $ARGS[0] =  'Movie Sports':
+	cls
+	pcs_mood += 15
+	pcs_willpwr += 15		
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvsport'+rand(1,2)+'.gif"></center>'
+	'You and Fedor begin watching a variety of different sports channels while occasionally discussing your favorite teams and fighters.'
+
+	act 'Finish watching TV':gt 'FedorEv4', 'Home 3'
+end
+
+if $ARGS[0] =  'Movie Family':
+	cls
+	pcs_mood += 15
+	pcs_willpwr += 15	
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvmult'+rand(1,2)+'.gif"></center>'
+	'You and Fedor begin watching a family/drama while occasionally discussing your favorite characters.'
+	
+	act 'Finish movie':gt 'FedorEv4', 'Home 3'
+end
+
+if $ARGS[0] =  'Movie Porn':
+	cls
+	pcs_mood += 10
+	pcs_willpwr += 10		
+	pcs_horny += 10
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvporn'+rand(1,5)+'.gif"></center>'
+	'You and Fedor begin watching a variety of different adult films while occasionally discussing your favorite pornstars and positions.'
+	
+	act 'Finish movie':gt 'FedorEv4', 'Home 3'
+end
+
+if $ARGS[0] =  'Home 3':
+	cls
+	EndMovie = 1
+	WithFedor = 1
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/sitting2.jpg"></center>'
+	'Fedor leans over toward you and begins kissing and licking your neck, obviously ready for some fun. You lay back enjoying his tongue on your neck which turns you on as well as feeling his strong hands caressing your breasts. Fedor continues licking and feeling up your body as you both start undressing each other. Fedor whispers in your ear, "<<$pcs_firstname>>, I want you right now."'
+	
+	act 'Take me':gt 'FedorEv4', 'Random Sex'
+	
+	if pcs_dom > 0:
+		act 'Suck Fedor''s dick':
+			VK = rand(1,2)
+			if VK <= 1:
+				gt 'FedorEv4', 'Livingroom 1'
+			else	
+				gt 'FedorEv4', 'Livingroom 2'
+			end
+		end	
+		if FedorLove = 1 and VKwIp = 100:
+			act 'Is that a yoga ball?':gt 'FedorEv4', 'LivingRoom 3'
+		end	
+
+		act 'I have a treat for you in the kitchen':
+			VK = rand(1,2)
+			if VK <= 1:
+				gt 'FedorEv4', 'Kitchen 1'
+			else	
+				gt 'FedorEv4', 'Kitchen 2'
+			end	
+		end	
+		
+		act 'Use bathroom':gt 'FedorEv4', 'Bathroom 1'
+		
+		if FedorLove = 1:
+			act 'I could use a nice warm bed right now':
+				VK = rand(1,2)
+				if VK <= 1:
+					gt 'FedorEv4', 'Bedroom Cam'
+				else	
+					gt 'FedorEv4', 'Bedroom 1'
+				end	
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Random Sex':
+	VK = rand(1,8)
+	if VK <= 1:
+		gt 'FedorEv4', 'Livingroom 1'			
+	elseif VK = 2:
+		gt 'FedorEv4', 'Livingroom 2'
+	elseif VK = 3 and VKwip = 100:
+		gt 'FedorEv4', 'Livingroom 3'
+	elseif VK = 4:
+		gt 'FedorEv4', 'Kitchen 1'
+	elseif VK = 5:
+		gt 'FedorEv4', 'Kitchen 2'			
+	elseif VK = 6:
+		gt 'FedorEv4', 'Bathroom 1'
+	elseif VK = 7 and FedorLove = 1:
+		gt 'FedorEv4', 'Bedroom Cam'
+	elseif VK = 8 and FedorLove = 1:
+		gt 'FedorEv4', 'Bedroom 1'		
+	else
+		gt 'FedorEv4', 'Random Sex'			
+	end			
+end		
+	
+if $ARGS[0] =  'Livingroom 1':
+	cla
+	*clr
+	WithFedor = 0
+	minut -= 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'While kissing Fedor, you begin rubbing down his chest, lightly rubbing on his muscles as Fedor paws at your ass, clearly getting hard as you both feel up on each other. You reach down and grab onto his penis and gently begin stroking it as you stare Fedor in the eyes. You feel Fedor''s hand on the back of your head pushing you down to his crotch and you happily wrap your lips around his dick, licking and sucking his cock as thoroughly as possible.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa1.gif"></center>'
+	gs 'arousal', 'hj', 5, 'dom'
+	gs 'arousal', 'bj', 5, 'sub'									
+	gs'stat'
+
+	act 'Ride him':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa2.gif"></center>'
+		'After a few minutes of sucking Fedor''s dick, you stand up and turn around for Fedor, giving him a clear view of both of your holes and he begins rubbing and licking your pussy. You continue enjoying his licking but decide that you want more, so you lightly push Fedor''s head away and slowly insert his dick into your pussy and then begin riding him. Fedor lays back, clearly enjoying you riding him as you enjoy the feeling of control as you realize that you are in charge of the thrusts and in full control of both, yours and Fedors pleasure. Fedor leans forward and begins kissing your lips dragging you back on the sofa with him.'
+		gs 'arousal', 'vaginal', 5, 'dom'									
+		gs'stat'
+		
+		act 'Continue':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa3.gif"></center>'
+			'You turn to face Fedor while his penis is still inside you, causing a very pleasant sensation for you both, evoking a moan from you and Fedor almost simultaneously. You begin enjoying the new position as it gives you more control of your thrusts as you quicken your pace, pushing Fedor''s dick deeper inside you using only your weight. Fedor occasionally smacks your ass just hard enough to cause you to flinch but not hard enough to hurt you, showing you that Fedor likes to remain some sense of control but not willing to hurt you in doing it. Fedor leans forward and kisses you on the cheek before whispering "How does my girl want her reward today?" with a mischievous smile on his face.'		
+			gs 'arousal', 'vaginal', 5, 'dom'									
+			gs'stat'			
+		
+			act 'Jerk him off':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/handjob2.gif"></center>'
+				'You give Fedor a kiss and slowly climb off him then drop to your knees as you begin jerking him off. You stroke Fedor''s penis faster while staring into his eyes waiting for him to finish then his eyes begin squinting as he groans and releases his load which leaks down your hands. You enjoy watching as his penis squirts cum into the air and leaking down your hands. Fedor takes a few seconds to catch his breath then looks down at you "<<$pcs_firstname>> your hands are so soft." as he gets dressed and walks out of the room to get cleaned up.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand0,0.gif"></center>'
+				gs 'cum_call', 'face', $boy					
+				gs 'arousal', 'hj', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'		
+
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end	
+			act 'In my mouth':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj1.gif"></center>'
+				'You give Fedor a kiss and slowly climb off him then drop to your knees as you wrap your lips around his dick and begin sucking it rapidly until you hear Fedor groan. You feel a warmth filling your mouth and you do your best to swallow every drop of Fedor''s precious nectar, knowing how much he enjoys it when you swallow his cum. After you finish, Fedor strokes your cheek. "<<$pcs_firstname>> you always know just what I need." He then kisses your forehead before getting dressed then leaving the room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj3.gif"></center>'
+				gs 'cum_call', 'mouth', $boy				
+				gs 'arousal', 'bj', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'			
+				
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end
+			if FedorLoveTalk = 1: 
+				act 'Inside me':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum3.gif"></center>'
+					'You continue thrusting faster, riding Fedor''s cock as fast as you can as you stare into his eyes. Fedor''s head tilts back and he lets out a loud groan as he begins filling you with his seed. You push down on his dick making sure that he is as far inside you as possible. After Fedor finishes filling you up he looks you in the eyes "<<$pcs_firstname>> you''re so perfect. I can''t think of anyone who could make me happier than you."'
+					'Which you respond, "I''ll always be here to keep you happy and fully satisfied, my love." Fedor leans forward and gives you a passionate kiss before getting dressed and leaving the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/vagcreampie/cumvaginal.gif"></center>'
+					gs 'cum_call', '', $boy				
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'					
+
+					act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Livingroom 2':
+	cla
+	*clr	
+	WithFedor = 0
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa4.gif"></center>'
+	'Fedor gets up off the sofa to remove his pants as you crawl on the sofa up to him and grab his dick then lightly pull it to your face as you wrap your lips around it and begin sucking Fedor''s dick. Fedor leans his hips forward gently pushing his cock deeper down your throat as you open your mouth wider to welcome it. You stare into his eyes as he rubs your cheeks in an adoring manner. After a few minutes Fedor lightly pull away from you then moves closer to you.'
+	gs 'arousal', 'bj', 5, 'dom'									
+	gs'stat'	
+
+	act 'Continue':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa5.gif"></center>'
+		'Without breaking eye contact he lifts you up and begins kissing you all over your neck as he lifts you up by your ass and pushes you down onto his dick causing a rush of pleasure to fill your lower abdomen. Fedor is holding you up almost effortlessly and you can''t help but feel so turned on as he holds you in his arms, fucking you harder with each thrust. You close your eyes and focus on the pleasure building while feeling Fedor''s strong hands holding you up by your ass and his large dick thrusting into your pussy.'
+		gs 'arousal', 'vaginal', 5, 'sub'									
+		gs'stat'	
+		
+		act 'Open your eyes':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa6.gif"></center>'
+			'You finally open your eyes to see Fedor panting as he holds you, noticing that Fedor is starting to tire, you whisper in his ear "You can put me down now. I wouldn''t want my man to get weary before I have the change to drain his balls of it''s precious nectar." Fedor chuckles as he lowers you to the ground but doesn''t stop kissing and caressing you. You get down on your knees to finish him off but it seems that he has other plans when he lightly pushes you to the ground in a playful manner. Fedor inserts his dick back inside you as you spread your legs to give him easier access. Fedor continues fucking you as he whispers in your ear "I''m about to empty my balls. Where would you like it?"'		
+			gs 'arousal', 'vaginal', 5, 'dom'									
+			gs'stat'	
+		
+			act 'Pull out':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa6.gif"></center>'
+				'"Pull out and cover me with your cum." Fedor begins picking up his pace, clearly trying to finish as quickly as possible and after a few seconds he pulls out of you and begins spraying his cum all over your chest and stomach as you grab onto his dick doing your best to milk him dry while feeling the squirst of warm cum covering you body. You continue milking him until he''s finished and then rub all the cum off his dick while rubbing it all over your chest, enjoying the warmth.' 
+				'Once you''re done, Fedor admires your body, covered in his cum. "You really seem to love my cum. Don''t you <<$pcs_nickname>>?"' 
+				'You respond, "Of course I do, Your cum is just the moisturizer I need to keep my skin nice and...moist for you." You and Fedor begin laughing as he picks you up and carries you to the bathroom to clean up.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum110.gif"></center>'
+				gs 'cum_call', 'stomach', $boy				
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'		
+				
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end	
+			act 'On my face':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa6.gif"></center>'
+				'Fedor grins as he pulls out of you and climbs over you while jerking his penis in front of your face. You stare at Fedor''s penis while licking your lips and soon you see it begin to erupt and spray cum all over you face. You close your eyes while enjoying the warmth of his seed on your face, giving Fedor a pleased smile as he continues pumping your face with his cum. When Fedor finishes he looks down to you "You really seem to enjoy cum on your face. don''t you <<$pcs_firstname>>?"' 
+				'Which you respond, "Only yours babe."'
+				'Fedor flashes a bright smile as he replies, "That''s my girl" Fedor then gets dressed and walks out of the room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum9.gif"></center>'
+				gs 'cum_call', 'face', $boy		
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'					
+				
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end	
+			if FedorLoveTalk = 1:	
+				act 'Cum inside':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/sofa6.gif"></center>'
+					'Fedor hears you and continues to increase the pace of his thrust until you feel him tightly grip your hips as begins filling your womb with his seed. You wrap your legs around Fedor''s hips, pushing him deeper inside you as the warmth of his seed fills your womb. Fedor looks down at you then gives you a light kiss on the lips before saying "<<$pcs_firstname>> you are so precious to me. You realize that, don''t you?"'
+					'You return the kiss and respond, "And you are everything to me. I love you Fyodor." Fedor leans forward and gives you a long passionate kiss before climbing off of you and getting dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'
+					gs 'cum_call', '', $boy	
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'							
+
+					act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Livingroom 3':
+	cls
+	WithFedor = 0
+	minut += 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball1.gif"></center>'
+	''
+
+	act 'Lay on the ball':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball2.gif"></center>'
+		''
+		gs 'arousal', 'anal', 5									
+		gs'stat'		
+		
+		act '':	
+			cls
+			minut -= 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+			''		
+			gs 'arousal', 'anal', 5									
+			gs'stat'
+			
+			act 'Pull out':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+				''
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+				gs 'cum_call', 'anus', $boy	
+				gs 'arousal', 'anal', 10	
+				gs 'arousal', 'end'												
+				gs'stat'				
+				
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+					''
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+					gs 'cum_call', 'anus', $boy	
+					gs 'arousal', 'anal', 10	
+					gs 'arousal', 'end'												
+					gs'stat'														
+					
+					act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+				end	
+			end	
+		end	
+	end	
+	act 'Ride Fedor':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball4.gif"></center>'
+		''
+		gs 'arousal', 'vaginal', 5									
+		gs'stat'		
+		
+		act '':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball5.gif"></center>'
+			''	
+			gs 'arousal', 'vaginal', 5									
+			gs'stat'
+			
+			act 'Pull out':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball5.gif"></center>'
+				''
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+				gs 'cum_call', '', $boy	
+				gs 'arousal', 'vaginal', 10	
+				gs 'arousal', 'end'												
+				gs'stat'					
+				
+				act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball5.gif"></center>'
+					''
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/ball3.gif"></center>'
+					gs 'cum_call', '', $boy	
+					gs 'arousal', 'vaginal', 10	
+					gs 'arousal', 'end'												
+					gs'stat'						
+								
+					act 'Get dressed':gt 'FedorEv4', 'Livingroom'
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Bathroom 1':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'You pull off of Fedor then tell him "I have to use the bathroom real quick. I''ll be right back." You then get up, turn away and walk to the bathroom.'
+	
+	act 'Walk to bathroom':gt 'FedorEv4', 'Bathroom'
+end	
+
+if $ARGS[0] =  'Bathroom Cam':
+	cls
+	WithFedor = 0
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cam1.jpg"></center>'
+	'You pull down your pants and sit on the toilet as you ponder what you and Fedor will do today. You are so lost in though, that you don''t even notice that Fedor has entered the room until you see his shadow loom over your feet. You look up to see Fedor holding a camera and can''t help but laugh when you see a goofy look on his face as he stands there recording you. Fedor then asks "Hey <<$pcs_firstname>> care to put on a show for the camera?"'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cam2.jpg"></center>'
+
+	act 'Sounds like fun':gt 'FedorEv4', 'Bathroom Cam 2'
+	
+	if FedorCam = 0:
+		act 'No':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/no1.jpg"></center>'
+			'You quickly pull up your pants then cover your face with your hands as you tell Fedor "I don''t think that making a "sex tape" is a good idea."'
+			'Fedor responds, "C''mon <<$pcs_nickname>> no one outside of this room will ever see it."'
+			'You speak to Fedor in a more stern voice "I''m not going to risk the chance of anyone getting that video."'
+			'Fedor responds in a fake sad voice. "You don''t trust me?"'
+			
+			act 'Alright fine. I trust you':gt 'FedorEv4', 'Bathroom Cam 2'
+			
+			act 'I said no':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/no2.jpg"></center>'
+				'You shoot Fedor a firm stare "I said <b>NO!</b>" Fedor recoils back and then you take a deep breath then tell Fedor "It''s not that I don''t trust you but someone could swipe or even hack your phone then share the video with all their friends or even upload it online."'
+				'Fedor nods "I understand....You are just worried that the camera will add 200 pounds to you, Aren''t you?"'
+				'You laugh as you push him against the counter almost knocking him down on it as you reply "I''m just worried that your fat head will get in the way and ruin the whole video." You and Fedor burst into laughter as he closes the camera and winks at you as he walks out of the bathroom.'
+				
+				act 'Wash up':gt 'FedorEv4', 'Quick Wash'
+			end
+		end	
+	end			
+end	
+
+if $ARGS[0] =  'Bathroom Cam 2':
+	cls
+	FedorCam += 1	
+	minut += 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cam3.jpg"></center>'
+	'Fedor happily lifts your shirt as he asks "How about you take off that shirt and show me your tits?"'
+
+	act 'Take off your shirt':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cam4.jpg"></center>'
+		'You remover your shirt and continue staring into the camera lens, feeling excitement, knowing that you are topless in front of a camera. Fedor begins pulling at your pants "Now, let''s see what you have under those pants, Shall we?"'
+		'You think about it but then decide to turn the tables on Fedor. "I will show you <b>BUT</b> you have to show me what you''re hiding under there." You say as you begin pull at his pants.'
+		
+		act 'See what Fedor does':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cam5.jpg"></center>'
+			'Not needing any more persuation, Fedor quickly removes his pants and begins jerking his penis as he said "Alright I did part, It''s your turn."'
+			'You respond, "A deal''s a deal." as you begin removing your pants. Fedor begins circling around you, recording you from all sides as you are standing in front of him, in the nude.'
+			'You are feeling more and more turned on as he records you and after a few minutes Fedor asks "What kind of show will we be having today?"'
+			gs 'arousal', 'foreplay', 5, 'sub'								
+			gs'stat'	
+					
+		
+			act 'Blowjob':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cambj1.jpg"></center>'
+				'You flash Fedor a playful smile as you slowly drop to your knees in front of him and begin to gently kiss the tip of his penis repeatedly as he continues recording you. You almost forget about the camera as you close your eyes, getting more into feeling of his warm penis pressed against your lips but eventually open you eyes and look up at Fedor to see a very pleased smile on his face.'
+				gs 'arousal', 'bj', 5, 'dom'								
+				gs'stat'	
+
+				act 'Suck his dick':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/cambj2.jpg"></center>'
+					'Fedor starts patting your head as you continue to kiss and lick the tip of his penis until he begins pushing your head toward his pelvis, forcing his dick into your mouth as you open your mouth welcoming it inside. You begin sucking and licking Fedor''s dick, doing your best to please him as he moans while rubbing your head. Fedor''s moans get more frequent as you pick up the pace and after a few more seconds Fedor tells you "I''m gonna cum."'
+					gs 'arousal', 'bj', 5, 'dom'									
+					gs'stat'	
+					
+					act 'On your face':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface1.gif"></center>'
+						'You pull Fedor''s dick out of your mouth and begin licking the tip until he groans. You pull away from his dick and open your mouth as he covers your face with his seed, leaving your face feeling warm and sticky as his cum begins dripping down your face and onto your chest. You look up to see Fedor with a very satisfied look on his face while still keeping the camera trained on you causing you to feel flushed as you just remember that he was recording you the whole time. Fedor pats your head as he said "What a great performance. You were great." while closing the camera and walking out of the bathroom.'
+						gs 'cum_call', 'face', $boy
+						gs 'cum_call', 'breasts', $boy
+						gs 'arousal', 'bj', 5, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'		
+								
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+					act 'In your mouth':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cum1.jpg"></center>'
+						'You continue sucking on Fedor''s dick faster as you hear him groan and fill your mouth with his seed which begins dripping down you lip. You slowly look up to see Fedor with a very pleased smile as he keeps the camera trained on you, causing you to feel flushed as you just remember that he was recording you the whole time. Fedor pats your head as he said "You always give the best blowjobs <<$pcs_nickname>>." while closing the camera and walking out of the bathroom.'	
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cum2.jpg"></center>'
+						gs 'cum_call', 'mouth', $boy
+						gs 'arousal', 'bj', 5, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'		
+
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+				end
+			end	
+			act 'Footjob':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camfj1.jpg"></center>'
+				'You grab Fedor by the shoulders and pull him down with you as you both land on your knees. Fedor raises an eyebrow noticeably a little puzzled at your actions but his look fades when he observes you wrapping your feet around his penis. You wink at Fedor as you begins rubbing the tip of his dick with your toes and after a few seconds you wrap your toes around is cock and begin stroking it gently.'
+				gs 'arousal', 'footjob', 5, 'dom'									
+				gs'stat'	
+
+				act 'Continue':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camfj2.jpg"></center>'
+					'Fedor lets out a light moan, encouraging you to wrap the base of your feet around his dick, stroking his penis as firmly as you can. You stare into the camera as you spread your legs wider, giving it a better view, knowing that Fedor will be watching this video later. Fedor stares into your eyes as he said "I''m ready to cum."'
+					gs 'arousal', 'footjob', 5, 'dom'									
+					gs'stat'	
+
+					act 'Make him cum':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/FJ3.gif"></center>'
+						'You stroke his cock faster as he pushes toward you while holding onto your hips then groans as he shoot his load on your face and chest. Fedor''s cum, almost hits you in the eye causing you to quickly turn away. After Fedor is fully spent he looks down at you with a playful smile "I''ve seen some girls on the field, who were good with their feet but not the same way you are." You giggle as you place your feet on his chest and give him a playful push. Fedor leans forward and lifts one of you feet up to his face, then gives it a kiss before getting dressed and leaving the bathroom.'						
+						gs 'cum_call', 'face', $boy
+						gs 'cum_call', 'breasts', $boy
+						gs 'arousal', 'footjob', 5, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'
+
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+				end
+			end
+			act 'Anal':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camanal1.jpg"></center>'
+				'You walk up to Fedor and whisper in his ear "I want you to fuck my ass. Fedor give you a smile as he places his camera on the ground in front of you then walks around you, grabbing you by the hips and pushing you into a kneeling position as he inserts his penis in your ass. You feel a jolt of pain as it first enters your anus but Fedor waits a few seconds for your ass to adjust to his dick then begins thrusting his hips into yours, ramming his dick deeper in your ass.'
+				gs 'arousal', 'anal', 5									
+				gs'stat'	
+
+				act 'Continue':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camanal2.jpg"></center>'
+					'After a few seconds all the pain fades and is replaced with pleasure as you begin pushing your hips against Fedor''s, pushing his dick deeper inside you. You take this time to look toward the camera on the floor in front of you and give it a wink as you continue fucking Fedor''s dick with your ass. Fedor lightly smacks your ass as he tells you "Where do you want my cum?"'
+					gs 'arousal', 'anal', 5									
+					gs'stat'	
+
+					act 'On my back':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camanal1.jpg"></center>'
+						'Fedor nods and then increases his pace, ramming his pelvis into your ass causing the sound of your bodies slapping together to fill the room until Fedor lets out a groans as he pulls out fo you and begins painting your back with his cum. After Fedor finishes he gives your ass a nice firm smack as he gets up and picks up his camera. Fedor begins wiping a drop of cum off the lens as he turns to you "I''m sure this will look great on that porn site." as he flashes you a playful grin.'
+						'You point your finger at him with a smile on your face "Don''t you dare." and you both laugh as Fedor gets dressed and leaves the bathroom.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+						gs 'cum_call', 'back', $boy
+						gs 'cum_call', 'butt', $boy
+						gs 'arousal', 'anal', 5
+						gs 'arousal', 'end'
+						gs'stat'
+						
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+					act 'In my ass':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camanal1.jpg"></center>'
+						'You turn to face Fedor as you say, "I want you to fill my as with your cum." Fedor flashes a wide smile as he replies, "As you wish milady." and begins increasing his pace while giving your ass an occasional smack. After a few seconds Fedor grips your hips firmly and begins filling your ass with his seed as you thrust your hips against his, doing your best to milk him dry. Fedor takes a few seconds to catch his breath as he pulls out of you causing a jet of sperm to pour out of your ass, causing a loud moan to escape your. mouth. Fedor picks up the camera and says to himself, "Maybe I should have placed the camera on the other side... oh well, I''m sure it will come out great anyway." he then looks to you "Good job <<$pcs_nickname>> you were great." as he gets dressed and leaves the bathroom.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal2.gif"></center>'
+						gs 'cum_call', 'anus', $boy
+						gs 'arousal', 'anal', 5, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'
+
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+				end
+			end	
+			act 'Vaginal':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camvag1.jpg"></center>'
+				'You give Fedor a mischievous smile as you reply, "How about you pound my pussy? I need your hard dick inside me." Fedor has a pleased yet surprised look on his, it seems he was not expecting you to speak in that manner. Fedor places the camera at the edge on the sink while using his hair gel bottle to keep it at a good angle angle. After his camera is set up, Fedor picks you up off your feet then lowers you to the ground. You feel the cold floor as he lowers you on your back but the cold sensation soon fades and instead you feel Fedor spreading your legs then entering your vagina.'
+				gs 'arousal', 'vaginal', 5								
+				gs'stat'	
+
+				act 'Continue':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/camvag2.jpg"></center>'
+					'The feeling of Fedor''s dick in your pussy fills your body with a feeling of bliss. Fedor thrusts his hips, pushing his dick further inside your vagina as he lifts your leg off the ground. You turn to the camera then blow a kiss at it, hoping to please Fedor when he watches it. After a few minutes, Fedor leans over your shoulder and whispers in your ear "I''m ready ot cum for you."'
+					gs 'arousal', 'vaginal', 5									
+					gs'stat'	
+
+					act 'Pull out':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum2.gif"></center>'
+						'You turn to Fedor and look into his eyes "I want you to paint my ass cheeks white." He nods with a smile on his face as he groans and paints your ass with his cum. You can feel the trickles of cum covering your ass then slowly leaking down to the floor. Fedor gets up then picks up his camera. Fedor starts watching the video for a few seconds then turns to you "The video came out great. Excellent job <<$pcs_nickname>>." you happily nod at Fedor as he gets dressed and leaves the room.'
+						gs 'cum_call', 'butt', $boy
+						gs 'arousal', 'vaginal', 5
+						gs 'arousal', 'end'
+						gs'stat'
+						
+						act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+					end	
+					if FedorLoveTalk = 1:
+						act 'Inside me':	
+							cls
+							minut += 5
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum4.gif"></center>'
+							'You turn around and look Fedor in the eyes as you say, "Fill me with your seed." Fedor gives you a pleased smile as he nods and increases the pace of his thrusts. Soon you hear Fedor groan then feel his seed filling your womb with it''s warmth. You thrust your hips into Fedors pelvis, trying your best to get his seed as deep inside you as possible. After Fedor catches his breath he pulls out of you, causing a jet of sperm to erupt from your vagina and leak onto the floor. Fedor picks up his camera then watches the video for a few seconds before turning to you "The video came out great. Thank you <<$pcs_firstname>>." you give Fedor a wide smile as he gets dressed and leaves the room.'						
+							gs 'cum_call', '', $boy
+							gs 'arousal', 'vaginal', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+						end
+					end	
+				end						
+			end	
+		end
+	end	
+end	
+	
+if $ARGS[0] =  'Bathroom 2':
+	cls
+	WithFedor = 0
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cam/Cam1.jpg"></center>'
+	'You sit on the toilet thinking about how they make gummy bears when you see a shadow loom over you. You look up to see Fedor''s dick right in your face, causing you to gasp in shock as Fedor thrust his penis into your open mouth. You look up to see Fedor standing over you with a mischievous smile. "I thought you might like something to suck on but sadly I''m all out of lolipops."'
+	'You slowly pull his dick out of your mouth which you massage it with your hands. "Mmmm my favorite flavor, Fyodor." and you give him a wink as you slide his penis back in your mouth.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex1.jpg"></center>'
+	gs 'arousal', 'bj', 5									
+	gs'stat'		
+
+	act 'Continue':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex2.jpg"></center>'
+		'Fedor begins undressing you as you continue sucking his dick. After a few seconds Fedor lifts you off the ground and carries you to the bathtub where you are seated on the ledge. You reach out and grasp Fedor''s cock and begin slowly jerking him off as you stare deeply into his eyes, doing your best to convey your affection without speaking. Fedor returns the stare as he said "<<$pcs_firstname>> you are so beautiful." which causes your cheeks to burn red as you continue stroking his hard cock as he lets out soft moans.'
+		gs 'arousal', 'foreplay_give', 5	
+		gs 'arousal', 'hj', 5									
+		gs'stat'	
+		
+		act 'Vaginal':	
+			cls
+			minut -= 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex3.jpg"></center>'
+			'Fedor reaches down and begins rubbing your clitoris as you continue jerking him off. After a few seconds he lightly pushes you back then inserts his hard penis into your wet slick vagina, causing you to moan loudly as you feet a sudden burst of pleasure between your legs. Fedor begins thrusting his dick further inside you, causing you to tilt your head back as you feel waves of pleasure engulfing your body. Fedor continues increasing the pace until he eventually slows down. Fedor looks down at you. "I''m cumming."'		
+			gs 'arousal', 'foreplay', 5									
+			gs 'arousal', 'vaginal', 5									
+			gs'stat'
+		
+			act 'Pull out':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex3.jpg"></center>'
+				'Fedor nods as he thrusts inside you a few more times then pulls out, covering your chest with his cum as you reach out and start jerking his dick, milking him as best you can while moaning as you feel his warm seed covering your chest. After Fedor finishes spraying you with his load, He looks down at you and says, "You''re really good at milking. Were you raised on a farm or something?"'
+				'You give him a smirk as you reply, "No, I''ve never milked cows, only men."'
+				'He breaks out in laughter and then responds, "Not too many men I hope."'
+				'You turn away from Fedor as you say, "Well a girl doesn''t kiss and tell." he smirks and gives you a playful stare before getting dressed and walking out of the bathroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum2.gif"></center>'
+				gs 'cum_call', 'breasts', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'		
+				
+				act 'Get dressed':gt 'FedorEv4', 'Bathroom'			
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex3.jpg"></center>'
+					'Fedor reaches for your chest and begins lightly squeezing and rubbing your breasts as he increases his pace. Fedor suddenly grips your waist with both hands and groans as he begins filling your womb with his seed. The warmth of his seed spraying inside you, fills you with a burst of excitement as you thrust your hips milkng every last drop out of Fedor''s dick. Fedor takes a moment to catch his breath then looks down at you. "<<$pcs_firstname>> you''re the most incredible girl I''ve even met."'
+					'You respond, "I just know what you like babe and I give it."'
+					'Fedor gives you a grateful smile as he pulls out of you causing his cum to leak out of you and on the ground. Fedor leans forward and gives you a gentle kiss before getting dressed and leaving the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum5.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Bathroom 3':
+	cls
+	WithFedor = 0
+	gs 'boyStat', 'A5'
+	'VKwip'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex4.jpg"></center>'
+	gs 'arousal', 'vaginal', 5								
+	gs'stat'	
+
+	act 'VKwip':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex5.jpg"></center>'
+		'VKwip'
+		gs 'arousal', 'vaginal', 5									
+		gs'stat'	
+	
+		act 'VKwip':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex6.jpg"></center>'
+			'VKwip'
+			gs 'arousal', 'vaginal', 5									
+			gs'stat'				
+				
+			act 'On my ass':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex6.jpg"></center>'
+				'VKwip'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum3.gif"></center>'
+				gs 'cum_call', 'back', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'				
+				
+				act 'Get dressed':gt 'FedorEv4', 'Bathroom'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/sex6.jpg"></center>'
+					'VKwip'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum81.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+			
+					act 'Get dressed':gt 'FedorEv4', 'Bathroom'	
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Kitchen 1':
+	cls
+	WithFedor = 0
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen.gif"></center>'
+	'As soon as you enter the kitchen Fedor grabs you by your hips then spins you around and lightly pushes you against the counter as he begins kissing you lustfully. You break off the kiss and drop to your knees in front of him then begin licking the tip of Fedor''s penis causing him to moan. You lick his dick a few more times then slowly wrap your lips around his shaft, trying to take the full length into your mouth.'
+	gs 'arousal', 'bj', 5, 'sub'								
+	gs'stat'	
+	
+	act 'Continue':	
+		cls
+		minut -= 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen.gif"></center>'
+		'You continue to suck Fedor''s dick as you look up at him, doing your best to please him. You decide that you want some pleasure too, so you stand up then push Fedor onto a nearby chair and then begin riding his hard cock, Moaning at the sensation of his dick rubbing against your g-spot. You begin thrusting faster, giving into the pleasure while moaning loudly and after a few seconds Fedor pushes against you causing both of you to fall to the ground.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen1.jpg"></center>'
+		gs 'arousal', 'bj', 5, 'sub'								
+		gs 'arousal', 'vaginal', 5, 'dom'									
+		gs'stat'		
+			
+		act 'On the floor':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen2.jpg"></center>'
+			'You don''t stop riding his dick even when on the floor. Fedor grabs your hips as he begins thrusting even harder, ramming his cock deeper inside your pussy. You are so entranced at the pleasure that you don''t even notice that you are almost screaming in pleasure which only gets Fedor more excited as he thrusts faster. After a few seconds Fedor tells you "I''m gonna cum."'				
+			gs 'arousal', 'vaginal', 5, 'sub'									
+			gs'stat'	
+			
+			act 'Pull out':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen2.jpg"></center>'
+				'Fedor gives your ass a light smack and then pulls out of you as he begins spraying his load on your leg. You can feel trickles of Fedor''s warm cum dripping onto your leg. Fedor gives your ass a gentle rub. "No matter where we go you always know how to show me a good time." You turn to Fedor as you respond, "The only thing we need for a good time is <font color="blue"><b>You</b></font> and <font color="#ff00cc"><b>Me</b></font>." Fedor gives your ass one last smack as he gets up then dresses himself before leaving the kitchen.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum2.gif"></center>'
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'
+				
+				act 'Get dressed':gt 'FedorEv4', 'Kitchen'	
+			end			
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen2.jpg"></center>'
+					'Fedor increases his pace as he gives your ass a quick smack. Fedor groans and you feel his warm seed filling your womb. You press your hips against Fedor''s as he finishes pumping you with his seed, Fedor then pulls out of you, causing the cum inside your vagina to leak out which mildly tickles you as it slides down your leg. Fedor then says, "I really lucked out when I met you." you turn to Fedor and respond, "We''re both lucky." Fedor give you a wink as he gets dressed then leaves the kitchen.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum4.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Get dressed':gt 'FedorEv4', 'Kitchen'	
+				end
+			end	
+		end
+	end	
+end		
+	
+if $ARGS[0] =  'Kitchen 2':
+	cls
+	WithFedor = 0
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen3.jpg"></center>'
+	'You enter the kitchen with Fedor and he begins kissing your neck as he lightly grabs and squeezes your breasts. Fedor''s hands raises up to your shoulders, he then pushes you onto your knees and then presses his penis against your lips You welcome his dick inside your mouth by opening up and wrapping your lips around Fedor''s dick, licking and sucking his cock as you rub on his balls with your finger tips.'	
+	gs 'arousal', 'bj', 5, 'sub'									
+	gs'stat'	
+
+	act 'Continue':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen4.jpg"></center>'
+		'You continue pleasuring Fedor with your tongue until you feel his hands on you shoulders, pulling you up off your feet and then onto the nearby counter. You flinch when you feel the cold counter pressed against your ass but soon that feeling is replaced by Fedor''s fingers rubbing against your clitoris, bringing you a gradual feeling of pleasure. After a few seconds Fedor lowers his head to your crotch and begins licking your clitoris gently which enacts a moan from your mouth.'
+		gs 'arousal', 'cuni', 5, 'sub'								
+		gs'stat'	
+		
+		act 'Enjoy his touch':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen5.jpg"></center>'
+			'Fedor continues pleasing you as he picks up the pace increasing the pleasure building up inside you. After a few minutes, Fedor grabs the counter with both hands then lifts himself to his feet. Fedor begins rubbing his penis against you vagina lips until you feel his dick slide into your pussy. Fedor begins thrusting while gradually increasing his pace as he holds your legs up on his shoulders. After a few more minutes, Fedor looks you in the eyes. "I''ve got some cum ready for you. Where would you like it?"'	
+			gs 'arousal', 'vaginal', 5, 'sub'								
+			gs'stat'	
+		
+			act 'On my chest':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen5.jpg"></center>'
+				'Fedor nods and then gives you a few more thrusts as you spread your legs in anticipation. Fedor quickly pulls out of you then groans and begins painting your chest with his cum as you reach out for his penis with both hands, milking him. You feel the warmth of his cum gradually covering your chest as you continue milking him as best you can. After Fedor is spent, he looks down at you, "I love seeing you covered in my cum. You look so sexy." You give Fedor a mischievous smile as he pulls away from you and gets dressed before walking out of the kitchen.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum110.gif"></center>'
+				gs 'cum_call', 'stomach', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'
+				
+				act 'Get dressed':gt 'FedorEv4', 'Kitchen'	
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/sex/Kitchen5.jpg"></center>'
+					'You wrap your legs around Fedor as he thrust his dick further inside you, Fedor then lets out a groan as he begins pumping his seed into your womb. You can feel his penis throbbing inside you, filling you up with his seed. Fedor looks down to you "Your such a great fuck <<$pcs_nickname>>." you respond, "Well that''s only one of my many talents." to which Fedor replies, "You''ll have to show me those other talents sometime." Fedor then gets dressed then walks out of the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+					
+					act 'Get dressed':gt 'FedorEv4', 'Kitchen'				
+				end
+			end	
+		end
+	end	
+end	
+
+if $ARGS[0] =  'Bedroom Cam':
+	cls
+	WithFedor = 0
+	FedorFilm += 1
+	minut += 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	if fedorKozlovQW < -10:
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end	
+	'As you both enter the bedroom, Fedor walks up to his desk then opens a drawer and pulls out a camera. He turns to you. "Hey <<$pcs_nickname>>, how about we make a little video, just for us?"'
+
+	act 'Sounds good to me':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/cam1.gif"></center>'
+		'Fedor''s face lights up as he responds, "Great, let''s start with you taking off your clothes." Fedor turns on his camera as you begin slowly stripping in front of the bedroom mirror. After removing your top you slowly turn to Fedor, to see him rubbing on his crotch as he records you. You continue stripping, removing your panties while feeling both embarrassed and turned on at the same time, feeling your face growing flushed.'
+		
+		act 'continue':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/cam2.gif"></center>'
+			'You can feel your heart pounding as you stand naked, in front of the camera. Fedor smirks as he says, "Hey <<$pcs_firstname>>, why don''t you dance for the camera?" You stand still for a second before beginning to dance. You continue dancing while trying to do your best to move as sexy as possible. You can feel yourself getting lost in your movements and almost forget about the camera as you get more focused on moving your body. After a few seconds Fedor asks "What kind of show shall we put on today?"'		
+		
+			act 'Jerk him off':	
+				cls
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/handjob1.gif"></center>'
+				'You push Fedor onto the bed, then begin unbuttoning his pants. You take Fedor''s penis out of his pants, then begin slowly stroking it, as you stare at the camera. Fedor asks "How do you lick my dick <<$pcs_nickname>>?"'
+				'You reply, "I love it. So warm, soft and hard." Fedor gives you a very pleased smile as he lightly moans.'
+				'You begin rubbing the base of his penis while enjoying how soft and warm his dick is until you hear Fedor say, "I''m gonna cum."'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/camhj1.gif"></center>'
+				gs 'arousal', 'hj', 5, 'dom', 'exhibitionism'
+				gs'stat'	
+					
+				act 'Make him cum':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/camhj1.gif"></center>'
+					'You continue rubbing Fedor''s panis while admiring it until you hear Fedor start to groan. You suddenly feel his penis begin throbbing in your hand as he sprays his load into the air. Fedor''s warm cum begins leaking down your hands as you look up at him with a confident grin. Fedor looks down to you and says, "Wow, you are really good with your hands." you give him a wink as he turns off the camera then gets dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/camhj2.gif"></center>'					
+					gs 'cum_call', 'hands', $boy
+					gs 'arousal', 'hj', 5, 'dom', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'						
+
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end					
+			end
+			act 'Suck his dick':	
+				cls
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj14.gif"></center>'
+				'You push Fedor onto the bed then begin unbuttoning his pants. You take Fedor''s penis out of his pants then begin slowly stroking it, as you stare at the camera before wrapping your lips around his shaft, causing him to let out a low moan. You begin sucking Fedor''s dick while staring at the camera as he says, "You look so sexy with my dick in your mouth." you let out a low moan which seems to stimulate Fedor even more as he lets out a moan. Fedor looks down at you and says, "I''m cumming <<$pcs_nickname>>."'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/h0,3.gif"></center>'			
+				gs 'arousal', 'bj', 5, 'dom', 'exhibitionism'
+				gs'stat'	
+					
+				act 'Pull out':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/cambj1.gif"></center>'
+					'You pull Fedor''s penis out of your mouth then begin licking the shaft firmly. Fedor groans then begins spraying his load in the air which shoots across the room. You begin firmly stroking Fedor''s dick, milking every drop out of it while staring into the camera with a seductive grin. Fedor takes a second to catch his breath then says, "Damn <<$pcs_firstname>>, You really know how work your tongue." as he packs up the camera then gets dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/Lick4.gif"></center>'					
+					gs 'cum_call', 'hands', $boy
+					gs 'arousal', 'bj', 5, 'dom', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'					
+
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end
+				act 'In your mouth':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/cambj1.gif"></center>'
+					'You continue sucking on Fedor''s dick while staring at the camera, feeling more turned on as Fedor continues filming you. Fedor suddenly groans and you feel his cum shooting down your throat which you happily swallow, knowing how much it turns Fedor on when you swallow his cum. Fedor looks down at you with a very pleased smile. "You were outstanding <<$pcs_firstname>>. Thank you." you give him a wink as he closes the camera then gets dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum1.gif"></center>'					
+					gs 'cum_call', 'mouth', $boy
+					gs 'arousal', 'bj', 5, 'dom', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'	
+					
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end					
+			end
+			act 'Anal':	
+				cls
+				'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal8.gif"></center>'
+				'You give Fedor a wink then walk up to a nearby stool and bend over. You lick your fingertips then begin lubing and massaging your anus with your fingers while giving Fedor a very inviting look. Fedor gives you a seductive smile as he takes off his pants then approaches you and soon you feel his penis tip pressing against you anus. Suddenly you feel Fedor''s penis enter your ass causing a jolt of pain. Fedor holds still for a few seconds, giving your ass some time to adjust to his dick before slowly fucking your ass. After a few minutes of Fedor fucking your ass he says, "<<$pcs_firstname>> are you ready for my cum?"'
+				gs 'arousal', 'anal', 5, 'sub', 'exhibitionism'
+				gs'stat'	
+					
+				act 'Pull out':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal9.gif"></center>'
+					'You look back at Fedor then say, "Paint my ass with your cum."'
+					'Fedor gives you a wink then increases his pace before pulling his penis out of your ass and painting your ass with his warm seed. You stare directly at the camera as Fedor sprays his cum all over your ass. Fedor gives your lower ass a smack before saying "You have such a tight firm ass <<$pcs_nickname>>. I love it." You give Fedor a wink as he gets dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'					
+					gs 'cum_call', 'butt', $boy
+					gs 'arousal', 'anal', 5, 'sub', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'						
+
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end
+				act 'Inside me':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal9.gif"></center>'
+					'You turn to face the camera then say, "Cum inside my ass."'
+					'Fedor gives you a pleased smile as he increases his pace. You enjoy the feeling of Fedor''s big hard cock in your ass when you hear him groan and begin pumping your ass with his seed. You continue staring into the camera as Fedor fills your ass with cum until he finishes and says, "Your ass is so tight and beautiful <<$pcs_firstname>>. Just like you." he then leans forward and gives you a kiss on your cheek before getting dressed.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal2.gif"></center>'					
+					gs 'cum_call', 'anus', $boy
+					gs 'arousal', 'anal', 5, 'sub', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'	
+					
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end					
+			end	
+			act 'Vaginal':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/CamVag1.gif"></center>'
+				'You turn around then place your hands on the mirror while slowly rubbing on your clitoris. Fedor realizes what you want and removes his pants before walking up' 
+				'behind you. You can feel Fedor''s hand firmly rubbing on your clit, causing you to moan softly. After a few seconds, you feel Fedor''s penis slowly rubbing against your vagina. Fedor''s penis enters your vagina giving you a jolt of pressure followed by a building pleasure. You push back, forcing Fedor''s dick even further inside your pussy and begin grinding on his dick while focusing on how good it feels inside you. You then hear Fedor whispering in your ear "<<$pcs_firstname>> I''m ready to cum for you."'
+				gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+				gs'stat'					
+
+				act 'Pull out':	
+					cls
+					minut += 5
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/CamVag2.gif"></center>'
+					'You look up at Fedor''s reflection. "Cum on my ass."'
+					'Fedor gives your ass a firm smack as he thrust his hips a few more times before groaning. You can feel Fedors warm cum covering your ass and back as you bite your lips, enjoying the warmth of Fedor''s cum on your back. Fedor rubs your legs as he says, "You''re so sexy <<$pcs_firstname>>." You slowly look up to Fedor and give him a wink. Fedor then pans his camera up your body, recording the cum dripping off your body before turning off the camera then getting dressed.'					
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+					gs 'cum_call', 'back', $boy
+					gs 'cum_call', 'butt', $boy
+					gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+					gs 'arousal', 'end'
+					gs'stat'					
+
+					act 'Get up':gt 'FedorEv4', 'Bedroom'
+				end
+				if FedorLoveTalk = 1:
+					act 'Inside Me':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/CamVag1.gif"></center>'
+						'You look up at Fedor''s reflection. "Fill me with your cum."'
+						'Fedor has a very pleased smile on his face as he increases his pace. Fedor then groans and you feel his seed filling your womb causing you to let out a loud moan. You look up at the camera as you focus on Fedor''s hard cock throbbing inside you and his warm cum filling up your pussy.'
+						'After a few seconds Fedor asks "How does my cum feel <<$pcs_firstname>>?"'
+						'You reply, "It feels so warm and pleasant. Your cum belongs inside me Fyodor."'
+						'Fedor gives you a sweet smile as he responds, "Ohh <<$pcs_firstname>>, you are the sweetest, most beautiful girlfriend I could ever ask for." Fedor kisses you passionately as he closes his camera then begins getting dressed.'						
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum10.gif"></center>'				
+						gs 'cum_call', '', $boy
+						gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+						gs 'arousal', 'end'
+						gs'stat'						
+
+						act 'Get up':gt 'FedorEv4', 'Bedroom'
+					end	
+				end						
+			end					
+		end
+	end
+	act 'Sorry but I can''t risk it':
+		cls
+		minut += 5
+		gs'stat'
+		if fedorKozlovQW < -10:
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+		else
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		end	
+		'"Sorry Fedor but I can''t risk a video like that getting out." Fedor gives you a smile as he replies, "Don''t worry <<$pcs_firstname>>, I understand."' 
+		'Fedor then puts the camera away then walks up to you and gives you a soft kiss.'
+
+		act 'Lead him out of the room':gt 'FedorEv4', 'Random Sex'
+		
+		act 'Walk away':gt 'FedorEv4', 'Bedroom'
+	end	
+end	
+
+if $ARGS[0] =  'Bedroom 1':
+	cls
+	WithFedor = 0
+	minut -= 5
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/caress1.jpg"></center>'	
+	'As you and Fedor enter the bedroom, Fedor starts pawing at your breasts and licking your neck as he''s undressing you. Enjoying his caress, you tilt your head back letting him undress and fondle your body. After you are undressed, you turn to Fedor and begin undressing him while licking and sucking on his neck. When you are both undressed, Fedor kisses your lips tenderly while continuing to caress your body."'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/bedroomkiss2.gif"></center>'
+	gs 'arousal', 'kiss', 5, 'sub'									
+	gs 'arousal', 'foreplay', 5, 'sub'									
+	gs'stat'		
+		
+	act 'Jerk him off':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/HJ1.gif"></center>'
+		'You break off the kiss, and push Fedor onto the bed. You sit down on the bed next to him, then reach down to his penis, and wrap your fingers around his shaft, and begin slowly stocking his cock, while staring into his eyes. You can see a longing look in Fedor''s eyes as you gently stroke his penis and feel it start to throb a bit in your hand.'
+		gs 'arousal', 'hj', 5, 'dom'									
+		gs'stat'			
+		
+		act 'Continue':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/HJ2.gif"></center>'
+			'Fedor brings his face to yours to kiss you as you continue jerking him off and you raise your face to match his and give him a soft passionate kiss. You can feel Fedor''s tongue enter your mouth as you do your best to massage his tongue with yours while feeling your hand get a bit wet from the pre cum leaking from Fedor''s penis. Fedor then pulls away from your lips as he looks you in the eyes "<<$pcs_firstname>> Your hands are so soft. I wont last much longer."'	
+			gs 'arousal', 'hj', 5, 'dom'									
+			gs'stat'				
+			
+			act 'Make him cum':
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/HJ3.gif"></center>'	
+				'You continue jerking him off and Fedor realizes that you want him to cum, so he leans back and begins lightly grunting as he nears closer to climax. You continue stroking his penis, enjoying the fact you are in complete control of his pleasure at the same time happy that you are able to give your man the release he deserves. Fedor''s breathing grows more rapid then stops as his penis begins throbing in your hand. Fedor''s penis erupts with his warm cum which you can feel pouring down your hand. You continue milking him until Fedor sits up. "Thank you for that <<$pcs_firstname>>. It''s your turn now."'
+				gs 'cum_call', 'hands', $boy
+				gs 'arousal', 'hj', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'	
+				
+				act 'Your turn':gt 'FedorEv4', 'Bedroom 3'
+			end	
+			act 'Try another position':gt 'FedorEv4', 'Bedroom 2'
+		end
+	end
+	act 'Kiss his dick':	
+		cls
+		minut += 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/lick1.gif"></center>'
+		'You push Fedor onto the bed then climb on top of him. Fedor looks down at you in anticipation for what you will do next. You lick up the shaft of his penis as you reach the tip, you give his penis a soft but firm suck while staring ito his eyes. Fedor gives you a look of adoration as you passionately kiss the tip of his penis, doing you best to let Fedor know how much he means to you. Fedor smiles as he says, "<<$pcs_firstname>> I''m so lucky to have you in my life."'
+		'You reply, "I can say same about you." before returning your lips to the tip of his penis, giving it a loving kiss.'
+		gs 'arousal', 'rimming', 5, 'dom'									
+		gs'stat'		
+		
+		act 'Continue':	
+			cls
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/lick'+rand(2,3)+'.gif"></center>'
+			'You stare into Fedor''s eyes as you begin licking the tip of his penis. Fedor lets out a moan as your tongue hits the very tip of his penis which reveals to you just how sensitive that spot is, so you continue licking his penis in a circular motion, enjoying his body flinch every time your tongue hits his tip. Fedor looks down at you and says, "<<$pcs_nickname>> you''re...driving me crazy doing that. I can''t hold on mush longer"'	
+			gs 'arousal', 'rimming', 5, 'dom'									
+			gs'stat'
+			
+			act 'Make him cum':
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/lick4.gif"></center>'	
+				'Noticing how close Fedor is to the edge of pleasure, you happily increase the pace of your tongue and even lick up the shaft as Fedor groans and begins shooting his cum in the air. You watch him carefully as he cums over his own chest. Watching him cum for you, gives you a warm feeling in you crotch as your vagina gets more and more wet. Fedor looks down to you "Damn <<$pcs_firstname>> you are really a pro at this, aren''t you?"'
+				'You repond "Well I know what my man needs."'
+				'Fedor then replies, "And I know what you need right now"'
+				gs 'cum_call', 'hands', $boy
+				gs 'arousal', 'rimming', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'	
+				
+				act 'Your turn':gt 'FedorEv4', 'Bedroom 3'
+			end	
+			act 'Try another position':gt 'FedorEv4', 'Bedroom 2'
+		end
+	end			
+	act 'Suck his dick':	
+		cls
+		minut += 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj4.gif"></center>'
+		'You continue kissing Fedor for a few more seconds before dropping to your knees and licking Fedor''s penis, teasing his dick with your tongue before wrapping your lips around the shaft and massaging it with your tongue. Fedor lilts his head back and lets out a light moan as you continue licking and sucking his hard cock. Fedor looks down at you and begins rubbing the top of your head with his left hand, obviiusly pleased with you.'
+		gs 'arousal', 'bj', 5, 'dom'									
+		gs'stat'		
+		
+		act 'Continue sucking':	
+			cls
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj5.gif"></center>'
+			'You begin increasing the pace as you look up to Fedor then get lost in his longing eyes. You begin feel so exciting, knowing how badly he needs you right now, How much he adores what you are doing for him. The excitement makes your spine tinkle a little bit. Fedor tilts his head back as he lets out a light grunt, trying to hold back from cumming. Fedor looks down to you and says, "You''re so damn good with your mouth. I can''t hold back much longer."'	
+			gs 'arousal', 'bj', 5, 'dom'									
+			gs'stat'
+			
+			act 'Make him cum':
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum1.gif"></center>'	
+				'You let out a smile as you greatly increase the pace almost fucking his dick with your throat while trying to hold back from gagging. Fedor''s head quickly jerks back as his cock begins throbbing in your mouth, filling your throat with his cum. You can feel Fedor''s warm cum squirting down your throat and leaking from your lips as you do your best to swallow every single drop, not wanting to waste a drop of Fedor''s sweet necter. When Fedor finishes, He looks down to you and says, "You really are amazing <<$pcs_firstname>>. It''s time for your reward."'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'bj', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'	
+				
+				act 'Receive your reward':gt 'FedorEv4', 'Bedroom 3'
+			end			
+			act 'Try another position':gt 'FedorEv4', 'Bedroom 2'
+		end
+	end		
+	act '69':	
+		cls
+		minut += 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/69a.gif"></center>'
+		'You take a step back then lean forward to suck Fedor''s dick and he begins rubbing your back until his hands end up on your waist which he then grips firmly and lift you off the ground. You do your best not to let Fedor''s dick escape your mouth as you wait to see what he does. After a few seconds on licking and suck Fedor''s dick, you feel Fedor''s tongue on your clitoris, lightly licking it which gives you a nice constant build of pleasure.'
+		gs 'arousal', 'bj', 5, 'sub', 'dom'									
+		gs'stat'	
+		
+		act 'Continue':	
+			cls
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/69b.gif"></center>'
+			'You can feel the presure of you weight building up in your head but continue to suck Fedor''s dick, trying your best to return the pleasure that Fedor is giving you. After a few seconds Fedor begins stepping back to the bed, where he lays on his back, never breaking contact with your clitoris. You can feel Fedor lightly grunt as his dick leaks a little pre cum into your mouth which you happily swallow despite it''s tart taste. Fedor pulls from your clitoris but continues rubbing it with his finger as he tells you "Are you ready to cum with me?."'	
+			gs 'arousal', 'bj', 5, 'sub', 'dom'									
+			gs'stat'	
+
+			act 'Always':
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj3.gif"></center>'	
+				'"I''m always ready to cum with you." Fedor immediately returns to licking your clit as you continue sucking his dick, feeling the pleasure build up quickly and then feeling your clitoris heat up as your body begins squirming as waves of pleasure hit your whole body. You moan loudly as you feel Fedor''s hands tighten around your hips and his penis begins throbbing in your mouth filling it with his cum which you can''t seem to keep from leaking out of your mouth as you climax.' 
+				'After you both finish, you roll off of Fedor and catch your breath as he says, "<<$pcs_nickname>> You''re the best. you know that right?"'
+				'You reply, "Only the best deserves the best." Fedor give you a very passionate kiss before getting dressed then walking out of the bedroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagkiss.gif"></center>'
+				$orgasm_or = 'yes'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'bj', 5, 'sub', 'dom'
+				gs 'arousal', 'end'
+				gs'stat'					
+				
+				act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+			end	
+			act 'Try another position':gt 'FedorEv4', 'Bedroom 2'
+		end	
+	end			
+	act 'Footjob':	
+		cls
+		minut += 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/fj1.gif"></center>'	
+		'You decide to try something different as you push Fedor on the bed. You climb onto th bed in front of Fedor then sit in front of him extending your feet to his face which he happily licks while staring into your eyes. Once your feet are nice and wet you wrap them around Fedor''s dick and begin stroking his cock with your feet as you stare into his eyes with glee, seeing how excited he seems to be for this new position.'
+		gs 'arousal', 'footjob', 5, 'dom'								
+		gs'stat'			
+		
+		act 'Continue':	
+			cls
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/fj2.gif"></center>'	
+			'You try to find the best way to please Fedor using only your feet and you end up deciding to stroke his penis with your toes as your other foot holds his hard cock in place and to your joy, you hear a moan escape Fedor''s mouth whixh notifies you that you are doing a good job pleasing him. You start increasing the pace as Fedor begins moving his hips going along with your strokes. Fedor wraps his hands around your ankles and begins rubbing it as he tells you "<<$pcs_firstname>> your feet are so smooth. I wont be able to hold on much longer at this rate."'	
+			gs 'arousal', 'footjob', 5, 'dom'									
+			gs'stat'	
+			
+			act 'Make him cum':
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/fj3.gif"></center>'		
+				'You greatly increase the pace of your strokes as Fedor raises up to his knees while pushing his chest forward as his pleasure builds up fast. After a few more strokes, Fedor groans and you feel his penis begins throbbing as he sprays his load all over your chest and one drop almost gets in your eye as he covers you in his cum. After Fedor is fully spent, he looks down at you and says, "<<$pcs_firstname>> how did you get so good with your feet. I didn''t know a footjob could be that amazing."'
+				'You respond, "I guess all those gym classes had to be good for something right?" Fedor chuckles as he gets dressed and walks out of the room.'	
+				gs 'cum_call', 'face', $boy
+				gs 'cum_call', 'breasts', $boy
+				gs 'arousal', 'footjob', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'										
+				
+				act 'Your turn':gt 'FedorEv4', 'Bedroom 3'
+			end	
+			act 'Try another position':gt 'FedorEv4', 'Bedroom 2'
+		end	
+	end	
+end	
+
+if $ARGS[0] =  'Bedroom 2':
+	cls
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/caress2.jpg"></center>'	
+	'Fedor begins kissing you passionately as he reaches out for your hands. You continue kissing as your hands meet up and you both interlock your fingers which gives you a warm feeling inside feeling Fedor''s fingers wrapped around yours, his lips on yours, his tongue caressing yours, his chest pressed against yours and his heart beating at the same pace as yours. Fedor gently pulls away from your lips then asks "What do you desire, my love?"'
+	gs 'arousal', 'kiss', 5, 'sub'									
+	gs'stat'		
+
+	act 'Missionary':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag.gif"></center>'
+		'You reply, "Please fuck my pussy." as you spread your legs wide.'
+		'Fedor responds, "I''ll fuck you real good <<$pcs_firstname>>." as he shoves his dick into your pussy causing a loud moan to escape your mouth. You wrap your legs around Fedor''s waist as he continues thrusting his dick further inside your pussy. You begin kissing Fedor''s neck as he fucks you.'
+		gs 'arousal', 'vaginal', 5, 'sub'									
+		gs'stat'	
+			
+		act 'Continue':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag2.gif"></center>'
+			'Fedor picks up the pace as you lay back enjoying his hard cock fucking your wet pussy, enjoying every second of it, feeling Fedor''s body pressing against yours and his penis rubbing your g-spot, gradually building your pleasure with each thrust. After a few minutes Fedor whispers in your ear "I''m ready to cum. How would you like it?"'	
+			gs 'arousal', 'vaginal', 5, 'sub'								
+			gs'stat'				
+			
+			act 'Pull out':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag2.gif"></center>'
+				'Fedor nods as he continues fucking you at an increased pace and soon pulls out of you and begins jerking his penis over your stomach, covering you in his cum. The warmth of his cum covers both your stomach and chest which greatly excites you. After Fedor finishes he looks down at you and says, "You''re amazing as always <<$pcs_firstname>>, The best fuck a man could ask for."'
+				'You look up at him and reply, "I could say about you, my love." Fedor gives you a passionate kiss before getting dressed and leaving the room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagcum.gif"></center>'
+				gs 'cum_call', 'stomach', $boy
+				gs 'cum_call', 'breasts', $boy
+				gs 'arousal', 'vaginal', 10
+				gs 'arousal', 'end'
+				gs'stat'					
+				
+				act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum5.gif"></center>'	
+					'You look Fedor in the eyes as you reply, "Fill me with your seed, my love."'
+					'Fedor gives you a passionate kiss as he begin increasing his pace. You can feel Fedor''s penis entering deeper inside you as he groans and begins filling your womb with his warm cum. You can feel his penis throbbing as he continues to pump your pussy with his seed. After Fedor finishes, he looks down to you. "You are the best girlfriend I could ever ask for. I''m so lucky to have you."'
+					'You look him in the eyes as you reply, "I love you Fyodor and I always will." Fedor leans forward and gives you a long passionate kiss before getting dressed and leaving the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagkiss.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'vaginal', 10
+					gs 'arousal', 'end'
+					gs'stat'	
+					
+					act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+				end	
+			end
+		end	
+	end
+	act 'Cowgirl':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss.gif"></center>'	
+		'You reply, "I want to ride your big hard cock."'
+		'Fedor leans back and says, "It''s all yours, my love." you quickly climb on top of Fedor and gently guide his penis into your vagina then lower yourself on top of it, feeling it slide into your wet vagina with no effort. You begin riding Fedor''s cock as he leans forward and gives you a passionate kiss. The feeling of Fedor''s dick inside you and his tongue caressing yours, fills you with a warm feeling in your heart to know how passionately Fedor is kissing you.'
+		gs 'arousal', 'vaginal', 5, 'dom'								
+		gs'stat'	
+			
+		act 'Continue':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss2.gif"></center>'
+			'As you continue riding Fedor, you can''t help but run your hands up his chest, feeling his firm muscles, enjoying every curve of his chest which fills you with excitement, to know that this strong man is all yours. Fedor looks you in the eyes as he says, "You''re the sexiest girl I''ve ever met in my life. There is no one I''d rather be fucking than you."'
+			'You respond, "Well you can fuck me whenever you want babe."'
+			'His eyes light up as he reponds "You always know just what to say." Fedor then gives you a few more thrusts before saying "<<$pcs_nickname>> I''m ready to cum for you, so tell me how you want it."'	
+			gs 'arousal', 'vaginal', 5, 'dom'									
+			gs'stat'	
+			
+			act 'Pull out':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss2.gif"></center>'
+				'"Cover me with your hot cum." Fedor nods as he quickens his pace then lightly pushes you on your back as he begins jerking off over you. Fedor groans and begins spraying his warm cum on your chest as you lay back enjoying the warmth of his cum cover your stomach and chest.'
+				'After Fedor finishes catching his breath he looks down to you. "That''s my girl. Always enjoying my cum."'
+				'You give Fedor a mischievous grin as you respond, "Well I hear it''s good for my skin." Fedor chuckles as he gets dressed and leaves the room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagcum.gif"></center>'
+				gs 'cum_call', 'breasts', $boy
+				gs 'cum_call', 'stomach', $boy
+				gs 'arousal', 'vaginal', 10
+				gs 'arousal', 'end'
+				gs'stat'	
+					
+				act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum3.gif"></center>'
+					'You look Fedor in the eyes as you reply, "Fill me with your seed, my love." Fedor gives you a passionate kiss as you both increase the pace. You soon feel Fedor''s arms tighten around you as he groans. You can feel Fedor''s warm seed quickly filling your womb and you continue riding him, trying to keep his dick as far inside you as possible. You let out a loud moan as Fedor finishes pumping your pussy with his seed.'
+					'Fedor catches his breath before looking you in the eyes "You are the most precious thing in my life. I love you <<$pcs_firstname>>."'
+					'You can feel tears begin to form in your eyes as you reply, "I love you too Fyodor, with all my heart." Fedor leans forward then gives you a long passionate kiss before getting dressed and leaving the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vagkiss.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'kiss', 5
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'	
+					
+					act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+				end	
+			end	
+		end
+	end			
+	act 'Anal':	
+		cls
+		minut -= 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cuni.gif"></center>'
+		'You reply, "I want you to fuck my ass." Fedor gives you a smile as he grabs you by the arm and flips you onto your stomach. Fedor rubs your ass and gives it a firm smack then grabs onto your legs and lifts up your ass to his face where he begins licking your vagina and anus. You let out a soft moan as Fedor alternates between licking your ass and vagina. Fedor begins focusing on your ass properly lubricating your asshole before climbing onto his knees. You can feel Fedor''s penis lightly pushing against your anus and gradually pushing deeper inside you which gives you a sharp pain as his penis expands your anus.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal2.gif"></center>'
+		gs 'arousal', 'foreplay', 5, 'dom'			
+		gs 'arousal', 'anal', 5									
+		gs'stat'	
+			
+		act 'Doggystyle':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal3.gif"></center>'
+			'Fedor gives you ass a few seconds to adjust to his cock and then begins thrusting his dick inside you which causes a bit of pain at first but the pain begins to dissipate and it is quickly replaced with pleasure. The feeling of Fedor''s hard cock inside your ass which fills you with excitement as you shout out "Ohh yes Fyodor. Fuck me like a bitch!" Fedor gives you a firm smack on the ass as he replies, "Don''t worry <<$pcs_firstname>>, I''ll fuck you real good."'	
+			gs 'arousal', 'anal', 5, 'sub'								
+			gs'stat'	
+			
+			act 'Finish':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/virginanal4.gif"></center>'
+				'Fedor pushes against you and begin pumping you even faster while he wraps his arms around yours giving him more leverage to push his dick deeper in your ass. You let out a loud moan as he rams your ass harder, stretching out your asshole which hurts a bit but the knowledge that you are giving Fedor the pleasure he deserves fills you with excitement, making the pain worth it. Fedor says, "Are you ready for my cum"'
+				'Which you quickly respond, "Yes Fedor, cum inside me."'
+				'He then quickens his pace and you feel his bady press firmly against yours as he begins pumping his cum inside your ass. When Fedor is finished he whispers in your ear "How does my bitch like her ass fucking?"'
+				'You turn back to him with a mischieveious grin on your face "I love it when you fuck my ass."'
+				'Fedor responds "Good girl" then gives your ass one last smack before getting dressed.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/analcum.gif"></center>'
+				gs 'cum_call', 'anus', $boy
+				gs 'arousal', 'anal', 5, 'sub'
+				gs 'arousal', 'end'
+				gs'stat'					
+				
+				act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+			end	
+		end
+	end	
+	act 'Reverse cowgirl':	
+		cls
+		minut += 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/ride1.gif"></center>'	
+		'You reply, "I want to ride your big hard cock."'
+		'Fedor leans back and says, "It''s all yours my love." you quickly climb on top of Fedor and gently guide his penis into your vagina then lower yourself on top of it, feeling it slide into your wet vagina with no effort. You begin riding Fedor''s cock as he grabs onto your arms to keep you from losing your balance. The feeling of Fedor''s dick inside you and his strong arms holding you steady gives you a warm feeling in your heart, knowing that he will not let you fall.'
+		gs 'arousal', 'vaginal', 5, 'dom'									
+		gs'stat'	
+			
+		act 'Continue':	
+			cls
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/ride2.gif"></center>'
+			'As you continue riding Fedor, He wraps his arms around your legs and pulls you toward him, so that he is basically carrying you. Feeling Fedor''s strong arms holding you up, increases your excitement, knowing that he is in control of the pace despite you being on top. Fedor gives your ass a firm smack as he says, "<<$pcs_firstname>> you fuck like an enegized bunny."'
+			'You respond, "Well this bunny is yours to fuck anytime you want, babe."'
+			'His eyes light up as he reponds "You always know just what to say." Fedor then gives you a few more thrusts before saying "<<$pcs_nickname>> I''m ready to cum for you, so tell me how you want it."'	
+			gs 'arousal', 'vaginal', 5, 'sub'									
+			gs'stat'	
+			
+			act 'Pull out':	
+				cls
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/ride2.gif"></center>'
+				'"Pull out babe." Fedor nods as he quickens his pace then he lightly pulls out of you then groans and begins spraying his warm cum on your back and feet as you stroke his penis, trying to get every last drop out of it.'
+				'After Fedor finishes catching his breath he looks you in the eyes. "<<$pcs_nickname>> I could fuck you for days straight."'
+				'You give Fedor a mischievous grin as you respond, "Be careful or I might end up holding you to that." Fedor chuckles as he gets dressed and leaves the room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum7.gif"></center>'
+				gs 'cum_call', 'butt', $boy
+				gs 'cum_call', 'feet', $boy
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'	
+					
+				act 'Shower':gt 'FedorEv4', 'Bedroom'
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/ride2.gif"></center>'
+					'You turn back to face Fedor as you reply, "Fill up my pussy, my love." Fedor gives your ass a firm smack as he increases the pace. You soon feel Fedor''s arms holding you tighter as he groans. You can feel Fedor''s hard cock throbbing inside you, filling you with his warm seed as you continue riding him, trying to keep his dick as far inside you as possible. You let out a loud moan as Fedor finishes pumping your pussy with his seed.'
+					'Fedor catches his breath before looking you in the eyes "You are the most precious thing in my life. I love you <<$pcs_firstname>>."'
+					'You can feel tears begin to form in your eyes as you reply, "I love you too Fyodor, with all my heart."'
+					'Fedor leans forward then gives you a long passionate kiss before getting dressed and leaving the room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum81.gif"></center>'
+					gs 'cum_call', '', $boy
+					gs 'arousal', 'kiss', 5, 'dom'
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'	
+					
+					act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+				end	
+			end	
+		end
+	end				
+end	
+
+if $ARGS[0] =  'Bedroom 3':
+	cls
+	minut -= 5
+	gs 'boyStat', 'A5'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/caress1.gif"></center>'
+	'Fedor''s hand slides up your leg, until it arrives at your vagina. You spread your legs wide, welcoming his hand as you feel his fingers rubbing on your clitoris and his other hand on your nipples. Fedor leans forward and gives you a passionate kiss as he continues to rub your sensitive parts. You relax, keeping your hands at your sides, only focusing on the pleasure building inside you from Fedor''s fingers on your nipples, his lips on yours, his tongue caressing yours and his fingers rubbing your clitoris gently but firmly.'
+	gs 'arousal', 'foreplay', 5, 'sub'
+	gs 'arousal', 'vaginal_vibe', 5, 'sub'									
+	gs'stat'		
+
+	act 'Continue':	
+		cls
+		minut -= 5
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/caress2.gif"></center>'
+		'Fedor continues caressing your body as you begin leaning back when you feel your legs trembling from the pleasure building up. Fedor doesn''t stop kissing and caressing you which is making your heart aflutter with his every touch and show of affection. You can feel tears rolling down your cheeks as Fedor continues showing you pure affection.'
+		'Unable to keep quiet you pull away from Fedor''s lips and tell him, "Fyodor, I love you with all my heart."'
+		'Which he responds, "I love you too <<$pcs_firstname>>. You mean the world to me."'
+		gs 'arousal', 'foreplay', 5, 'sub'
+		gs 'arousal', 'vaginal_vibe', 5, 'sub'									
+		gs'stat'				
+		
+		act 'Cuni':	
+			cls
+			minut -= 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cuni.gif"></center>'
+			'Fedor then gives you one more kiss before lowering his mouth to your vagina as he begins licking your clitoris. You let out a loud moan as his tongue his your clitoris, pushing your pleasure to a new level. You can''t help but let out continuous moans as Fedor brings you to the brink of pleasure. Unable to take it anymore your body spasms as waves of pleasure flow though your body, filling you with pure Ecstasy.'
+			'Moaning and spasming while you lay back enjoying the pure bliss you are feeling. After you finish riding out your orgasm, Fedor kisses your forehead and says, "I''m so happy that I can give you the release you deserve." as he then gets dressed and leaves the room.'	
+			$orgasm_or = 'yes'
+			gs 'arousal', 'cuni', 5, 'sub'
+			gs 'arousal', 'end'									
+			gs'stat'					
+			
+			act 'Get dressed':gt 'FedorEv4', 'Bedroom'
+		end
+	end
+end	
+	
+if $ARGS[0] = 'Shower 2':
+	cls
+	minut += 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/shared/home/bathroom/dush.gif"></center>'
+	'You climb into the shower and begin lathering your body, cleaning yourself as thoroughly as possible until you can hear Fedor enter the room and you peek out of the curtain to see him taking a piss and as soon as he notices you, he gives you a wink with a mischievous grin on his face.'
+
+	act 'Invite him in':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cleanup.jpg"></center>'
+		'You give Fedor a welcoming gesture that he happily accepts. Fedor climbs into the shower and begins kissing you as you both lather each other.'		
+
+		act 'Jerk him off':	
+			cls
+			minut -= 5
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower1.gif"></center>'
+			'You reach down and grab Fedor''s dick slowly but firmly jerking him off while continuing to kiss his lips and massage his tongue with yours as Fedor carrasses your ass firmly. Fedor grabs your hips and carefully spins you toward the wall pressing your back against it without ever breaking off the kiss but then lower his head as he crouches down in front of you and begins licking your clitoris softly. You lift your leg up welcoming his tongue into your vagina which he occasionally does before returning to your clit.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower2.gif"></center>'
+			gs 'arousal', 'hj', 5, 'dom'									
+			gs 'arousal', 'cuni', 5, 'dom'									
+			gs'stat'	
+	
+			act 'Continue':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower3.gif"></center>'
+				'After a few seconds, Fedor wraps his arm around your legs then reaches out for your other leg and lifts you off the ground and you instinctively grab onto his shoulders as he lowers you onto his dick, inserting it into your vagina causing a jolt of pleasure and a loud moan. You look Fedor in the eyes as he continues to fuck you. After a few seconds he smiles and leans forward to kiss you, Shoving his tongue into your mouth in a rough but very passionate kiss.'
+				gs 'arousal', 'vaginal', 5, 'sub'									
+				gs'stat'	
+			
+				act 'Return the kiss':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower4.gif"></center>'
+					'After a few minutes, Fedor lowers you while still fucking you, never slowing down and you can feel your foot touch the ground as Fedor continues holding your other leg up. You do you best to continue kissing Fedor but the intense pleasure is building up to quickly for you to focus on anything but it as you moan loudly and soon Fedor whispers in your ear "I''m going to cum real soon. Tell me how you want it."'
+					gs 'arousal', 'vaginal', 5, 'sub'								
+					gs'stat'	
+					
+					act 'In my mouth':	
+						cls
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower4.gif"></center>'
+						'Fedor pulls out of you and you quickly drop to your knees then take his dick into your mouth. You begin sucking and massaging his dick with your tongue until you feel his penis begin throbbing in your mouth filling it with his seed and you do your best to swallow as much of it as you can but some of it leaks out the side of your mouth which quickly gets washed away by the stream of water.'
+						'After you swallow most of Fedor''s cum you look up to see a very satisfied smile on his face as he tells you "I hope you enjoy my cum as much as I enjoy seeing you swallow it."'
+						'You reply, "Some people like cream on their bagels. I like cream on my throat." as you lick your lips which is followed by a laugh that Fedor joins in on. You blow a kiss at Fedor as he gets dressed and leaves the room.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cum1.jpg"></center>'
+						gs 'cum_call', 'mouth', $boy
+						gs 'arousal', 'bj', 10, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'
+						
+						act 'Finish washing up':gt 'FedorEv4', 'Shower'
+					end	
+					act 'On my face':	
+						cls
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower4.gif"></center>'
+						'Fedor pulls out you and begins jerking off as you kneel down in front of him. After a few seconds, Fedor groans and you feel a rapid stream of cum hitting your face, covering your face in his seed. Fedor empties his balls of all cum then looks down at you covered in his seed as the water washes the it off your body. Fedor grins. "Looks like you have some more washing to do." he leans forward and kisses your forhead before climbing out of the shower and getting dried off.' 
+						'You give him a smeet smile as you say, "You were amazing Fyodor. Thank you."'
+						'Which he responds, "My girl deserves nothing less than the best." as he gets dressed then leaves the bathroom.'
+						*nl						
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/cum2.jpg"></center>'
+						gs 'cum_call', 'face', $boy
+						gs 'arousal', 'hj', 10, 'sub'
+						gs 'arousal', 'end'
+						gs'stat'
+
+						act 'Finish washing up':gt 'FedorEv4', 'Shower'
+					end
+					if FedorLoveTalk = 1:
+						act 'Inside me':	
+							cls
+							minut += 5
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/Shower4.gif"></center>'
+							'Fedor gives you a passionate kiss as he increases the pace of his thrusts and you do your best to match his thrusts with your own. After a few seconds, Fedor groans and you feel his seed filling your womb with it''s warmth as you continue thrusting your hips attempting to drain his dick completely. Fedor gives you a passionate kiss and then looks you in the eyes as he says, "<<$pcs_firstname>> what have i done to deserve a perfect girl like you?"'
+							'His words of affection catch you off guard as you are left speechless for a few seconds then you recover your thoughts and respond, "You''ve treated me with love and affection and handled my heart with care and that is why you deserve everything I can offer you." You both stare at each other in silence until Fedor gives you another long kiss and then dries off and gets dressed before leaving the room.'	
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum3.gif"></center>'
+							gs 'cum_call', '', $boy
+							gs 'arousal', 'vaginal', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Finish washing up':gt 'FedorEv4', 'Shower'
+						end	
+					end	
+				end
+			end
+		end 
+	end
+	act 'Leave shower and jerk him off':	
+		cls
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower.gif"></center>'
+		'You climb out of the shower without ever breaking eye contact then walk up to Fedor until you are both face to face, You then kneel in front of him and begin massaging his penis with your hand and his balls with the other which causes Fedor to moan as he leans forward, bringing his face to yours then kisses your lips as you continue gently stroking his penis.'		
+		gs 'arousal', 'hj', 5, 'dom'									
+		gs'stat'	
+
+		act 'Suck his dick':	
+			cls
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower1.jpg"></center>'
+			'You break off the kiss then lean forward, wrapping your lips around Fedor''s penis and begin sucking and massaging it with your tongue as he occasionally rubs the top of your head with his hand and occasionally letting out a low moan, clearly enjoying the blowjob you''re giving him.'
+			gs 'arousal', 'bj', 5, 'dom'									
+			gs'stat'	
+
+			act 'Cuni':	
+				cls
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower2.jpg"></center>'
+				'After a few seconds, Fedor lifts you up by your shoulders and lightly pushes you onto the toilet seat which causes you to flinch at how cold the seat feels on your ass but soon the cold fades and you feel a new sensation of Fedor hands parting your legs and his tongue on your clitoris. You let out a low moan as he continues licking your clitoris gently but firmly causing the pleasure in your crotch to build considerable with each stroke of his tongue.'
+				gs 'arousal', 'cuni', 5, 'sub'									
+				gs'stat'	
+
+				act 'Ride him':	
+					cls
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower3.jpg"></center>'
+					'You grab Fedor by his hair and lightly pull him off away from your clit and say, "I want to ride that big dick of yours." He responds, "Sounds good to me." with a big smile on his face as he helps you up from the toilet and takes your place, eagerly awaiting you to mount him. You waste no time and press yourself down on his dick as you let out a moan. You start thrusting Fedor''s dick deep inside your pussy faster, feeling the pleasure building quickly with each thrust. After a few minutes, Fedor says, "I''m gonna cum."'
+					gs 'arousal', 'vaginal', 5, 'dom'									
+					gs'stat'	
+
+					act 'Pull out':	
+						cls
+						minut += 5
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower3.jpg"></center>'
+						'You give Fedor two more thrusts then quickly pull off him and drop to your knees in front of him just as he groans and sprays his load on your face. You open your mouth, trying to catch as much in your mouth as possible. You can feel some of his cum leaking down your face and throat. The tart taste of his cum causes a minor stinging in your throat as it goes down but you continue to swallow, knowing that it will make Fedor happy. After Fedor is finished emptying is balls he says, "Great job <<$pcs_firstname>>, You always know just what need." You lick your lips then blow him a kiss as he gets dressed and walks out of the bathroom.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/cumface2.gif"></center>'
+						gs 'cum_call', 'face', $boy
+						gs 'cum_call', 'mouth', $boy
+						gs 'arousal', 'vaginal', 5
+						gs 'arousal', 'end'
+						gs'stat'
+
+						act 'Shower':gt 'FedorEv4', 'Shower'
+					end
+					if FedorLoveTalk = 1:
+						act 'Inside me':	
+							cls
+							minut += 5
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/shower3.jpg"></center>'
+							'You continue riding Fedor''s dick and soon you hear him groan as he begins filling your womb with his seed. You close your eyes and focus on the warmth of his cum entering you while you push yourself down on his dick, so that his seed enter deep inside you. After a few seconds of you feel the throbing of his penis cease, so you slowly climb off him, feeling his cum leak out of your pussy.'
+							'You turn to face Fedor and give him a passionate kiss before he says, "You are so perfect <<$pcs_firstname>>. I want to spend my whole life with you."'
+							'You give Fedor a warm smile as you respond, "I feel the same way Fyodor. Maybe one day we will be ready to take that step."'
+							'Fedor replies, "That day will come <<$pcs_firstname>>. I promise you." Fedor gets dressed then leaves the room.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum81.gif"></center>'
+							gs 'cum_call', '', $boy
+							gs 'arousal', 'vaginal', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Shower':gt 'FedorEv4', 'Shower'
+						end	
+					end	
+				end	
+			end
+		end	
+	end	
+end
+
+if $ARGS[0] = 'Bathroom':
+	cls
+	$metka = 'Bathroom'
+	$loc = 'FedorEv4'
+	$metkaM = 'Bathroom'
+	$locM = 'FedorEv4'
+	$location_type = 'bathroom'			
+	minut += 5
+	gs'stat'
+	if hour >= 8 and hour < 9 and WithFedor = 0:
+		'Fedor is currently in the shower and has locked the door.'	
+		act 'Step away':gt 'FedorEv4', 'Hallway'		
+	elseif hour >= 9 and hour < 10 and WithFedor = 0:
+		'It seems that Regina is in the shower and has locked the door.'
+		act 'Step away':gt 'FedorEv4', 'Hallway'	
+	else	
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/bathroom.jpg"></center>'
+		'This bathroom is very clean and organized with a sink, <a href="exec:gt ''FedorEv4'', ''Toilet''">Toilet</a>, <a href="exec:gt ''mirror'', ''start''">mirror</a> and bathtub.'
+					
+		if WithFedor = 0:
+			act 'Take a shower (0:15)':gt 'FedorEv4', 'Shower'	
+		else	
+			act 'Take a shower':gt 'FedorEv4', 'Shower 2'
+		end	
+		
+		act 'Quick wash (0:10)':gt 'FedorEv4', 'Quick Wash'
+
+		dynamic $tampon
+
+		if WithFedor = 0:
+			act 'Leave bathroom':gt 'FedorEv4', 'Hallway'
+		end	
+	end	
+end	
+	
+if $ARGS[0] = 'Bathroom Wash':
+	cls
+	minut += 10
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end			
+	gs'stat'
+	'<center><h4><font color="blue">Bathroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself as thoroughly as possible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk out of the bathroom.'
+				
+	act 'Join Fedor in the livingroom':gt 'FedorEv4', 'Home 2'
+end
+
+if $ARGS[0] =  'Quick Wash':
+	cls
+	EndMovie = 0
+	WithFedor = 0	
+	minut += 10
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end		
+	gs'stat'
+	'<center><h4><font color="blue">Bathroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself as thoroughly as possible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
+	
+	act 'Dry off':gt 'FedorEv4', 'Bathroom'
+end	
+
+if $ARGS[0] =  'Shower':
+	cls
+	EndMovie = 0
+	WithFedor = 0	
+	minut += 15	
+	dynamic $showerdin
+	gs'stat'
+	'<center><h4><font color="blue">Bathroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/shower/wash.jpg"></center>'
+	'You climb into the shower and begin lathering your body, cleaning yourself as thoroughly as possible before turning off the water. You grab a spare towel and begin drying yourself off before getting dressed.'
+
+	act 'Dry off':gt 'FedorEv4', 'Bathroom'
+end			
+
+if $ARGS[0] =  'Toilet':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/Toilet.jpg"></center>'
+	'This toilet looks very clean and there is plenty of toilet paper on the nearby roll.'
+	
+	if Potty_Daystart ! daystart:
+		act 'Use the toilet':
+			VK = rand(1,6)
+			if VK >= 1 and VK <= 3 and WithFedor = 1:
+				gt 'FedorEv4', 'Bathroom Cam'
+			elseif VK >= 4 and VK <= 6 and WithFedor = 1: 
+				gt 'FedorEv4', 'Bathroom 2'
+			elseif VK >= 7 and VK <= 9 and WithFedor = 1 and VKwip = 100: 
+				gt 'FedorEv4', 'Bathroom 3'			
+			elseif VK < 6 and WithFedor = 0:
+				gt 'FedorEv4', 'Toilet 2'
+			elseif VK = 6 and WithFedor = 0:
+				gt 'FedorEv4', 'Toilet 3'
+			else
+				gt 'FedorEv4', 'Toilet'
+			end		
+		end	
+	end	
+	act 'Walk away':gt 'FedorEv4', 'Bathroom'
+end	
+
+if $ARGS[0] =  'Toilet 2':
+	cls
+	Potty_Daystart = daystart
+	minut += 10
+	pcs_mood += 10
+	pcs_willpwr += 10
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/Potty.jpg"></center>'
+	'You pull down your pants then sit on the toilet. You take a this time to reflect on many things in your life, leaving you feeling more relaxed. After you are finished you use the nearby toilet paper to wipe yourself before washing your hands and flushing the toilet.'
+
+	act 'Walk away':gt 'FedorEv4', 'Bathroom'
+end	
+
+if $ARGS[0] =  'Toilet 3':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="red">Evil Toilet</font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bathroom/toilet/VKET.jpg"></left>'
+	'<h4><b>FEED ME!!!</b></h4>'
+
+	act 'NOO!':gt 'FedorEv4', 'Bathroom'
+end	
+
+if $ARGS[0] =  'Kitchen':
+	cls
+	if hour >= 20 and hour <= 22 and ReginaIntro = 0:gt 'FedorEv4', 'Regina Intro'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/kitchen.jpg"></center>'
+	'This kitchen is very clean. Fedor''s parents must be very neat people. There is a sink, a microwave, a stove and a <a href="exec:gt ''FedorEv4'', ''Fridge''">refrigerator</a> stocked with food.'
+	if week <= 5 and hour >= 19 and hour < 20 or week > 5 and hour >= 12 and hour < 14:
+		'<a href="exec:gt ''FedorEv4'', ''Fedor Kitchen''">Fedor</a> is sitting down, eating dinner.'
+	end	
+	
+	if week <= 5 and hour >= 20 and hour <= 22 or week > 5 and hour >= 14 and hour < 16:
+		'<a href="exec:gt ''FedorEv4'', ''Regina Chat''">Regina</a> is sitting at the table, eating dinner.'
+	elseif week > 5 and hour >= 16 and hour <= 20:	
+		'<a href="exec:gt ''FedorEv4'', ''Regina Chat''">Regina</a> is cleaning the kitchen.'
+	elseif week <= 5 and hour <= 11 and hour > 10:
+		'<a href="exec:gt ''FedorEv4'', ''Regina Chat''">Regina</a> is getting ready to leave for work.'
+	end	
+	
+	act 'Enter the living room':gt 'FedorEv4', 'Livingroom'
+	
+	act 'Return to the hallway':gt 'FedorEv4', 'Hallway'
+end	
+	
+if $ARGS[0] =  'Livingroom':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/livingroom.jpg"></center>'
+	'The livingroom looks very neat and has a couch, a blu-ray player and a <a href="exec:gt ''FedorEv4'', ''TV''">TV</a>.'
+	if week <= 5 and hour >= 20 and hour < 22 or week <= 5 and hour >= 18 and hour < 19 or week <= 5 and hour >= 15 and hour < 16 or week > 5 and hour >= 14 and hour < 18:
+		'<a href="exec:gt ''FedorEv4'', ''Fedor Livingroom''">Fedor</a> is sitting on the couch, watching TV.'
+	end	
+	
+	if week > 5 and hour >= 10 and hour < 12:
+		'<a href="exec:gt ''FedorEv4'', ''Regina Chat''">Regina</a> is vacuuming the floor.'
+	elseif week <= 5 and hour > 22 and hour <= 24 or week > 5 and hour >= 12 and hour < 14:	
+		'<a href="exec:gt ''FedorEv4'', ''Regina Chat''">Regina</a> is sitting down on the couch, watching TV.'
+	end	
+	
+	act 'Step into the kitchen':gt 'FedorEv4', 'Kitchen'
+	
+	act 'Return to the hallway':gt 'FedorEv4', 'Hallway'
+end	
+
+if $ARGS[0] =  'Hallway':
+	cls
+	if hour = 20 and ReginaIntro = 0:gt 'FedorEv4', 'Regina Intro'
+	$metka = 'Hallway'
+	$loc = 'FedorEv4'
+	$metkaM = 'Hallway'
+	$locM = 'FedorEv4'	
+	WithFedor = 0
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/hallway.jpg"></center>'
+	'This is the central hallway which connects the whole house. There is a <a href="exec:gt ''mirror'', ''start''">mirror</a>, a coat rack and multiple painting on the walls.'
+	
+	if fedorKozlovQW > 1 and week <= 5 and hour >= 16 and hour <= 17:
+		act 'Bedroom':gt 'FedorMisc', 'Workout Time'
+	else
+		act 'Bedroom':gt 'FedorEv4', 'Bedroom'
+	end	
+
+	if fedorKozlovQW > 1 and week <= 5 and hour >= 16 and hour <= 17:
+		act 'Bathroom':gt 'FedorMisc', 'Workout Time'
+	else		
+		act 'Bathroom':gt 'FedorEv4', 'Bathroom'
+	end
+	
+	if fedorKozlovQW > 1 and week <= 5 and hour >= 16 and hour <= 17:
+		act 'Kitchen':gt 'FedorMisc', 'Workout Time'
+	else	
+		act 'Kitchen':gt 'FedorEv4', 'Kitchen'
+	end	
+
+	if fedorKozlovQW > 1 and week <= 5 and hour >= 16 and hour <= 17:
+		act 'Living room':gt 'FedorMisc', 'Workout Time'
+	else	
+		act 'Living room':gt 'FedorEv4', 'Livingroom'
+	end	
+	
+	act'Leave House':
+		if $clothingworntype = 'nude':
+			gt 'FedorEv4', 'Nude'			
+		elseif FedorHomeDate = 1 and week <= 5 and hour >= 14 and hour <= 24:
+			gt 'FedorEv4', 'End Date'	
+		else
+			FedorHomeDate = 0 & gt 'pavResidential'
+		end
+	end		
+end	
+
+if $ARGS[0] =  'Bedroom':
+	cls
+	$metka = 'Bedroom'
+	$loc = 'FedorEv4'
+	$metkaM = 'Bedroom'
+	$locM = 'FedorEv4'	
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/bedroom.jpg"></center>'
+	'Fedor''s bedroom is very neat, It has a bed, a computer desk with a chair and a <a href="exec:gt ''clothing_QV'', ''list''">wardrobe</a>.'
+	if FedorLove = 1:
+		'Fedor has a <a href="exec:gt ''FedorEv4'', ''Picture''">framed picture</a> by his bed.'
+	end
+	
+	if hour < 8:
+		'<a href="exec:gt ''FedorEv4'', ''Fedor Sleeping''">Fedor</a> is sleeping in his bed.'
+	elseif hour >= 22:
+		'<a href="exec:gt ''FedorEv4'', ''Fedor Bedroom''">Fedor</a> is laying on his bed.'
+	elseif week > 5 and hour > 9 and hour < 14 or week > 5 and hour >= 18 and hour < 22:
+		'<a href="exec:gt ''FedorEv4'', ''Fedor Bedroom 2''">Fedor</a> is on his computer.'
+	end
+	
+	act 'Leave bedroom':gt 'FedorEv4', 'Hallway'
+end	
+
+if $ARGS[0] =  'Nude':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/nude.jpg"></center>'
+	'<b><font color="red">I can''t go out onto the streets naked. Hmm, Isn''t there a wardrobe in Fedor''s bedroom?</font></b>'
+	
+	act 'Return to the hallway':gt 'FedorEv4', 'Hallway'
+end
+
+if $ARGS[0] =  'Picture':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+	*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+	'Fedor has framed the picture he took of you and placed it by his bed with your name on the frame. After seeing the picture by his bed, you can''t help but think to yourself. "That''s so sweet. I must mean a lot to him...Ohh Fyodor." you then place the picture back.'
+	
+	act 'Step away':gt 'FedorEv4', 'Bedroom'
+end
+
+if $ARGS[0] =  'Solo':
+	cls
+	pcs_horny += 20
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sex/solo.gif"></center>'
+	'VKwip'
+	gs 'arousal', 'masturbate', 5
+	gs 'arousal', 'end'
+	
+	act 'Finish':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'Solo Caught':
+	cls
+	if ReginaKozQW < 2: ReginaKozQW = 2
+	ReginaKozCaught += 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/Caught.jpg"></center>'
+	'VKwip'
+	
+	act 'Walk away':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'Fridge':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/eating.jpg"></center>'
+	'You open the refrigerator and see leftover food and some snacks.'
+	
+	act 'Have a snack':
+		cls
+		minut += 5	
+		pcs_health += 5
+		pcs_willpwr += 10	
+		pcs_mood += 20
+		pcs_energy += 20
+		cumspclnt = 2
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/munch1.jpg"></center>'
+		'You grab a variety of different snacks and begin eating them while pondering over what your favorite snack is.'
+		
+		act 'Finish':gt 'FedorEv4', 'Kitchen'
+	end	
+	act 'Have some leftovers':
+		cls
+		minut += 15	
+		pcs_health += 10	
+		pcs_mood += 20
+		fat += 2
+		pcs_energy += 60
+		cumspclnt = 2
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/eating.jpg"></center>'
+		'You search the fridge for something to eat and notice a few containers of leftovers, so you grab one of them then begin heating it up in the microwave. When the food is ready you grab a can of soda then sit down and eat the meal.'
+		
+		act 'Finish':gt 'FedorEv4', 'Kitchen'
+	end		
+	
+	act 'Close refrigerator door':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Fedor Sleeping':
+	cls	
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Fedor.jpg"></center>'
+	'Hey <<$pcs_firstname>>, I''m a bit too tired to walk you home right now but you can climb into bed and spend the night if you like. just don''t let my mom see you leave.'
+	if pcs_health < 100:
+		'Fedor then looks back at you and frowns. "<<$pcs_firstname>> you''re hurt. My mother works as a nurse. You should have her take a look at you."'
+	end		
+
+	act 'Spend the night':gt 'bed2'
+	
+	act 'Walk away':gt 'FedorEv4', 'Bedroom'
+end	
+
+if $ARGS[0] =  'End Date':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/hall/fedor.jpg"></center>'
+	'Fedor notices that you leaving then approaches you. "Are you ready to go?"'
+
+	act 'Yes I am':
+		if $clothingworntype = 'nude':
+			gt 'FedorEv4', 'Nude'		
+		else
+			gt 'FedorEv4', 'End Date 2'
+		end	
+	end		
+	act 'Not right now':gt 'FedorEv4', 'Hallway'
+end	
+
+if $ARGS[0] =  'End Date 2':
+	cls
+	minut += 5
+	FedorHomeDate = 0
+	ReginaDinner = 0
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'Fedor fetches your coat then hands it to you as he puts on his coat. Fedor opens the front door and holds it for you while guiding you out. You and Fedor begin walking back to your apartment while chatting about all of the latest trends on television. When you reach the door to your house, Fedor spins you around then gives you a passionate kiss as he presses you against the wall. After a few seconds, Fedor pulls off you then gives you a wink as he turns away and walks off.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/endkiss.gif"></center>'
+	
+	act 'Walk home':gt 'korrPar'
+end	
+
+if $ARGS[0] =  'TV':
+	cls
+	pcs_willpwr += rand(5, 10)
+	pcs_mood += rand(5, 10)		
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/sitting.jpg"></center>'
+	'You sit down on the couch and lay back, trying to get as comfortable as possible while you decide what channel you would like to watch.'
+	
+	if VKwip = 100:
+		act 'Masterbate':
+			if week <= 5 and hour <= 24 and hour > 20 or week <= 5 and hour <= 10 and hour > 9 or week > 5 and hour <= 18 and hour > 9:	
+				gt 'FedorEv4', 'Solo Caught'
+			else
+				gt 'FedorEv4', 'Solo'
+			end	
+		end	
+	end	
+
+	act 'Watch action movies (1:30)':gt 'FedorEv4', 'TV Action'
+	
+	act 'Watch the geographic channel (0:30)':gt 'FedorEv4', 'TV Geographic'
+	
+	act 'Watch sports (1:00)':gt 'FedorEv4', 'TV Sports'
+	
+	act 'Watch family channel (1:30)':gt 'FedorEv4', 'TV Family'
+	
+	if week <= 5 and hour < 20 or week > 5 and hour > 22 or week > 5 and hour < 10 or week > 5 and hour > 18:
+		act 'Watch porn (0:30)':
+			if week <= 5 and hour <= 24 and hour > 20 and VKwip = 100 or week <= 5 and hour <= 10 and hour > 9 and VKwip = 100 or week > 5 and hour <= 18 and hour > 9 and VKwip = 100:
+				gt 'FedorEv4', 'Porn Caught'
+			else
+				gt 'FedorEv4', 'TV Porn'
+			end	
+		end	
+	end
+	
+	act 'Finish movie':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'TV Action':
+	cls
+	pcs_willpwr += rand(15, 25)
+	pcs_mood += rand(15, 25)		
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvkino'+rand(2,3)+'.gif"></center>'
+	'You and Fedor begin watching an action/drama movie while occasionally discussing your favorite scenes as you see them.'
+
+	act 'Change channel':gt 'FedorEv4', 'TV'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'TV Geographic':
+	cls
+	pcs_willpwr += rand(5, 10)
+	pcs_mood += rand(5, 10)		
+	minut += 30
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvgeo'+rand(1,4)+'.gif"></center>'
+	'You change to the geographic channel. You study what you see to have a better understanding of the world around you.'
+
+	act 'Change channel':gt 'FedorEv4', 'TV'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'TV Sports':
+	cls
+	pcs_willpwr += rand(5, 20)
+	pcs_mood += rand(10, 20)		
+	minut += 60
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvsport'+rand(1,2)+'.gif"></center>'
+	'You begin cycling through sports channels, enjoying the athletes competing in various sports.'
+
+	act 'Change channel':gt 'FedorEv4', 'TV'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'TV Family':
+	cls
+	pcs_willpwr += rand(15, 25)
+	pcs_mood += rand(15, 25)	
+	minut += 90
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvmult'+rand(1,2)+'.gif"></center>'
+	'You change to the family channel and begin watch an animated movie with cute cuddly animals.'
+	
+	act 'Change channel':gt 'FedorEv4', 'TV'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'TV Porn':
+	cls
+	pcs_willpwr += rand(5, 10)
+	pcs_mood += rand(5, 10)		
+	pcs_horny += 10
+	minut += 30
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/tv/tvporn'+rand(1,5)+'.gif"></center>'
+	'You begin cycling through adult channels watching various sexual acts being performed by professional pornstars..'
+	
+	act 'Change channel':gt 'FedorEv4', 'TV'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end
+
+if $ARGS[0] =  'Porn Caught':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/caught.jpg"></center>'
+	'VKwip'
+	
+	act 'Get off couch':gt 'FedorEv4', 'Livingroom'
+end	
+
+
+if $ARGS[0] =  'Regina Intro':
+	cls
+	minut += 5
+	ReginaKozlov += 5
+	ReginaIntro = 1
+	gs'stat'
+	'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></center>'
+	'You approach Fedor''s mother and her eyes light up when she sees you. "Ahh, you must be <<$pcs_firstname>>. Fedor told me a bit about you but I can never get that boy to talk to me about anything. So how serious are things between you two? Ohh but where are my manners? My name is Regina. I am Fyodor''s mother. I have been looking forward to meeting my son''s first girlfriend."'
+	'You tilt your head as you reply, "His first?"'
+	'Regina replies, "Well yes. Fyodor usually spends too much time in front of that TV or with his friend Ivan. His father always lectures that boy about not being more active, that is...when he''s here... Anyway, I''ve droned on for long enough. Would you like me to make you something to eat?"' 
+	
+	act 'Only if it''s no trouble':gt 'FedorEv4', 'Dinner 1'
+	
+	act 'No thank you':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Regina Chat':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></left>'
+	*nl
+	'Fedor''s mother has long blonde hair that is well kept and looks really good for her age.'
+	if $clothingworntype = 'nude' and ReginaKozCaught < 5:
+		ReginaKozCaught += 1
+		'Regina looks at you then gasps. "Young lady, you shouldn''t walk around here like that. Fyodor has a wardrobe in his room. Please get yourself dressed."'
+	elseif $clothingworntype = 'nude' and ReginaKozCaught >= 5 and ReginaKozQW = 0:
+		ReginaKozQW += 1
+		'Regina looks at you then sighs. "You''re not even trying to cover up anymore, are you? well at least make sure to get dressed before walking out the front door, ok?"'
+	elseif $clothingworntype = 'nude' and ReginaKozCaught >= 5 and ReginaKozQW = 1:
+		'Regina looks at you then sighs. "You''re not even trying to cover up anymore, are you? well at least make sure to get dressed before walking out the front door, ok?"'
+	elseif spdirtyv > 0 and ReginaCumChat = 0 and ReginaKozQW = 0 or spdirtyc > 0 and ReginaCumChat = 0 and ReginaKozQW = 0:
+		ReginaCumChat += 1
+		'Regina squints and notices the cum on you. "Is that what I think it is? Can you please head to the bathroom and clean yourself up?"'
+	elseif spdirtyv > 0 and ReginaKozQW = 0 or spdirtyc > 0 and ReginaKozQW = 0:
+		ReginaKozQW = 1
+		'Regina gives you a stern look. "Young lady, you should at least clean up after you... well, you know what I mean."'
+	elseif spdirtyv > 0 and ReginaKozQW = 1 or spdirtyc > 0 and ReginaKozQW = 1:	
+		'Regina gives you a blank stare. "I wont pry into your love life but could you do me a favor and clean yourself up afterward?"'
+	end
+	if pcs_health < 100:
+		'Regina looks at you and gasps. "Ohh no sweety, you''re hurt. Let me take a look at you."'
+	end	
+	
+	if pcs_health < 100 and money >= 20:act 'Let Regina help you':gt 'FedorEv4', 'Check up'
+	
+	if ReginaIntro = 0:
+		act 'Introduce yourself':gt 'FedorEv4', 'Regina Intro'
+	else
+		act 'Chat':gt 'FedorEv4', 'Regina Chat 2'
+	end	
+
+	if FedorShelter = 1:act 'Ask about moving in':gt 'FedorEv4', 'Fedor Shelter 2'
+
+	if ReginaIntro = 1 and ReginaKoz_Daystart ! daystart:
+		act 'May I join you for dinner?':gt 'FedorEv4', 'Dinner 1'
+	end
+
+	act 'Walk away':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Regina Chat 2':
+	cls
+	ReginaKozlov += 1
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></left>'
+	*nl
+	VK = rand(1,7)
+	if VK = 1:
+		'You and Regina discuss the latest fashion trends.'
+	elseif VK = 2:	
+		'You and Regina chat about dinner recipes.'
+	elseif VK = 3:	
+		'Regina gives you some tips on picking the right hair care products.'
+	elseif VK = 4:	
+		'Regina shares some stories about her days in high school.'
+	elseif VK = 5:	
+		'Regina tells you a little about Fedor''s childhood.'
+	elseif VK = 6:	
+		'Regina tells you a little about Fedor''s father and his service in the military.'	
+	else
+		'Regina tells you about her work as a nurse.'
+	end	
+
+	act 'Walk away':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Dinner 1':
+	cls
+	minut += 5
+	ReginaKoz_Daystart = daystart
+	gs'stat'
+	'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></left>'
+	*nl
+	'Of course, it''s no problem. Here, have a seat and I''ll make us a nice meal.'
+
+	act 'Take a seat':gt 'FedorEv4', 'Dinner'
+end	
+
+if $ARGS[0] =  'Dinner':
+	cls	
+	ReginaKoz_Daystart = daystart
+	ReginaKozlov += 1
+	pcs_health += 10
+	pcs_willpwr += 20	
+	pcs_mood += 20
+	pcs_energy += 70
+	fat += 2
+	cumspclnt = 2	
+	minut += 20
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/Regina.jpg"></left>'
+	*nl
+	'You and regina spend a few minutes getting to know each other while eating a well prepared meal.'
+	
+	act 'Finish':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Check up':
+	cls	
+	if pcs_health < 100:pcs_health = 150
+	money -= 20
+	minut += 15
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/ReginaHelp.jpg"></center>'
+	*nl
+	'You sit down on a nearby chair as Regina runs off to fetch her medical supplies. When Regina comes back she begins unpacking her supplies as she asks you about any health issues you may have. After a few minutes of being patching up, you feel a lot better. Regina gives you a warm smile while re-packing her supplies. When Regina finishes she gives you a lolipop as she says, "I know you might feel too old for these but I can''t let any patient go with out one of these, I''m just really old fashioned like that."'
+	'You give her 20<b>₽</b> and say, "Please take this, for helping me." Regina gives you a smile before leaving the room to put her supplies away.'
+	
+	act 'Thank you':gt 'FedorEv4', 'Kitchen'
+end
+
+if $ARGS[0] =  'Fedor Livingroom':
+	cls
+	$metka = 'Fedor Livingroom'
+	$loc = 'FedorEv4'
+	$metkaM = 'Fedor Livingroom'
+	$locM = 'FedorEv4'		
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/livingroom/fedor.jpg"></left>'
+	*nl
+	'Fedor is sitting on the sofa watching tv and when he notices you, he pats the seat next to him, offering you a seat.'
+	if pcs_health < 100:
+		'Fedor looks at you and frowns. "<<$pcs_firstname>> you''re hurt. My mother works as a nurse, if she is home then you should have her take a look at you."'
+	end
+	
+	if $clothingworntype = 'nude':
+		'Fedor reaches over, then begins rubbing your ass, "You have a body to die for <<$pcs_nickname>>."'
+	end		
+
+	if pcs_hairbsh = 0:
+		'Fedor notices your messy hair and pulls out his <a href="exec:gt ''FedorMisc'', ''Comb''">comb</a>.'
+	end
+
+	if dimaFilm = 1 and DimaRudeBlock = 0 and FedorLove = 1 and FedorvsDimka = 0:
+		act 'Ask for help with Dimka':gt 'FedorEv4', 'Private Chat'
+	elseif FedorvsDimka = 2:
+		act 'Talk about what happened with Dimka':gt 'FedorEv4', 'Dimka Aftermath'
+	end	
+
+	if ParHomeBlock = 1 and FedorShelter = 0:act 'Ask about moving in':gt 'FedorEv4', 'Fedor Shelter'
+
+	act 'Chat':gt 'FedorEv4', 'Fedor Livingroom Chat'
+	
+	act 'Walk away':gt 'FedorEv4', 'Livingroom'
+end	
+	
+if $ARGS[0] =  'Fedor Kitchen':
+	cls
+	$metka = 'Fedor Kitchen'
+	$loc = 'FedorEv4'
+	$metkaM = 'Fedor Kitchen'
+	$locM = 'FedorEv4'		
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/fedor.jpg"></left>'
+	*nl
+	'Fedor is sitting down at the table, waiting for his mircowaved lunch to finish.' 
+	if FedorKoz_Daystart ! daystart:
+		'"<<$pcs_firstname>> would you like something to eat?"'
+	end	
+	
+	if pcs_health < 100:
+		'Fedor looks at you and frowns. "<<$pcs_firstname>> you''re hurt. My mother works as a nurse, if she is home then you should have her take a look at you."'
+	end	
+	
+	if pcs_hairbsh = 0:
+		'Fedor notices your messy hair and pulls out his <a href="exec:gt ''FedorMisc'', ''Comb''">comb</a>.'
+	end	
+
+	if $clothingworntype = 'nude':
+		'Fedor reaches over, then begins feeling up your legs, "You are so hot, <<$pcs_nickname>>."'
+	end		
+
+	if FedorKoz_Daystart ! daystart:
+		act 'Yes':
+			cls
+			minut += 15	
+			FedorKoz_Daystart = daystart
+			pcs_health += 10
+			pcs_willpwr += 20		
+			pcs_mood += 20
+			fat += 1
+			pcs_energy += 60
+			cumspclnt = 2
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/eating2.jpg"></center>'
+			'Fedor gets up then opens the refrigerator and grabs a few things that he begins cooking. When Fedor finishes then he places the plate of food and an empty cup in front of you as he pours you a drink then sits across from you. Both of you spend a few minutes eating while discussing favorite foods and snacks.'
+			
+			act 'Walk away':gt 'FedorEv4', 'Kitchen'
+		end	
+	end
+
+	if dimaFilm = 1 and DimaRudeBlock = 0 and FedorLove = 1 and FedorvsDimka = 0:
+		act 'Ask for help with Dimka':gt 'FedorEv4', 'Private Chat'
+	elseif FedorvsDimka = 2:
+		act 'Talk about what happened with Dimka':gt 'FedorEv4', 'Dimka Aftermath'
+	end	
+
+	if ParHomeBlock = 1 and FedorShelter = 0:act 'Ask about moving in':gt 'FedorEv4', 'Fedor Shelter'
+	
+	act 'Chat':gt 'FedorEv4', 'Fedor Kitchen Chat'
+
+	act 'Walk away':gt 'FedorEv4', 'Kitchen'
+end		
+
+if $ARGS[0] =  'Fedor Bedroom':
+	cls
+	$metka = 'Fedor Bedroom'
+	$loc = 'FedorEv4'
+	$metkaM = 'Fedor Bedroom'
+	$locM = 'FedorEv4'		
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/fedor.jpg"></left>'
+	*nl
+	'Fedor is laying on his bed, relaxing.'
+	if FedorLove = 0:
+		'He seems lost in thought but as soon as you approach, he opens his mouth to speak but no words escape his mouth. he then closes his mouth and stares at the ceiling. It seems as though he has something he wants to talk to you about.'
+	end
+	
+	if pcs_health < 100:
+		'Fedor looks at you then frowns. "<<$pcs_firstname>> you''re hurt. My mother works as a nurse. You should have her take a look at you."'
+	end	
+	
+	if pcs_hairbsh = 0:
+		'Fedor notices your messy hair and pulls out his <a href="exec:gt ''FedorMisc'', ''Comb''">comb</a>.'
+	end	
+
+	if $clothingworntype = 'nude':
+		pcs_horny += 5
+		'Fedor reaches over, then begins, gently rubbing your vagina, "Your body is so perfect, <<$pcs_firstname>>."'
+	end		
+
+	if ParHomeBlock = 1 and FedorShelter = 0:act 'Ask about moving in':gt 'FedorEv4', 'Fedor Shelter'
+	
+	if FedorLove = 0 and strelaQW = -1:
+		act 'Find out what''s bothering him':gt 'FedorEv4', 'Love Talk Strela'
+	elseif FedorLove = 0 and strelaQW = -2:
+		act 'Find out what''s bothering him':gt 'FedorEv4', 'Love Talk Strela 2'		
+	elseif FedorLove = 0:
+		act 'Find out what''s bothering him':gt 'FedorEv4', 'Love Talk'		
+	else
+		act 'Chat':gt 'FedorEv4', 'Fedor Bedroom Chat'
+	end
+	
+	if dimaFilm = 1 and DimaRudeBlock = 0 and FedorLove = 1 and FedorvsDimka = 0:
+		act 'Ask for help with Dimka':gt 'FedorEv4', 'Dimka Help'
+	elseif FedorvsDimka = 2:	
+		act 'Talk about what happened with Dimka':gt 'FedorEv4', 'Dimka Aftermath'
+	end	
+	
+	if FedorLove = 1:
+		act 'Discuss taking relationhip to next level':gt 'FedorEv4', 'Future'
+	end	
+	
+	act 'Walk away':gt 'FedorEv4', 'Bedroom'
+end	
+
+if $ARGS[0] =  'Fedor Bedroom 2':
+	cls
+	$metka = 'Fedor Bedroom 2'
+	$loc = 'FedorEv4'
+	$metkaM = 'Fedor Bedroom 2'
+	$locM = 'FedorEv4'		
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></left>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></left>'
+	end	
+	*nl
+	'Fedor is watching videos on his computer. As you approach, Fedor turns to you and asks "Hey <<$pcs_nickname>>, wanna check out some videos?"'
+	
+	if pcs_health < 100:
+		'Fedor looks at you and frowns. "<<$pcs_firstname>> you''re hurt. My mother works as a nurse, if she is home then you should have her take a look at you."'
+	end	
+	
+	if pcs_hairbsh = 0:
+		'Fedor notices your messy hair and pulls out his <a href="exec:gt ''FedorMisc'', ''Comb''">comb</a>.'
+	end	
+
+	if $clothingworntype = 'nude':
+		'Fedor reaches over, then begins gently squeezing your breasts, "You have great tits, <<$pcs_firstname>>."'
+	end
+
+	if ParHomeBlock = 1 and FedorShelter = 0:act 'Ask about moving in':gt 'FedorEv4', 'Fedor Shelter'
+	
+	act 'Sure':gt 'FedorEv4', 'Fedor Bedroom Chat 2'
+	
+	act 'Maybe later':gt 'FedorEv4', 'Bedroom'
+end	
+
+if $ARGS[0] =  'Love Talk':
+	cls
+	FedorLove = 1
+	FedorKozHome = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Fedor.jpg"></center>'
+	'You sit down next to Fedor and ask him "You look troubled. What''s on your mind?"'
+	'Fedor responds, "I''m just thinking about how much my life has changes since I met you."'
+	'You respond, "Changed for the better I hope."'
+	'He turns to you with a wide smile on his face "Of course. I have never been as happy as I am with you and I just needed to tell you how much you mean to me."'
+	'You crawl up the bed and lay down beside him and reply, "I feel the same way about you...I love you Fyodor."'
+	'Fedor looks shocked for a moment then responds, "I love you too <<$pcs_firstname>>. You realy mean everything to me and I never want to lose you."'
+	'You respond, "You never will." as you lean forward and share a very passionate kiss with Fedor'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/kiss.jpg"></center>'
+	
+	act 'Finish kissing':gt 'FedorEv4', 'Fedor Bedroom'
+end	
+
+if $ARGS[0] =  'Love Talk Strela':
+	cls
+	FedorLove = 1
+	FedorKozHome = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Fedor.jpg"></center>'
+	'You sit down next to Fedor and ask him "You look troubled. What''s on your mind?"'
+	'With a tear sliding down his cheek, Fedor responds, "I keep thinking of that day where I felt completely helpless and almost lost everything to those bastards. The thought of what might have happened if you weren''t there, chills me to my very core."'
+	'You crawl forward and lay next to him "It was a crazy day and I''m glad everything worked out in the end. I would hate for something like that to happen to you because of me."'
+	'Fedor places his hand on your cheek "You saved me <<$pcs_firstname>> and I will never forget it. You are everything I could ever hope for in a girl."'
+	'You can feel your cheeks getting flushed as you respond, "Well you''re everything I need in a man and that is why I...I love you Fyodor."'
+	'Fedor looks shocked for a moment then responds, "I love you too <<$pcs_firstname>>. You realy mean everything to me and I never want to lose you."'
+	'You respond, "You never will." as you lean forward and share a very passionate kiss with Fedor.'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/kiss.jpg"></center>'
+	
+	act 'Finish kissing':gt 'FedorEv4', 'Fedor Bedroom'
+end	
+
+if $ARGS[0] =  'Love Talk Strela 2':
+	cls
+	FedorLove = 1
+	FedorKozHome = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Fedor.jpg"></center>'
+	'You sit down next ot Fedor and ask him "You look troubled. What''s on your mind?"'
+	'With tears streaming down his cheeks Fedor responds, "I can''t get that day out of my head. I was completely helpless as those...Fuckers took everything away from me...my reputation, my friends and my girl..."'
+	'You lay down next to him "You never lost your girl. I''ll always be here with you."'
+	'He wraps his arm around your neck but remains silent, so you decide to break the silence. "Fedor I know what happened to you was horrible but I never thought less of you, not even for one second. You are the man I want to be with and nothing will change that."'
+	'Fedor lets out a mild smile as he continues staring at the ceiling and after a few seconds responds, "You are the greatest gift I can ever ask for and I''m so glad I met you. <<$pcs_firstname>> you are the perfect girl and I will always strive to be the best boyfriend you can ever have."'
+	'You lightly kiss his cheek as you reply, "You are already the best boyfriend I could ever have." Fedor quickly turns to you and kisses your lips very passionately.'
+	*nl	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/kiss.jpg"></center>'	
+	
+	act 'Finish kissing':gt 'FedorEv4', 'Fedor Bedroom'
+end	
+
+if $ARGS[0] =  'Future':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Talk.jpg"></center>'
+	if FedorLoveTalk = 0:
+		'You lay down next to Fedor and he wraps his arms around you as you place your hand on his shoulder. "Fedor I really treasure the time we spend together and I was wondering if you feel ready to take this relationship to the next level?"'
+		'Fedor raises an eyebrow. "Next level? what do you mean?"'
+	elseif	FedorLoveTalk = 1:
+		'You lay down next to Fedor and he wraps his arms around you as you place your hand on his shoulder. "Fedor I would like to ask you something."'
+		'Fedor gives you a warm smile. "Of course my love. What can I do for you?"'
+	end
+	
+	act 'Marriage':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/sitting.jpg"></left>'
+		'<b><h4><font color=#FF00FF>To be continued... Love VK.</font></h4></b>'
+		
+		act 'Awwww':gt 'FedorEv4', 'Fedor Bedroom'
+	end			
+	
+	if FedorLoveTalk < 1:
+		act 'Pregnancy':
+			cls
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Talk.jpg"></center>'
+			'You look Fedor in the eyes. "I was thinking that we could...have a baby together."'
+			'Fedor''s eyes widen as his jaw lowers. "You want... You want us to? I don''t know. That''s a very big step. Are you sure you want this?"'
+			
+			act 'I''m sure':
+				cls
+				FedorLoveTalk = 1
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/kiss.jpg"></center>'
+				'You give Fedor a light kiss then reply, "I''m positive. I want you to be the father of my child so...what do you think? Would you like to be a father?"'
+				'Fedor thinks it over for a few seconds then responds, "I care for you so much and would love to start a family with you. Whenever you feel ready to try for a baby then let me know."'
+				'You lean forward and give Fedor a passionate kiss before reponding "Thank you so much Fyodor. I''m sure any child we make together will be perfect."'
+				
+				act 'Get up':gt 'FedorEv4', 'Fedor Bedroom'
+			end	
+	
+			act 'Let me think about it':gt 'FedorEv4', 'Fedor Bedroom'
+		end	
+	else
+		act 'Try for baby':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/talk.jpg"></center>'
+			'You lean forward and whisper in his ear. "I would like to try for a baby with you. Are you ready for some fun?"'
+			'Fedor brings his face to yours and replies, "I''m ready whenever you are."'
+			
+			act 'I''m ready':gt 'FedorEv4', 'Bedroom 1'
+			
+			act 'Maybe later':gt 'FedorEv4', 'Fedor Bedroom'
+		end	
+	end		
+	act 'Never mind':gt 'FedorEv4', 'Fedor Bedroom'
+end	
+
+if $ARGS[0] =  'Fedor Livingroom Chat':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/Livingroom/Fedor.jpg"></left>'
+	'You sit down next to Fedor and both of you discuss your favorite TV shows.'
+	
+	act 'Finish chatting':gt 'FedorEv4', 'Livingroom'
+end	
+
+if $ARGS[0] =  'Fedor Kitchen Chat':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/kitchen/Fedor.jpg"></left>'
+	'You sit down next to Fedor and both of you discuss your favorite foods.'
+	
+	act 'Finish chatting':gt 'FedorEv4', 'Kitchen'
+end	
+
+if $ARGS[0] =  'Fedor Bedroom Chat':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/Fedor.jpg"></left>'
+	'You sit down next to Fedor and both of you share stories about your classmates.'
+	
+	act 'Finish chatting':gt 'FedorEv4', 'Bedroom'
+end	
+
+if $ARGS[0] =  'Fedor Bedroom Chat 2':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console1.jpg"></center>'
+	'Fedor gets up and offers you his seat then stands behind you as he shows you his playlist of favorite online videos as you share with him, your favorites.'
+		
+	if dimaFilm = 1 and DimaRudeBlock = 0 and FedorLove = 1 and FedorvsDimka = 0:
+		act 'Ask for help with Dimka':gt 'FedorEv4', 'Dimka Help'
+	elseif FedorvsDimka = 2:
+		act 'Talk about what happened with Dimka':gt 'FedorEv4', 'Dimka Aftermath'
+	end	
+
+	act 'Finish chatting':gt 'FedorEv4', 'Fedor Bedroom 2'
+end	
+
+if $ARGS[0] =  'Private Chat':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+	'You sit down next to Fedor then ask, "Can we talk for a moment...In private?" Fedor turns to you with a concerned look on his face. "Of course <<$pcs_firstname>>. Let''s head to my room where we can talk in private." Fedor takes your hand then leads you to the bedroom.'
+	
+	act 'Follow Fedor to his bedroom':gt 'FedorEv4', 'Dimka Help'
+end	
+
+if $ARGS[0] =  'Fedor Shelter':
+	cls
+	FedorShelter = 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console1.jpg"></center>'
+	'You sit down next to Fedor then say, "Fedor...I need your help." Fedor quickly sits up then responds, "What do you need?" you downcast your eyes then say, "My mother threw me out...of my home, and I don''t know what to do." you begin sobbing as Fedor wraps his arms around you. "That''s horrible. I bet my mother will take you in. I will speak to her the next time I see her. Don''t worry I wont let you live on the streets." you quickly wrap your arms around Fedor''s chest then say, "Thank you so much Fedor. I am so scared." Fedor kisses you on the forehead, as he responds, "I will always be here for you <<$pcs_firstname>>, whenever you need me." you give Fedor a soft kiss then get up and say, "I''m so lucky to have you." Fedor responds with a thumbs up, and a smile.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console2.jpg"></center>'
+	
+	act 'Leave room':gt 'FedorEv4', 'Hallway'
+end
+
+if $ARGS[0] =  'Fedor Shelter 2':	
+	cls
+	FedorKozHome = 1
+	FedorShelter = 2
+	npc_rel['A5'] += 20
+	gs'stat'
+	'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></left>'
+	'You can see Fedor and Regina sitting down together chatting then Regina notices you. Regina looks up to you with a sad face then says, "Fyodor told me about what happened. You''re mother threw you out? Why?" you lower your head, trying to figure out where to start when Regina says, "It''s ok, you don''t have to tell me. I can''t believe that she would throw out her own daughter. Fyodor and I have been discussing, and I decided that it would be best if you to stay for while, but promise me that you will try to find a place to live when you graduate, okay?" you happily nod, and can feel tears gathering in your eyes, as you reply, "Yes I will. Thank you so much. I thought that I would be living on the street. Thank you." Regina approaches you then wipes away your tears. "I will get you a key." Regina then reaches inside of a drawer then pulls out a set of keys then give you one. Fedor gives you a hug then says, "You will always be welcome here." You return the hug, as you reply, "Thank you for everything Fyodor. You are the best boyfriend ever."'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console1.jpg"></center>'
+	
+	act 'Finish':gt 'FedorEv4', 'Kitchen'
+end
+
+if $ARGS[0] =  'Dimka Help':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/Console1.jpg"></center>'
+	'You sit at the edge of the bed next to Fedor then lower your head, staring blankly at the ground, trying to collect your thoughts when you feel Fedor''s hand on your shoulder. "<<$pcs_firstname>>, what''s wrong?"'
+	'You look toward him but are unable to look him in the eye. "Fedor...I need your help with something but I..."'
+	'He sits up then wraps his arms around your waist. "<<$pcs_firstname>> whatever it is, you can talk to me."'
+	
+	act 'Ask him for help':
+		cls
+		FedorvsDimka = 1
+		minut += 5	
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console2.jpg"></center>'
+		'"I...well...Dimka has a video of me and I need to know if you can help me get it back or erase it."'
+		'Fedor frowns as he asks "Have you been having an affair with him?"'
+		'You reply, "No. He blackmailed me into doing something...dirty and he filmed me. I''m sorry that I didn''t tell you about this before but I needed to know for sure that I could trust you not to share the video."'
+		'Fedor places his finger under your chin and raises your face to meet his as he replies, "I understand <<$pcs_firstname>> and don''t worry, we will get that video from Dimka even if I have to beat it out of him. I never liked that cocky like punk anyway."'
+		'You remain speakless for a few seconds before you respond, "Ohh thank you Fyodor. I thought that he was going to keep blackmailing me forever."'
+		'Fedor gives you a kiss on the forhead. "You have nothing to fear with me around. Meet me after school and we''ll deal with that punk together." Fedor then gives you a long passionate kiss.'
+		
+		act 'Get out of bed':gt 'FedorEv4', 'Bedroom'
+	end	
+	
+	act 'It''s...It''s nothing':gt 'FedorEv4', 'Bedroom'
+end	
+
+if $ARGS[0] =  'Dimka Aftermath':
+	cls
+	FedorvsDimka = 3
+	minut += 10
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/Console2.jpg"></center>'
+	'You approach Fedor, he stands up and hugs you. "I''m so sorry about not getting there in time. I can''t believe I was so careless and it was you that paid the price."'
+	'You give Fedor an innocent smile as you place your hand on his cheek and say, "It''s alright Fyodor. He used to make me do things far worst than that."'
+	'Fedor clenches his fists as he responds, "That fucking coward will never harm you again. I will make sure that he learns his place from now on."'
+	'You give Fedor a soft kiss. "I know that I will always be safe with you."'
+	'Fedor looks into your eyes. "I will always love you <<$pcs_firstname>>."'
+	'You reply, "And I, you, Fyodor" then you both share a long passionate kiss.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+	
+	act 'walk away':
+		if $loc = 'FedorEv4':
+			gt 'FedorEv4', 'Bedroom'
+		else	
+			gt 'pavResidential'
+		end	
+	end	
+end
+
+if $ARGS[0] =  'Home Entrance':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/House.jpg"></left>'
+	'Fedor''s house is a bit weathered but still looks quite lovely. This house is but a short walk away from my parents apartment.'
+	
+	act 'Knock on the door':gt 'FedorEv4', 'Home Entrance 2'
+	
+	act 'Walk away':gt 'pavResidential'
+end	
+
+if $ARGS[0] =  'Home Entrance 2':
+	cls
+	if FedorShelter = 2:
+		'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+		*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'	
+		'You place the key into the door lock then turn it, unlocking the door then making your way inside.'
+		act 'Enter house':gt 'FedorEv4', 'Hallway'
+	elseif week <= 5 and hour >= 19:
+		gt 'FedorEv4', 'Home Entrance 3'
+	elseif  week > 5 and hour > 10:
+		'<center><b><h4><font color="#FF00FF"><<"Regina Kozlov">></font></h4></b></left>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/fedorhome/regina.jpg"></left>'
+		'You knock on the door until Regina opens it and invites you inside.'
+		act 'Enter house':gt 'FedorEv4', 'Hallway'
+	else
+		'You knock on the door but no one answers.'
+		act 'Walk away':gt 'pavResidential'
+	end	
+end	
+
+if $ARGS[0] =  'Home Entrance 3':
+	cls
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></left>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></left>'
+	end		
+	'You knock on the door until Fedor opens it and invites you inside.'
+	
+	act 'Enter apartment':gt 'FedorEv4', 'Hallway'
+end
+
+
+--- FedorEv4 ---------------------------------
+

+ 1170 - 0
locations/FedorMisc

@@ -0,0 +1,1170 @@
+# FedorMisc		
+
+if $ARGS[0] =  'Fedor Intro':
+	cls
+	FedorIntro = 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/fight.jpg"></center>'
+	'As you walk out of the cafeteria, you see a crowd of students gathered around; what appears to be a fight. You move closer to get a better look when one of the boys in the fight gets knocked back into you. You recoil as one of the boys throws a punch that misses the other, but is rushing toward your face. Suddenly you feel someones arm press against your chest, pushing you away from the fight, and saving you from getting hit. The one who saved you says, "That was a close one. Are you alright?'
+	
+	act 'Turn around':	
+		cls
+		npc_rel['A5'] += 5
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You turn to see Fedor Kozlov smiling at you. You return the smile and say, "I am now, thanks to you." Fedor responds, "Well I couldn''t let such a pretty girl like you get hurt." you lower your head; trying to hide your flushing cheeks, as you reply, "I bet you say that to all the girls." Fedor chuckles, "I not going to lie, if all the girls looked like you then I would." a few members of the school faculty begin breaking up the fight, as Fedor says, "It seems that everything has been taken care of. If you would like to chat then feel free to stop by the hallway, and you can usually catch me at the sports center, after school. Hopefully I will see you again soon." Fedor then walks away while waving at you.'
+
+		act 'Wave back':gt 'gschool_lunch', 'break'
+	end
+end	
+
+if $ARGS[0] =  'Fedor Chat':
+	cls	
+	$metka = 'Fedor Chat'
+	$loc = 'FedorMisc'
+	$metkaM = 'Fedor Chat'
+	$locM = 'FedorMisc'	
+	numnpc = 5
+	minut += 5
+	gs'stat'
+	if fedorKozlovQW = -10:
+		'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast1.jpg"></center>'
+	elseif fedorKozlovQW < -10:
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end	
+	
+	*nl
+	
+	if fedorKozlovQW = -10:
+		'Ever since Fedor gave Vasily a blowjob in the school courtyard, everyone calls him Masha.'
+	elseif fedorKozlovQW < -10:
+		'Ever since Fedor gave Vasily a blowjob in the school courtyard, everyone calls him Masha but to you, he will always be Fedor.'
+	else	
+		'Fedor is a decent athlete. He often trains with his good friend Ivan, but lacks the level of talent that Ivan does have.'
+	end	
+	
+	if pcs_hairbsh = 0:
+		'Fedor notices your messy hair and pulls out his <a href="exec:gt ''FedorMisc'', ''Comb''">comb</a>.'
+	end	
+	
+	if grupTipe[5] = 5:'Fedor is an outcast in school, and doesn''t have anyone to sit with during lunch.'
+	if grupTipe[5] = 6:'Fedor is a Super Hero, Pssst you shouldn''t be seeing this. please report this bug.'
+	if grupTipe[5] = 3:'Fedor is a nerd, and usually spends lunch time with them.'
+	if grupTipe[5] = 2:'Fedor is part of the athletic clique in your school.'
+	if grupTipe[5] = 1:'Fedor is popular, and spends time with the other popular kids usually.'
+	if grupTipe[5] = 4:'Fedor is a Gopnik, and spends a lot of time doing what Gopniks usually do: be loud, and drink beer.'
+	if npc_rel['A5'] < 20:'You and Fedor don''t get along at all.'
+	if npc_rel['A5'] >= 20 and npc_rel['A5'] < 40:'You and Fedor don''t get along very well.'
+	if npc_rel['A5'] >= 40 and npc_rel['A5'] < 60:'You and Fedor have a normal relationship.'
+	if npc_rel['A5'] >= 60 and npc_rel['A5'] < 80:'You and Fedor have a good relationship.'
+	if npc_rel['A5'] >= 80:'You and Fedor have a great relationship.'
+	
+	act 'Chat':
+		cls
+		npc_rel['A5'] += rand(5,10)
+		numnpc = 5
+		if $loc = 'gdkin':minut += 5
+		gs 'stat'
+		if fedorKozlovQW = -10:
+			'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></left>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast1.jpg"></left>'
+		elseif fedorKozlovQW < -10:
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></left>'
+		else
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></left>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></left>'
+		end
+		
+		*nl
+
+		if npc_rel['A5'] < 20:
+			'You speak to Fedor about a number of random experiences you had. Fedor listens to you with a moderate amount of interest.'
+		elseif npc_rel['A5'] < 80 and npc_rel['A5'] >= 20:
+			'You chat with Fedor, sharing mulitple stories as Fedor happily listens and shares some thoughts on a number of them.'			
+		elseif npc_rel['A5'] >= 80:
+			'You chat with Fedor, sharing mulitple stories as Fedor happily listens while sharing several new stories of his own.'
+		end
+		
+		act 'Go to class':gt 'gschool_lessons', 'class'
+		
+		act 'Skip one of your classes':
+			cls
+			gs'stat'
+			'<center><b><font color=#00eaff>School Hallway</font></b></center>'
+	        '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
+			'You don''t feel like attending all of your classes this morning. Surely no one will miss you if you skip one of your three morning classes.'
+			
+			act 'Go to girl''s bathroom': gt 'gschool_bathrooms', 'girls bathroom'
+			
+			act 'Go to boy''s bathroom': gt 'gschool_bathrooms', 'boys bathroom'
+		end
+	end
+	
+	if numnpc = 5 and fedorKozlovQW >= 20:
+		act 'Let''s go somewhere private':gt 'FedorMisc', 'Fedor Chat 2'
+	end
+
+	if fedorKozlovQW > 1 and NikoPayback = 2 and FyodorVsNiko = 0 and FedorVsNiko = 0:act 'Ask for help with Niko':gt 'NikoPayback', 'Fedor Help'
+
+	act 'Go to class':gt 'gschool_lessons', 'class'
+	
+	act 'Skip one of your classes':
+		cls
+		gs'stat'
+		'<center><b><font color=#00eaff>School Hallway</font></b></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
+		'You don''t feel like attending all of your classes this morning. Surely no one will miss you if you skip one of your three morning classes.'
+		
+		act 'Go to girl''s bathroom': gt 'gschool_bathrooms', 'girls bathroom'
+		
+		act 'Go to boy''s bathroom': gt 'gschool_bathrooms', 'boys bathroom'
+	end
+end		
+
+if $ARGS[0] =  'Fedor Chat 2':
+	cls	
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/fedor.jpg"></center>'
+	'You approach Fedor and ask "How about we spend some alone time together?" Fedor gives you a playful smile as he wraps his arm around your neck, he then leads you to the hallway near the back of the school. Fedor rests against a nearby window and asks "So, what would you like to do today?"'
+
+	act 'Wanna fool around in the locker room?.':gt 'FedorMisc', 'Locker Room'
+	
+	act 'Begin caressing Fedor.':gt 'FedorMisc', 'Hall'
+	
+	act 'I could really use a smoke.':gt 'FedorMisc', 'Smoke'
+	
+	act 'Sorry but I need to go.':gt 'gschool_lessons', 'afternoon'
+end
+
+if $ARGS[0] =  'Fedor Hate':
+	cls	
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></left>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorAngry.jpg"></left>'
+	'Fedor looks at you with hatred as he says, "I have nothing to say to you. Go away!"'	
+	
+	act 'Move away':gt 'gschool_lessons', 'afternoon'
+end
+
+if $ARGS[0] =  'Comb':
+	cls	
+	pcs_hairbsh = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else 
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end
+	
+	'Fedor combs your hair for you as you watch him, admiring how handsome he is. After Fedor finishes combing your hair, he says, "There is my beautiful girlfriend. Your hair is too pretty to be all knotted up like that." you give Fedor a kiss on the cheek as he puts his comb away.'
+	'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+	*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+	
+	act 'Move away':gt $loc, $metka
+end
+
+if $ARGS[0] =  'Locker Room':
+	cls
+	npc_rel['A5'] += 10
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	'Fedor grabs your hand then leads you through the hallways, to the locker room. Fedor then releases your hand and carefully scopes out the area, both inside the locker room and out, checking if it''s empty and as soon as he realizes that the coast is clear, he grabs your ass and kisses your lips as he pulls you in the locker room.'
+
+	act 'Continue.':
+		VK = rand(1,3)
+		if VK <= 1:
+			gt 'FedorMisc', 'Locker Room 1'
+		elseif VK <= 2:
+			gt 'FedorMisc', 'Locker Room 2'
+		else
+			gt 'FedorMisc', 'Locker Room 3'
+		end	
+	end
+end	
+	
+if $ARGS[0] =  'Locker Room 1':
+	cls
+	minut -= 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr1.jpg"></center>'
+	'As you both enter the locker room, you begin rubbing on Fedor''s crotch to warm him up as he begins kissing you gently. You can feel his hands start to wander over your curves, lightly carrassing you as you begin pulling down his pants. you begin stroking Fedor''s hard cock which fills you with excitement, feeling his long hard warm penis in your hands as you stroke it gently.'
+	gs 'arousal', 'foreplay', 5, 'sub'
+	gs 'arousal', 'foreplay_give', 5, 'dom'	
+	gs'stat'		
+
+	act 'On your knees':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr2.jpg"></center>'
+		'Fedor places his hands on your shoulders then begins lightly pushing you down to your knees which you submit to eagerly. When you get down on your knees, Fedor presses his dick against your lips but doesn''t force it in, he instead looks down at you with a pleased smile on his face which notifies you that he want you to do it. You eagerly wrap your lips around his dick and begins sucking on his cock while stroking it with your tongue, doing your best to please him while staring into his eyes as he looks down at you in adoration of what you are doing for him.'
+		gs 'arousal', 'bj', 5, 'sub'									
+		gs'stat'			
+
+		act 'Vaginal':	
+			cls
+			minut -= -5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr3.jpg"></center>'
+			'After a few more seconds, Fedor lifts you up by your shoulders then lightly pushes you onto the bench then climbs up in front of you. You look down at Fedor''s penis as it slowly enters your vagina, giving you a jolt of pleasure which emits a moan from you. Fedor begins fucking you slowly while gradually increasing his pace. Fedor lifts one of your legs up, giving himself easier access to your vagina as he continues ramming his penis inside you. After a few minutes, Fedor looks down to you and says, "I''m ready to cum for you."'
+			gs 'arousal', 'vaginal', 5, 'sub'									
+			gs'stat'				
+				
+			act 'Pull out':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr4.jpg"></center>'
+				'Fedor nods as he greatly increases the pace of his thrusts and then pulls out of you and begins covering both your chest and stomach with his seed. The warmth of his cum covers your body, making you feel both sexy and dirty.'
+				'Fedor looks down at you and says, "I can think of no better way to spend my lunchtime then here with you <<$pcs_firstname>>."'
+				'to which you reply, "Lunchtime is always more fun with you Fyodor." Fedor gives you a kiss on the cheek as he gets dressed and walks out of the locker room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/stomach/cumbelly2.gif"></center>'
+				gs 'cum_call', 'face', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'	
+
+				act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+				act 'Go to class':gt 'gschool_lessons', 'afternoon'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr4.jpg"></center>'
+					'You reply, "Please cum inside me." Fedor flashes you a sweet smile then increases his pace. After a few seconds, Fedor groans and you feel his penis throbbing as he begins filling your womb with his warm seed. You let out a soft moan as the warmth of his cum fills you.'
+					'After a few seconds Fedor looks down to you. "I always feel so lucky having the hottest girl in school as my girlfriend."'
+					'Your face grows a little flushed as you respond, "You really are the sweetest boyfriend ever." Fedor gives you a passionate kiss before getting dressed and leaving the locker room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Home/bedroom/cum/Cum5.gif"></center>'
+					gs 'cum_call', '', $boy				
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+					act 'Go to class':gt 'gschool_lessons', 'afternoon'
+				end	
+			end				
+		end	
+	end
+end
+ 
+if $ARGS[0] =  'Locker Room 2':
+	cls
+	minut -= 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr5.jpg"></center>'
+	'As you enter the locker room, Fedor begins pawing at your breasts as you reach down to rub on his crotch. Fedor''s hands lower down to your stomach then slide under your shirt as he begins rubbing on your breast before taking off you shirt then licking your nipples. The feeling of Fedor''s soft tongue in your nipples, brings you a great sensation, making you feel a gradual wetness forming between your legs.'
+	gs 'arousal', 'foreplay', 5, 'dom'									
+	gs'stat'		
+
+	act 'Unbutton his pants':	
+		cls
+		minut -= 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr6.jpg"></center>'
+		'You reach down to Fedor''s waist then unbutton his pants then slide them down revealing his hard cock which you take into your hand and begin gently stroking. After a few seconds, Fedor grabs you by your shoulders then lightly pushes you down to your knees. You tilt your head forward and gently lick Fedor''s penis which evokes a low moan from Fedor. After giving Fedor''s dick a few licks you decide to stop teasing him and take his hard cock into your mouth and begins sucking. Feeling his warm dick in your mouth gives you a feeling of excitement as you look up to see Fedor with a loving look on his face, obviously happy seeing what you are doing for him. '	
+		gs 'arousal', 'bj', 5, 'dom'									
+		gs'stat'			
+
+		act 'Continue':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr7.jpg"></center>'
+			'You continue sucking Fedor''s dick for a few more seconds before he lifts you onto your feet then quickly undresses you. Fedor walks around behind you then grabs onto your waist then bends you over. You wait for a second in anticipation for what he will do next when you feel his penis enter your vagina, giving you a jolt of pleasure. Fedor begins fucking you slowly but firmly, pushing deep inside you while gradually picking up the pace. You grab onto the bench with both hands and close your eyes focusing on nothing but Fedor''s hard cock in your pussy and the gradual pleasure building up inside you. After a few minutes, Fedor tells you "I''m about ready to cum. How does my girl want it?"'
+			gs 'arousal', 'vaginal', 5, 'sub'									
+			gs'stat'								
+
+			act 'Pull out':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr8.jpg"></center>'
+				'Fedor gives your ass a quick smack before pulling out of you then rubbing his penis in between your ass cheeks until he groans and begins spraying his load on your lower back. You move your hips up and down, trying to milk Fedor with your ass cheeks while enjoying the warmth of his cum covering your back. After Fedor finishes, he looks down at you and says, "You have an great ass <<$pcs_firstname>>. so soft and plump."'
+				'You look back at him and reply, "Well maybe next time you can give it a good fucking."'
+				'Fedor gives your ass a smack as he responds, "I might just do that sometime." Fedor then gets dressed and walks out of the locker room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum3.gif"></center>'
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'
+
+				act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+				act 'Go to class':gt 'gschool_lessons', 'afternoon'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr8.jpg"></center>'
+					'You turn to Fedor and say, "Fill me with your seed, my love."'
+					'Fedor gives you a pleased smile as he increases the pace of his thrusts. You can feel his penis pushing deeper inside you then it begins throbbing and you feel a warmth growing inside you. You let out a moan as Fedor drains his cock inside your vagina and you do your best to milk his penis. Fedor gives your ass a firm smack as he says, "You are so beautiful <<$pcs_firstname>> and so damn sexy too."'
+					'You turn to Fedor and reply, "Well I''m al yours, my love and I always will be." Fedor leans forward and gives you a soft kiss before getting dressed then leaving the locker room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal2.gif"></center>'
+					gs 'cum_call', '', $boy			
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+					act 'Go to class':gt 'gschool_lessons', 'afternoon'
+				end	
+			end	
+		end	
+	end
+end
+ 
+if $ARGS[0] =  'Locker Room 3':
+	cls
+	minut += 5
+	gs 'boyStat', 'A5'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr9.jpg"></center>'
+	'As you and Fedor enter the locker room, Fedor approaches you from behind and begins pawing at your breasts through your clothes. You lilt your head back, letting Fedor caress your body while undressing you. Fedor removes your shirt then begins lightly squeezing your breasts and kissing your neck as he undresses himself.'
+	gs 'arousal', 'foreplay', 5, 'sub'									
+	gs'stat'		
+
+	act 'Continue':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr10.jpg"></center>'
+		'Fedor grabs you by your hips then guides you toward the lockers then lifts up one of your legs, causing you to lean sideways to maintain your balance. You soon feel Fedor''s hard cock enter your vagina which evokes a moan from you as he thrusts his penis deeper inside you. Fedor continues fucking you against the lockers as you begin rubbing your clitoris while looking Fedor in the eyes, enjoying the look of pleasure on his face.'		
+		gs 'arousal', 'vaginal', 5, 'sub'									
+		gs'stat'	
+			
+		act 'Ride Fedor':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr11.jpg"></center>'
+			'After a few minutes, Fedor begins lowering your leg as he continues fucking you. A few moments later, you decide to change things up a bit and begin push your hips firmly against Fedor, pushing him onto the bench. Fedor was a little surprised at first but immediately realized what you were doing as you begin riding his hard cock, pushing it deeper inside you, feeling your vagina expanding for his cock. Fedor leans forward and kisses your neck before telling you "I''m going to cum soon."'
+			gs 'arousal', 'vaginal', 5, 'dom'									
+			gs'stat'	
+			
+			act 'Pull out':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr12.jpg"></center>'
+				'Fedor gives you a few more thrusts then pulls out of you. Fedor leans forward and you say, "Cum on my back."'
+				'Fedor begins stroking his penis as you rub your ass against his balls. You hear Fedor groan as he begins spraying your back with his seed, covering your back in his warm cum as you continue rubbing your clitoris to give yourself some more satisfaction. Fedor catches his breath then looks down to you. "You fuck like a bunny. A really sexy bunny."'
+				'You turn back to face Fedor as you respond, "How would you know how a bunny fucks? Is there something you are not telling me?"'
+				'Fedor gives you a goofy smirk as he replies, "Well there is this bunny that hangs around in front of my house who''s been giving me looks." You give Fedor a playful punch in the arm as he gets dressed then leaves the locker room.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+				gs 'cum_call', 'back', $boy					
+				gs 'arousal', 'vaginal', 5, 'dom'
+				gs 'arousal', 'end'
+				gs'stat'
+
+				act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+				act 'Go to class':gt 'gschool_lessons', 'afternoon'
+			end
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr12.jpg"></center>'
+					'You turn to Fedor and say, "I want your cum inside me." as you continue riding his hard cock, pushing it deeper inside you. Fedor groans and you feel a stream of cum filling your womb with it''s warmth as Fedor''s penis begins throbing, pumping you with his seed.'
+					'When Fedor finishes filling you up, he leans over your shoulder then says, "<<$pcs_firstname>> you are the sexiest, most beautiful girl I''ve ever met. I''m so lucky to have you."'
+					'You turn to Fedor then respond, "You and I are perfect for each other. You make my life complete Fyodor." Fedor gives you a long passionate kiss before getting dressed then leaving the locker room.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum81.gif"></center>'
+					gs 'cum_call', '', $boy				
+					gs 'arousal', 'vaginal', 5, 'dom'
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+
+					act 'Go to class':gt 'gschool_lessons', 'afternoon'
+				end	
+			end	
+		end	
+	end
+end
+ 
+if $ARGS[0] =  'Hall':
+	cls
+	npc_rel['A5'] += 10
+	minut -= 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+	'You approach Fedor with a mischievous smile on your face as you begin rubbing on his crotch. Fedor gives you a pleased look as he begins gently kissing your lips. while rubbing your ass with both his hands and pushing you toward the windowsill.'
+	gs 'arousal', 'foreplay', 5, 'sub'		
+	gs 'arousal', 'foreplay_give', 5, 'dom'	
+	gs'stat'
+		
+	act 'Pull down his pants':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/sex/hall1.gif"></center>'
+		'You pull down Fedor''s pants, revealing his rock hard penis which you wrap your fingers around and begin stroking as he caresses your cheek, admiring your beauty. You continue stroking his penis as you look into his eyes to see a very lustful look in them, turning you on, knowing how badly he wants you.'	
+		gs 'arousal', 'hj', 5, 'dom'									
+		gs'stat'
+
+		act 'Get down on your knees':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/Blowjob1.gif"></center>'
+			'Wanting to please Fedor you drop to your knees in front of him then begin licking his hard cock, Licking from the shaft to the tip. After licking him for a few seconds you wrap your lips around his shaft, taking it into your mouth before licking and sucking it vigorously, wanting to please Fedor as best you could.'
+			gs 'arousal', 'bj', 5, 'sub'									
+			gs'stat'
+
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/sex/hall2.gif"></center>'
+				'As you are sucking him off, Fedor grabs you by your shoulders then lifts you to your feet as he begins undressing you before lifting you off the ground and onto his penis which slides smoothly into your vagina, giving you a jolt of pleasure. You wrap your arms around Fedor''s neck to give yourself leverage to assist Fedor by thrusting your own body onto his hard cock. After a few minutes, Fedor whispers in your ear "I''m gonna cum real soon."'
+				gs 'arousal', 'vaginal', 5, 'sub'									
+				gs'stat'
+
+				act 'On my face':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/sex/hall2.gif"></center>'
+					'You tell Fedor "Cum on my face." Fedor lowers you to your feet as he begins stroking his penis. You drop to your knees and look up at him with a sweet smile on your face, waiting for him to paint your face with his seed. After a few seconds, Fedor groans and begins spraying his load on your face, covering your face in his hot cum.'
+					'After Fedor finishes, he looks down to you and says, "That''s my girl. Always doing dirty things for me." you blow Fedor a kiss as he pulls up his pants and begins walking back to class while saying "Don''t forget to clean up before going back to class."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/cummouth1.gif"></center>'
+					gs 'cum_call', 'face', $boy			
+					gs 'arousal', 'vaginal', 5
+					gs 'arousal', 'end'
+					gs'stat'
+					
+					act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+					
+					act 'Go to class':gt 'gschool_lessons', 'afternoon'
+				end
+				if FedorLoveTalk = 1:
+					act 'Inside me':	
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/sex/hall2.gif"></center>'
+						'You look Fedor in the eyes and say, "Please fill me with your cum." Fedor gives you a pleased smile as he picks up his pace, thrusting his penis deeper inside you. Fedor groans and begins filling your womb with his seed which his penis throbs as it fills your womb. You push against Fedor''s pelvis driving his dick further inside you.'
+						'Fedor lowers you to the ground then gives you a kiss before saying "<<$pcs_firstname>> You are a shining light in my life and I will always love you."'
+						'Your face becomes a bit flushed at his sweet words as you respond, "I love you with all my heart Fyodor and will always be by your side when you need me." Fedor smiles at you for a few seconds in silence before grabbing your neck and bringing your lips to his as he gives you a long passionate kiss. After a full minute of kissing, Fedor pulls up his pants then walks away with an almost blissful look on his face.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum3.gif"></center>'
+						gs 'cum_call', '', $boy			
+						gs 'arousal', 'vaginal', 5, 'dom'
+						gs 'arousal', 'end'
+						gs'stat'						
+						
+						act 'Visit the restroom':gt 'FedorMisc', 'Restroom'
+						
+						act 'Go to class':gt 'gschool_lessons', 'afternoon'
+					end
+				end	
+			end	
+		end	
+	end
+end
+ 
+if $ARGS[0] =  'Restroom':
+	cls
+	$metka = 'Restroom'
+	$loc = 'FedorMisc'
+	$metkaM = 'Restroom'
+	$locM = 'FedorMisc'	
+	$location_type = 'bathroom'		
+	minut += 5
+	gs'stat'
+	'<center><h4><font color=#00ffe4>Girl''s Restroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/restroom/GirlsRestroom.jpg"></center>'
+	'The girls restroom is fairly clean and has 6 <a href="exec:gt ''fedormisc'', ''Quick Wash''">sinks</a>, 6 <a href="exec:gt ''mirror'', ''start''">mirrors</a> and 5 stalls arranged symetrically.'
+
+	act 'Leave restrrom':gt 'gschool_lessons', 'afternoon'		
+end
+
+if $ARGS[0] =  'Quick Wash':
+	cls
+	EndMovie = 0
+	WithFedor = 0	
+	minut += 10
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end		
+	gs'stat'
+	'<center><h4><font color=#00ffe4>Girl''s Restroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself as thoroughly as possible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up then walk out of the restroom.'
+	
+	act 'Dry off':gt 'gschool_lessons', 'afternoon'
+end	
+
+if $ARGS[0] =  'Smoke':
+	cls
+	npc_rel['A5'] += 5
+	siga += 1
+	dynamic $smoker
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+	pcs_mood += 100
+	wipo += 100
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/smoke.jpg"></center>'
+	'"I was just thinking the same thing." Fedor hands you a cigarette then puts one in his mouth as he collects his lighter from his pocket then lights both cigarettes. You both spend the rest of the lunch period smoking while discussing current events.'
+
+	act 'Finish smoking':gt 'gschool_lessons', 'afternoon'
+end
+
+if $ARGS[0] =  'Smoke 2':
+	cls
+	npc_rel['A5'] += 5
+	siga += 1
+	dynamic $smoker
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+	pcs_mood += 100
+	wipo += 100
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/hall/smoke.jpg"></center>'
+	'"Sure thing." Fedor hands you a cigarette then puts one in his mouth as he collects his lighter from his pocket then lights both cigarettes. You both spend the next few minute gossiping about your classmates.'
+
+	act 'Finish smoking':gt 'FedorMisc', 'Outcast'
+end
+
+if $ARGS[0] =  'Fedor Workout':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/Fedor.jpg"></center>'
+	'You can see Fedor on his phone by some of the punching bags and as you approach, he lowers his phone then he flashes you a warm smile. "<<$pcs_firstname>> It''s always good to see you. Are you here to workout? or are you waiting for someone?"'
+	'You reply, "I''m just keeping fit. I wanna look good for my handsome boyfriend."'
+	'Fedor gives you a warm smile as he responds, "I''ve just been doing some warm ups. You can join me for some workouts, if you like."'
+
+	act 'Build strength':	
+		cla
+		*clr
+		FedorWorkout = 1
+		minut += 30
+		gs'stat'
+		'Fedor begins doing push ups as you do a few yourself until you look up and see him grining at you as he says, "Would you like to see me do 45 pushups in 2 minutes?"'
+		'You respond, "Only if I can ride your back as you do it."'
+		'Fedor tilts his head as his grin widens. "Challenge accepted." you then climb on his back and he lift you both in repeated cycles. You can feel his muscles tighten as he lifts and his heartbeat gradually increase as he lifts you on his back. Fedor finally reaches 45 pushups then lowers his body to the ground where he lays with you still on his back. "So <<$pcs_nickname>>...Impressed?"'
+		'You reply "Yes very, I''m a lucky girl to have such a strong man to myself." Fedor winks then gets up and walks toward his bag.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/strength1.jpg"></center>'
+
+		act 'Take a break':
+			VK = rand(1,3)
+			if VK = 1 and strelaQW = -1:
+				gt 'FedorMisc', 'Vitek Event'
+			else		
+				gt 'FedorMisc', 'Fedor Workout 2'
+			end
+		end	
+	end
+	if VKwip = 100:
+		act 'Work on agility':
+			cla
+			*clr
+			FedorWorkout = 2
+			minut += 30
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/agility1.jpg"></center>'
+			'VKwip'
+			
+			act 'Take a break':
+				VK = rand(1,3)
+				if VK = 1 and strelaQW = -1:
+					gt 'FedorMisc', 'Vitek Event'
+				else		
+					gt 'FedorMisc', 'Fedor Workout 2'
+				end
+			end	
+		end
+	end	
+	act 'Increase endurance':
+		cla
+		*clr
+		FedorWorkout = 3
+		minut += 30
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/Endurance1.jpg"></center>'
+		'Fedor walks up to you and grabs your hands then wraps his fingers around yours before gently pushing you backwards while holding you up with his fingers. Fedor begin lifting you like a weight as you lean forward and give him repeated kisses every time you reach the top. After a few minutes of lifting Fedor backs up, lifting you back to your feet where he releases your fingers then turns around and heads toward his bag.'
+		
+		act 'Take a break':
+			VK = rand(1,3)
+			if VK = 1 and kotovLoveQW > 0 and strelaQW = -1:
+				gt 'FedorMisc', 'Vitek Event'
+			else		
+				gt 'FedorMisc', 'Fedor Workout 2'
+			end
+		end	
+	end	
+	act 'I can''t right now but maybe later':gt 'gdksport', 'start'
+end
+
+if $ARGS[0] =  'Fedor Workout 2':
+	cls
+	minut += 5
+	gs'stat'
+	VK = rand(1,2)
+	if VK = 1:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/chat'+rand(1,3)+'.jpg"></center>'
+		'Fedor pulls 2 water bottle out of his bag and hands you one then guides you to a nearby seat where you both spend a few minutes discussing different workouts you both use to stay in shape.'	
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/selfie'+rand(1,3)+'.jpg"></center>'	
+		'Fedor pulls 2 water bottle out of his bag and hands you one then begins checking out his muscles in the mirror. You slowly approach him and stand beside him as you say, "You look really great." Fedor grins then pulls out his phone to take a picture of both of you using the mirror. You both pose for the camera before getting ready to continue your workout.'			
+	end	
+		
+	if FedorWorkout = 1:
+		act 'Workout together':gt 'FedorMisc', 'Strength'
+	elseif FedorWorkout = 2:
+		act 'Workout together':gt 'FedorMisc', 'Agility'
+	else
+		act 'Workout together':gt 'FedorMisc', 'Endurance'
+	end	
+end
+	
+if $ARGS[0] =  'Strength':
+	cla
+	*clr
+	minut += 30
+	stren_exp += rand(1, 4) + (steroid_dose - rand(0,steroid_dose)) & gs 'obj_din', 'steroids'
+	fat -= 1
+	pcs_mood -= 5
+	pcs_sweat += 30
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/strength2.jpg"></center>'
+	'You and Fedor begin doing pushups together for a few minutes while Fedor cheers you on, pushing you further in your exercise to help maximize your workout. When you finish your work out, you watch Fedor continue to workout. You decide to crawl under him as he finishes his pushups then kiss his lips which stops him in his tracks as he returns the long passionate kiss. After a minute, you both get up and Fedor gives you a firm smack on the ass before walking out of the Sports center.'	
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/strength3.jpg"></center>' 
+	
+	if FedorDW = 1:
+		act 'Finish workout':
+			cls
+			FedorDW = 0
+			minut += 2
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'			
+			'You take a well needed stretch before turning back to see Fedor collecting his things, and placing them in his gym bag before he looks to you and says, "Hey <<$pcs_nickname>> would you like to come back to my place to hang out, maybe watch some tv?"'
+			
+			act 'Sure i would love too':
+				cls
+				pcs_mood += rand(5, 10)		
+				minut += 30
+				pcs_mood += rand(15, 25)
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+				'You wrap your arm around Fedor''s shoulder then follow him to his home where you both sit in front of the TV, and Fedor picks a channel for you both to watch. You both get comfortable and watch tv while chatting about various topics.'
+				
+				act 'Relax':gt 'FedorEv4', 'TV'
+			end	
+			
+			act 'I really need to get going':gt 'gdksport', 'start'
+		end	
+	else	
+		act 'Finish workout':gt 'gdksport', 'start'	
+	end	
+end	
+	
+if $ARGS[0] =  'Agility':
+	cla
+	*clr	
+	minut += 30
+	speed_exp += rand(1, 3)	
+	agil_exp += rand(1, 3)
+	fat -= 1
+	pcs_mood -= 5
+	pcs_sweat += 30		
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/agility2.jpg"></center>'
+	'VKwip'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/agility3.jpg"></center>'
+	
+	if FedorDW = 1:
+		act 'Finish workout':
+			cls
+			FedorDW = 0
+			minut += 2
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'			
+			'You take a well needed stretch before turning back to see Fedor collecting his things, and placing them in his gym bag before he looks to you and says, "Hey <<$pcs_nickname>> would you like to come back to my place to hang out, maybe watch some tv?"'
+			
+			act 'Sure i would love too':
+				cls
+				pcs_mood += rand(5, 10)		
+				minut += 30
+				pcs_mood += rand(15, 25)
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+				'You wrap your arm around Fedor''s shoulder then follow him to his home where you both sit in front of the TV, and Fedor picks a channel for you both to watch. You both get comfortable and watch tv while chatting about various topics.'
+				
+				act 'Relax':gt 'FedorEv4', 'TV'
+			end	
+			
+			act 'I really need to get going':gt 'gdksport', 'start'
+		end	
+	else	
+		act 'Finish workout':gt 'gdksport', 'start'	
+	end	
+end	
+
+if $ARGS[0] =  'Endurance':
+	cla
+	*clr	
+	minut += 30
+	vital_exp += rand(1, 4)
+	fat -= 1
+	pcs_mood -= 5
+	pcs_sweat += 30	
+	gs'stat'	
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/Endurance2.jpg"></center>'
+	'Fedor walks up to you and lifts you up by your hips then holds onto your legs and says, "Let''s see how many pull ups you can do in 15 minutes." you give him a wink before pulling your self up and making sure to kiss Fedor every time you reach the top. You continue the workout for 15 minutes before Fedor lowers you and asks "How did you like your workout?"'
+	'You reply, "Wow that was the one of the best workouts I''ve had in a long time." Fedor gives you a wink as he climbs up some nearby bars and begins doing some pull ups of his own. You remain in front of him, cheering him on for 15 minutes before giving him a very passionate kiss and walking away.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/gym/Endurance3.jpg"></center>'
+	
+	if FedorDW = 1:
+		act 'Finish workout':
+			cls
+			FedorDW = 0
+			minut += 2
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'			
+			'You take a well needed stretch before turning back to see Fedor collecting his things, and placing them in his gym bag before he looks to you and says, "Hey <<$pcs_nickname>> would you like to come back to my place to hang out, maybe watch some tv?"'
+			
+			act 'Sure i would love too':
+				cls
+				pcs_mood += rand(5, 10)		
+				minut += 30
+				pcs_mood += rand(15, 25)
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+				'You wrap your arm around Fedor''s shoulder then follow him to his home where you both sit in front of the TV, and Fedor picks a channel for you both to watch. You both get comfortable and watch tv while chatting about various topics.'
+				
+				act 'Relax':gt 'FedorEv4', 'TV'
+			end	
+			
+			act 'I really need to get going':gt 'gdksport', 'start'
+		end	
+	else	
+		act 'Finish workout':gt 'gdksport', 'start'	
+	end	
+end	
+
+if $ARGS[0] =  'Vitek Event':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+	'As you and Fedor begin your warm ups, you hear someone shout "YOU FUCKING PUNK!" you both turn to see Vitek walking very quickly toward you.'
+	'Fedor quickly begins running as Vitek gives chase, quickly catching up to Fedor. Vitek grabs Fedor''s arm then pulls him onto the ground then climbs on top of him lifting his fist but before he could get a punch off he is grabbed from behind by Ivan who has wrapped his arms around Vitek''s shoulders, dragging him back by his arms. Fedor quickly rises to his feet then runs off as Vitek bellows "YOU WORTHLESS SACK OF SHIT! <<$pcs_firstname>> IS MINE! YOU HEAR ME FUCKER!? <<$pcs_firstname>> IS MIIIIIIINE!" as others rush in to help Ivan restain Vitek.'
+	'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/3.jpg"></center>'
+	
+	act 'Walk away':gt 'gdksport', 'start'
+end
+	
+if $ARGS[0] =  'Outcast Intro':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/ParkAlone1.jpg"></center>'
+	'You walk toward the tracks and see Fedor by himself. Ever since that day with Vadim bely, Fedor has been avoiding all the other students and has no friends. As you continue watching him, you think to yourself "I wonder if he blames me for what happened."'
+
+	if FedorLove = 0:	
+		act 'Approach Fedor':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorAngry.jpg"></center>'
+			'As you approach Fedor he looks at you with an angry stare as he asks "What are you doing here? Are you here to mock me or gloat on how Viktor is stronger than me?"'
+
+			act 'Apologize':	
+				cls
+				FedorOutcast = -1
+				gs'stat'
+				'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorAngry.jpg"></center>'
+				'You slowly step toward Fedor and say, "Look Fedor...I never meant for any of this to happen." Fedor shouts "YOU AGREED TO GO OUT WITH VIKTOR WHILE DATING ME! How can you expect me to believe that you cared for me at all... Just go away <<$pcs_firstname>>. I have nothing for you." you step away from Fedor knowing that nothing you say will console him while thinking to yourself "If only he trusted me more, then maybe he would believe that my apology is sincere."'
+				
+				act 'Walk away':gt 'gskver'
+			end
+			act 'Mock':	
+				cls
+				FedorOutcast = -2
+				npc_rel['A5'] = 0
+				FedorLove = -1
+				gs'stat'
+				'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/FedorAngry.jpg"></center>'
+				'You grin as you reply, "Well yes. I do so love having a real man as my boyfriend and not a little cocksucker like you." Fedor immediately charges at you and pushes you on the ground. "The only thing Viktor sees in you is right between your legs." You are too shaken to speak as Fedor takes a few seconds to calm himself then walks away from you while saying "Just go <<$pcs_firstname>>. You''ve already taken everything from me. There is nothing left for you here."'
+				
+				act 'Walk away':gt 'gskver'
+			end			
+		end		
+	elseif FedorLove = 1:
+		act 'Approach Fedor':
+			cls
+			npc_rel['A5'] += 10
+			gs'stat'
+			'<center><b><h4><font color=#FF00FF><<"Fyodor [Masha] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast1.jpg"></center>'
+			'As you approach Fedor, he turns to you with a distraught look on his face. "<<$pcs_firstname>>... What are you doing here. I bet Viktor will be upset with us both if he sees you with me."'
+			'You reply, "Viktor doesn''t own me. I came here to check on you."'
+			'Fedor responds, "How did you know to find me here."'
+			'You give Fedor a sweet smile as you reply, "On our first date since hooking up, You told me that this is where you go when you are feeling down."'
+			'Fedor returns the smile. "You remembered? I always knew you were one of the good ones."'		
+
+			act 'Cheer him up':	
+				cls
+				fedorKozlovQW = -12
+				npc_rel['A5'] += 10
+				minut += 5
+				FedorOutcast = 1
+				fedormasha = 0
+				$npc_notes[5] = 'Ever since Fedor gave Vasily a blowjob in the school courtyard, everyone calls him Masha but to you, he will always be Fedor.'
+				gs'stat'
+				'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+				'You walk up to Fedor then place your hand on his shoulder. "You may be an outcast for some but you will always be a friend to me."'
+				'Fedor downcasts his eyes as a tear escapes them. "<<$pcs_firstname>> you truly are an angel. I''m so lucky to have a friend like you. Thank you."'
+				'You give Fedor a hug as you say, "I know things are really hard for you but I need you to stay strong. Can you do that for me?"'
+				'Fedor returns the hug. "I wont let what happened keep me down. I promise."'
+				'You respond, "I expected nothing less from you." you then give him a kiss on the cheek.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/Kiss.jpg"></center>'
+				
+				act 'Continue':gt 'FedorMisc', 'Outcast'
+			end
+		end	
+	end
+	act 'Walk away':gt 'gskver'
+end
+
+if $ARGS[0] =  'Outcast':
+	cls	
+	minut += 5
+	gs'stat'
+	VK = rand(1,2)
+	if VK = 1:	
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/ParkAlone'+rand(1,3)+'.jpg"></center>'
+		'You walk toward the train tracks to see Fedor, He seems to be lost in thought.'
+	else
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/ParkAlone'+rand(4,5)+'.jpg"></center>'
+		'You walk toward the train tracks to see Fedor, he seems to be sitting in the grass, reading a book.'
+	end	
+	
+	if fedorKozlovQW = -12:
+		act 'Let''s talk about us':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast1.jpg"></center>'
+			'You walk up to Fedor and he immediately turns to face you with a very welcoming smile on his face. "Hello <<$pcs_firstname>>, I''ve been reflecting on what we spoke about last time and I really need to thank you for cheering me up. I really needed that."'
+			'You place your hand on his shoulder. "It was the least I can do Fedor."'
+			'Fedor rubs your hand on his shoulder while still keeping his welcoming smile intact as he asks "So, is there anything I can do for you?"'
+			'You wrap your fingers around his as you reply, "Fedor I...I just... I can''t stop thinking of you Fyodor. I need you in my life. Will you please take me back."'
+			'Fedor replies with a shocked look on his face "If we hooked up again then Viktor will tear me apart. I''m just not strong enough to deal with him. I''m sorry."'
+			'You reply, "I''ve been thinking about it and maybe we can go out in secret, no one ever needs to know."'
+			'Fedor responds, "I don''t know <<$pcs_firstname>>. This has trouble written all over it and I thought that you might be in love with Viktor."'
+			'You place your hand on Fedor''s cheek. "I don''t care for Viktor. I just can''t find a way to break it off with him. I''m as afraid of him as you are so please come back to me Fyodor. I can''t live without you."'
+			'Fedor tilts his head then asks "Are you sure you want to do this. I can''t lose you for a second time. I wont be able to handle it, so make sure you are truly ready to commit."'	
+			
+			act 'I''m sure':
+				cls
+				npc_rel['A5'] += 20
+				FedorKozHome = 1
+				fedorKozlovQW = -15
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+				'You move your face closer to Fedor''s. "I''ve never been more sure of anything in my life. Please Fyodor, kiss me now."'
+				'Fedor stares into your eyes for a second before grabbing you shoulders then pulling you to him, kissing you very passionately for five minutes straight.'
+				'After you both finish kissing, Fedor says, "Ok <<$pcs_firstname>> here is how it works. I will remain here after school, so whenever you would like to go out, just ask me here and we could sneak through town but know that I wont be able to speak with you at school but we can go on anywhere that Viktor and his friends don''t hang out. Do you understand?" you nod your head and Fedor gives you a smile followed by a kiss.'			
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+			
+				act 'Remain here':gt 'FedorMisc', 'Outcast'
+			
+				act 'Return to park':gt 'gskver'
+			end
+			act 'I need some time to think about it':gt 'gskver'
+		end
+	elseif fedorKozlovQW = -15:
+		act 'Ask out on a date':
+			cls
+			npc_rel['A5'] += 10
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+			'You approach Fedor and his eyes light up as he asks "<<$pcs_nickname>> would you like to spend some time together or is there something else you want?"'			
+
+			act 'Let''s go to the movies':gt 'FedorEv', 'Cinema 2'
+			
+			act 'Let''s go back to your place':gt 'FedorEv', 'Home 2'
+			
+			act 'Ask for a smoke':gt 'FedorMisc', 'Smoke 2'	
+			
+			act 'Just wanted to say hi':gt 'gskver'
+		end	
+	end	
+	
+	act 'Ask for a smoke':gt 'FedorMisc', 'Smoke 2'	
+	
+	act 'Walk away':gt 'gskver'
+end
+
+if $ARGS[0] =  'Fedor Vs Dimka':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	if fedorKozlovQW = -15:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+	end		
+	'Fedor walks up to you then gives you a kiss on your cheek then whispers in your ear. "Are you ready to deal with that punk Dimka?"'
+
+	act 'Yes I am':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		if fedorKozlovQW = -15:
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		end		
+		'Fedor nods then tells you "You lure him to the other side of school and I will wait for you there." you give Fedor a kiss before responding "I will..and thank you again Fedor. This means a great deal to me." Fedor gives you a wink as he walks off.'		
+
+		act 'Lure Dimka':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="maroon"><<"Dmitriy [Dimka] Nosov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'
+			'You can feel you body shaking as you approach Dimka. When Dimka notces you, he waves you over and says, "Good, you''re here. Now let''s head back to my place."'
+			'You walk up to him and whisper in his ear. "Actually I was thinking that maybe you and I could have some fun behind the school."'
+			'Dimka looks at you with a puzzled look. "Why should we fuck around behind the school? Stop wasting time and come back to my place already!"'
+			'You quick add. "You can record it on your phone to watch later."'
+			'Dimka eyes widen as he stares at you with a wolfish grin. "I always though that you were camera shy but I see that you are a dirty little cam whore, aren''t you?"'
+			'You give him a nod with a seductive grin on your face. Dimka responds, "What are we waiting for? Let''s get moving." He then grabs your wrist roughly as he leads you behind the school.'
+
+			act 'Follow his lead':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color="maroon"><<"Dmitriy [Dimka] Nosov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'
+				'When you reach a secluded area behind the school Dimka barks "<b>TAKE OFF YOUR CLOTHES WHORE!</b>" as he pulls out his phone and begins recording. You look around to find Fedor but he isn''t in sight. Dimka grabs you by your hair as he shouts. "I said take off your clothes and stop fucking around whore!" you feel your heart pounding and decide to do as he says. You completely strip down in front of Dimka as he touches your body and shoves his fingers roughly inside your holes. You begin to feel tears forming in your eyes as you wonder why Fedor is not here. Dimka shoves you against the wall then begins roughly smacking you between your legs then grabs onto your clitoris and pulls on it, causing you to shriek in pain.'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/events/dimka/nude.jpg"></center>'
+				gs 'clothing', 'strip'
+				gs 'arousal', 'vaginal_finger', 5, 'sub', 'rough'
+				gs 'arousal', 'anal_finger', 5, 'sub', 'rough'
+				gs'stat'	
+				
+				act 'Continue':	
+					cls
+					minut += 10
+					pain['asshole'] += 10
+					pcs_health -= 10
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/events/dimka/anal.gif"></center>'
+					'You feel Dimka''s hands on your asscheeks, spreading them open. You suddenly feel a sharp pain as Dimka shoves his dick inside your asshole, causing you to shriek in searing pain before hearing some thumping behind you. You turn around to see Fedor sprinting at the both of you. Dimka quickly pulls off of you as he begins zipping his pants, he then angrily shouts "What the fu.."'
+					'Fedor punches him in his face, knocking Dimka a meter away. Dimka quickly looks up at Fedor. "What the fuck is wrong with you!?"'
+					'Fedor begins kicking him in his ribs while shouting "<b>How dare you fuck with <<$pcs_firstname>>! She is my girl and no one fucks with my girl!</b>" Fedor continues kicking Dimka in his ribs.'
+					'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+					if fedorKozlovQW = -15:
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+					end							
+					gs 'arousal', 'anal', 5, 'sub', 'rough'
+					gs 'arousal', 'end'
+					gs'stat'					
+					
+					act 'Break it up':	
+						cls
+						minut += 5
+						gs'stat'
+						'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+						if fedorKozlovQW = -15:
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+						end													
+						'You quickly rush to Fedor''s side then wrap your hands around his waist. You begin pulling Fedor off of Dimka. Fedor looks to you then his rage turns to sorrow as he sees you naked, realizing that he was too late. "<<$pcs_firstname>> I am so sorry. I thought that you were heading to the other side of the school."'
+						'You give Fedor a firm hug as you reply, "It''s ok Fedor. The important thing is that you came for me." You flash Fedor an innocent smile as you continue hugging him.'
+						'Dimka still squirming in pain looks toward Fedor then says, "I didn''t know <<$pcs_firstname>> was yours but there is something you should know about her." He then pulls his phone out of his pocket.'
+						
+						act 'Snatch the phone':	
+							cls
+							dimaFilm = 0
+							DimaRudeBlock = 1
+							FedorvsDimka = 2
+							minut += 5
+							gs'stat'
+							'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+							if fedorKozlovQW = -15:
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+							end							
+							'You run up to Dimka then snatch the phone from his hand and begin deleting the video. Dimka gets up to snatch it back when Fedor drives his fist into Dimka''s throat causing him to begin couching erratically while squirming on the ground in pain. Fedor then checks Dimka''s pockets and takes his house keys as he says, "I''m gonna check his computer to make sure that he isn''t keeping any other copies of your video there. In the meantime get somewhere safe and please try to avoid making anymore "Videos"." Fedor gives you a smirk as he hands you your clothes then walks away.'
+		
+							act 'Get dressed then leave':
+								gs 'clothing', 'wear_last_worn'
+								gt 'pavResidential'
+							end
+						end	
+					end	
+				end
+			end
+		end	
+	end
+	act 'I''m not ready yet':gt 'gschool_grounds', 'main'
+end
+
+if $ARGS[0] =  'Dimka Party':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="maroon"><<"Dimka Nosov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'	
+	'You push Dimka away from you while shouting "Hey! Beat it! Are you crazy or something?" suddenly Fedor comes stumbling into the room, obviously a little drunk then quickly approaches Dimka.'
+	'Dimka quickly released you then backs away, saying "Whoa, take it easy, I was just helping her to the door." Fedor gently grabs you by the arm and walks you out of the house while keeping his eyes trained on Dimka.'
+	*nl
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/events/dimka/Fedor.jpg"></center>'	
+
+	act 'Leave':gt 'pavResidential'
+end
+	
+if $ARGS[0] =  'Dimka Party 2':	
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="maroon"><<"Dimka Nosov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'			
+	'You push Dimka away from you while shouting "hey! Beat it! Are you crazy or something?" but he doesn''t let go and begins dragging you into the next room when you both hear "Take your hands off her!"'
+	'You both turn to the corner of the room to see Fedor in the shadows. Dimka laughs as he says, "Well look who it is... the cocksucker Masha. If you want to suck my dick then you better get lost because I have <$pcs_firstname>> for that." after 2 seconds of silence Fedor charges Dimka and begins punching him repeatedly.'
+	'You rush over to Fedor to pull him away and he looks back at you and asks "Are you alright? He didn''t hurt you, did he?"'
+	'You give him a warm smile as you reply, "It''s alright. I''m fine. We should get going." you and Fedor then leave the house together.'		
+	*nl
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/events/dimka/Outcast.jpg"></center>'		
+
+	act 'Leave':gt 'pavResidential'
+end
+
+if $ARGS[0] =  'VKwip':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr.jpg"></center>'
+	''
+
+	act '':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr.jpg"></center>'
+		''		
+
+		act '':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr.jpg"></center>'
+			''
+
+			act '':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/school/lockerroom/lr.jpg"></center>'
+				''
+				
+				act 'Go to class':gt 'gschool_lessons', 'afternoon'
+			end	
+			if FedorLoveTalk = 1:
+				act 'Inside me':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/school/lockerroom/lr.jpg"></center>'
+					''
+
+					act 'Go to class':gt 'gschool_lessons', 'afternoon'
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Workout Time':
+	cls
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'	
+	'As you are walking around, Fedor approaches you then says, "Hey <<$pcs_nickname>>, I''m heading to the sports center to do some workouts. Would you like to join me, or would you prefer that I take you home?"'
+
+	act 'I could use a good workout':
+		cls
+		FedorDW = 1
+		minut += 10
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/hold.jpg"></center>'
+		'Fedor gives you a warm smile as he responds, "Great, I love a girl that keeps herself in shape." you give him a grin as you respond, "Well I already know that, duhh." Fedor chuckles as he fetches your coat then walks you out of the house, toward the sports center then says, "Let me just warm up a sec." Fedor then begins punching a punching bag.'
+	
+		act 'Approach Fedor':gt 'FedorMisc', 'Fedor Workout'
+	end	
+	
+	act 'I need to head home':gt 'FedorEv4', 'End Date 2'
+end	
+
+
+--- FedorMisc ---------------------------------
+

+ 9 - 9
locations/FightCrouch

@@ -2,7 +2,7 @@
 !!rMin -= 1
 gs 'fightStat'
 stoper = 0
-'<center><img src="images/locations/city/citycenter/gym/kickboxing/cro.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cro.jpg"></center>'
 
 if crouch = 1:
 	enrand = rand(0, 1)
@@ -22,14 +22,14 @@ if crouch = 1:
 
 		if enrand = 0:
 			pointE += 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
 			'Opponent managed pressed to the floor and you can not perform a roll.'
 
 			act '...':gt 'fightfw'
 		elseif enrand = 1:
 			point += 2
 			endurE -= 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
 			'You have intercepted an attempt to rival roll over and roll performed.'
 
 			act '...':gt 'fight1'
@@ -43,14 +43,14 @@ if crouch = 1:
 
 		if enrand = 0:
 			point += 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
 			'Opponent is pressed to the floor and you will easily manage to fix it.'
 
 			act '...':gt 'fight2'
 		elseif enrand = 1:
 			pointE += 1
 			endurE -= 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
 			'Opponent flipped onto his back did not hold you to spend dvavaya.'
 
 			act '...':gt 'fight3'
@@ -73,14 +73,14 @@ else
 		if enrand = 0:
 			point += 1
 			endurE -= 2
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
 			'Opponent has no time to attempt a shot.'
 
 			act '...':gt 'fightE'
 		elseif enrand = 1:
 			pointE += 1
 			endurE -= 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
 			'Opponent successfully a hold.'
 
 			act '...':gt 'fightE1'
@@ -95,14 +95,14 @@ else
 		if enrand = 0:
 			pointE += 2
 			endurE -= 2
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
 			'Opponent easily captures and holds you throw.'
 
 			act '...':gt 'fightE2'
 		elseif enrand = 1:
 			point += 1
 			endurE -= 1
-			'<center><img src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
 			'You pull out of the seizure of the opponent and turn on the back.'
 
 			act '...':gt 'fightE3'

+ 7 - 7
locations/FightE

@@ -5,19 +5,19 @@ $resultUderDinE = {
 	if Aktiv > Passiv:
 		pointE += 1
 		KuE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
 		'<<$nameE>> successfully captures you'
 
 		act '...':stoper = 0 & gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'<<$nameE>> you can not do anything and you turn.'
 
 		act '...':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'You have two little turns and you are struggling without success.'
 
 		act '...':gt $curloc
@@ -31,19 +31,19 @@ $resultBrosDinE = {
 		pointE += 2
 		lustwE += 1
 		KbE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
 		'<<$nameE>> successfully throws you'
 
 		act '...':stoper = 0 & gt 'fightE2'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'<<$nameE>> you can not do anything and you turn.'
 
 		act '...':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'You have two little turns and you are struggling without success.'
 
 		act '...':gt $curloc
@@ -57,7 +57,7 @@ koefE = 100
 rMin -= 1
 stoper += 1
 gs locations/city/citycenter/gym/kickboxing/
-'<center><img src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 'You lie on your stomach below, and <<$nameE>> sits on you.'
 
 if endur <= 0 or lustw <= 0:gt 'SubLoss'

+ 3 - 3
locations/FightE1

@@ -7,14 +7,14 @@ $resultUderDinE = {
 		pointE += 1
 		lustw -= 1
 		KuE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
 		'<<$nameE>> successfully keeps you'
 
 		act '...':gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
 		'<<$nameE>> you can not do anything and you turn.'
 
 		act '...':stoper = 0 & gt 'fightE3'
@@ -29,7 +29,7 @@ lustw -= 1
 rMin -= 1
 stoper += 1
 gs 'fightStat'
-'<center><img src="images/locations/city/citycenter/gym/kickboxing/f2.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2.jpg"></center>'
 '<<$nameE>> recorded a hold of you and.'
 
 if endur <= 0 or lustw <= 0:gt 'SubLoss'

+ 4 - 4
locations/FightE2

@@ -5,19 +5,19 @@ $resultUderDinE = {
 	if Aktiv > Passiv:
 		pointE += 1
 		KuE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
 		'<<$nameE>> successfully captures you'
 
 		act '...':stoper = 0 & gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
 		'<<$nameE>> you can not do anything and you turn.'
 
 		act '...':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
 		'You have two little turns and you are struggling without success.'
 
 		act '...':gt $curloc
@@ -31,7 +31,7 @@ koefE = 100
 rMin -= 1
 stoper += 1
 gs 'fightStat'
-'<center><img src="images/locations/city/citycenter/gym/kickboxing/f1.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1.jpg"></center>'
 'You lie below a little stunned after throwing, and <<$nameE>> sits on you.'
 
 if endur <= 0 or lustw <= 0:gt 'SubLoss'

+ 5 - 5
locations/FightE3

@@ -5,14 +5,14 @@ cls
 	if Aktiv > Passiv:
 		pointE += 1
 		KuE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
 		'<<$nameE>> successfully captures you'
 
 		act '...':stoper = 0 & gt 'fightE1'
 	elseif Aktiv <= Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'<<$nameE>> you can not do anything and you slip out of the capture.'
 
 		act '...':gt 'RoundStop'
@@ -26,14 +26,14 @@ $resultBrosDinE = {
 		pointE += 2
 		lustwE += 1
 		KbE += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
 		'<<$nameE>> successfully throws you'
 
 		act '...':stoper = 0 & gt 'fightE2'
 	elseif Aktiv <= Passiv:
 		point += 1
 		Kz += 1
-		'<center><img src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'<<$nameE>> you can not do anything and you slip out of the capture.'
 
 		act '...':gt 'RoundStop'
@@ -47,7 +47,7 @@ koefE = 100
 rMin -= 1
 stoper += 1
 gs 'fightStat'
-'<center><img src="images/locations/city/citycenter/gym/kickboxing/f3.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3.jpg"></center>'
 'You lie on your back from the bottom, and <<$nameE>> sits on you.'
 
 if endur <= 0 or lustw <= 0:gt 'SubLoss'

+ 12 - 12
locations/Gadbana

@@ -10,7 +10,7 @@ frost = 0
 
 '<center><h4>bath</h4></center>'
 
-'<center><img src="images/locations/gadukino/village/bana.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/gadukino/village/bana.jpg"></center>'
 'Quite a small room with a low smoky ceiling, low stove, stainless steel water tanks and a blackened wooden shelf.'
 'Grandma''s enema bulb is hidden behind some stuff on the shelf.'
 
@@ -32,7 +32,7 @@ if mira = 0:
 			minut += 5 & gt'Gaddvor'
 		else
 			cls
-			'<center><img src="images/locations/gadukino/hunters/noundress.jpg"></center>'	
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/noundress.jpg"></center>'	
 			'You are ashamed to appear like this in the open.'
 			act 'Back':gt'Gadbana'
 		end	
@@ -65,7 +65,7 @@ if mira = 0:
 
 					gs 'stat'
 
-					'<center><img src="images/locations/gadukino/village/par.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/par.jpg"></center>'
 					'After a proper banya session, you pick up a bucket filled with cold water and pour it over yourself and head over to the shower. You feel like a completely new person.'
 
 					act 'Go outside':gt 'Gaddvor'
@@ -90,7 +90,7 @@ if mira = 0:
 			if frost > 0:frost = 0
 
 			gs 'stat'
-			'<center><img src="images/locations/gadukino/village/mit.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mit.jpg"></center>'
 			'You lather your body washcloth and start scrubbing your body. You rinse off the soap and start to lather the hair with the shampoo. After rising off the shampoo you are completely clean.'
 			
 			act 'Leave':gt 'Gaddvor'
@@ -110,7 +110,7 @@ if mira = 0:
 			gs 'cum_cleanup'
 			minut += 10
 			gs 'stat'
-			'<center><img src="images/shared/sex/cum/frotsp.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/frotsp.jpg"></center>'
 			'You remove traces of cum from the clothes.'
 
 			act 'Finish':gt $curloc
@@ -127,7 +127,7 @@ if mira = 0:
             clrbelo += dirtbelo
             dirtbelo = 0
             pcs_mood -= 10
-            '<center><img src="images/locations/gadukino/village/Washclothes1.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/village/Washclothes1.jpg"></center>'
             *nl
             'You soak your dirty panties in the basin and pour in washing powder, then you scrub them until they are finally clean.'
             act 'Finish':gt $locM, $metkaM
@@ -145,9 +145,9 @@ if mira = 0:
 			cumspclnt = 6 & gs 'cum_cleanup'
 	        gs 'stat'
 	        if $clothingworntype = 'nude':
-	            '<center><img src="images/locations/gadukino/hunters/basinwash.jpg"></center>'
+	            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/basinwash.jpg"></center>'
 	        else
-                '<center><img src="images/locations/gadukino/village/Washclothes1.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/locations/gadukino/village/Washclothes1.jpg"></center>'
                  'You undress and wash your dirty clothes.'
             end	
             *nl
@@ -164,7 +164,7 @@ if mira = 0:
 			minut += 5
 			klismaday = daystart
 			klismaday1= 1
-			'<center><img src="images/shared/home/bathroom/klisma.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
 			'You use Baba''s enema to clean yourself out down there. Your ass is now ready for anal sex without any awkward surprises.'
 			act 'Finish':gt 'Gadbana'
 		end
@@ -174,7 +174,7 @@ else
 	act 'Undress':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/miraBan.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/miraBan.jpg"></center>'
 			'While you undress, through the corner of your eye you notice Mira removing her panties.'
 			
 			gs 'arousal', 'voyeur', 10, 'lesbian'
@@ -183,7 +183,7 @@ else
 			act 'Watch Mira clean herself':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/miraBan1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/miraBan1.jpg"></center>'
 			'You feel the hot steam penetrate into your pores while you blissfully watch Mira lather up. She sometimes throws at you short glances and smiles hesitantly in response...'
 			gs 'arousal', 'voyeur', 10, 'lesbian'
 			gs 'stat'
@@ -208,7 +208,7 @@ else
 				pcs_skin += 5
 				
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/miraBan2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/miraBan2.jpg"></center>'
 				'Mira finally finishes lathering herself, you take the loofah and lather yourself from head to toe. You enjoy yourselves in the warm bath, relaxing in each other''s company, occasionally exchanging meaningless anecdotes...'
 				gs 'arousal', 'voyeur', 120, 'lesbian'
 				gs 'arousal', 'end'

+ 6 - 6
locations/Gaddvor

@@ -12,15 +12,15 @@ if $ARGS[0]='':
 	'<center><h4>Your grandparents'' yard</h4></center>'
 	if month >= 4 and month <= 10:
 		if hour >= 6 and hour < 22:
-			'<center><img src="images/locations/gadukino/village/dvor.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/dvor.jpg"></center>'
 		else
-			'<center><img src="images/locations/gadukino/village/dvor_night.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/dvor_night.jpg"></center>'
 		end
 	else
 		if hour >= 8 and hour < 18:
-			'<center><img src="images/locations/gadukino/village/dvor_winter.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/dvor_winter.jpg"></center>'
 		else
-			'<center><img src="images/locations/gadukino/village/dvor_winter_night.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/dvor_winter_night.jpg"></center>'
 		end
 	end
 	'A fenced yard behind your grandparents'' house. The yard is surrounded by a small barn packed with junk and a separate building that is used as a banya where you can take a bath. On the back porch there are a few chairs to sit in.'
@@ -65,7 +65,7 @@ if $ARGS[0]='chickens':
 	minut += 5
 	gs 'stat'
 	
-    '<center><img src="images/locations/gadukino/village/chickens1.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/chickens1.jpg"></center>'
 	'Ordinary chickens clucking about their pen.'
 	!job Granny
 	if feed_chickens = 1:
@@ -77,7 +77,7 @@ if $ARGS[0]='chickens':
 			feed_chickens = 0
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/chickens2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/chickens2.jpg"></center>'
 			'You decide to feed the chickens. You pick up a bucket full of bird''s seed and grain mix and toss it on the ground. They immediately rush over and start to greedily eat.  You watch them for a bit before you go about your business.'
 			
 			act 'Finish':gt'Gaddvor'  

+ 21 - 21
locations/Gadgarden

@@ -10,15 +10,15 @@ if $ARGS[0] = 'garden':
  
     if month >= 4 and month <= 10:
 	    if hour >= 6 and hour < 21:
-		    '<center><img src="images/locations/gadukino/village/garden.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/garden.jpg"></center>'
 	    else
-		    '<center><img src="images/locations/gadukino/village/garden_night.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/garden_night.jpg"></center>'
 	    end
     else
 	    if hour >= 8 and hour < 18:
-		    '<center><img src="images/locations/gadukino/village/garden_winter.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/garden_winter.jpg"></center>'
 	    else
-		    '<center><img src="images/locations/gadukino/village/garden_winter_night.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/garden_winter_night.jpg"></center>'
 	    end
     end
 
@@ -38,7 +38,7 @@ if $ARGS[0] = 'garden':
 		    fat -= RAND(1,5)
 		    gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/work_garden'+rand(1,5)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/work_garden'+rand(1,5)+'.jpg"></center>'
 			'You spend some time doing some gardening.'
 			act 'Finish':gt'Gadgarden','garden'    
 	    end
@@ -56,7 +56,7 @@ if $ARGS[0] = 'garden':
 		    fat -= RAND(1,2)		    
 		    gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/water_garden.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/water_garden.jpg"></center>'
 			'You spend an hour watering the garden.'
 			act 'Finish':gt'Gadgarden','garden'
 	    end    
@@ -74,7 +74,7 @@ if $ARGS[0] = 'garden':
 		    fat -= RAND(1,3)		    
 		    gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/harvest_garden'+rand(1,5)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/harvest_garden'+rand(1,5)+'.jpg"></center>'
 			'You spend a few hours harvesting vegetables in the garden.'
 			act 'Finish':gt'Gadgarden','garden'
 	    end    
@@ -92,15 +92,15 @@ if $ARGS[0] = 'strawberry':
 	
     if month = 6 or month = 7:
         if hour >= 6 and hour < 21:
-		    '<center><img src="images/locations/gadukino/village/strawberry1.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/strawberry1.jpg"></center>'
         else
-            '<center><img src="images/locations/gadukino/village/strawberry_night.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/village/strawberry_night.jpg"></center>'
         end
     else    
         if hour >= 6 and hour < 21:
-		'<center><img src="images/locations/gadukino/village/strawberry2.jpg"></center>'		     
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/strawberry2.jpg"></center>'		     
         else
-            '<center><img src="images/locations/gadukino/village/strawberry_night.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/village/strawberry_night.jpg"></center>'
         end
     end     
 
@@ -119,7 +119,7 @@ if $ARGS[0] = 'strawberry':
 			cumspclnt = 2 & gs 'cum_cleanup' & pcs_breath = 0
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/eat_strawberries.jpg"></center>'			    
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/eat_strawberries.jpg"></center>'			    
 			'You spend some time wandering through the plot searching for ripe strawberries. As soon as you notice a strawberry, you immediately pick it up and eat as many as you can.'
 	
 			act 'Finish':gt'Gadgarden','strawberry'   
@@ -138,9 +138,9 @@ if $ARGS[0] = 'strawberry':
             fat -= 1			
 			gs 'stat'
 			
-			if CloSkirtShortness = 0:'<center><img src="images/locations/gadukino/village/collect_strawberries.jpg"></center>'
-			if CloSkirtShortness > 0 and tanga = 1:'<center><img src="images/locations/gadukino/village/collect_strawberries_ski.jpg"></center>'			    
-			if CloSkirtShortness > 0 and tanga = 0:'<center><img src="images/locations/gadukino/village/collect_strawberries_tanga.jpg"></center>'
+			if CloSkirtShortness = 0:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/collect_strawberries.jpg"></center>'
+			if CloSkirtShortness > 0 and tanga = 1:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/collect_strawberries_ski.jpg"></center>'			    
+			if CloSkirtShortness > 0 and tanga = 0:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/collect_strawberries_tanga.jpg"></center>'
 			'You wander through the plot collecting ripe strawberries in the basket.'
 			
 			act 'Finish':gt'Gadgarden','strawberry'    
@@ -160,9 +160,9 @@ if $ARGS[0] = 'fruit_garden':
     !gs'time'    
 
 	if hour >= 6 and hour < 21:
-		'<center><img src="images/locations/gadukino/village/fruit_garden.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/fruit_garden.jpg"></center>'
 	else
-		'<center><img src="images/locations/gadukino/village/fruit_garden_night.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/fruit_garden_night.jpg"></center>'
 	end
 	
 	'There are apples and pears growing in the fruit orchard.'	
@@ -180,7 +180,7 @@ if $ARGS[0] = 'fruit_garden':
 			cumspclnt = 2 & gs 'cum_cleanup' & pcs_breath = 0
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/eat_fruit.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/eat_fruit.jpg"></center>'
 			'You spend some time wandering around the orchard munching on the ripe fruit.'
 
 			act 'Finish':gt 'Gadgarden','fruit_garden'    
@@ -199,9 +199,9 @@ if $ARGS[0] = 'fruit_garden':
             fat -= RAND(1,3)
 			gs 'stat'
 			
-			if CloSkirtShortness = 0:'<center><img src="images/locations/gadukino/village/fruit_collect.jpg"></center>'
-			if CloSkirtShortness > 0 and tanga = 1:'<center><img src="images/locations/gadukino/village/fruit_collect_ski.jpg"></center>'			    
-			if CloSkirtShortness > 0 and tanga = 0:'<center><img src="images/locations/gadukino/village/fruit_collect_tanga.jpg"></center>'			
+			if CloSkirtShortness = 0:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/fruit_collect.jpg"></center>'
+			if CloSkirtShortness > 0 and tanga = 1:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/fruit_collect_ski.jpg"></center>'			    
+			if CloSkirtShortness > 0 and tanga = 0:'<center><img <<$set_imgh>> src="images/locations/gadukino/village/fruit_collect_tanga.jpg"></center>'			
 			'You walk around the orchard and pick the ripe fruit hanging from the trees.'
 			
 			act 'Finish':gt 'Gadgarden','fruit_garden'   

+ 19 - 19
locations/Gadhouse

@@ -22,7 +22,7 @@ if $ARGS[0]='' or $ARGS[0] = 'Start':
 		
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/village/grandmahelp.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/grandmahelp.jpg"></center>'
 		if gadstay = 0:
 			'Upon entering the house, you let out a screech as you catch sight of your grandmother, throwing yourself at her, wrapping your arms around her neck. She embraces you tightly. She starts by saying "Dear <<$pcs_nickname>>, you''re only skin and bones, but don''t worry, a few months here and you''ll be looking your usual self again ."'
 			'"But look at you, you sure have grown up. A young woman." she says proudly. She continues "Grandpa and I keep getting older and older and need some help around the house. What do you say youngling? You will not have to do much. Here''s the deal, you lend us a helping hand on the farm as much as possible, and we will pay you for each chore you do. It will be a great life lesson, you will learn about hard work. What do you say?"'
@@ -51,7 +51,7 @@ if $ARGS[0]='' or $ARGS[0] = 'Start':
 		go_in_boletus = 0
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
 		'Upon entering the house you immediately walk up to grandpa.'
 		'"Grandpa, here are the mushrooms!"'
 		'"Thank you <<$pcs_nickname>>, you''ve made an old man very happy," your grandfather replies with a smile. "The mushrooms are in a part of the forest that is difficult to reach."'
@@ -71,7 +71,7 @@ if $ARGS[0]='' or $ARGS[0] = 'Start':
 		go_in_boletus_bilberry = 0
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
 		'Upon entering the house you immediately walk up to grandpa.'
 		'"Grandpa, here are the mushrooms and berries!"'
 		'"Oh, thank you <<$pcs_nickname>>." you grandpa replied.'
@@ -90,7 +90,7 @@ if $ARGS[0]='' or $ARGS[0] = 'Start':
 		go_in_bilberry = 0
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
 		'Upon entering the house you immediately walk up to grandpa.'
 		'"Grandpa, here are the berries!"'
 		'"Oh, thank you, nicely done," grandpa replied. "It''s hard for your grandmother to gather the berries, and the berries are needed so she can make jam for the winter."'
@@ -123,7 +123,7 @@ end
 if $ARGS[0] = 'Main':
 
 	'<center><H4>Your Grandparents'' Cottage</H4></center>'
-	'<center><img src="images/locations/gadukino/village/izba.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/village/izba.jpg"></center>'
 	'A fairly simple cottage in the village of Gadyukino which your grandparents call home. In the main room there is a huge wardrobe (where you can <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">organize your clothes</a> or <a href="exec:gt ''clothing_QV'', ''list''"> pick something to wear</a>) and a <a href="exec:gad = 1 & gt ''bed2''">bed</a> where you can rest. The bed is more comfortable than what it looks like.'
 	'There is an old <a href="exec:gt ''TV'',''gad''">television</a> in the living room. It''s positioned next to a body length <a href="exec:gt ''mirror'', ''start''">mirror</a>.'
 	
@@ -244,7 +244,7 @@ if $ARGS[0] = 'Main':
 
 	act 'Prepare a light meal (0:20)':gs 'food', 's_meal'
 
-	act 'Have a snack (0:15)':gs 'food', 'snack'
+	act 'Have a snack (0:05)':gs 'food', 'snack'
 
 	act 'Have a cup of tea (0:05)':
 		cls
@@ -282,7 +282,7 @@ if $ARGS[0] = 'Main':
 			fat += 4
 			frost = 0
 			gs 'stat'
-			'<center><img src="images/shared/food/food.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
 			'You enjoy a cup of tea while you eat some of the cookies. They''re too sweet and can''t be good for your figure, but they taste so good!'
 
 			act 'Get up from the table':gt 'Gadhouse', 'Start'
@@ -298,7 +298,7 @@ if $ARGS[0] = 'Main':
 			pcs_health += 10
 			pcs_mood += 20
 			edaD -= 1
-			'<center><img src="images/shared/food/food.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
 			if pcs_energy >= 100:
 				'You prepare a diet meal and try to eat it, but you''re full. You don''t even take a bite.'
 			elseif pcs_energy >= 80:
@@ -339,7 +339,7 @@ if $ARGS[0] = 'Main':
 				if water < 50 : water += 30 else water +=15
 				if water > 100: water = 100
 
-				'<center><img src="images/locations/shared/apartment/event/sick/lekr<<picrand>>.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/shared/apartment/event/sick/lekr<<picrand>>.jpg"></center>'
 				'You swallow the pill, and shortly after you feel a bit better.'
 
 				act 'Continue':gt 'Gadhouse', 'Start'
@@ -386,7 +386,7 @@ if $ARGS[0]='grandma':
 	if grandmatalkday ! daystart: grandmatalk = 0
 	gs 'stat'
 	
-	'<center><img src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
 	'Your grandma is extremely old, and almost never leaves the house. Most of the time she just sits on her bed watching TV, or is slowly cleaning.'
 	if grandmahelpday ! daystart:
 		act 'Offer to help out': grandmahelpday = daystart & gt'grandmahelp'
@@ -401,7 +401,7 @@ if $ARGS[0]='grandma':
 			pcs_mood += 5
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
 			'You sit next to grandma, eager to have her tell you more about the village.'
 			'"Don''t you remember <<$pcs_nickname>>? You''ve visited us many times," said grandma.'
 			'"The last time I visited here I was really young. I remember some of the houses, but the clearest memory I have is going swimming with Mitya." you reply.'
@@ -427,7 +427,7 @@ if $ARGS[0]='grandma':
 			pcs_mood += RAND(5,10)
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandma.jpg"></center>'
 			'You spend some time talking with your grandmother. She''s sometimes difficult to understand. Her nearly toothless mouth makes the pronunciation of words difficult for her. Most of what she says boils down to the same thing, life is much more fun when you''re young!'
 			
 			act 'Continue':gt 'Gadhouse', 'Start'
@@ -443,7 +443,7 @@ if $ARGS[0]='grandma':
 			pcs_mood += RAND(10,15)
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/grandparents/babushka.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/babushka.jpg"></center>'
 			'When you ask your grandmother to tell you a story, she mumbles something. Nevertheless, after a brief second or two, she decides on a story to share with you today, she begins to talk slowly.'
 
 			temp = RAND(0,7)
@@ -511,7 +511,7 @@ if $ARGS[0]='grandpa':
 	if grandpatalkday ! daystart:grandpatalk = 0
 	gs 'stat'
 	
-	'<center><img src="images/locations/gadukino/grandparents/grandpa.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa.jpg"></center>'
 	'Your grandfather is a grumpy old man, who is always complaining about the village elders and how they have neglected the village to barely being fit to live in. He can walk, but requires a cane. He doesn''t really leave the house any more, unless he really has to.'
 	if go_in_boletus = 1:'You promise to bring grandpa <<grandpa_boletus>> kg of mushrooms.'
 	if go_in_bilberry = 1:'You promise to bring grandpa <<grandpa_bilberry>> kg of berries.'
@@ -528,7 +528,7 @@ if $ARGS[0]='grandpa':
 			goforest += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
 			'"Listen carefully <<$pcs_nickname>>. You want to explore the forest and that''s great. But be sure of your surroundings, without having any knowledge of the forest you may easily get lost. Don''t go exploring too deep in the forest, because the mushrooms and berries can be found at the edge of the forest. If you chose to explore the forrest you''ll find a swamp in the middle of the forrest. You can find mushrooms and berries there too... Going into the forest at night is not recommended, wild boars may attack, and you might end up really hurt."'
 			'"If you manage to get lost and can''t find your way out of the forest before it gets dark, then light a fire and sit still there until morning. The beasts in the forest are afraid of the fire, so they won''t approach you."'
 			'"There''s one more thing... While you''re in the woods, avoid dressing yourself up in fancy clothes. You might damage them. It''s better to dress in more comfortable clothes instead..."'
@@ -548,7 +548,7 @@ if $ARGS[0]='grandpa':
 			pcs_mood += RAND(5,10)
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/grandpa1.jpg"></center>'
 			'Your grandfather stops complaining and smiles at you, he loves telling stories.  He has lived a rich and eventful life, and you enjoy listening to his stories and talking to him. He mostly reminisces about his past, and reflects on his earlier life.'
 			
 			act 'Continue':gt 'Gadhouse', 'Start'
@@ -563,7 +563,7 @@ if $ARGS[0]='villagecat':
 	minut += 2
 	gs 'stat'
 
-	'<center><img src="images/locations/gadukino/village/villcat.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/village/villcat.jpg"></center>'
 	'Your grandparents'' fat tomcat, Boniface, is aware of you approaching him, even though his eyes are closed.  He tracks you with his ears and simply ignores you.'
 	
 	act 'Pet Boniface':
@@ -573,7 +573,7 @@ if $ARGS[0]='villagecat':
 		pcs_mood += RAND(1,4)
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/village/villcat1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/villcat1.jpg"></center>'
 		'You gently pet Boniface, giving him a good scratch behind the ears.  You hear him start to purr.  As soon as you stop scratching him, the purring stops too. That lazy bastard... he''s living the good life!'
 		
 		act 'Continue':minut += 2 & gt 'Gadhouse', 'Start'
@@ -586,7 +586,7 @@ if $ARGS[0]='villagecat':
 			minute +=5
 			gs 'stat'
 			feedcat = 2
-			'<center><img src="images/locations/gadukino/grandparents/feedboniface.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/grandparents/feedboniface.gif"></center>'
 			'When Boniface sees you moving towards the cupboard, he jumps down off of the table and runs to his food dish. It is obvious that he feels that you are moving far too slowly and rattles his bowl to make sure you understand that he is starving while you dawdle.'
 			act 'Continue': gt 'Gadhouse', 'Start'
 		end

+ 47 - 47
locations/Gadsarai

@@ -12,7 +12,7 @@ if $ARGS[0] = '':
 	if npc_QW['A66'] >= 35 and temp <= 3:
 		gs 'boyStat', 66
 		sexpartkno = 1
-		'<center><img src="images/locations/gadukino/village/leghump.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/leghump.jpg"></center>'
 		'Bandit pounces on you and pins your thigh between his front legs. He begins to persistently and significantly put pressure on you, growling menacingly...'
 		if pcs_dom > 0:
 			act 'Push off':gt 'Gaddvor'
@@ -22,7 +22,7 @@ if $ARGS[0] = '':
 				banditknow = RAND(0,1)
 				npc_horny['A66'] = 0
 				gs 'stat'
-				'<center><img src="images/locations/gadukino/village/predoggy.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/predoggy.jpg"></center>'
 				'You remove your panties and get up on all fours in front of Bandit, presenting him with your bare ass. The dog instinctively knowing what to do, throws his forepaws on your back and starts to poke you in the crotch with his hot member.'
 				gs 'arousal', 'vaginal', 2, 'sub', 'beast'
 				gs 'stat'
@@ -38,7 +38,7 @@ if $ARGS[0] = '':
 							sexvolume = rand(20,590)
 							gs 'cum_manage'
 							gs 'stat'
-							'<center><img src="images/beast/bandit/doggyvirgin.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/beast/bandit/doggyvirgin.jpg"></center>'
 							'You obediently wait until your dog finds his way to your hole. His tongue is hanging out, panting and snorting loudly over your ear. He begins making fast sharp movements with his hips, and you immediately feel the tip of his cock break through your hymen and begin furiously jabbing at your insides. The acute pain makes you moan loudly, and you have to stretch both hands on the floor to keep from falling onto the ground because of the dogs pounding. Biting your lip, you endure the pain as the animal takes your virginity.' 
 							'His penis gets bigger and bigger with each passing second it''s painfully stretching your pussy. He tries to pull out from you, but his cock knot has swollen inside your tight pussy. You scream in pain as he tries to free himself from your sore bleeding vagina. Eventually, he settles down and you can feel a mix of blood and dog semen drip down your legs. After waiting for nearly half and hour, he finally shrinks enough to pop out of your well and truely fucked hole. You cry a little from your still bleeding and abused pussy, but somehow you manage to gather yourself after this intense ordeal...'
 							gs 'arousal', 'vaginal', 30, 'sub', 'beast', 'rough'
@@ -48,7 +48,7 @@ if $ARGS[0] = '':
 						end
 					else
 						cls
-						'<center><img src="images/beast/bandit/piratvag.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/beast/bandit/piratvag.jpg"></center>'
 						act 'Wait':
 							if pcs_vag < 10:
 								cls
@@ -59,7 +59,7 @@ if $ARGS[0] = '':
 								sexvolume = rand(20,590)
 								gs 'cum_manage'
 								gs 'stat'
-								'<center><img src="images/beast/bandit/piratvagknot.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagknot.jpg"></center>'
 								'After a few moments you feel his hot cock sharply penetrate your tight vagina and start flailing wildly and deeply, reaching almost to the back of your uterus. Your eyes instantly well with involuntarily tears, and painful groans fall from your mouth. You shake your hips, trying to somehow reduce the pain, but Bandit snarls and gets angry. His teeth quite noticeably grip your neck and you are left with no choice but to obediently endure. He''s so strong, fast, and deep.' 
 								'He hammers your pussy with his cock, and in a minute you feel like it gets hotter and starts to swell. The walls of your vagina painfully stretch, causing you more suffering, but you dare not move for fear that Bandit will take you by the neck again ... But after a couple of minutes, he gets off inside you and turns his back to your ass. All the rest of the time you wait to uncork your dog cum oozing pussy...'
 								gs 'arousal', 'vaginal', 25, 'sub', 'beast', 'rough'
@@ -78,9 +78,9 @@ if $ARGS[0] = '':
 									pcs_mood = 100
 									gs 'stat'
 									if pirsG = 1:
-										'<center><img src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
 									else
-										'<center><img src="images/beast/bandit/piratvagcum.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcum.jpg"></center>'
 									end
 									'After a few moments you feel his hot cock sharply penetrate your moist vagina and start flailing wildly and deeply, reaching almost to the back of your uterus. From your lips come frustrated groans of both pain and pleasure. You gyrate your hips, trying to somehow reduce the pain and ironically almost prevent your approaching orgasm, but Bandit snarls and gets angry. His teeth quite noticeably grip your neck and you are left with no choice but to obediently endure. He''s so strong, fast, and deep.' 
 									'He hammers your pussy with his cock, and in a minute you feel like it gets hotter and starts to swell. The walls of your vagina stretch, giving you a surprisingly painful yet pleasant feeling. A few minutes later you have to let go and Bandit gets off you and turns his back to your ass. You''re exhausted, and have to wait the rest of the time before you can uncork your dog cum oozing pussy...'
@@ -89,7 +89,7 @@ if $ARGS[0] = '':
 									gs 'arousal', 'end'
 									gs 'stat'
 								else
-									'<center><img src="images/beast/bandit/piratvagknot.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagknot.jpg"></center>'
 									'After a few moments you feel his hot cock sharply penetrate your moist vagina and start flailing wildly and deeply, reaching almost to the back of your uterus. Your eyes instantly well with involuntarily tears, and painful groans fall from your mouth. You shake your hips, trying to somehow reduce the pain, but Bandit snarls and gets angry. His teeth quite noticeably grip your neck and you are left with no choice but to obediently endure. He''s so strong, fast, and deep.' 
 									'He hammers your pussy with his cock, and in a minute you feel like it gets hotter and starts to swell. The walls of your vagina painfully stretch, causing more suffering, but you dare not move for fear that Bandit will take you by the neck again ... But after a couple of minutes, he gets off inside you and turns his back to your ass. All the rest of the time you wait to uncork your dog cum oozing pussy...'
 									gs 'arousal', 'vaginal', 20, 'sub', 'beast', 'rough'
@@ -109,9 +109,9 @@ if $ARGS[0] = '':
 									pcs_mood = 100
 									gs 'stat'
 									if pirsG = 1:
-										'<center><img src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
 									else
-										'<center><img src="images/beast/bandit/piratvagcum.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcum.jpg"></center>'
 									end
 									'After a few moments you feel his hot cock sharply penetrate your wet vagina and start flailing wildly and deeply, every thrust pushing at your womb. From your lips comes lustful groans, expressing both animal and human lust. You gyrate your hips, trying to somehow reduce the pain and ironically almost prevent your approaching orgasm, but Bandit snarls and gets angry. His teeth quite noticeable as he grips your neck and you are left with no choice but to obediently endure. He''s so strong, fast, and deep.' 
 									'He hammers your pussy with his cock, and in a minute you scream and cry as your orgasm overwhelms you. You yell loudly as you cum, forgetting that someone might hear you. As you come down from your orgasm, it''s only a few minutes before Bandit has turned away from you waiting patiently for his knot to deflate...'
@@ -120,7 +120,7 @@ if $ARGS[0] = '':
 									gs 'arousal', 'end'
 									gs 'stat'
 								else
-									'<center><img src="images/beast/bandit/piratvagcum.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcum.jpg"></center>'
 									'After a few moments you feel his hot cock sharply penetrate your wet vagina and start flailing wildly and deeply, every thrust pushing at your womb. From your lips come lustful groans, expressing both animal and human lust. You gyrate your hips, trying to build towards orgasm, but Bandit snarls and gets angry.  His teeth are quite noticeable as he grips your neck and you are left with no choice but to obediently endure. He''s so strong, fast, and deep.' 
 									'The walls of your vagina stretch, sending a new wave of pleasure through your body, but you dare not move for fear that Bandit will take you by the neck again... But after a couple of minutes, he gets off inside you and turns his back to your ass. All the rest of the time you wait to uncork your dog cum oozing pussy...'
 									gs 'arousal', 'vaginal', 20, 'sub', 'beast', 'rough'
@@ -140,9 +140,9 @@ if $ARGS[0] = '':
 									pcs_mood = 100
 									gs 'stat'
 									if pirsG = 1:
-										'<center><img src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcumpirs.jpg"></center>'
 									else
-										'<center><img src="images/beast/bandit/piratvagcum.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcum.jpg"></center>'
 									end
 									'After a few moments you feel his hot cock sharply penetrate your soaking wet vagina and begin furiously and deeply pounding, every thrust filling your womb. You groan with animal lust, completely devoid of humanity. Like a bitch in heat you grind your ass back against Bandit. You squeeze the muscles in your vagina, so that there is no chance of losing your favorite dog cock. Bandit spends a couple more minutes hammering away at your gaping vagina, and in a minute you scream as an animal-like orgasm overwhelms you. You wait humbly for ten minutes before your dogs cock slips out of your well fucked hole...'
 									$orgasm_or = 'yes'
@@ -150,7 +150,7 @@ if $ARGS[0] = '':
 									gs 'arousal', 'end'
 									gs 'stat'
 								else
-									'<center><img src="images/beast/bandit/piratvagcum.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/beast/bandit/piratvagcum.jpg"></center>'
 									'After a few moments you feel his hot cock sharply penetrate your soaking wet vagina and begin furiously and deeply pounding, every thrust filling your womb. You groan with animal lust, completely devoid of humanity. Like a bitch in heat you grind your ass back against Bandit. You squeeze the muscles in your vagina, so that there is no chance of losing your favorite dog cock. Bandit spends a couple more minutes hammering away at your gaping vagina, and soon jumps aside weary, turning his ass towards you. You wait unsatisfied for ten minutes, your ass fidgeting from arousal, before your dogs cock slips out of your well fucked hole...'
 									gs 'arousal', 'vaginal', 15, 'sub', 'beast', 'rough'
 									gs 'arousal', 'end'
@@ -168,7 +168,7 @@ if $ARGS[0] = '':
 						sub += RAND(0,1)
 						gs 'stat'
 
-						'<center><img src="images/beast/bandit/analknot1.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/beast/bandit/analknot1.jpg"></center>'
 						if pcs_ass < 10:
 							pcs_ass += 5
 							agape = 3
@@ -210,7 +210,7 @@ if $ARGS[0] = '':
 								cls
 								pcs_mood = 100
 								gs 'stat'
-								'<center><img src="images/beast/bandit/analknotcum.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/beast/bandit/analknotcum.jpg"></center>'
 								'You obediently wait until your dog finds his way to your hole. His tongue is hanging out, panting and snorting loudly over your ear. He begins making fast sharp movements with his hips, and you immediately feel the tip of his cock, with plenty of cock grease, slam through your puckered anus. Each time he thrusts he makes his way deeper and deeper into your ass. There is a little pain, but your starting to moan louder with pleasure as Bandit forces his hard cock into you.' 
 								'You have to stretch both hands on the floor to keep from falling onto the ground, and even begin to grind back against the dog to please him. However, Bandit does not like this and viciously growls as he possessively grabs you by the neck with his teeth, forcing you to submit and stay still. The knot easily penetrates into your wet ass, and when it begins to grow, you feel a slight discomfort that almost spoils your growing arousal. In an attempt to reach orgasm, you accidentally run a hand against his crotch, but Bandit immediately jumps away from you. Back on the ground, he turned his ass to yours and began to pull away, trying to free himself.' 
 								'From such an unexpected turn of events you begin to rapidly and continuously try to finish, cumming hard, and not noticing the sound of Bandits nails scrapping the floor in an attempt to get away. His knot pulls at your asshole, stretching it outward. After half a minute Bandit is unable to get free, and you can feel his knot spewing out warm, sticky dog cum deep into your ass...'
@@ -237,7 +237,7 @@ if $ARGS[0] = '':
 								cls
 								pcs_mood = 100
 								gs 'stat'
-								'<center><img src="images/beast/bandit/analcum.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/beast/bandit/analcum.jpg"></center>'
 								'You obediently wait until your dog finds his way to your hole. His tongue is hanging out, panting and snorting loudly over your ear. He begins making fast sharp movements with his hips, and you immediately feel the tip of his cock, with plenty of cock grease, slam through your puckered anus. Each time he thrusts he makes his way deeper and deeper into your ass. There is almost no pain, and your starting to moan louder with animal lust and pleasure as Bandit forces his hard cock into you. You have to stretch both hands on the floor to keep from falling onto the ground, and even begin to grind back against the dog to please him.' 
 								'However, Bandit does not like this and viciously growls as he possessively grabs you by the neck with his teeth, forcing you to submit and stay still. The knot easily penetrates into your wet ass, and when it begins to grow, you feel a slight discomfort that almost spoils your growing arousal. In an attempt to reach orgasm, you accidentally run a hand against his crotch, but Bandit immediately jumps away from you. Back on the ground, he turned his ass to yours and began to pull away, trying to free himself. From such an unexpected turn of events you begin to rapidly and continuously try to finish, without noticing that the knot has long since popped out of your gaping asshole and Bandit is now sitting opposite you, indifferently watching your post-orgasmic convulsions and yelps...'
 								$orgasm_or = 'yes'
@@ -258,14 +258,14 @@ if $ARGS[0] = '':
 		end
 	elseif mirabandit > 0 and temp >= 15:
 		if rand(0,4) = 0:
-			'<center><img src="images/beast/bandit/piratmira0,<<rand(0,2)>>.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira0,<<rand(0,2)>>.jpg"></center>'
 			'Going into the barn, you can see Miroslava coupled with Bandit. You can see part of the swollen knot stretching her red vagina, and Bandit happily wagging tail as you come up to greet him. Mira grunts in pain on all fours, ass to you, crawling behind the dog. You ruffle his ears and smile at the shameless tramp Mira has become under your care. Then you leave and close the door...'
 			gs 'arousal', 'voyeur', 10, 'beast'
 			gs 'arousal', 'end'
 			gs 'stat'
 			act 'Leave them alone':minut += 10 & gt 'Gaddvor'
 		else
-			'<center><img src="images/beast/bandit/piratmira1,<<rand(0,1)>>.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira1,<<rand(0,1)>>.jpg"></center>'
 			'Going into the barn, you can see Bandit fucking Miroslava. He frantically plowed into her pussy, and she tried to hold back the moans and screams every time he thrust, crawling centimeter by centimeter forward under his pressure ... She did not even notice you, so you are a little more aroused after watching this scene.  You step forward and slap Mira''s hard, leaving a bright red hand print.  Mira yelps and looks back at you.  She smiles as Bandit continues to plow into her pussy with wild abandon.  You turn away and leave the barn with the door open...'
 			gs 'arousal', 'voyeur', 10, 'beast'
 			gs 'arousal', 'end'
@@ -276,15 +276,15 @@ if $ARGS[0] = '':
 		'<center><h4>Old Barn</h4></center>'
 		if month >= 4 and month <= 10:
 			if hour >= 6 and hour < 22:
-				'<center><img src="images/locations/gadukino/village/sarai.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/sarai.jpg"></center>'
 			else
-				'<center><img src="images/locations/gadukino/village/sarai_night.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/sarai_night.jpg"></center>'
 			end
 		else
 			if hour >= 8 and hour < 18:
-				'<center><img src="images/locations/gadukino/village/sarai_winter.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/sarai_winter.jpg"></center>'
 			else
-				'<center><img src="images/locations/gadukino/village/sarai_winter_night.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/sarai_winter_night.jpg"></center>'
 			end
 		end
 		'An old junk filled barn that could hold some useful items. Sitting near the barn is your grandparents <a href="exec:gt ''bandit''">large dog, named Bandit</a>'
@@ -322,11 +322,11 @@ if $ARGS[0] = '':
 				cls
 				if RAND(0,5) >= 4:
 					gs 'stat'
-					'<center><img src="images/locations/gadukino/village/vcards.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/vcards.jpg"></center>'
 					'"Hmm, what''s this?" You''ve found an unopened deck of vintage adult playing cards, still in its original cellophone wrapper.'
 					vcard = 1
 				else
-					'<center><img src="images/locations/gadukino/village/junk_barn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/junk_barn.jpg"></center>'
 					'In the barn you find many muldy magazines and rusty tools and equipment, toys and many dusty yellowed books. The entire barn reeks of mold and decay.'
 				end 
 				act 'Leave and get some fresh air':gt 'Gadsarai'
@@ -334,11 +334,11 @@ if $ARGS[0] = '':
 				cls
 				if RAND(0,8) >= 7:
 					gs 'stat'				
-					'<center><img src="images/locations/gadukino/village/findbike.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/findbike.jpg"></center>'
 					'In the far corner of the barn you manage to find an old bicycle. It''s in surprisingly good condition. You pull it out of the barn and clean it up.'
 					findvel = 1
 				else
-					'<center><img src="images/locations/gadukino/village/junk_barn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/junk_barn.jpg"></center>'
 					'In the barn you find old many muldy magazines and rusty tools and equipment, toys and many dusty yellowed books. The entire barn reeks of mold and decay.'
 				end
 				act 'Leave and get some fresh air':gt 'Gadsarai'
@@ -347,14 +347,14 @@ if $ARGS[0] = '':
 				if RAND(0,10) > 9:
 					findbag = 1
 					gs 'stat'					
-					'<center><img src="images/locations/gadukino/village/MessengerBag.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/MessengerBag.jpg"></center>'
 					'In a far corner of the barn you find a burlap sack filled with mostly junk, but at the bottom you find a good quality messenger bag.'
 					bag = 1
 					if menu_option = 1:dynamic $menu_addoldmenu
 					if menu_option = 0:gs 'obj_din', 'new'
 					'You can use this cool looking bag as a handbag.'
 				else
-					'<center><img src="images/locations/gadukino/village/junk_barn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/junk_barn.jpg"></center>'
 					'In the barn you find old many muldy magazines and rusty tools and equipment, toys and many dusty yellowed books. The entire barn reeks of mold and decay'
 				end	
 				act 'Leave and get some fresh air':gt 'Gadsarai'
@@ -362,11 +362,11 @@ if $ARGS[0] = '':
 				cls
 				if RAND(0,15) >= 14:
 					gs 'stat'					
-					'<center><img src="images/locations/gadukino/village/bracelet.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/bracelet.jpg"></center>'
 					'While looking through the barn you spot a glint of metal under a pile of wood. Upon closer inspection you see a bracelet made of silver and crafted into the likeness of a snake. Strange, but cool that you would find something this valuable in the barn.'
 					findbraclet = 1	
 				else
-					'<center><img src="images/locations/gadukino/village/junk_barn.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/junk_barn.jpg"></center>'
 					'In the barn you find old many muldy magazines and rusty tools and equipment, toys and many dusty yellowed books. The entire barn reeks of mold and decay.'
 				end
 				act 'Leave and get some fresh air':gt 'Gadsarai'
@@ -375,7 +375,7 @@ if $ARGS[0] = '':
 					cls
 					if RAND(0,20) >= 19:
 						gs 'stat'					
-						'<center><img src="images/locations/gadukino/village/necklace.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/village/necklace.jpg"></center>'
 						if altQS = 1:
 							'While looking through the barn your foot goes through a rotten floorboard. You suddenly feel the presence of something magical under the floor. You get on your belly and look through the hole in the floor. You find a small box made of a black wood. You pick up the box and see the box is covered in a strange writing and glyphs that look like serpents. The feeling of power is coming from within the box. You lift the lid of the box and see a black metal necklace that looks like a coiled snake with ruby eyes.  You feel the power coming from the necklace, but it doesn''t feel like any power you have ever felt.'
 						else
@@ -385,7 +385,7 @@ if $ARGS[0] = '':
 					else
 						cls
 						gs 'stat'				
-						'<center><img src="images/locations/gadukino/village/junk_barn.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/village/junk_barn.jpg"></center>'
 						'In the barn you find old many muldy magazines and rusty tools and equipment, toys and many dusty yellowed books.  The entire barn reeks of mold and decay.'
 					end
 					act 'Leave and get some fresh air':gt 'Gadsarai'
@@ -424,7 +424,7 @@ if $ARGS[0] = 'boar':
 	gs 'stat'
 	
 	'<center><H4>The barn</H4></center>'
-    '<center><img src="images/locations/gadukino/village/boar.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/boar.jpg"></center>'
 	'One of your grandparents dearest possessions, the boar Nickle.'
 
 	if feed_boar = 1:
@@ -436,7 +436,7 @@ if $ARGS[0] = 'boar':
 			feed_boar = 0
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/feed_boar.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/feed_boar.jpg"></center>'
 			'You fed Nickle and went on about your business.'
 
 			act 'Finish':gt 'Gadsarai','boar'
@@ -451,7 +451,7 @@ if $ARGS[0] = 'cow':
 	gs 'stat'
 	
 	'<center><H4>The barn</H4></center>'
-    '<center><img src="images/locations/gadukino/village/cow.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/cow.jpg"></center>'
 	'Grandma''s favorite animal, the cow Dawn.'
 	
 	if milk_cow = 1:
@@ -463,7 +463,7 @@ if $ARGS[0] = 'cow':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/milk_cow.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/milk_cow.jpg"></center>'
 			'You start milking Dawn, improving for each time you do it.'
 
 			act 'Finish':gt 'Gadsarai','cow'
@@ -478,7 +478,7 @@ if $ARGS[0] = 'cow':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/feed_cow.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/feed_cow.jpg"></center>'
 			'You fed Dawn and continued on with your day.'
 
 			act 'Finish':gt 'Gadsarai','cow'
@@ -493,7 +493,7 @@ if $ARGS[0] = 'cow':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/cow_field.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/cow_field.jpg"></center>'
 			if cow_field = 1:'You lead Dawn to the field, where you let the shepherds take over.'
 			if graze_cow = 1:'You lead Dawn to the field, where you grandfather awaits you. It''s his turn to keep an eye on the cows.'
 
@@ -510,7 +510,7 @@ if $ARGS[0] = 'horse':
 	gs 'stat'
 	
 	'<center><H4>The barn</H4></center>'
-    '<center><img src="images/locations/gadukino/village/horse.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/horse.jpg"></center>'
 	'Grandfather trusted assistant, the horse Desperado.'
 
 	
@@ -523,7 +523,7 @@ if $ARGS[0] = 'horse':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/feed_horse.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/feed_horse.jpg"></center>'
 			'You fed Desperado and went on about your business.'
 
 			act 'Finish':gt 'Gadsarai','horse'
@@ -538,7 +538,7 @@ if $ARGS[0] = 'horse':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/horse_field.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/horse_field.jpg"></center>'
 			'You took Desperado by the bridle and led it to the field. There, you let it run free in the paddock area, and went on with your business.'
 
 			act 'Further':gt'gadfield','field'   
@@ -552,7 +552,7 @@ if $ARGS[0] = 'horse':
 			horse_river = 2
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/horse_field.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/horse_field.jpg"></center>'
 			'You took Desperado by the bridle and led it to the river.'
 
 			act 'Further':gt'Gadriver', 'Gadbitch'   
@@ -567,7 +567,7 @@ if $ARGS[0] = 'horse':
 			grandmahelp += 1
 			gs 'stat'
 			
-			'<center><img src="images/locations/gadukino/village/comb_horse.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/village/comb_horse.jpg"></center>'
 			'You groom Desperado for an hour. When finished, you''re satisfied with the result. Desperado is looking as healthy as ever.'
 
 			act 'Further':gt 'Gadsarai','horse'
@@ -583,7 +583,7 @@ if $ARGS[0] = 'mira_dog':
 	gs 'stat'
 	
 	'<center><H4>The barn</H4></center>'
-    '<center><img src="images/characters/village/mira/Mira_kennel2.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_kennel2.jpg"></center>'
 	'You see Mira in chains, naked, in Bandit''s dog house depicting a dog.'
 
     act 'Release':
@@ -593,7 +593,7 @@ if $ARGS[0] = 'mira_dog':
 		mira_dog = 0
 		gs 'stat'
 		npc_QW['A60'] = 32 & !back to mira questline by illume
-		'<center><img src="images/characters/village/mira/Mira_kennel3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_kennel3.jpg"></center>'
 		'Taking pity, you decide to let go the Mira ahead of time.'
 	    '"Okay Mira, I''m feeling mercyfull today. You can consider yourself forgiven." you say, removing Mira''s collar.'
 		'The girl looks nervously at you for a few moments, then quickly gets dressed and runs home.'		
@@ -612,7 +612,7 @@ if know_no_bandit = 0:
     know_no_bandit = 1
     gs'stat'
     
-    '<center><img src="images/locations/gadukino/village/know_no_pirat.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/know_no_pirat.jpg"></center>'
     '"Where''s Bandit? The bastard probably ran away, you sadly thought, looking at an empty dog house, remembering the beloved dog fondly.'
     act 'Further':gt $loc, $metka
 end  

+ 1 - 1
locations/Gnpc

@@ -5,7 +5,7 @@ GvstreBoy = 0
 boyvstre[numnpc] += 1
 gs 'stat'
 '<center><h1><font color="maroon"><<$nameBoyfrend[numnpc]>></font></h1></center>'
-'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 
 $bfTitle[numnpc] = 'date'
 if boytimes[numnpc] = 0:

+ 39 - 39
locations/Gnpc2

@@ -54,7 +54,7 @@ $din_gboy_go_to_disco = {
 		gs 'stat'
 		diskoIvrand = rand(0, 100)
 		if discofirsttime = 0:diskoIvrand = 0
-		set $clubDescription = '<h1><center><b><font color="maroon">Inside the club</font></b></center></h1><center><img src="images/locations/pavlovsk/community/disco/club_yaho.jpg"></center><br />'
+		set $clubDescription = '<h1><center><b><font color="maroon">Inside the club</font></b></center></h1><center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/club_yaho.jpg"></center><br />'
 
 		*pl $clubDescription
 		'You accompany <<$boydesc>> and when you reach the club he pays the entrance fee and you both walk in. Together with your <<$bfTitle[numnpc]>> you head to the dance floor and start dancing.'
@@ -307,7 +307,7 @@ $din_gboy_go_to_disco = {
 								pcs_mood -= 5
 								gs 'stat'
 								'<h1><center><b><font color="maroon">Men''s Room</font></b></center></h1>'
-								'<center><img src="images/locations/pavlovsk/community/bathroom/bathroom_entrance.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/bathroom_entrance.jpg"></center>'
 								*nl
 								'You agree to the blowjob and the guy leads you to the toilets. You start feeling depressed. The toilets in the club are something of a thoroughfare, someone smoking here, someone else defecating in booths over there, with little privacy. The guy walks with you into the men''s room. When you open the door, you see some drunk guys standing in a cloud of smoke. In one of the booths you hear the sound of someone puking.'
 								'The boys look at you bewildered, "Did you make a mistake? This is the men''s room." The guy who brought you smiles "Nah, She''s with me." He turns to you, "Okay, cocksucker, get your mouth working." You look at the other guys and ask, "What, right here?" The Boys laugh, "C''mon. You''re not embarrassed, are you?"'
@@ -322,7 +322,7 @@ $din_gboy_go_to_disco = {
 									swallow += 1
 									gs 'stat'
 									'<h1><center><b><font color="maroon">Men''s room</font></b></center></h1>'
-									'<center><img src="images/shared/sex/blowjob/public.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/public.jpg"></center>'
 									*nl
 									'You squat in front of the guy and unbutton his pants to pull out his stiff dick. The other boys continue smoking and watch the scene. You begin to lick the purple head of his swollen cock and then you open your <<$liptalk>> and take the cock in your mouth. The Boys start laughing and commenting at what they see, "Look how she smacks those lips." Another echoed, "Where did you find such a cocksucker?" Unfortunately, there''s someone who knows you. "Hey that''s <<$pcs_nickname>> <<$pcs_lastname>>. Hot Damn!"'
 									'You blush and your face burns with shame, sucking this dick in front of other guys. Finally the guy starts to cum in your mouth and you try as quickly as possible to swallow his warm sperm. When his cock finally goes limp he tucks it back in his pants. You get up from the floor and begin to wipe your mouth, knowing it now smells like cum. One of the guys chuckled, "Great Blowjob, I wouldn''t mind one myself."'
@@ -420,7 +420,7 @@ $din_gboy_go_to_disco = {
 						kissBoyFrend[numnpc] += 1
 						pcs_horny += 10
 						gs 'stat'
-						'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 						'<<$boydesc>> you tenderly embraced and began to kiss his lips.'
 
 						if gnpcSex[numnpc] > 0:
@@ -436,7 +436,7 @@ $din_gboy_go_to_disco = {
 								sub += 1
 								pav_sex += 5
 								gs 'stat'
-								'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 								'You got his hard and hot cock out of his pants and wrapped your hand around it. You started kissing him at the same time you masturbate his penis. Finally the guy groaned and you watch his cock shoot off his sperm.'
 
 								act 'Further':
@@ -459,7 +459,7 @@ $din_gboy_go_to_disco = {
 
 								sub += 1
 								gs 'stat'
-								'<center><img src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
 								'You squatted in front of him and bring your face to his cock.'
 								dynamic $dinrandbj
 								'Soon <<$boydesc>> groaned "<<$pcs_nickname>>, I''m going to come."'
@@ -472,7 +472,7 @@ $din_gboy_go_to_disco = {
 									gs 'cum_manage'
 									swallow += 1
 									gs 'stat'
-									'<center><img src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
 									dynamic $dinrandswallow
 
 									act 'further':
@@ -489,7 +489,7 @@ $din_gboy_go_to_disco = {
 									gs 'cum_manage'
 									facial += 1
 									gs 'stat'
-									'<center><img src="images/shared/sex/cum/facial/facial21.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/facial21.jpg"></center>'
 									'You remove his member from your mouth just as a stream of hot sperm hits your face, then another and another and finally he stopped dumping his thick cum on your face.'
 
 									act 'Further':
@@ -511,7 +511,7 @@ $din_gboy_go_to_disco = {
 								pcs_horny += 10
 								minut += 3
 								gs 'stat'
-								'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 								'<<$boydesc>> pulls your <<$titsize>> breast out of your top and begins to knead your boobs and kiss on them. He takes your hand and puts it against his groin, and you feel that he''s got a hard cock.'
 
 								act 'Caress his cock through his pants':
@@ -519,7 +519,7 @@ $din_gboy_go_to_disco = {
 									pcs_horny += 5
 									minut += 3
 									gs 'stat'
-									'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 									'You start stroking his crotch, feeling his dick bulging as it expands in his pants.'
 
 									if pcs_horny < 80:
@@ -543,7 +543,7 @@ $din_gboy_go_to_disco = {
 										pcs_horny += 10
 										minut += 3
 										gs 'stat'
-										'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 										'You slide your hand into his pants and wrap your fingers around his hard cock.'
 
 										if pcs_dom > 0:
@@ -557,7 +557,7 @@ $din_gboy_go_to_disco = {
 												sub += 1
 												pav_sex += 5
 												gs 'stat'
-												'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 												'You got his hard and hot cock out of his pants and hold it in  your hand. You start kissing him at the same time you stroke his penis. Finally the guy lets out a groan and you watch as loads of cum shoot out of his cock.'
 
 												act 'Further':
@@ -581,7 +581,7 @@ $din_gboy_go_to_disco = {
 
 											sub += 1
 											gs 'stat'
-											'<center><img src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
 											'You squat in front of your guy and bring your face to his cock.'
 											dynamic $dinrandbj
 											'Soon <<$boydesc>> groaned "<<$pcs_nickname>>, I''m going to come."'
@@ -594,7 +594,7 @@ $din_gboy_go_to_disco = {
 												gs 'cum_manage'
 												swallow += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
 												dynamic $dinrandswallow
 
 												act 'Further':
@@ -611,7 +611,7 @@ $din_gboy_go_to_disco = {
 												gs 'cum_manage'
 												facial += 1
 												gs 'stat'
-												'<center><img src="images/shared/sex/cum/facial/facial21.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/facial21.jpg"></center>'
 												'You remove his member from your mouth and then a stream of hot sperm hits your face, then another and another and finally your guy stops shooting his thick cum on your face.'
 
 												act 'Further':
@@ -629,7 +629,7 @@ $din_gboy_go_to_disco = {
 										pcs_horny += 10
 										minut += 3
 										gs 'stat'
-										'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 										'You remove your hand from his pants and then your guy sticks his hand into your pants, and you feel his fingers caress your wet pussy.'
 
 										if pcs_horny < 70:
@@ -654,7 +654,7 @@ $din_gboy_go_to_disco = {
 											sub += 1
 											pcs_horny += 10
 											gs 'stat'
-											'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 											'You cease to resist and just relax feeling the pleasant warmth as your guy caresses your pussy. <<$boydesc>> begins to undress you and soon you are naked.'
 
 											act 'Surrender':
@@ -671,7 +671,7 @@ $din_gboy_go_to_disco = {
 												GboyBalabol[numnpc] = 1
 
 												gs 'stat'
-												'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 												'He quickly takes off his clothes and lays down on top of you.'
 												dynamic $sexstart
 												dynamic $sexstart2
@@ -697,7 +697,7 @@ $din_gboy_go_to_disco = {
 													GboyBalabol[numnpc] = 1
 
 													gs 'stat'
-													'<center><img src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
+													'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
 													dynamic $sexstart
 													dynamic $analsex
 													'Finally the guy finishes and you feel something warm fill your ass.'
@@ -748,7 +748,7 @@ $din_gboy_tits = {
 		pcs_horny += 10
 		minut += 3
 		gs 'stat'
-		'<center><img src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/tits.jpg"></center>'
 		'<<$boydesc>> pulls your <<$titsize>> breasts outside and begins to knead your breasts and kiss them. Guy takes your hand and puts it on the groin, you feel that he''s got a hard cock.'
 
 		act 'Caress his cock through his pants':
@@ -756,7 +756,7 @@ $din_gboy_tits = {
 			pcs_horny += 5
 			minut += 3
 			gs 'stat'
-			'<center><img src="images/shared/sex/grab/cock.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock.jpg"></center>'
 			'You start stroking your guy''s crotch, feeling the hardness of his member pressing against the cloth of his trousers.'
 
 			if pcs_horny < 80:
@@ -777,7 +777,7 @@ $din_gboy_tits = {
 				pcs_horny += 10
 				minut += 3
 				gs 'stat'
-				'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
 				'You slide your hand inside his pants, enfolding your fingers around his hard hot cock.'
 
 				if pcs_dom > 0:
@@ -790,7 +790,7 @@ $din_gboy_tits = {
 						hja += 1
 						sub += 1
 						gs 'stat'
-						'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
 						'You pull his hard and hot cock out of his pants and wrap your hand around it. You start kissing him while stroking his penis. Finally the guy groans and you watch as loads of his sperm erupt again and again from his cock.'
 
 						act 'Go home':gt 'pavResidential'
@@ -811,7 +811,7 @@ $din_gboy_tits = {
 
 					sub += 1
 					gs 'stat'
-					'<center><img src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/cocksucker.jpg"></center>'
 					'You squat in front of your guy and bring your face to his cock.'
 					dynamic $dinrandbj
 					'Soon <<$boydesc>> groaned "<<$pcs_nickname>>, I''m going to come."'
@@ -824,7 +824,7 @@ $din_gboy_tits = {
 						gs 'cum_manage'
 						swallow += 1
 						gs 'stat'
-						'<center><img src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum49.jpg"></center>'
 						dynamic $dinrandswallow
 						act 'Go home':gt 'pavResidential'
 					end
@@ -837,7 +837,7 @@ $din_gboy_tits = {
 						gs 'cum_manage'
 						facial += 1
 						gs 'stat'
-						'<center><img src="images/shared/sex/cum/facial/facial21.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/cum/facial/facial21.jpg"></center>'
 						'You remove his member from your mouth just as a stream of hot sperm hits you in the face, then another and another until he eventually finished coating your face with his cum.'
 						act 'Go home':gt 'pavResidential'
 					end
@@ -853,7 +853,7 @@ $din_gboy_tits = {
 						GboyBalabol[numnpc] = 1
 
 						gs 'stat'
-						'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 						'He quickly takes off his clothes and lays down on top of you.'
 						dynamic $sexstart
 						dynamic $sexstart2
@@ -875,7 +875,7 @@ $din_gboy_tits = {
 							GboyBalabol[numnpc] = 1
 
 							gs 'stat'
-							'<center><img src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
 							dynamic $sexstart
 							dynamic $analsex
 							'Finally he reaches his peak and you feel something warm filling your ass.'
@@ -893,7 +893,7 @@ $din_gboy_tits = {
 				pcs_horny += 10
 				minut += 3
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 				'You remove your hand from his pants and he immediately reaches his hand into your pants, as you feel his fingers caress your wet pussy.'
 
 				if pcs_horny < 70:
@@ -914,7 +914,7 @@ $din_gboy_tits = {
 					sub += 1
 					pcs_horny += 10
 					gs 'stat'
-					'<center><img src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/petting.jpg"></center>'
 					'You cease to resist and just relax feeling that pleasant warmth of a guy caressing your pussy with his fingers. <<$boydesc>> begins to undress you and soon you are completely naked.'
 
 					act 'Surrender':
@@ -929,7 +929,7 @@ $din_gboy_tits = {
 						GboyBalabol[numnpc] = 1
 
 						gs 'stat'
-						'<center><img src="images/shared/sex/vag/miss/vag.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/vag/miss/vag.jpg"></center>'
 						'He quickly takes off his clothes and lays down on top of you.'
 						dynamic $sexstart
 						dynamic $sexstart2
@@ -952,7 +952,7 @@ $din_gboy_tits = {
 							GboyBalabol[numnpc] = 1
 
 							gs 'stat'
-							'<center><img src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal31.jpg"></center>'
 							dynamic $sexstart
 							dynamic $analsex
 							'Finally he reaches his peak and you feel something warm filling your ass.'
@@ -987,7 +987,7 @@ $din_gboy_kiss = {
 		kissBoyFrend[numnpc] += 1
 		pcs_horny += 10
 		gs 'stat'
-		'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 		'You turn your head to the guy and your lips meet. <<$boydesc>> starts to passionately caress your body with his hands as he kisses you.'
 		dynamic $din_gboy_tits
 	end
@@ -1012,7 +1012,7 @@ $din_gboy_knee = {
 		cls
 		minut += 5
 		gs 'stat'
-		'<center><img src="images/characters/shared/boyfriend/groped.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/shared/boyfriend/groped.jpg"></center>'
 		'You pretend not to notice his hand and <<$boydesc>>  doesn''t hesitate to pull your thigh closer to his. <<$boydesc>> tilted towards your face trying to kiss you.'
 		dynamic $din_gboy_kiss
 
@@ -1039,7 +1039,7 @@ $din_gboy_knee = {
 			kissBoyFrend[numnpc] += 1
 			pcs_horny += 10
 			gs 'stat'
-			'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
 			'You turn your head to the guy and your lips meet. <<$boydesc>> starts to passionately caress your body with his hands as he kisses you.'
 			dynamic $din_gboy_tits
 		end
@@ -1072,7 +1072,7 @@ $din_gboy_go_to_boyhome = {
 						minut += 30
 						pcs_horny += 10
 						gs 'stat'
-						'<center><img src="images/characters/shared/boyfriend/groped.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/shared/boyfriend/groped.jpg"></center>'
 						'You continue watching the porn and what you saw was gradually exciting you. You feel <<$boydesc>> put his hand on your knee and began to stroke it.'
 						dynamic $din_gboy_knee
 					end
@@ -1124,11 +1124,11 @@ $din_gboy_go_to_boyhome = {
 				end
 			end
 		elseif boyhouserand = 1:
-			'<center><img src="images/characters/shared/boyfriend/groped.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/shared/boyfriend/groped.jpg"></center>'
 			'There was no one else at home and he suggested that you both go to his room. In his room, he sat next to you and started stroking your knee.'
 			dynamic $din_gboy_knee
 		elseif boyhouserand = 2:
-			'<center><img src="images/characters/shared/boyfriend/groped.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/shared/boyfriend/groped.jpg"></center>'
 			'When you went inside his home, he realizes that his parents were home and he quickly walks you to his room. In his room, he sat next to you and started stroking your knee.'
 			dynamic $din_gboy_knee
 		end
@@ -1140,7 +1140,7 @@ $din_gboy_go_to_boyhome = {
 
 gs 'stat'
 '<center><h1><font color="maroon"><<$boydesc>></font></h1></center>'
-'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 'You''re on a date with <<$boydesc>>. <<$bfRelationship[numnpc]>>'
 
 *nl

+ 1 - 1
locations/Gnpc_cinema

@@ -4,7 +4,7 @@ cls
 minut += 15
 gs 'stat'
 '<center><h1><font color="maroon">Cinema</font></h1></center>'
-'<center><img src="images/locations/city/citycenter/mall/cinema/cinema.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/cinema.jpg"></center>'
 *nl
 'You go with <<$nameBoyfrend[numnpc]>> to the movie theater near the park. <<$nameBoyfrend[numnpc]>> buys the tickets and then you both enter a small cinema hall and find your seats.'
 

+ 37 - 37
locations/Grinok

@@ -23,7 +23,7 @@ if $ARGS[0] = '':
 	clr
 	gs 'stat'
 	'<center><h4>Market</h4></center>'
-	'<center><img src="images/locations/pavlovsk/market/grinok.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/grinok.jpg"></center>'
 	'This small market is location near the station.'
 
 	if arturQW = 1 and (week = 6 or week = 7) and hour < 12:
@@ -160,7 +160,7 @@ if $ARGS[0] = '':
 			gs 'stat'
 			minut += 20
 			lookwine = daystart
-			'<center><img src="images/locations/pavlovsk/market/chinese_stall01.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/chinese_stall01.jpg"></center>'
 			'You were looking through the market when you came upon a stall selling Chinese foods. On a shelf behind the old woman minding the stall there are a number of bottles.'
 			act 'Ask about huangjiu':
 				cla
@@ -195,7 +195,7 @@ if $ARGS[0] = '':
 						cla
 						gs 'stat'
 						minut += 15
-						'<center><img src="images/locations/pavlovsk/market/market_boy01.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/market_boy01.jpg"></center>'
 						'You continued to wander through the market for another 15 minutes when the boy from the Chinese stall came up to you.'
 						'"Hey, you really want that rice wine?" he asked after checking to make sure no one was watching.'
 						'"Yes," you answered him, "But it costs too much. I can''t afford it."'
@@ -214,7 +214,7 @@ if $ARGS[0] = '':
 			cls
 			gs 'stat'
 			lookwine = daystart
-			'<center><img src="images/locations/pavlovsk/market/grinok.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/grinok.jpg"></center>'
 			'You look around the market, but the Chinese vendors don''t seem to be here today.'
 			act 'Leave': gt $curloc
 		end
@@ -225,7 +225,7 @@ if $ARGS[0] = '':
 			gs 'stat'
 			porndealday = daystart
 			lookboy = 0
-			'<center><img src="images/locations/pavlovsk/market/market_boy01.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/market_boy01.jpg"></center>'
 			'The boy from the Chinese stall comes up to you as you entered the market.'
 			'"Do you have it?" he asked eagerly.'
 			if haveporn = 1: 
@@ -244,7 +244,7 @@ if $ARGS[0] = '':
 			cla
 			gs 'stat'
 			lookboy = 1
-			'<center><img src="images/locations/pavlovsk/market/chinese_stall01.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/chinese_stall01.jpg"></center>'
 			'You look around the market for the boy from the Chinese stall, but you can''t find him. You decide to look for him another day.'
 			act 'Leave': gt $curloc
 		end
@@ -292,11 +292,11 @@ if $ARGS[0] = 'events':
 	act 'Stop wandering': gt $curloc
 	
 	if rinevrand = 0:
-		'<center><img src="images/locations/pavlovsk/market/brodit'+rand(1,8)+'.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/brodit'+rand(1,8)+'.jpg"></center>'
 		'As you are strolling through the market, ' + $grinok_text[rand(3,12)]
 		killvar '$grinok_text'
 	elseif rinevrand = 1:
-		'<center><img src="images/locations/pavlovsk/market/poproshaika'+rand(1,3)+'.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/poproshaika'+rand(1,3)+'.jpg"></center>'
 		'You are strolling through the market when ' +  $grinok_text[rand(0,2)]
 		killvar '$grinok_text'
 		act 'Throw a trifle': 
@@ -306,32 +306,32 @@ if $ARGS[0] = 'events':
 			pcs_willpwr += 5
 			pcs_mood += 5
 			gs 'stat'
-			'<center><img src="images/locations/pavlovsk/market/podaet.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/podaet.jpg"></center>'
 			'You gave the beggar a trifle'
 			act 'Wander further': gt 'Grinok','events'
 		end
 	elseif rinevrand = 2:
-		'<center><img src="images/locations/pavlovsk/market/dedgitara.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/dedgitara.jpg"></center>'
 		'You see an old man playing the guitar.'
 	elseif rinevrand = 3:
-		'<center><img src="images/locations/pavlovsk/market/girlvoyeur.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/girlvoyeur.jpg"></center>'
 		'You see a girl bending over, putting her pussy on display.'
 		if girl > 0: pcs_horny += 10
 		gs 'stat'
 	elseif rinevrand = 4:
-		'<center><img src="images/locations/pavlovsk/market/goodass.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/goodass.jpg"></center>'
 		'You see a pretty girl and ogle her beautiful ass.'
 	elseif rinevrand = 5:
-		'<center><img src="images/locations/pavlovsk/market/dedgitara.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/dedgitara.jpg"></center>'
 		'You see an old man playing the guitar.'
 	elseif rinevrand = 6:
-		'<center><img src="images/locations/pavlovsk/market/nenavizublyadcigan.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/nenavizublyadcigan.jpg"></center>'
 		'You meet a Gypsy woman. She offers to tell your fortune.'
 		act 'Agree':
 			cla
 			*clr
 			minut += 5
-			'<center><img src="images/locations/pavlovsk/market/gadaet'+rand(1,2)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/gadaet'+rand(1,2)+'.jpg"></center>'
 			'You agree and Gypsy takes your hand before she predicts you will have great happiness and lots of money. Afterwards, she promptly walks away.'
 			act 'Something''s wrong':
 				cla
@@ -339,19 +339,19 @@ if $ARGS[0] = 'events':
 				money = 0
 				pcs_mood -= 50
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/market/pusto.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/pusto.jpg"></center>'
 				'With a sneaking suspicion you start looking through your stuff. Your wallet is nowhere to be found!'
 				act 'Find the Gypsy':
 					cla
 					*clr
-					'<center><img src="images/locations/pavlovsk/market/okliknut.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/okliknut.jpg"></center>'
 					'You search the area hoping to find the thief, but she has already disappeared into the crowd.'
 					act 'Back': gt 'Grinok'
 				end
 			end
 		end
 	elseif rinevrand = 7:
-		'<center><img src="images/locations/pavlovsk/market/kosmetic.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/kosmetic.jpg"></center>'
 		tovpay = rand(3, 8) * 100
 		'You see some cosmetics on sale for <<tovpay>> <b>₽</b>.'
 
@@ -366,7 +366,7 @@ if $ARGS[0] = 'events':
 			end
 		end
 	elseif rinevrand = 8:
-		'<center><img src="images/locations/pavlovsk/market/vitaminki.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/vitaminki.jpg"></center>'
 		tovpay = rand(2, 5) * 100
 		'You see some vitamins on sale for <<tovpay>> <b>₽</b>.'
 
@@ -380,7 +380,7 @@ if $ARGS[0] = 'events':
 			end
 		end
 	elseif rinevrand = 9:
-		'<center><img src="images/locations/pavlovsk/market/condoms.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/condoms.jpg"></center>'
 		tovpay = rand(2, 8) * 10
 		'You see a booth selling condoms for <<tovpay>> <b>₽</b>.'
 
@@ -391,7 +391,7 @@ if $ARGS[0] = 'events':
 				prezik += 5
 				i = 5
 				:cndmlp
-					if rand(0,49-6*(8-tovpay/10)) = 0:badprezik += 1
+					if rand(0,49)-6*(8-tovpay/10) <= 0:badprezik += 1
 				if i > 0: i-= 1 & jump 'cndmlp'
 				killvar 'i'
 				money -= tovpay
@@ -399,7 +399,7 @@ if $ARGS[0] = 'events':
 			end
 		end
 	elseif rinevrand = 10:
-		'<center><img src="images/locations/pavlovsk/market/balzam.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/balzam.jpg"></center>'
 		tovpay = rand(3, 9) * 10
 		'There is lip balm on sale for <<tovpay>> <b>₽</b>.'
 
@@ -426,7 +426,7 @@ if $ARGS[0] = 'events':
 			act 'Come': gt 'arturRinok','start'
 		end
 	elseif rinevrand = 13:
-		'<center><img src="images/locations/pavlovsk/market/cheburek.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/cheburek.jpg"></center>'
 		'Walking through the market, you came across a grandmother selling pies.'
 		if pcs_energy <= 80:
 			act 'Buy a pie for 20 <b>₽</b>':
@@ -441,7 +441,7 @@ if $ARGS[0] = 'events':
 				money-=20
 				minut+=10
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/market/eat.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/eat.jpg"></center>'
 				'You ate a delicious pie with pleasure.'
 				act 'Continue walking through the market': gt 'Grinok','events'
 			end
@@ -449,14 +449,14 @@ if $ARGS[0] = 'events':
 			*p ', But you are not hungry right now.'
 		end
 	elseif rinevrand = 14:
-		'<center><img src="images/locations/pavlovsk/market/dropwallet.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/dropwallet.jpg"></center>'
 		'You see woman ahead of you drop her purse.'
 		cla
 		act 'Tell her':
 			cla
 			*clr
 			minut += 2
-			'<center><img src="images/locations/pavlovsk/market/vernutwallet.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/vernutwallet.jpg"></center>'
 			'You call to the woman and hold out her wallet. She looks at you and releasing she gratefully takes her wallet back and walks away.'
 			act 'Continue walking through the market': gt 'Grinok','events'
 		end
@@ -465,7 +465,7 @@ if $ARGS[0] = 'events':
 			*clr
 			minut += 5
 			i = rand(40,200)
-			'<center><img src="images/locations/pavlovsk/market/zaglanut.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/zaglanut.jpg"></center>'
 			'In the purse is <<i>> <b>₽</b>'
 			act 'Take the money and throw away the wallet':
 				cla
@@ -478,47 +478,47 @@ if $ARGS[0] = 'events':
 				cla
 				*clr
 				pcs_mood += 5
-				'<center><img src="images/locations/pavlovsk/market/proverka.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/proverka.jpg"></center>'
 				'You catch up with the woman and telling her she dropped something you hand her the purse. The woman checks her money is still there and seeing that everything is in place, she thanks you and walked away.'
 				act 'Continue walking through the market': gt 'Grinok','events'
 			end
 		end
 	elseif rinevrand = 15:
-		'<center><img src="images/locations/pavlovsk/market/rebenok.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/rebenok.jpg"></center>'
 		'You see a young mother and her crying baby.'
 	elseif rinevrand = 16:
-		'<center><img src="images/locations/pavlovsk/market/rezba.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/rezba.jpg"></center>'
 		'You find a stall with beautiful things carved out of wood and metal.'
 	elseif rinevrand = 17:
-		'<center><img src="images/locations/pavlovsk/market/gruzchik.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/gruzchik.jpg"></center>'
 		'Gazing around, he almost collided with a loader.'
 	elseif rinevrand = 18:
-		'<center><img src="images/locations/pavlovsk/market/meatlavka.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/meatlavka.jpg"></center>'
 		'You wandered past a the meet seller and see a butcher working with an ax.'
 	elseif rinevrand = 19:
 		if pcs_apprnc >= 30:
-			'<center><img src="images/locations/pavlovsk/market/walk'+rand(1,2)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/walk'+rand(1,2)+'.jpg"></center>'
 			'As you walk, you make an effort to shake your booty. Some guys stare at you, unable to avert their eyes.'
 			pcs_mood += 5
 		else
-			'<center><img src="images/locations/pavlovsk/market/walk'+rand(3,4)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/walk'+rand(3,4)+'.jpg"></center>'
 			'As you walk, you make an effort to shake your booty. But no one gives you slightest attention.'
 			pcs_mood -= 5
 		end
 		gs 'stat'
 	elseif rinevrand = 20:
-		'<center><img src="images/locations/pavlovsk/market/dirka.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/dirka.jpg"></center>'
 		'As you walk past a stall you notice a small hole torn in the canvas.'
 		act 'Look through the hole':
 			cla
 			*clr
 			if girl > 1: pcs_horny += 5
-			'<center><img src="images/locations/pavlovsk/market/pereodev'+rand(1,15)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/pereodev'+rand(1,15)+'.jpg"></center>'
 			'You look inside the tent and see ' + $grinokrandtext[rand(3,7)]
 			act 'Leave': gt 'Grinok'
 		end
 	elseif rinevrand = 21:
-		'<center><img src="images/locations/pavlovsk/market/birthcontrolpills.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/market/birthcontrolpills.jpg"></center>'
 		tovpay = rand(2,8) * 50
 		'You see a booth selling birth control pills for <<tovpay>> <b>₽</b>.'
 

+ 4 - 4
locations/Gshveyfab

@@ -10,7 +10,7 @@ if $ARGS[0] = 'start':
 	gs'stat'
 	
 	'<center><B>TEXTILE FACTORY, "PARIS COMMUNE"</B></center>'
-	'<center><img src="images/locations/pavlovsk/factory/gshveyfab.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/factory/gshveyfab.jpg"></center>'
 	'The local textile factory; one of the few corporate enterprises in Pavlovsk. It makes clothing for G&M Store, which has a branch next door. Open from 8:00-20:00 Monday - Friday.'
 	if hour => 8 and hour =< 20 and week => 1 and week <= 5:
 		'The <a href="exec:minut += 15 & GT ''Gshveyfab'', ''enter''">entrance</a> sits behind a security checkpoint.'
@@ -70,7 +70,7 @@ CLOSE ALL
 	minut += 2
 	gs'stat'
 	'<center><B>TEXTILE FACTORY, "PARIS COMMUNE"</B></center>'
-	'<center><img src="images/locations/pavlovsk/factory/gshveyfab.jpg" ></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/factory/gshveyfab.jpg" ></center>'
 	'The local textile factory; one of the few corporate enterprises in Pavlovsk.'
 	'There is a work schedule hanging on the wall:'
 	'First shift - 8:00 to 16:00.'
@@ -99,7 +99,7 @@ if $ARGS[0] = 'job_start':
 	minut += 2
 	gs'stat'
 	'<center><B>FOREMAN''S OFFICE</B></center>'
-	'<center><img src="images/characters/pavlovsk/resident/stepan/nachalnik.jpg" ></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/stepan/nachalnik.jpg" ></center>'
 	''
 	'You go to the factory foreman, Stepan Sergeyevich, and ask for a job.'
 	if age => 16 and age < 18 and workFabrika = 0:
@@ -147,7 +147,7 @@ if $ARGS[0] = 'job':
 	end 
 	gs'stat'
 	'<center><B>TEXTILE FACTORY, "PARIS COMMUNE"</B></center>'
-	'<center><img src="images/locations/pavlovsk/factory/gshveyfab.jpg" ></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/factory/gshveyfab.jpg" ></center>'
 	''
 	'You work through your shift at the factory.'
 

File diff suppressed because it is too large
+ 112 - 112
locations/HanterLoveSex


+ 1 - 1
locations/HotelAdmin

@@ -6,7 +6,7 @@ $location_type = 'event'
 clr
 gs'stat'
 '<center><H4>Administration room of the Pavlovsk hotel</H4></center>'
-'<center><img src="images/locations/pavlovsk/hotel/goteladmin.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/goteladmin.jpg"></center>'
 'Behind his desk, a man of about 30 is busy with some paperwork. He''s dressed quite sharply, and you had never expected the hotel manager would be this young.'
 
 if GotelWork = 0 and germanqw<2:

+ 2 - 2
locations/HotelHole

@@ -8,7 +8,7 @@ clr
 gs'stat'
 
 '<center><H4>Pavlovsk hotel</H4></center>'
-'<center><img src="images/locations/pavlovsk/hotel/hotel.hole.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.hole.jpg"></center>'
 'As you enter the Pavlovsk hotel you''re always surprised by how fancy it looks on the inside, given the shabby exterior. You can approach the <a href="exec:minut += 1 & GT ''hotel_resep''">reception desk</a> of the hotel where a cute brunette is currently manning the desk, she gives you a friendly nod when you get into her sight range.'
 
 if hour >= 12 and hour <= 13 and GermanQW > 0:
@@ -24,7 +24,7 @@ if maidqw >= 1 and hour >= 16 and hour < 17:
 			cla
 			*clr
 			maid_cloth = 1
-			'<center><img src="images/locations/pavlovsk/hotel/maid.cloth'+rand(0,5)+'.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/maid.cloth'+rand(0,5)+'.jpg"></center>'
 			'You sit down in the locker room and look at the maid uniform. You run your hands over the delicate fabric while you think: "Hmm, it''s a bit skimpy. I bet that''s why the hotel manager thinks this is important, the guests probably love seeing the maids like this!"'
 			'You quickly take off your own clothes, and put the maid uniform on as instructed. After a few quick poses in the mirror you''re convinced: the manager is a pervert! Then again, it does look cute on you. All you have to is clean and prepare rooms for guests... why not look good while you do?'
 			act'Get to work':workmaid += 1 & gt'hotelwork','maid'

+ 46 - 22
locations/HotelRoom

@@ -8,12 +8,18 @@ $loc = 'HotelRoom'
 $location_type = 'private'
 	cla
 	*clr
-	FColor = RGB(0,0,0)
-	BColor = RGB(255,255,255)
-	LColor = RGB(106,90,205)
+	if night_mode = 1:
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		lcolor = rgb(106, 90, 205)
+	else
+		fcolor = rgb(0, 0, 0)
+		bcolor = rgb(255, 255, 255)
+		lcolor = rgb(106, 90, 205)
+	end
 	'<center><b><font color = maroon>Your normal hotel room</font></b></center>'
 	'<center>You have paid to stay for <<hotelroom1day - daystart>> more nights in the room.</center>'
-	'<center><img src="images/locations/pavlovsk/hotel/hotel.room.normal.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.normal.jpg"></center>'
 	'Your hotel room is not very large, but it has everything you need and is quite stylish. The large <a href="exec:gt ''bed2''">double bed</a> takes up most of the room. A modern wardrobe (where you can <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">organize your clothes</a> or <a href="exec:gt ''clothing_QV'', ''list''">pick something to wear</a>) stands near the entrance of the room. Next to the door, you can find a <a href="exec:GT ''mirror'',''start''">mirror</a>. The door to the <a href="exec:GT ''hotelroom'',''shower1''">bathroom</a> is to the right.'
 	'Your hotel room also has a <a href="exec:GT ''HotelRoom'',''tv''">TV</a>.'
 	act'Go to the hotel lobby':
@@ -37,12 +43,18 @@ $loc = 'HotelRoom'
 $location_type = 'private'
 	cla
 	*clr
-	FColor = RGB(0,0,0)
-	BColor = RGB(255,255,255)
-	LColor = RGB(106,90,205)
+	if night_mode = 1:
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		lcolor = rgb(106, 90, 205)
+	else
+		fcolor = rgb(0, 0, 0)
+		bcolor = rgb(255, 255, 255)
+		lcolor = rgb(106, 90, 205)
+	end
 	'<center><b><font color = maroon>Your luxury room</font></b></center>'
 	'<center>You have paid to stay for <<hotelroom1day - daystart>> more nights in the room.</center>'
-	'<center><img src="images/locations/pavlovsk/hotel/hotel.room.better.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better.jpg"></center>'
 	'Your hotel room is not very large, but it has everything you need and is quite stylish. The large <a href="exec:gt ''bed2''">double bed</a> takes up most of the room. A modern wardrobe (where you can <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">organize your clothes</a> or <a href="exec:gt ''clothing_QV'', ''list''">pick something to wear</a>) stands near the entrance of the room. Next to the door, you can find a <a href="exec:GT ''mirror'',''start''">mirror</a>. The door to the <a href="exec:GT ''hotelroom'',''shower1''">bathroom</a> is to the right.'
 	'Your hotel room also has a small flat-screen <a href="exec:GT ''HotelRoom'',''tv''">TV</a>, right across the bed.'
 	act'Go to the hotel lobby':
@@ -63,12 +75,18 @@ $loc = 'HotelRoom'
 $location_type = 'private'
 	cla
 	*clr
-	FColor = RGB(0,0,0)
-	BColor = RGB(255,255,255)
-	LColor = RGB(106,90,205)
+	if night_mode = 1:
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		lcolor = rgb(106, 90, 205)
+	else
+		fcolor = rgb(0, 0, 0)
+		bcolor = rgb(255, 255, 255)
+		lcolor = rgb(106, 90, 205)
+	end
 	'<center><b><font color = maroon>Your royal suite</font></b></center>'
 	'<center>You have paid to stay for <<hotelroom1day - daystart>> more nights in the room.</center>'
-	'<center><img src="images/locations/pavlovsk/hotel/hotel.room.best.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best.jpg"></center>'
 	'Your hotel room is quite spacious, and is beautifully furnished. For a second, you wonder why a hotel in a town like Pavlovsk even has such a luxurious suite. The room is filled with expensive appliances. The gorgeous <a href="exec:gt ''bed2''">double bed</a> takes up most of the room. A modern wardrobe (where you can <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">organize your clothes</a> or <a href="exec:gt ''clothing_QV'', ''list''">pick something to wear</a>) stands near the entrance of the room. Next to the door, you can find a <a href="exec:GT ''mirror'',''start''">mirror</a>. The door to the <a href="exec:GT ''hotelroom'',''shower1''">bathroom</a> is to the right.'
 	'Your hotel room also has a huge flat-screen <a href="exec:GT ''HotelRoom'',''tv''">TV</a>, right across the bed.'
 	act'Go to the hotel lobby':
@@ -98,14 +116,20 @@ $location_type = 'bathroom'
 	minut = minut + 1
 	gs'stat'
 
-	FColor = RGB(0,0,0)
-	BColor = RGB(255,255,255)
-	LColor = RGB(106,90,205)
+	if night_mode = 1:
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		lcolor = rgb(106, 90, 205)
+	else
+		fcolor = rgb(0, 0, 0)
+		bcolor = rgb(255, 255, 255)
+		lcolor = rgb(106, 90, 205)
+	end
 
 	'<center><b><font color = maroon>The bathroom of your hotel room</font></b></center>'
-	if hotelroom = 1:'<center><img src="images/locations/pavlovsk/hotel/hotel.room.normal1.jpg"></center>'&'A small and unpretentious bathroom, that is nevertheless quite stylish and has everything you need.'
-	if hotelroom = 2:'<center><img src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'&'A nice looking and spacious bathroom, with separate bath tub.'
-	if hotelroom = 3:'<center><img src="images/locations/pavlovsk/hotel/hotel.room.best1.jpg"></center>'&'A very luxurious and spacious bathroom, fit for a king.'
+	if hotelroom = 1:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.normal1.jpg"></center>'&'A small and unpretentious bathroom, that is nevertheless quite stylish and has everything you need.'
+	if hotelroom = 2:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'&'A nice looking and spacious bathroom, with separate bath tub.'
+	if hotelroom = 3:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best1.jpg"></center>'&'A very luxurious and spacious bathroom, fit for a king.'
 
 	gs 'din_van', 'private'
 
@@ -114,9 +138,9 @@ end
 if $ARGS[0] = 'tv':
 gs'stat'
 
-if hotelroom=1:'<center><img src="images/locations/pavlovsk/hotel/tv1.jpg"></center>'
-if hotelroom=2:'<center><img src="images/locations/pavlovsk/hotel/tv2.jpg"></center>'
-if hotelroom=3:'<center><img src="images/locations/pavlovsk/hotel/tv3.jpg"></center>'
+if hotelroom=1:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/tv1.jpg"></center>'
+if hotelroom=2:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/tv2.jpg"></center>'
+if hotelroom=3:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/tv3.jpg"></center>'
 'You turn on the TV and make yourself comfortable on the bed.'
 
 $din_wath_tv_h2 = {
@@ -126,7 +150,7 @@ $din_wath_tv_h2 = {
 	pcs_mood += RAND(10,20)
 	gs'stat'
 
-	'<center><img src="images/locations/pavlovsk/hotel/tv0,'+rand(0,4)+'.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/tv0,'+rand(0,4)+'.jpg"></center>'
 	'You are watching the country''s main television channel. None of their programs are really worth watching, but the distraction is welcome anyway.'
 
 	act 'Watch TV (1:00)':dynamic $din_wath_tv_h2

+ 21 - 21
locations/HotelWork

@@ -5,7 +5,7 @@ if $ARGS[0] = 'maid':
     $location_type = 'event'
 	gs'stat'
 
-	'<center><img src="images/locations/pavlovsk/hotel/hotel.corr.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.corr.jpg"></center>'
 	'You check your planning, and go to the next room on your list.'
 
 	if hour >= 19:
@@ -39,7 +39,7 @@ if $ARGS[0] = 'maid':
 			if maidrand <= 20:
 				minut += 35
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/hotel/work/maid.work0,'+rand(0,3)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/work/maid.work0,'+rand(0,3)+'.jpg"></center>'
 				'You put some fresh sheets on the bed, and clean the room for the next visitor to enjoy.'
 				if maidstat < 20:'You don''t do a very good job. The sheets on the bed are all wrinkled, and you are moving the dust around more than you are cleaning it up.'
 				if maidstat >= 20 and maidstat<50:'Your maid skills have improved a fair bit. You clean the room far more effectively now, but the bed sheets still give you trouble. Nevertheless, they look better than when you first started.'
@@ -54,7 +54,7 @@ if $ARGS[0] = 'maid':
 			if maidrand > 20 and maidrand <= 40:
 				minut += 35
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/hotel/work/maid.work1,0.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/work/maid.work1,0.jpg"></center>'
 				'You work in the hotel restaurant, moving dirty dishes to the kitchen and preparing tables for the next guests.'
 				
 				if chai > 0:money += chai &'While you move to pick up a tray, you find some money tucked under a plate. Looks like someone left you a <<chai>> ruble tip!'&chai=0
@@ -65,7 +65,7 @@ if $ARGS[0] = 'maid':
 			if maidrand > 40 and maidrand <= 60:
 				minut += 35
 				gs 'stat'
-				'<center><img src="images/locations/pavlovsk/hotel/work/maid.work2,'+rand(0,4)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/work/maid.work2,'+rand(0,4)+'.jpg"></center>'
 				'You thoroughly clean the room, making sure you wipe all the dust off the furniture.'
 				
 				if chai>0:money+=chai & 'You find <<chai>> <b>₽</b> in a jar on the table. Looks like someone left you a tip!' & chai=0
@@ -76,7 +76,7 @@ if $ARGS[0] = 'maid':
 			if maidrand>60 and maidrand<=70:
 				minut+=45
 				gs'stat'
-				'<center><img src="images/locations/pavlovsk/hotel/work/maid.work3,'+rand(0,4)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/work/maid.work3,'+rand(0,4)+'.jpg"></center>'
 				'You spend most of the next 45 minutes on your knees, thoroughly washing the floors of the room after you cleaned the rest quickly.'
 
 				if chai>0:money+=chai & 'You find <<chai>> <b>₽</b> in a jar on the table. Looks like someone left you a tip!' & chai=0
@@ -87,7 +87,7 @@ if $ARGS[0] = 'maid':
 			if maidrand>70 and maidrand<=75:
 				minut+=10
 				gs'stat'
-				'<center><img src="images/locations/pavlovsk/hotel/work/maid.event0.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/work/maid.event0.jpg"></center>'
 				'You knock on the door. Just when you were about to open it yourself, a girl opens the door. She''s naked, except for a pair of sexy stockings!'
 				'You embarrassedly mumble some apologies while you try not to look at her: "Oops! I erm... sorry miss. I will come back later."'
 				
@@ -110,7 +110,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand>75 and maidrand<=85:
-				'<center><img src="images/locations/pavlovsk/hotel/sex/1,'+rand(0,7)+'.gif"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/sex/1,'+rand(0,7)+'.gif"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear a loud moaning coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. You see a couple fucking enthusiastically on the bed, completely oblivious to your presence.'
 		
 				gs 'arousal', 'voyeur', 10
@@ -131,7 +131,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand>85 and maidrand<=95:
-				'<center><img src="images/locations/pavlovsk/hotel/sex/maid.event3,'+rand(0,7)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/sex/maid.event3,'+rand(0,7)+'.jpg"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear a loud moaning coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. You carefully put your things away and look around the corner, and you see a girl... but she''s not with one man, but two! They''re fucking her quite roughly.'
 		
 				gs 'arousal', 'voyeur', 10
@@ -153,7 +153,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand>95 and maidrand<=100:
-				'<center><img src="images/locations/pavlovsk/hotel/sex/maid.event4,'+rand(0,6)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/sex/maid.event4,'+rand(0,6)+'.jpg"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear a somewhat desperate moaning coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. You carefully put your things away and look around the corner, and you see a girl... but she''s not with one man, but with a whole group of men! From what you can see, there are at least five of them, taking turns fucking her however they like.'
 
 				gs 'arousal', 'voyeur', 10
@@ -174,7 +174,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand >100 and maidrand<=110:
-				'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy0,'+rand(0,4)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy0,'+rand(0,4)+'.jpg"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear gagging sounds coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. When you look around the corner, you see a girl giving a guy an enthusiastic blowjob, happily gagging on his cock while she tries to take it down her throat over and over. Wait a minute... that''s Sonia, from your class!'
 				
 				gs 'arousal', 'voyeur', 5
@@ -184,7 +184,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.cum0,'+rand(0,4)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.cum0,'+rand(0,4)+'.jpg"></center>'
 						'The man doesn''t last very long, and within minutes shoots his hot ropes of jizz all over Sonia''s face. She lets it sit for a minute so he can admire his handiwork, before greedily wiping it towards her mouth and lapping it up. When you get up to leave, you see the man give Sonia some money.'
 
 						gs 'arousal', 'voyeur', 3
@@ -200,7 +200,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy1,'+rand(0,3)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy1,'+rand(0,3)+'.jpg"></center>'
 						'After a few minutes of Sonia enthusiastically sucking his dick and licking his balls, the guy decides he wants to fuck her now. He spreads Sonia''s legs and slides his cock into her in one fluent motion. Sonia moans eagerly, and begins to buck her hips against him.'
 						
 						gs 'arousal', 'voyeur', 5
@@ -209,7 +209,7 @@ if $ARGS[0] = 'maid':
 						act'Further':
 							cla
 							*clr
-							'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.cum0,'+rand(0,4)+'.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.cum0,'+rand(0,4)+'.jpg"></center>'
 							'The man doesn''t last very long, and within minutes he tells Sonia to get on her knees before him. Seconds later, he shoots his hot ropes of jizz all over her face. She lets it sit for a minute so he can admire his handiwork, before greedily wiping it towards her mouth and lapping it up. When you get up to leave, you see the man give Sonia some money.'
 
 							gs 'arousal', 'voyeur', 3
@@ -225,7 +225,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand >110 and maidrand<=120:
-				'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga0,'+rand(0,2)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga0,'+rand(0,2)+'.jpg"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear gagging sounds coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. When you look around the corner, you see Sonia giving a black guy an enthusiastic blowjob, happily gagging on his cock while she tries to take it down her throat over and over. Obviously it''s not working; his cock is way too big for her.'
 				'She adjusts her strategy, diligently sucking the head of his cock and licking his balls instead.'
 				
@@ -237,7 +237,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga.cum0,0.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga.cum0,0.jpg"></center>'
 						'The black man doesn''t last very long, and within minutes shoots his hot ropes of jizz all over Sonia''s face. She lets it sit for a minute so he can admire his handiwork, before greedily wiping it towards her mouth and lapping it up. When you get up to leave, you see the man give Sonia some money.'
 
 						gs 'arousal', 'voyeur', 3
@@ -253,7 +253,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga1,'+rand(0,5)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga1,'+rand(0,5)+'.jpg"></center>'
 						'After a few minutes of Sonia enthusiastically sucking his dick and licking his balls, the black guy decides he wants to fuck her now. He spreads Sonia''s legs and slides his cock into her in one fluent motion. You can see her pussy lips stretch around his huge cock as Sonia moans loudly, trying to hold him back for a second so she can get used to the size.'
 
 						gs 'arousal', 'voyeur', 5
@@ -262,7 +262,7 @@ if $ARGS[0] = 'maid':
 						act'Keep watching':
 							cla
 							*clr
-							'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga.cum0,0.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.boy.nigga.cum0,0.jpg"></center>'
 							'The black man fucks her for a good while, and just when you thought you should probably get back to work he tells Sonia to get on her knees before him. Seconds later, he shoots his hot ropes of jizz all over her face. She lets it sit for a minute so he can admire his handiwork, before greedily wiping it towards her mouth and lapping it up. When you get up to leave, you see the man give Sonia some money.'
 
 							gs 'arousal', 'voyeur', 3
@@ -278,7 +278,7 @@ if $ARGS[0] = 'maid':
 			end
 
 			if maidrand >120 and maidrand<=130:
-				'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.two.nigga0,'+rand(0,1)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.two.nigga0,'+rand(0,1)+'.jpg"></center>'
 				'You open the door to the next room, and immediately freeze in place when you hear gagging sounds coming from inside. Curious as you are, you decide to sneak a peek and see what''s happening in the room. When you look around the corner, you see Sonia with not one, but two huge black guys. She''s happily sucking their enormous dicks in turn, massaging the one she doesn''t currently have in her mouth with her delicate fingers.'
 
 				gs 'arousal', 'voyeur', 10
@@ -289,7 +289,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/sonia.cum0,'+rand(0,1)+'.gif"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/sonia.cum0,'+rand(0,1)+'.gif"></center>'
 						'Sonia must''ve been doing a really good job. Within minutes, both of them moan and quickly begin to jerk themselves off, shooting thick ropes of jizz all over her face. She lets it sit for a minute so they can admire their handiwork, before greedily wiping it towards her mouth and lapping it up. When you get up to leave, you see one of the men give Sonia some money.'
 
 						gs 'arousal', 'voyeur', 3
@@ -305,7 +305,7 @@ if $ARGS[0] = 'maid':
 					act'Keep watching':
 						cla
 						*clr
-						'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.two.nigga1,'+rand(0,3)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/hotel/sonia.hotel.two.nigga1,'+rand(0,3)+'.jpg"></center>'
 						'After a few minutes, the black guys pull Sonia''s mouth away from their dicks for a second, ignoring her pleas to have them back. One of the men starts to fuck her pussy, while the other stuffs her mouth again with his dick. You''re somewhat amazed at how easily Sonia takes their huge dicks in her pussy... she must''ve had a lot of practise with them already. After a few minutes of giving Sonia a thorough fucking, the black guys tell her to get on her knees.'
 
 						gs 'arousal', 'voyeur', 3
@@ -314,7 +314,7 @@ if $ARGS[0] = 'maid':
 						act'Keep watching':
 							cla
 							*clr
-							'<center><img src="images/characters/pavlovsk/school/girl/sonia/sex/sonia.cum0,'+rand(0,1)+'.gif"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/sonia/sex/sonia.cum0,'+rand(0,1)+'.gif"></center>'
 							'Sonia does as they says, and seconds later the first jet of sperm already hits her face. She licks some of it up, but waits patiently for the other guy to also add his cum to her face. You quickly pull away from the door when you see her looking in your general direction... that was close! You quickly gather your things and leave, before she gets the idea to look if anyone was watching her.'
 
 							gs 'arousal', 'voyeur', 3

File diff suppressed because it is too large
+ 127 - 130
locations/IgorEv


+ 20 - 20
locations/IgorHanter

@@ -20,7 +20,7 @@ gs'stat'
 temp = rand(1,5)
 
 '<center><b><font color = maroon>Igor Anisimov</font></b></center>'
-'<center><img src="images/locations/gadukino/hunters/IgorHanter.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/IgorHanter.jpg"></center>'
 'Igor is one of the familiar hunters, he comes to visit Andrew hunt. He <<boyage>> years. He is not married and lives in the Center..'
 if hantersIgorQw < 0:'You and him had a bad relationship, he seems to hold on you some offense.'
 if hantersIgorQw >= 0 and hantersIgorQw < 10:'You have a normal relationship with him.'
@@ -39,7 +39,7 @@ act 'Chat':
     if hantersIgorQw < 10:hantersIgorQw += 1
     gs'stat'
     
-    '<center><img src="images/locations/gadukino/hunters/talk1.'+rand(1,3)+'.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/talk1.'+rand(1,3)+'.jpg"></center>'
     if hantersIgorQw >= 0:'You have a chat with Igor, listening to interesting stories from his life, and telling your.'
     if hantersIgorQw < 0:'You talk to Igor. He frowns and behaves not very friendly, but still supports the conversation.'
     
@@ -55,7 +55,7 @@ if hantersIgorQw >= 10:
             if hantersSergeiQw >= 10 and hantersKnowSlut = 0:hantersSergeiQw -= 1        
             gs'stat'
         
-            '<center><img src="images/locations/gadukino/hunters/hanterflirt1.'+rand(1,3)+'.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt1.'+rand(1,3)+'.jpg"></center>'
             'You spread with Igor playful attitudes and vengeance flirting. He is glad of your company, and once you notice it wandering a clear view.'
             
 			gs 'arousal', 'foreplay', 120
@@ -65,7 +65,7 @@ if hantersIgorQw >= 10:
                 cls
                 gs'stat'
 
-                '<center><img src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
                 'You smile sweetly at Igor and flirt with him. Suddenly Igor brings to you his face, you can feel his breath on my skin, smell the scent of his body, which delicate notes wafted to you. Slowly, afraid to startle you, Igor touches your cheek and you with a sinking heart, watching as his lips close to your...'
 
 				gs 'arousal', 'foreplay', 5
@@ -78,7 +78,7 @@ if hantersIgorQw >= 10:
                     hantersIgorQw += 1
                     gs'stat'
 
-                    '<center><img src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
+                    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
                     'Your lips touch, you heart stops and breathing. Igor gently kisses you and you answer him, clinging harder to his lips.'
                     
 					gs 'arousal', 'kiss', 5
@@ -90,7 +90,7 @@ if hantersIgorQw >= 10:
                             minut += 5
                             gs'stat'
                         
-                            '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                             '- <<$pcs_nickname>>, I want you, - whispered in your ear <<$boydesc>>, when your lips finally parted. Seeing that you don`t mind, Igor gently took you by the hand and led him.' 
                     
                             act 'Go':gt'HanterLoveSex'
@@ -101,7 +101,7 @@ if hantersIgorQw >= 10:
                             minut += 5
                             gs'stat'                        
                         
-                            '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                             '- It was amazing, <<$pcs_nickname>>, - whispered in your ear <<$boydesc>>, when your lips finally parted. You melt in his hands, seeing his happy look and a smile.'
                         
                             act'Further':gt $loc, $metka
@@ -114,7 +114,7 @@ if hantersIgorQw >= 10:
                     hantersIgorQw -= 50
                     gs'stat'
 
-                    '<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+                    '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
                     ' - No, <<$boydesc>>, don`t need this, you said, and trying not to look at rasteryalsya guy left.'                   
                         
                     act'Go':gt $loc, $metka    
@@ -133,7 +133,7 @@ if hantersIgorQw >= 10:
             if hantersIgorLove = 2:bfA += 1        
             gs'stat'
         
-            '<center><img src="images/locations/gadukino/hunters/hanterlove1.'+rand(1,4)+'.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.'+rand(1,4)+'.jpg"></center>'
             'You need with Igor along time softly cooing kisses and hugs. He is glad of your company, you can`t help but notice its full of happiness look, and it makes you want to sing and fly.'
         
 			gs 'arousal', 'foreplay', 120
@@ -151,7 +151,7 @@ if hantersIgorLove > 0 and pcs_horny >= 60:
         hantersIgorsex += rand(12,36) 
 	    gs 'stat'
 				
-	    '<center><img src="images/locations/gadukino/hunters/hanterflirt2.'+rand(1,6)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt2.'+rand(1,6)+'.jpg"></center>'
 	    'You absolutely insolently wink Igor, languid sigh, swiping a tongue across the lips and Igor, all knowing, takes you by the hand and leads.'
 		
 		gs 'arousal', 'foreplay', 10
@@ -166,7 +166,7 @@ if hantersIgorLove > 0 and pcs_horny <= 60 and hantersIgorQw >= 10 and temp = 1
     hantersIgorsex += rand(12,36) 
 	gs 'stat'
 	
-	'<center><img src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
 	'You walked up to Igor to spend time together, but he suddenly stared at your lips with a passionate kiss and whispered:'
 	'- <<$pcs_nickname>>, I want you.'
 	
@@ -179,7 +179,7 @@ if hantersIgorLove > 0 and pcs_horny <= 60 and hantersIgorQw >= 10 and temp = 1
 	    hantersIgorQw += 1
 		gs 'stat'
 		
-		'<center><img src="images/locations/gadukino/hunters/hanterflirt2.'+rand(4,6)+'.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt2.'+rand(4,6)+'.jpg"></center>'
 		'Smiling you wink Igor. He, all knowing, takes you by the hand and leads.'	
 	    act 'Go':gt'HanterLoveSex'
     end 
@@ -189,7 +189,7 @@ if hantersIgorLove > 0 and pcs_horny <= 60 and hantersIgorQw >= 10 and temp = 1
 	    hantersIgorQw -= 1
 		gs 'stat'
 		
-        '<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+        '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
         ' - No, <<$boydesc>>, not now, you said, and trying not to look at rasteryalsya guy left.' 	
 	    act 'Go':gt $loc, $metka
     end     
@@ -204,7 +204,7 @@ if hantersIgorLove > 0:
         hantersIgorQw -= 100 
 	    gs 'stat'
 		
-	    '<center><img src="images/locations/gadukino/hunters/brosila.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/brosila.jpg"></center>'
 	    ' - <<$boydesc>>, I decided that our relationship had no future, and we must part, you said, and trying not to look at rasteryalsya guy left.'
 		
 	    act 'Go':gt $loc, $metka
@@ -220,7 +220,7 @@ if hantersIgorQw < 10 and hantersIgorLove > 0:
     if hantersIgorLove = 2:bfA = 0
     hantersIgorQw -= 10 
 	gs 'stat'
-	'<center><img src="images/locations/gadukino/hunters/brosil.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/brosil.jpg"></center>'
 	'You wanted to talk to Igor, but he is ahead of you, not allowing to tell you to say nislova.'
 	' - <<$pcs_nickname>>, I realized that our relationship had no future, and we need to leave, " he said, and trying not to look in your direction, resolutely walked away.'
 	' - Well , maybe it`s for the best, " you thought, going in the other direction.'
@@ -234,7 +234,7 @@ if hantersIgorLove < 2 and hantersIgorQw >= 35 and hantersKnowSlut = 0 and bfA <
     minut += 1        
     gs'stat'
 
-    '<center><img src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss1.jpg"></center>'
     'Suddenly <<$boydesc>> brought to you by your face, you felt his breath on my skin, faint aroma of his body, which delicate notes wafted to you. Slowly, afraid to startle you, Igor touched your fingers to your cheek and you with a sinking heart I felt his lips on my lips...'    
 
 	gs 'arousal', 'foreplay', 1
@@ -270,7 +270,7 @@ if hantersIgorLove < 2 and hantersIgorQw >= 35 and hantersKnowSlut = 0 and bfA <
         pcs_mood = 100
         gs'stat'
 
-        '<center><img src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
+        '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss2.jpg"></center>'
         'Your lips touch, you heart stops and breathing. <<$boydesc>> gently kisses you and you answer him, clinging harder to his lips.'
         
 		gs 'arousal', 'kiss', 5
@@ -282,7 +282,7 @@ if hantersIgorLove < 2 and hantersIgorQw >= 35 and hantersKnowSlut = 0 and bfA <
                 minut += 5
                 gs'stat'
                         
-                '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                 '- <<$pcs_nickname>>, I want you, - whispered in your ear <<$boydesc>>, when your lips finally parted. Seeing that you don`t mind, Igor gently took you by the hand and led him.' 
                     
                 act 'Go':gt'HanterLoveSex'
@@ -293,7 +293,7 @@ if hantersIgorLove < 2 and hantersIgorQw >= 35 and hantersKnowSlut = 0 and bfA <
                 minut += 5
                 gs'stat'                        
 
-                '<center><img src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterkiss3.jpg"></center>'
                 '- It was amazing, <<$pcs_nickname>>, - whispered in your ear <<$boydesc>>, when your lips finally parted. You melt in his hands, seeing his happy look and a smile.'
 
                 act'Further':gt $loc, $metka
@@ -306,7 +306,7 @@ if hantersIgorLove < 2 and hantersIgorQw >= 35 and hantersKnowSlut = 0 and bfA <
         hantersIgorQw -= 50
         gs'stat'
 
-        '<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+        '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
         ' - No, <<$boydesc>>, don`t need this, you said, and trying not to look at rasteryalsya guy left.'                   
 
         act'Go':gt $loc, $metka    

+ 12 - 12
locations/IrinaRoom

@@ -16,7 +16,7 @@ if $ARGS[0] = 'start':
 		lcolor = rgb(106, 90, 205)
 	end
 	'<center><b><font color="maroon">Entrance where your girlfriend Ira lives</font></b></center>'
-	'<center><img src="images/locations/shared/apartment/podezdhr.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/shared/apartment/podezdhr.jpg"></center>'
 
 	act 'Leave':
 		cla
@@ -50,7 +50,7 @@ if $ARGS[0] = 'first':
 	minut += 5
 	gs 'stat'
 	'<center><b><font color="maroon">Apartment Ira</font></b></center>'
-	'<center><img src="images/characters/city/ira/irinaroom.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/ira/irinaroom.jpg"></center>'
 	'A small studio apartment, Ira keeps it neat and tidy'
 
 	act 'Drink in the kitchen':gt 'IrinaRoom', 'first1'
@@ -63,7 +63,7 @@ if $ARGS[0] = 'first1':
 	minut += 60
 	pcs_mood += 50
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/irinaqw.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/irinaqw.jpg"></center>'
 	'You and Ira settle in the kitchen with a bottle of wine and some fruits, you talk and chat merrily.'
 	'You''re both a bit tipsy and the conversation becomes more candid.'
 
@@ -84,7 +84,7 @@ if $ARGS[0] = 'kiss':
 	pcs_mood += 50
 	clr
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/irinakiss.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/irinakiss.jpg"></center>'
 	'You passionately kiss Ira, and caress her firm breasts with your hands.'
 
 	gs 'arousal', 'kiss', 10, 'lesbian'
@@ -101,7 +101,7 @@ if $ARGS[0] = 'sex':
 	pcs_mood = 100
 	pcs_willpwr += 100
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinasex.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinasex.jpg"></center>'
 
 	if pcs_horny < 50:
 		'Once in bed you caress each other with passion and lick each others wet pussies. But the excitement gradually disappears and you feel that you won''t orgasm this time.'
@@ -140,7 +140,7 @@ if $ARGS[0] = 'first2':
 	minut += 60
 	pcs_mood += 50
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/irinaqw1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/irinaqw1.jpg"></center>'
 	'You suggest drinking to sister to Ira. Although slightly odd, this simple ritual removes tensions and brings you closer.'
 
 	act 'Kiss':gt 'IrinaRoom', 'first3'
@@ -152,7 +152,7 @@ if $ARGS[0] = 'first3':
 	*clr
 	pcs_mood += 50
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/irinaqw2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/irinaqw2.jpg"></center>'
 	'You kiss Ira on her warm, soft, wine smelling lips. Irina flushes after the kiss and looks at you a little embarrassed and frightened.'
 
 	gs 'arousal', 'kiss', 5, 'lesbian'
@@ -184,7 +184,7 @@ if $ARGS[0] = 'first5':
 	*clr
 	IrinaQW = 10
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinaqw3.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinaqw3.jpg"></center>'
 	'You pumped Ira with wine, she is highly intoxicated and spilled wine on myself. She went into the bathroom to change. You, too, went in and offered to help her.'
 	'She undresses and you have decided to follow suit and after undressing climb into the shower. You start lathering her body and see that she is flushed and her nipples erect.'
 
@@ -199,7 +199,7 @@ if $ARGS[0] = 'first6':
 	clr
 	*clr
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinaqw4.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinaqw4.jpg"></center>'
 	'You passionately hold your lips to Iras luscious lips, she suddenly says, "You kiss very passionately."'
 
 	gs 'arousal', 'kiss', 5, 'lesbian'
@@ -213,7 +213,7 @@ if $ARGS[0] = 'first7':
 	clr
 	*clr
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinaqw5.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinaqw5.jpg"></center>'
 	'You lower your head to her chest and began to suck and lick her hard nipples as Ira moans in pleasure.'
 
 	gs 'arousal', 'breasts', 5, 'lesbian'
@@ -230,7 +230,7 @@ if $ARGS[0] = 'first8':
 	girl += 1
 	lesbian += 1
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinaqw6.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinaqw6.jpg"></center>'
 	'You mouth begins to wander lower and lower until you come to Iras pussy. Moisture is already seeping from it and your tongue begins to caress her clit. Soon she shudders and moans in orgasm.'
 	'Ira decides to pay you back in the same coin and not speaking a word puts you on the edge of the tub and her lips sink into your pussy.'
 
@@ -249,7 +249,7 @@ if $ARGS[0] = 'first9':
 	pcs_mood = 100
 	pcs_willpwr += 100
 	gs 'stat'
-	'<center><img src="images/characters/city/Ira/sex/irinaqw7.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/city/Ira/sex/irinaqw7.jpg"></center>'
 	'Iras lips and tongue quickly have an effect and you finish with passionate moans.'
 
 	$orgasm_or = 'yes'

+ 126 - 63
locations/IvanEv

@@ -1,95 +1,100 @@
 # IvanEv
-ivansportday = daystart
-gs 'stat'
-'<center><b><font color="maroon"><<$npc_firstname[''A3'']>> <<$npc_lastname[''A3'']>></font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/3.jpg"></center>'
 
-if $loc = 'gdksport':
-	'When you enter Pavlovsk''s sports center, Ivan sees you come in. Even though he''s getting ready for a training and is only wearing his boxing shorts, he comes over for a quick chat.'
-	'"Hi <<$pcs_nickname>>!" Ivan grins, happy to see you. "Here to do some training?"'
-	'You smile at him and nod. "Yea, I am! What are you doing here?"'
-	'Ivan nods over at a hall and says. "I have been training for a boxing match. It''s coming up fast, I''m pretty excited about it!"'
+if $ARGS[0] = '':
+	cls
+	numnpc = 3
+	ivansportday = daystart
+	gs 'stat'
+	'<center><b><font color="maroon"><<$npc_firstname[''A3'']>> <<$npc_lastname[''A3'']>></font></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/3.jpg"></center>'
 
-	act 'Wish him luck and let him go train':gt 'gdksport', 'start'
+	if $loc = 'gdksport':
+		'When you enter Pavlovsk''s sports center, Ivan sees you come in. Even though he''s getting ready for a training and is only wearing his boxing shorts, he comes over for a quick chat.'
+		'"Hi <<$pcs_nickname>>!" Ivan grins, happy to see you. "Here to do some training?"'
+		'You smile at him and nod. "Yeah, I am. What are you doing here?"'
+		'Ivan nods over at a hall and says. "I have been training for a boxing match. It''s coming up fast, I''m pretty excited about it!"'
 
-	!!if kotovVSprohorov = 1:end
-	if kotovVSprohorov = 0:
-		'Ivan pauses for a second, and then suggests. "Hey! I''m sparring with Vitek Kotov today. It''s part of my preparation for the big match. You can come watch if you''d like?"'
+		act 'Wish him luck and let him go train':gt 'gdksport', 'start'
 
-		act '"Sure, that sounds like fun!"':
-			cls
-			kotovVSprohorov = 1
-			gs 'stat'
-			'That could be interesting! You follow Ivan into the hall where the local boxing club has their training sessions. It''s impossible to miss the smell of stale sweat and leather, but in a way it seems oddly fitting for a venue like this.'
-			'Several guys are hitting old punching bags, practicing their swings or working on speed bags. Others are practicing their punches in front of a mirror, studying their own patterns and looking for ways to improve. You''re the only girl in the hall, for some reason.'
-			'Vitek was already waiting in the ring when the two of you came in, dressed in boxing shorts, gloves and a headgear. He snarks: "Oh Prokhorov, you decided to show up after all! I was afraid you weren''t coming! I see you brought <<$pcs_nickname>>, plan to let her fight for you?"'
-			'Ivan smirks at him and quickly puts on his headgear and gloves, before getting in the ring to face Vitek. Most of the other guys leave their training and come over to watch them spar.'
-
-			act 'Watch them':
+		!!if kotovVSprohorov = 1:end
+		if kotovVSprohorov = 0:
+			'Ivan pauses for a second, and then suggests. "Hey! I''m sparring with Vitek Kotov today. It''s part of my preparation for the big match. You can come watch if you''d like?"'
+
+			act '"Sure, that sounds like fun!"':
 				cls
-				minut += 3
-				pcs_dom += 1
+				kotovVSprohorov = 1
 				gs 'stat'
-				'One thing you immediately notice is how different their builds are; Ivan is much taller than Vitek, but Vitek is much broader in the shoulders and looks far more muscular.'
-				'The guys do the customary glove bump before the match and then go to their corners, receiving some last-minute advice from the trainer.'
-				'When the bell rings, Vitek furiously takes swings at Ivan, without much effect. While Vitek''s punches are quite powerful, Ivan manages to dodge them easily. He dances around Vitek, jabbing only once with his right arm. It''s a very precise jab, and it hits Vitek straight across the jaw. When Vitek realizes his tactic isn''t working, the roles reverse and he leaves the offensive to Ivan.'
-				'For the remainder of the round, Ivan keeps pressuring Vitek. Vitek''s stamina is not quite as good as Ivan''s, and towards the end of the round Vitek begins to make mistakes. One swing in particular makes it past his defenses, and Vitek''s head jerked to the side as Ivan gives him another direct hit on the jaw.'
-				'At that point, the round is over and the boxers go to their corners. Vitek is getting an earful from the trainer: "Damnit, Viktor! What the hell are you doing, you need to bob and weave, make him miss or block the hits better! Don''t separate your arms too far, you''re opening yourself up way too many times!"'
-				'Ivan just has a sip of water while he waits for round 2. He still looks fresh, while Vitek is sweating profusely already.'
-
-				act 'Round 2':
+				'That could be interesting! You follow Ivan into the hall where the local boxing club has their training sessions. It''s impossible to miss the smell of stale sweat and leather, but in a way it seems oddly fitting for a venue like this.'
+				'Several guys are hitting old punching bags, practicing their swings or working on speed bags. Others are practicing their punches in front of a mirror, studying their own patterns and looking for ways to improve. You''re the only girl in the hall, for some reason.'
+				'Vitek was already waiting in the ring when the two of you came in, dressed in boxing shorts, gloves and a headgear. He snarks: "Oh Prokhorov, you decided to show up after all! I was afraid you weren''t coming! I see you brought <<$pcs_nickname>>, plan to let her fight for you?"'
+				'Ivan smirks at him and quickly puts on his headgear and gloves, before getting in the ring to face Vitek. Most of the other guys leave their training and come over to watch them spar.'
+
+				act 'Watch them':
 					cls
 					minut += 3
 					pcs_dom += 1
 					gs 'stat'
-					'The second round starts like the first one ended. Ivan is light on his feet, dancing around Vitek. Meanwhile, Vitek tries to keep his cover intact while he waits for a chance to strike. Ivan gets in some light blows with his left, but Vitek shrugs them off and moves in close for a combo. Ivan manages to block the blow to the head, but immediately after takes a devastating blow to the stomach.'
-					'It nearly knocks the wind out of him, and for the next few second Ivan tries to create distance between Vitek and him while he catches his breath. Vitek grins, this is the chance he had been waiting for! He keeps closing the gaps as fast as he can, and manages to get a few more good punches in, including a rather fierce one to the face. You wince in sympathy for Ivan and you''re unsure why you suddenly care about him getting punched in the face. Luckily for Ivan, the round ends and the guys go to their corners.'
-					'This time it''s Ivan who gets the majority of the instructions. The coach scolds him, while wiping the blood off his face: "Ivan, you need to keep your distance. Don''t let him get close!"'
+					'One thing you immediately notice is how different their builds are; Ivan is much taller than Vitek, but Vitek is much broader in the shoulders and looks far more muscular.'
+					'The guys do the customary glove bump before the match and then go to their corners, receiving some last-minute advice from the trainer.'
+					'When the bell rings, Vitek furiously takes swings at Ivan, without much effect. While Vitek''s punches are quite powerful, Ivan manages to dodge them easily. He dances around Vitek, jabbing only once with his right arm. It''s a very precise jab, and it hits Vitek straight across the jaw. When Vitek realizes his tactic isn''t working, the roles reverse and he leaves the offensive to Ivan.'
+					'For the remainder of the round, Ivan keeps pressuring Vitek. Vitek''s stamina is not quite as good as Ivan''s, and towards the end of the round Vitek begins to make mistakes. One swing in particular makes it past his defenses, and Vitek''s head jerked to the side as Ivan gives him another direct hit on the jaw.'
+					'At that point, the round is over and the boxers go to their corners. Vitek is getting an earful from the trainer: "Damnit, Viktor! What the hell are you doing, you need to bob and weave, make him miss or block the hits better! Don''t separate your arms too far, you''re opening yourself up way too many times!"'
+					'Ivan just has a sip of water while he waits for round 2. He still looks fresh, while Vitek is sweating profusely already.'
 
-					act 'Round 3':
+					act 'Round 2':
 						cls
 						minut += 3
 						pcs_dom += 1
 						gs 'stat'
-						'In round 3 Ivan mostly focuses his energy on trying to dodge Vitek''s assault, hoping Vitek will get tired before he does. Both guys take a few punches here and there, but once more it''s not until close to the end of the round where Ivan suddenly finds an opening and lands a powerful hit onto Vitek''s stomach. Vitek falls backwards, and lands on his ass with a loud thud.'
-						'Even the trainer is impressed by that one, and lets out an appreciative whistle before he says: "Ivan, great hit! Viktor, are you okay to continue?"'
-						'Vitek gets back up and angrily looks at Ivan, but nods: "I''m alright."'
-						'The trainer nods: "Very well, carry on then."'
-						'After that hit, Vitek is noticeably more quiet and tries to dodge and evade Ivan''s blows more often, while Ivan tries to push his advantage and puts a lot of energy into trying to find an opening. When the third round ends, both of the guys are sweating and panting heavily. While you find yourself appreciating their sweat covered bodies, finding yourself mildly turned on.'
+						'The second round starts like the first one ended. Ivan is light on his feet, dancing around Vitek. Meanwhile, Vitek tries to keep his cover intact while he waits for a chance to strike. Ivan gets in some light blows with his left, but Vitek shrugs them off and moves in close for a combo. Ivan manages to block the blow to the head, but immediately after takes a devastating blow to the stomach.'
+						'It nearly knocks the wind out of him, and for the next few second Ivan tries to create distance between Vitek and him while he catches his breath. Vitek grins, this is the chance he had been waiting for! He keeps closing the gaps as fast as he can, and manages to get a few more good punches in, including a rather fierce one to the face. You wince in sympathy for Ivan and you''re unsure why you suddenly care about him getting punched in the face. Luckily for Ivan, the round ends and the guys go to their corners.'
+						'This time it''s Ivan who gets the majority of the instructions. The coach scolds him, while wiping the blood off his face: "Ivan, you need to keep your distance. Don''t let him get close!"'
 
-						act 'Round 4':
+						act 'Round 3':
 							cls
 							minut += 3
 							pcs_dom += 1
 							gs 'stat'
-							'When the fourth round begins, Ivan is noticeably tired and not quite as agile any more. He''s still very accurate though, and both guys land some decent hits. Ivan lets his guard down one time too many, and immediately gets punished by Vitek. After he gets punched in the stomach again, he falls to his knees for a second clutching his abdomen.'
-							'The coach sighs and scowls him again: "Ivan, keep those arms closer together and move your feet more! You look like you''re asleep!"'
-							'Even though the fight goes on for another while, it''s obvious that Ivan will lose if this carries on much longer. Vitek lands another powerful combination of punches, first hitting Ivan in the stomach to make him buckle over and then landing an uppercut on his chin to send him flying backwards.'
-							'Just when Ivan was against the ropes and Vitek rushed in to finish the fight, the coach says: "Okay, that''s enough for today. Ivan, get some rest and work on your defense. You really need to cover your body better. That last round was very weak."'
-							'Vitek scowls at the coach. "What, did I do something wrong?" He''s clearly disappointed that Ivan gets all the attention.'
-							'The trainer just shrugs. "Whatever, Vitek. You know what you''re doing."'
-
-							act 'Ask the coach who won':
+							'In round 3 Ivan mostly focuses his energy on trying to dodge Vitek''s assault, hoping Vitek will get tired before he does. Both guys take a few punches here and there, but once more it''s not until close to the end of the round where Ivan suddenly finds an opening and lands a powerful hit onto Vitek''s stomach. Vitek falls backwards, and lands on his ass with a loud thud.'
+							'Even the trainer is impressed by that one, and lets out an appreciative whistle before he says: "Ivan, great hit! Viktor, are you okay to continue?"'
+							'Vitek gets back up and angrily looks at Ivan, but nods: "I''m alright."'
+							'The trainer nods: "Very well, carry on then."'
+							'After that hit, Vitek is noticeably more quiet and tries to dodge and evade Ivan''s blows more often, while Ivan tries to push his advantage and puts a lot of energy into trying to find an opening. When the third round ends, both of the guys are sweating and panting heavily. While you find yourself appreciating their sweat covered bodies, finding yourself mildly turned on.'
+
+							act 'Round 4':
 								cls
 								minut += 3
+								pcs_dom += 1
 								gs 'stat'
-								'You approach the elderly coach and ask. "Sir, if you don''t mind me asking who won?"'
-								'He looks at you with a puzzled expression on his face, and finally says. "Won? It''s sparring, you can''t win. But if it were a real match, Ivan obviously won. In boxing the amount of hits you land are important for the scoring, it doesn''t matter how powerful they are. Ivan landed at least a dozen punches more."'
-								'Vitek overheard your conversation and comes over, snarking at the coach: "You''re kidding, right!? Ivan was done for! If you hadn''t ended the match when you did, he would''ve gone down for sure!"'
-								'The trainer lets out an exasperated gasp, and replies. "Kotov, this is not some back alley street brawl. We''re practicing a sport here, and that sport has rules. By those rules, you lost. You should learn to keep your cover up, maybe you''d do better."'
-								'Vitek angrily takes off his gloves and throws them away, before heading to the corner where the weights are. The coach sighs while he watches him walk away, and adds. "That boy is all muscle, and no brains. Such a shame, he could''ve been a good boxer with a better mindset."'
+								'When the fourth round begins, Ivan is noticeably tired and not quite as agile any more. He''s still very accurate though, and both guys land some decent hits. Ivan lets his guard down one time too many, and immediately gets punished by Vitek. After he gets punched in the stomach again, he falls to his knees for a second clutching his abdomen.'
+								'The coach sighs and scowls him again: "Ivan, keep those arms closer together and move your feet more! You look like you''re asleep!"'
+								'Even though the fight goes on for another while, it''s obvious that Ivan will lose if this carries on much longer. Vitek lands another powerful combination of punches, first hitting Ivan in the stomach to make him buckle over and then landing an uppercut on his chin to send him flying backwards.'
+								'Just when Ivan was against the ropes and Vitek rushed in to finish the fight, the coach says: "Okay, that''s enough for today. Ivan, get some rest and work on your defense. You really need to cover your body better. That last round was very weak."'
+								'Vitek scowls at the coach. "What, did I do something wrong?" He''s clearly disappointed that Ivan gets all the attention.'
+								'The trainer just shrugs. "Whatever, Vitek. You know what you''re doing."'
 
-								act '"Can I try boxing too?"':
+								act 'Ask the coach who won':
 									cls
 									minut += 3
 									gs 'stat'
-									'This looks interesting! You ask the old trainer. "This looks like fun can I come and train with you too?"'
-									'The guy grins at you and waves his arm around the room as he says: "Look around you, girl do you see any other girls here? Who would you even face when you''re sparring? Without sparring there''s no point in coming, you wouldn''t learn anything."'
-									'You already noticed that. "Well how about if I spar with the guys?"'
-									'Several of the guys who heard you talking laugh, and the trainer can''t help but hold back a smile either. "You saw the fight, imagine what would happen if someone like Kotov hits you hard. It''s too dangerous, you''d run a very serious risk of getting injured! I can''t allow it, sorry. There''s a dancing school in the other hall, maybe that''s something for you?"'
-									'After that, he apologizes and says he has to get back to training. You nod understandingly, still feeling a bit dejected that he won''t even consider letting you train with them.'
+									'You approach the elderly coach and ask. "Sir, if you don''t mind me asking who won?"'
+									'He looks at you with a puzzled expression on his face, and finally says. "Won? It''s sparring, you can''t win. But if it were a real match, Ivan obviously won. In boxing the amount of hits you land are important for the scoring, it doesn''t matter how powerful they are. Ivan landed at least a dozen punches more."'
+									'Vitek overheard your conversation and comes over, snarking at the coach: "You''re kidding, right!? Ivan was done for! If you hadn''t ended the match when you did, he would''ve gone down for sure!"'
+									'The trainer lets out an exasperated gasp, and replies. "Kotov, this is not some back alley street brawl. We''re practicing a sport here, and that sport has rules. By those rules, you lost. You should learn to keep your cover up, maybe you''d do better."'
+									'Vitek angrily takes off his gloves and throws them away, before heading to the corner where the weights are. The coach sighs while he watches him walk away, and adds. "That boy is all muscle, and no brains. Such a shame, he could''ve been a good boxer with a better mindset."'
+
+									act '"Can I try boxing too?"':
+										cls
+										minut += 3
+										gs 'stat'
+										'This looks interesting! You ask the old trainer. "This looks like fun can I come and train with you too?"'
+										'The guy grins at you and waves his arm around the room as he says: "Look around you, girl do you see any other girls here? Who would you even face when you''re sparring? Without sparring there''s no point in coming, you wouldn''t learn anything."'
+										'You already noticed that. "Well how about if I spar with the guys?"'
+										'Several of the guys who heard you talking laugh, and the trainer can''t help but hold back a smile either. "You saw the fight, imagine what would happen if someone like Kotov hits you hard. It''s too dangerous, you''d run a very serious risk of getting injured! I can''t allow it, sorry. There''s a dancing school in the other hall, maybe that''s something for you?"'
+										'After that, he apologizes and says he has to get back to training. You nod understandingly, still feeling a bit dejected that he won''t even consider letting you train with them.'
 
-									act 'Leave':gt 'gdksport', 'start'
+										act 'Leave':gt 'gdksport', 'start'
+									end
 								end
 							end
 						end
@@ -100,5 +105,63 @@ if $loc = 'gdksport':
 	end
 end
 
+if $ARGS[0] = 'School Chat':
+	cls
+	numnpc = 3
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/school/ivan1.jpg"></center>'
+	'<<$npc_notes[$static_num]>>'
+	'Ivan is part of the athletic clique in your school.'
+	if npc_rel['A3'] < 20:'You and Ivan don''t get along at all.'
+	if npc_rel['A3'] >= 20 and npc_rel['A3'] < 40:'You and Ivan don''t get along very well.'
+	if npc_rel['A3'] >= 40 and npc_rel['A3'] < 60:'You and Ivan have a normal relationship.'
+	if npc_rel['A3'] >= 60 and npc_rel['A3'] < 80:'You and Ivan have a good relationship.'
+	if npc_rel['A3'] >= 80:'You and Ivan have a great relationship.'
+
+	if pav_slut <= 50 and IvanShowerQW = 1:
+		act 'Chat':gt 'nogorslut'
+	elseif IvanShowerQW = 11:
+		act 'Chat':
+			cla
+			if rand(0,4) = 0:
+				'You begin chatting with Ivan when he leans toward you then whispers in your ear. "Tell me you''re bored <<$pcs_nickname>>."'
+				act 'Go with him':gt 'gdksport', 'Ivan_bored'
+				gs 'gschool_lessons', 'afternoon'
+			else
+				act 'Tell Ivan you''re bored':gt 'gdksport', 'Ivan_bored'
+			end
+		end
+	else
+		act 'Chat':
+			cls
+			npc_rel['A3'] += rand(5,10)
+			gs'stat'
+			if npc_rel['A3'] < 20:
+				'You speak to Ivan about a number of random experiences you had. Ivan listens to you with a moderate amount of interest.'
+			elseif npc_rel['A3'] < 80 and npc_rel['A3'] >= 20:
+				'You chat with Ivan, sharing multiple stories as Ivan happily listens and shares some thoughts on a number of them.'
+			elseif npc_rel['A3'] >= 80:
+				'You chat with Ivan, sharing multiple stories as Ivan happily listens while sharing several new stories of his own.'
+			end
+
+			act 'Go to class':gt 'gschool_lessons', 'class'
+
+			act 'Skip one of your classes':
+				cls
+				gs'stat'
+				'<center><b><font color=#00eaff>School Hallway</font></b></center>'
+				'<center><img src="images/locations/pavlovsk/school/building/gschool_hall0<<Rand(0,2)>>.jpg"></center>'
+				'You don''t feel like attending all of your classes this morning. Surely no one will miss you if you skip one of your three morning classes.'
+
+				act 'Go to girl''s bathroom':gt 'gschool_bathrooms', 'girls bathroom'
+
+				act 'Go to boy''s bathroom':gt 'gschool_bathrooms', 'boys bathroom'
+			end
+		end
+	end
+end
+
 --- IvanEv ---------------------------------
 

+ 2 - 2
locations/JuliaMilGo

@@ -1,7 +1,7 @@
 # JuliaMilGo
 gs 'stat'
 '<center><b><font color="maroon">Julia Milova, your classmate</font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 'As you approach Julia after school, she smiles at you and asks, "Hi <<$pcs_nickname>>! Want to go to my place? We can do our homework together, and maybe grab a bite to eat?"'
 
 act 'Go with Julia':
@@ -9,7 +9,7 @@ act 'Go with Julia':
 	minut += 15
 	gs 'stat'
 	'<center><b><font color="maroon">Julia Milova, your classmate</font></b></center>'
-	'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 	'You go to Julia''s apartment together, she lives just above you. During the 15 minute walk you chat about random things that happened at school that day.'
 
 	act 'Enter her apartment':gt 'JuliaMilHome'

+ 11 - 11
locations/JuliaMilHome

@@ -4,7 +4,7 @@ if BeInJulMilHome = 0:BeInJulMilHome = 1
 
 gs 'stat'
 '<center><b><font color="maroon"><<$npc_firstname[''A12'']>> <<$npc_lastname[''A12'']>></font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 'Julia has a nice room, decorated with high quality furnishings. There are books everywhere, she must really like to read.'
 
 if lernHome ! 0:
@@ -18,7 +18,7 @@ if lernHome ! 0:
 		lern += rand(3, 6)
 		intel_exp += rand(1, 2) + (mentats_dose - rand(0,mentats_dose))
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 		'You spend an hour doing your homework with Julia, and thanks to her you manage to learn quite a lot. She''s a very clever girl, and good at explaining things.'
 
 		act 'Relax after doing your homework':gt $curloc
@@ -40,7 +40,7 @@ elseif lernHome = 0:
 			pcs_breath = 0
 			eatJulMilDay = daystart
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 			'You follow her to the kitchen and have a meal together. When you''re both finished, you return to her room.'
 
 			act 'Hang out':gt $curloc
@@ -64,7 +64,7 @@ elseif lernHome = 0:
 				JulMilBestFrend += 1
 				pcs_horny += 10
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 				'You offer Julia some wine and she happily accepts, leaving the room quickly to get a corkscrew and some glasses. When she finishes pouring the wine, you propose a toast to your friendship and both have a sip. For the next half hour, the two of you enjoy the wine while sharing some juicy gossip. When the bottle is drained you both feel more than a bit tipsy and giggle happily, lying against each other on her bed.'
 
 				act 'Relax in Julia''s room':gt $curloc
@@ -77,7 +77,7 @@ elseif lernHome = 0:
 						if SexTalkJulia < 4:SexTalkJulia += 1
 
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 						'You steer the conversation towards sexual topics.'
 
 						if SexTalkJulia = 1:
@@ -90,7 +90,7 @@ elseif lernHome = 0:
 								minut += 5
 								pcs_horny += 10
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/julia/sex/outdoor.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/sex/outdoor.jpg"></center>'
 								'Julia smiles mysteriously and begins her story, "My parents send me to summer camp every year. Last year, I met a guy there... his name is Vovka. He was one of the youth councelors there, a fair bit older than me. After the day''s regular events had concluded, we found ourselves alone in the forest."'
 								'"We began to flirt a little, and then he kissed me... it was so nice to feel wanted! Then he laid me on my back, but the ground was all rough and rocky. I tried to get up, asking him if he would mind if I got down on my knees instead. He... misunderstood, and took off my skirt and panties before telling me to go down on all fours like he thought I had suggested. I didn''t have the courage to say no, and he had been so nice to me... so I did."'
 								'"Then he started to have sex with me. It was quite painful! No one ever told me about the hymen being a part of the female body, and that it tears during the first time. Honestly, the first time I had sex I just stayed bent over, hoping it would be over soon. Luckily Vovka did not last long, and he finished on the ground."'
@@ -107,7 +107,7 @@ elseif lernHome = 0:
 								minut += 5
 								pcs_horny += 10
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/julia/sex/otrad.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/sex/otrad.jpg"></center>'
 								'Julia once again smiles mysteriously and continues her story where she left off, "Remember when I told you about Vovka last time? I slept with him again, before leaving the camp! One afternoon when no one else was in the cabin, I bumped into him there. Ever since that first time he had been pestering me, wanting more sex. He was cute though, and really treated me like I was special... so I let him."'
 								'"I undressed and lay down on the bed, terribly afraid that it would hurt again. It felt a lot better though! In the beginning it was still a bit painful, but that quickly passed. He came inside me, that second time. I didn''t really get stimulated myself, probably because I was too afraid about someone walking in. Still, it was nice to feel so close to him."'
 								'"No one did enter, and he quickly left after we finished. After that, I saw him one or two more times at the camp but always with other people around, so nothing more happened between us. He lives in the city, actually. I still have his phone number somewhere, but I''m not going to call him. He''s not the one I fancy any more..." She has a dreamy look in her eyes when she says that.'
@@ -122,7 +122,7 @@ elseif lernHome = 0:
 							act 'Kiss Julia':
 								cls
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/julia/sex/julkiss.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/sex/julkiss.jpg"></center>'
 								'You kiss Julia, feeling her soft, sweet smelling lips on your lips as her nimble tongue explores inside your mouth. Her hands gently cup your boobs, and you moan softly as she begins to gently caress them.'
 
 								gs 'arousal', 'kiss', 5, 'lesbian'
@@ -131,7 +131,7 @@ elseif lernHome = 0:
 								act 'Lie back and let her':
 									cls
 									gs 'stat'
-									'<center><img src="images/characters/pavlovsk/school/girl/julia/sex/jultit.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/sex/jultit.jpg"></center>'
 									'Julia bares your chest and slowly lowers her kisses, slowly trailing her way down to your chest. You do your best to stifle your moans when she takes your nipple in her mouth, gently biting it as her fingers rub the other one. Then her fingers find their way down between your legs, pulling your clothes to the side.'
 
 									gs 'arousal', 'foreplay', 5, 'lesbian'
@@ -147,7 +147,7 @@ elseif lernHome = 0:
 										pcs_horny = 0
 										orgasm += 1
 										gs 'stat'
-										'<center><img src="images/characters/pavlovsk/school/girl/julia/sex/julick.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/sex/julick.jpg"></center>'
 										'You and Julia giddily take off your clothes and you lie back down on the bed. Julia, eager to taste you, throws her leg over your head and buries her face between your legs, grinding her pussy against your lips as she gets to work.'
 										'Feeling her tongue lapping against your pussy like her life depended on it, you don''t want to let her finish you without reciprocating. Equally enthusiastically you stick out your tongue and lick up her juices from her budding flower, and soon enough it feels like a contest as to which of you can get the other off first. Julia wins: even though you tried to fight it as long as you could, your body spasms against her tongue as you groan into her pussy in orgasm.'
 										'This sends Julia over the edge as well. Her hips squirm against your mouth, and you feel a splash of warm liquid hit you as her pussy squirts her sweet nectar all over your face. You lick up some of it, and then give Julia another deep kiss. Quickly leaving the room to wash up, you return a minute later and cuddle for a while.'
@@ -183,7 +183,7 @@ elseif lernHome = 0:
 			minut += 15
 			JulMilBestFrend += 1
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/12.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/12.jpg"></center>'
 			'You spend 15 minutes talking with Julia about whatever topics come to mind. She really is a nice girl.'
 			tiprand = rand(0, 5)
 

+ 1 - 1
locations/KatjaHome

@@ -3,7 +3,7 @@ CLOSE ALL
 cla
 *clr
 gs 'stat'
-'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_home.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_home.jpg"></center>'
 if hour >= 17 and week < 6 and kanikuli = 0 and hour < 20 or hour >= 9 and week >= 6 and kanikuli = 0 and hour < 20 or hour >= 9 and kanikuli > 0 and hour < 20:
 	'The door is opened by Katjas mum. "Hello <<$pcs_nickname>>. Kate is in her room. Come in."'
 

+ 34 - 34
locations/KatjaHomeTalk

@@ -4,7 +4,7 @@ if $ARGS[0] = '':
 	CLOSE ALL
 	gs 'stat'
 	'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-	'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 
 	if pcs_sweat >= 20:
 		'Katja wrinkles her nose "<<$pcs_nickname>>, you''re all sweaty. Do you want to use my shower?"'
@@ -29,7 +29,7 @@ if $ARGS[0] = '':
 
 					gs 'stat'
 					! WD: Correct Image path ~ "images/dush.jpg"
-					'<center><img src="images/shared/home/bathroom/dush.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/dush.gif"></center>'
 					'You kick Katja out of the bathroom and close the door. You get into the shower and begin to lather your body with a cloth.'
 					'After washing off the soap you wash your hair with shampoo. Then, rinse off the shampoo you are completely clean.'
 
@@ -51,7 +51,7 @@ if $ARGS[0] = '':
 						KatjaHorny += 10
 						KatjaLust += 1
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/katja/shower.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/shower.jpg"></center>'
 						'You and Katja undress and both climb into the shower.'
 
 						if pcs_pubes <= 3:
@@ -60,7 +60,7 @@ if $ARGS[0] = '':
 							act 'further':
 								cls
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/katja/shower2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/shower2.jpg"></center>'
 								'Katja gently rubs shampoo into your hair then rinses it out with warm shower jets.'
 
 								if KatjaLust >= 10 and KatjaHorny >= 90:
@@ -83,7 +83,7 @@ if $ARGS[0] = '':
 								KatjaHorny += 10
 								KatjaLust += 1
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/katja/lobok.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/lobok.jpg"></center>'
 								'Katja sat in the bath and you lathers your crotch (and most of your stomach and chest) with shaving gel. She takes a razor and begins to gently shave the hair between your legs.'
 
 								if KatjaLust >= 10 and KatjaHorny >= 90:
@@ -109,7 +109,7 @@ if $ARGS[0] = '':
 				if frost > 0:frost = 0
 
 				gs 'stat'
-				'<center><img src="images/shared/home/bathroom/dush.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/home/bathroom/dush.gif"></center>'
 				'Katja shows you where the toiletries are and leaves you to have a shower. You get into the shower and begin to lather your body with a cloth.'
 				'After washing off the soap you wash your hair with shampoo. Then, rinse off the shampoo you are completely clean.'
 
@@ -127,7 +127,7 @@ if $ARGS[0] = '':
 				minut += 15
 				gs 'stat'
 				'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 	!			if flag_KissEV > 3:
 	!				Act 'To continue the dispute':
 	!					cla
@@ -142,7 +142,7 @@ if $ARGS[0] = '':
 					Act 'Not to argue':
 						*clr & cla
 						flag_KissEV = 0 
-						'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_kiss.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_kiss.jpg"></center>'
 						'"We likely kissed about the same number of boys." you readily agreed. Kate breathed a sigh of relief.'
 						'"I shouldn''t have asked anyways." she said, kissing you with gratitude. '
 						act 'Further':gt 'KatjaHomeTalk'
@@ -206,7 +206,7 @@ if $ARGS[0] = '':
 				cls
 				gs 'stat'
 				'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				gs 'KatjaHomeTalk', 'hornykiss'
 			end
 
@@ -235,7 +235,7 @@ if $ARGS[0] = '':
 			act 'Tell her you''re pregnant':
 				cls
 				'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'"What? That''s so exiting! You didn''t get pregnant just to be like me, did you?" she asks playfully.'
 				*nl
 				act 'Next':gt 'KatjaHomeTalk', 'katjaknows'
@@ -253,7 +253,7 @@ if $ARGS[0] = '':
 			act 'Tell her you''re pregnant':
 				cls
 				'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'"What? That''s so exiting!'
 				*nl
 				act 'Next':gt 'KatjaHomeTalk', 'katjaknows'
@@ -275,7 +275,7 @@ if $ARGS[0] = '':
 				cls
 				gs 'stat'
 				'<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'Katja’s face lights up. "Congratulations! This is even more exciting than last time! Every time you tell me you’re pregnant, I feel even better about my own teen pregnancy. Hell, that''s probably the reason you keep getting pregnant, isn''t it?" She giggles while looking at you affectionately.'
 				*nl
 				act 'Next':gt 'KatjaHomeTalk', 'katjaknows1'
@@ -418,37 +418,37 @@ if $ARGS[0] = 'katjaknows1':
 	if KatjaSlut < 60: '"So, hot stuff. Same father as last time?"'
 	if KatjaSlut >= 60: '"Fuck, I love seeing you pregnant. I hope you''re up for having lots of babies." She blushes intensely and kisses you. "So, who put this one into you?"'
 	*nl
-	if KatjaSlut < 60 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50) and ($ChildThFath - 1 = 'Kolka')) or (($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) and ($ChildThFath - 1 = 'Stepfather')) or (($wombthfath = 'Biological Father' and npc_rel['A29'] > 50) and ($ChildThFath - 1 = 'Biological Father')):
-		'You tell Katja that the same man as before got you pregnant.'
+	if KatjaSlut < 60 and arrpos('$ChildThFath',$wombthfath) >= 0 and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50 and ) or ($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) or ($wombthfath = 'Biological Father' and npc_rel['A29'] > 50)):
+		'You tell Katja that <<$wombthfath>> got you pregnant again.'
 		'"Damn, I never thought I''d meet someone who wanted to be an incest baby factory."'
 		'"I just hope he makes you happy. It''s sometimes hard to believe that you''re the woman I fell in love with." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'	
-	elseif KatjaSlut >= 60 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50) and ($ChildThFath - 1 = 'Kolka')) or (($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) and ($ChildThFath - 1 = 'Stepfather')) or (($wombthfath = 'Biological Father' and npc_rel['A29'] > 50) and ($ChildThFath - 1 = 'Biological Father')):
-		'You tell Katja that the same man as before got you pregnant.'
+	elseif KatjaSlut >= 60 and arrpos('$ChildThFath',$wombthfath) >= 0 and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50 and ) or ($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) or ($wombthfath = 'Biological Father' and npc_rel['A29'] > 50)):
+		'You tell Katja that <<$wombthfath>> got you pregnant again.'
 		'"Damn, I never thought I''d meet someone who wanted to be an incest baby factory."'
 		'"God, you''re the hottest bitch I know. I didn''t think I could be any more in love with you." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'  
 		'After a few minutes, she breaks the kiss, but keeps her lips millimeters from yours. "Don''t let this distract from my wanting you to become his breeding bitch. I want him to keep you pregnant. I need something to masturbate about when you’re not around." As soon as she finishes speaking, her lips are magnetically pulled back to yours.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'
-	elseif KatjaSlut < 60 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50) and ($ChildThFath - 1 = 'Stepfather') or ($ChildThFath - 1 = 'Biological Father')) or (($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) and ($ChildThFath - 1 = 'Kolka') or ($ChildThFath - 1 = 'Biological Father')) or (($wombthfath = 'Biological Father' and npc_rel['A29'] > 50) and ($ChildThFath - 1 = 'Kolka') or ($ChildThFath - 1 = 'Stepfather')):
-		'Blushing, you tell Katja that a member of your family impregnated you, but not the same one as last time.'
+	elseif KatjaSlut < 60 and arrpos('$ChildThFath',$wombthfath) = arrsize($ChildThFath)-1 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50 and ) or ($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) or ($wombthfath = 'Biological Father' and npc_rel['A29'] > 50)):
+		'Blushing, you tell Katja that a member of your family impregnated you, but this time it was <<$wombthfath>>.'
 		'Her eyes widen. "wow, your family must be really close," she chuckles.'
 		'"To think I''d fall in love with a woman who lets multiple members of her own family knock her up." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'
-	elseif KatjaSlut >= 60 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50) and ($ChildThFath - 1 = 'Stepfather') or ($ChildThFath - 1 = 'Biological Father')) or (($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) and ($ChildThFath - 1 = 'Kolka') or ($ChildThFath - 1 = 'Biological Father')) or (($wombthfath = 'Biological Father' and npc_rel['A29'] > 50) and ($ChildThFath - 1 = 'Kolka') or ($ChildThFath - 1 = 'Stepfather')):
-		'Blushing, you tell Katja that a member of your family impregnated you, but not the same one as last time.'
+	elseif KatjaSlut >= 60 and arrpos('$ChildThFath',$wombthfath) = arrsize($ChildThFath)-1 and (($wombthfath = 'Kolka' and npc_rel['A34'] > 50 and ) or ($wombthfath = 'Stepfather' and npc_rel['A28'] > 50) or ($wombthfath = 'Biological Father' and npc_rel['A29'] > 50)):
+		'Blushing, you tell Katja that a member of your family impregnated you, but this time it was <<$wombthfath>>.'
 		'Her eyes widen. "wow, your family must be really close," she chuckles.'
 		'"Shit, ‘which of your family members did you like being knocked up by the most?’ might be the hottest question anyone has ever made me think of. Just when I started thinking I couldn''t love you any more." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'
 		'After a few minutes, she breaks the kiss, but keeps her lips millimeters from yours. "Don''t think I''ll forget the image of you being passed around your family like a good little slut. I need something to masturbate about when you''re not around." As soon as she finishes speaking, her lips are magnetically pulled back to yours.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'
-	elseif $wombthfath = $ChildThFath - 1 and ($wombthfath ! 'Kolka' and $wombthfath ! 'Stepfather' and $wombthfath ! 'Biological Father'):
+	elseif arrpos('$ChildThFath',$wombthfath) >= 0 and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1 and ($wombthfath ! 'Kolka' and $wombthfath ! 'Stepfather' and $wombthfath ! 'Biological Father'):
 		'"I hope he makes you happy. And that he doesn''t mind sharing you with me," she blushes. "I would hate to completely lose the woman I love." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'
-	elseif $wombthfath ! $ChildThFath - 1 and ($wombthfath ! 'Kolka' and $wombthfath ! 'Stepfather' and $wombthfath ! 'Biological Father'):
+	elseif arrpos('$ChildThFath',$wombthfath) = arrsize($ChildThFath)-1 and ($wombthfath ! 'Kolka' and $wombthfath ! 'Stepfather' and $wombthfath ! 'Biological Father'):
 		'"I''m glad you realize you''re too special to limit yourself to one man. I love you too much to let you do anything less." Her eyes widen and her cheeks redden at the realization that she just admitted she loves you. Before you can respond, she cuts you off with a passionate kiss.'
 
 		act 'Continue':minut += 10 & gt 'KatjaHomeTalk'
@@ -470,7 +470,7 @@ if $ARGS[0] = 'shower_kiss_home':
 	KatjaSlut += 1
 	KatjaHorny += 10
 	gs 'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/showerkiss.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/showerkiss.jpg"></center>'
 	'Katja gently hugs you with one hand and kisses you on the lips, you feel her soft palm on your naked pussy and her thin finger finds your clitoris begins to rub it.'
 	
 	gs 'arousal', 'kiss', 10, 'dom', 'lesbian'
@@ -493,7 +493,7 @@ if $ARGS[0] = 'shower_kiss_home':
 		if npcSex[14] = 0:npcSex[14] = 1 & girl += 1 & KatjaSlut += 5 & KatjaLust += 5
 		
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/showersex.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/showersex.jpg"></center>'
 		'You sat on the edge of the tub and open your legs to expose your wet pussy. Katja gets on her knees in front of you and gently licks your swollen red petals.'
 		'Her tongue begins to briskly caress your pussy, not forgetting about the clitoris. Soon bliss enveloped your entire body.'
 		'You notice Katja''s hand between her legs and get further turned on watching her pleasure herself while she pleasures you.'
@@ -518,7 +518,7 @@ if $ARGS[0] = 'shower_kiss_home':
 		KatjaHorny -= 10
 		KatjaLust += 1
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 		'You remove her hands and smile at her. Then you dismiss Katja, who shyly looks to the floor and leaves the bathroom.'
 
 		act 'Get out of the shower':
@@ -546,7 +546,7 @@ if $ARGS[0] = 'Sextalk':
 				KatjaHorny += 10
 				KatjaKnowBJ = 1
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'You tell Katja how you sucked dick and what it felt like. Katja blushes and bites her lip.'
 
 				act 'further':minut += 15 & gt 'KatjaHomeTalk'
@@ -566,7 +566,7 @@ if $ARGS[0] = 'Sextalk':
 				KatjaHorny += 10
 				KatjaKnowSex = 1
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'You tell Katja about the times you have had sex and how it felt. Katja blushes and bites her lip.'
 
 				act 'further':minut += 15 & gt 'KatjaHomeTalk'
@@ -587,7 +587,7 @@ if $ARGS[0] = 'Sextalk':
 				KatjaHorny += 10
 				KatjaKnowAnal = 1
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'You told Katja about the times you have had anal sex and what it felt like. Katja blushes and bites her lip.'
 
 				act 'further':minut += 15 & gt 'KatjaHomeTalk'
@@ -607,7 +607,7 @@ if $ARGS[0] = 'Sextalk':
 				KatjaHorny += 10
 				KatjaKnowKuni = 1
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'You tell Katja about the times you have had gone down on another girl and how it felt. Katja blushes and bites her lip.'
 
 				if (pcs_dom - sub + 20) < KatjaDom:
@@ -621,7 +621,7 @@ if $ARGS[0] = 'Sextalk':
 						KatjaDom += 2
 						katja_dom_sex = 1
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/kuni2.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/kuni2.jpg"></center>'
 						'Katja tells you to show her how you lick pussy, at first you are a bit confused and then you notice she is pulling her panties off. Once she has them off she opens her legs wide. "Go on <<$pcs_nickname>> show me how you do it, please."'
 						'You pause a moment more in surprise then anything, but her glistening wet pussy is enough to convince you, you lean forward and places your face between her legs and begin to lick her pussy.'
 						'You suck on her clit and slip your tongue inside of her, working her pussy for all you are worth. She begins to moan loudly and buck her hips grinding your face into her crotch. As she gets close to orgasm she grabs your hair and holds your face against her pussy, rubbing herself against your face as much as you are licking her, leaving your face coated in the juices from her pussy.'
@@ -656,7 +656,7 @@ if $ARGS[0] = 'Sextalk':
 				! WD: Uninitialised ~ 'KatjaKnowMastr'
 				KatjaKnowMastr = 1
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 				'You tell Katja how you masturbate in the bathroom. Katja blushes and bites her lip.'
 
 				if KatjaMastr = 0:
@@ -667,7 +667,7 @@ if $ARGS[0] = 'Sextalk':
 						KatjaLust += 5
 						KatjaHorny += 10
 						gs 'stat'
-						'<center><img src="images/shared/sex/mast/mastr.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/shared/sex/mast/mastr.jpg"></center>'
 						'Katja says, she also masturbates, right here in the room, fondling herself between her legs.'
 
 						act 'further':minut += 15 & gt 'KatjaHomeTalk'
@@ -684,7 +684,7 @@ if $ARGS[0] = 'Sextalk':
 					if SelfFistingKnow = 0:SelfFistingKnow = 1
 
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 					'You told Katja how you masturbate your ass and even managed to stretch it so much, that you can shove a fist into it.'
 					'Katja blushes and bites her lip.'
 
@@ -711,7 +711,7 @@ if $ARGS[0] = 'hornykiss':
 	act 'Bring your face close to hers':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/14.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/14.jpg"></center>'
 		'You move even closer to Katja''s face.'
 
 		if KatjaHorny < 50:

+ 32 - 32
locations/Katja_Tanga

@@ -3,26 +3,26 @@
 if $ARGS[0] = 'secretroom':
 	*clr & cla
 	if katschoolsex = 0: katschoolsex = 1 & ! Flag sex with Kate at the school
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga4_4.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga4_4.jpg"></center>'
 	'You hurry down the hall hand and hand with Katja towards the storage room she told you about. Each of you trying to pull up the others skirt. Once at the door she pulls out a key and unlocks the door, as she does you grab and squeeze her ass. As she pushes open the door she turns towards you and you both immediately start kissing and fondling each other. Barely avoid tumbling into the room, absently you manage to close the door and lock it as you''re all over each other.'
 	Act 'Bare her breasts':
 		*clr & cla
 		pcs_horny += 10 
 		gs'stat'
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga4_3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga4_3.jpg"></center>'
 		'As the two of you kiss, you start to unbutton her shirt, she quickly follows suit and soon both of you are topless. You stop kissing her lips and start kissing her neck, then her shoulder, leaving a trail of kisses down to her tits, where you begin to kiss, lick and suck on her nipple, your hand fondles her other breast at the same time. She moans in pleasure, at your touches.'
 		Act 'Work your way to her pussy':
 			pcs_horny += 10 
 			gs'stat'
 			*clr & cla
-			'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_10.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_10.jpg"></center>'
 			'After a few minutes of teasing her nipples you kiss your way down to her stomach, pulling off her skirt as you do. Your lips descend down her body and you begin kissing and teasing her clit with your tongue. You pull her down and gentle lay her down on her back, once she is laying down you slide two of your fingers into her wet pussy and begin to finger fuck her. She moans in pleasure, as her hands run all over her own body, as squeezes her own breasts.'
 			if (middildo = 1 or dildo = 1 or largedildo = 1 ) and pcs_vag > 15: 
 				Act 'Get dildo':
 					pcs_horny += 10 
 					gs'stat'
 					*clr & cla
-					'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_5.jpg"></center>'
 					'Katja''s pussy becomes soaking wet and you can tell she would like something bigger than your fingers in her. Reaching over to your bag you pull out your dildo and slide it up between her breasts so show her what you have in store for her. Katja''s eyes widen slightly at the sight of the dildo but she quickly pulls your hand up holding the dildo and begins to suck on the dildo. Her moans of pleasure audible as she sucks the dildo as you continue to finger fuck her.'
 					act 'Fuck Katja':
 						pcs_horny += 20 
@@ -31,7 +31,7 @@ if $ARGS[0] = 'secretroom':
 						KatjaLust += 2
 						gs'stat'
 						*clr & cla
-						'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_9.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_9.jpg"></center>'
 						'Katja, begins moaning louder and bucking her hips against your fingers. You pull the dildo out of her mouth and your fingers out of her twat. You roll her over onto her stomach, as you slide down till your face is over her ass as you slip the wet dildo into her soaking wet pussy and begin to stroke the dildo deeply in her pussy. With your other hand you pull her ass cheeks apart and being to lick her asshole. Stroking the dildo as deep into her as it will go, she moans with pleasure getting ever louder. She beings to arch her hips up trying to take even more of the dildo into herself, but there is no more to give her. Instead you stick your tongue in her ass and begin to tongue fuck her ass. This brings even louder moans and before long she starts bucking her hips as her body spasms in a intense orgasm, as she cums.'
 						act'Use dildo':
 							*clr & cla
@@ -41,7 +41,7 @@ if $ARGS[0] = 'secretroom':
 							orgasm = orgasm + 1
 							vaginalOrgasm += 1
 							gs'stat'
-							'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_7.jpg"></center>'
 							'As her quivering body subsides and her panting breath gets under control. You pull the dildo out of her pussy and your tongue out of her ass, you lay back looking at her. She gives you a dreamy smile and reaches over to take the dildo out of your hand. She gets up and sits down between your legs. She lifts them up and then drags you closer continuing to lift your hips till your butt rest just under her breasts and your shoulders and head are the only parts of your body still touching the floor. "You`re so beautiful I want to eat you out" Katja whispers, moments later she starts licking your pussy before her tongue darts inside of your pussy. As your pussy becomes soaked at her attentions you reach up and grab her hair, moaning "Yes, faster, faster." You moan and whine wanting more, for several minutes she only uses her tongue. Then she pulls her face away and slides the dildo into your sopping wet pussy and beings fucking you furiously with the dildo. With her other hand she slips one of her fingers in your ass and begins to finger fuck your ass at the same time. You can''t take it and quickly orgasm, your pussy over flowing with your juices, you feel them running down your stomach as the intense orgasm rocks your body.'
 							''
 							'After your orgasm subsides, she pulls her finger and the dildo out of you. Then she extends the dildo down to your mouth, opening your mouth as she slides the wet dildo into your mouth, as happily sucks your own pussy juices off it. Katja watches you with hungry eyes and biting her lower lip as you finish cleaning the dildo with your mouth. "That was amazing, I bet all the boys will be walking to their classes with erections thinking about what we was doing." She says and you both laugh, before getting quickly get dressed, knowing if you don''t hurry you will be late to class.'
@@ -57,7 +57,7 @@ if $ARGS[0] = 'secretroom':
 				KatjaSlut += 2
 				KatjaLust += 2
 				gs'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_8.gif"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_8.gif"></center>'
 				'Pulling your fingers out of her twat, you run your lips down her inner thighs, till your lips are back on her clit. You kiss, lick and tease her clit with your tongue, she moans in pleasure raising her hips to try and force your tongue into her, as her wetness soaks her inner thighs and your face. Finally you slip your tongue inside of her pussy, she moans loudly and bucks against your face at first. Then she reaches down and grabs your hair, holding your head in place she grinds her crotch against your face as you tongue fuck her pussy, completely covering your face with her pussy juices. After several minutes she being moaning loudly as she cums.'
 				act 'Katja returns the favor':
 					*clr & cla
@@ -65,7 +65,7 @@ if $ARGS[0] = 'secretroom':
 					orgasm += 1
 					pcs_horny = 0
 					gs'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_6.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/sex/school/tanga4_6.jpg"></center>'
 					'Katja gets up and pushes you down on all fours, then she lays down with her face between your legs under your pussy. She sucks on her fingers for a moment before lifting them up and sliding two of them into your pussy, she beings to finger fuck you, while her thumb works on your clit, she knows all the right spots. It feels amazing, it takes no time before you are moaning loudly, while your juices run down your inner thighs. Pulling her fingers out she lefts up her head and begins to lick your pussy, while her fingers still wet from your pussy slide into your asshole. First one finger and then two fingers, she eats your pussy as she finger fucks your ass. Unable to take it anymore as convulsions run throughout your body, you orgasm hard. Your legs shaking, you can barely keep yourself from collapsing on her.'
 					''
 					'Waiting until you recover from your orgasm, Katja looks at you biting her lip and says. "That was amazing, I bet all the boys will be walking to their classes with erections thinking about what we was doing in here." You both laugh as quickly get dress, knowing if you don''t hurry you will be late to class.'
@@ -80,7 +80,7 @@ end
 if $ARGS[0] = 'start':
 	gs'stat'
 	CLOSE ALL
-	'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 	'You did a quick turn, causing your skirt to twirl up. For a brief moment exposing your lack of panties. Katja''s eyes widened in surprise. "You''re not wearing panties?" She whispers to you.'
 	act 'Show her you are not wearing panties.': 
 		*clr & cla
@@ -95,10 +95,10 @@ end
 if $ARGS[0] = 'school':
 	i=rand(1,6)
 	if analplugIN = 1:
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga1_7.gif"></center>' 
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga1_7.gif"></center>' 
 		'"I''m not only not wearing panties!" You say while smiling enigmatically. You turn and lift your skirt then briefly pull apart you butt cheeks, showing Katja the plug inserted in your ass.'
 	else
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga1_<<i>>.jpg"></center>'  
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga1_<<i>>.jpg"></center>'  
 		'You looked around, checking no one else is around, then turn your ass toward Katya and bend over, showing off your bare ass and pussy, proving you''re not wearing any panties at school today.'
 	end
 	''
@@ -122,7 +122,7 @@ end
 if $ARGS[0] = 'school1':
 	*clr
 	cla
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga2.jpg"></center>'
 	'Katja only blushes in embarrassment, and covers her eyes, "You''re such a bad influence, <<$pcs_nickname>>. I always wear shorts, the boys in this school are all perverts."'
 	gs 'gschool_lessons', 'afternoon'
 end
@@ -133,7 +133,7 @@ if $ARGS[0] = 'school2':
 	pcs_horny += 10
 	KatjaSlut += 1
 	n_tanga += rand(0,1)
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga3_<<i>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga3_<<i>>.jpg"></center>'
 	'Katja looked around to make sure no one else is around, then furtively lifts up her skirt, showing her panties. "See, I am wearing panties."'
 	gs 'gschool_lessons', 'afternoon'
 end
@@ -141,13 +141,13 @@ end
 if $ARGS[0] = 'school3':
 	*clr
 	cla
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga4_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga4_1.jpg"></center>'
 	'You give a slightly disappointed frown. "So still wearing panties huh.", Katja blushes and whispers to you. "Yes but I''m not wearing a bra."'
 	Act 'Share':
 		*clr & cla
 		pcs_horny += 10 
 		gs'stat'
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga4_2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga4_2.jpg"></center>'
 		'Katja looks around to make sure that no one is watching the two of you. Then she unbuttons her shirt and pulls it open to reveal her bare breasts. With a smile you reach up and grab both her breasts in your hands and tease her nipples with your fingers, eliciting a moan of pleasure from her.'
 		if pcs_horny >= 50 and KatjaHorny >= 50 and npcSex[14] = 1 and mesec <= 0:
 			'Blushing Katja pulls away from your touch and buttons her shirt back up, but looks at you slyly and says. "I have a key to a storage closet, we can go there for a bit more privacy if you want." Giving you a hopeful look that you will agree.'
@@ -164,31 +164,31 @@ if $ARGS[0] = 'school4':
 	cla
 	!katschoolsex=1 Flag sex with Katja at the school
 	KatjaSlut += 1
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga5_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga5_1.jpg"></center>'
 	'Katja quickly lifted her skirt, showing her ass while wearing a thong. "You''re back to wearing panties again?" you cried. Katja hissed at you. "So? It''s not like you haven''t seen everything before."'
 	act 'Denied':
 		*clr & cla
 		pcs_horny += 10 
 		n_tanga+=1 & ! local variable
-		'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga_kiss1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga_kiss1.jpg"></center>'
 		'Dejected at her reaction. "Fine, whatever.", You said as you turned to go. Katja afraid that she had offended you, grabs your hand and pulls you into a passionate kiss. "Don''t pout sweety, I''m sorry. Let me make it up to you." she says.'
 		act 'Watch':
 			*clr & cla
 			pcs_horny += 10 
 			if n_tanga = 1: 
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga5_2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga5_2.jpg"></center>'
 				'Katja sits down on the floor and parts her legs as she pulls aside her panties.'
 			elseif n_tanga = 2:
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga5_3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga5_3.jpg"></center>'
 				'Turning away from you and bending over Katja lifts up her skirt and pulls down her panties, showing you her lovely ass and pussy. Hearing someone coming she quickly pulls her panties back up and straightens up her skirt, as she smiles to you shyly.'
 			elseif n_tanga => 3:
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga5_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga5_4.jpg"></center>'
 				'Turning away from you and bending over Katja lifts up her skirt and pulls down her panties, showing you her lovely ass and pussy. She starts to pull up her panties as you say pouting. "Is that it?"'
 				act '«What that''s all?»':
 					*clr & cla
 					pcs_horny += 10 
 					Katja_tanga = 1 & ! 1 = Katya without panties 0 = in panties
-					'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga5_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga5_5.jpg"></center>'
 					'Katja looks over her shoulder at you, biting her lower lip she looks around to make sure no one is around and with a mischievous smile. Pulls her panties down further letting them drop around her ankles. "To hell with panties then." She quickly gathers her panties off the floor and sticks them in her purse. Then she twirls in front of you, giving you a fantastic view of her pussy and bare ass.'
 					if KatjaSlut > 80 and n_tanga => 4: param = 1 & ! not come up with another way to switch to the next elseif 
 					gs 'gschool_lessons', 'afternoon'
@@ -206,7 +206,7 @@ if $ARGS[0] = 'school5':
 	pcs_horny += 10 
 	Katja_tanga = 1 & ! 1 = Katya without panties 0 = in panties
 	Katja_tanga_end = 1 & ! Flag of the end of the Event-to start the mini `s Event
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/tanga6_<<i>>.jpg"></center>'  
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/tanga6_<<i>>.jpg"></center>'  
 	'Without any embarrassment Katja pulls up her skirt and shows you her pussy. "Like what you see?" She asks with a teasing smile.'
 	gs 'gschool_lessons', 'afternoon'
 end
@@ -216,18 +216,18 @@ if $ARGS[0] = 'dance':
 	gs'stat'
 	tangaday = daystart & ! tangaday to operate once a day
 	i=rand(1,3)
-	'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco2_<<i>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco2_<<i>>.jpg"></center>'
 	'You lift the edge of your skirt up and flashed your pussy in front of Katja. "I showed you mine, now show me yours.".'
 	act 'Ask to see': 
 		*clr & cla
 		if KatjaSlut <= 20:
 			KatjaHorny += 10 
-			'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco3.jpg"></center>'
 			'But Katja only blushed in embarrassment, clasping her hands. "I''m not as brave as you to go to a dance without my panties on."'
 		elseif KatjaSlut <= 40:
 			pcs_horny += 10
 			KatjaHorny += 10
-			'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco4.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco4.jpg"></center>'
 			'Katja looked around to make sure no one was watch and then turns away and partially bends over lifting her skirt. Showing you she was wearing a thong and giving you a nice view of her ass.'
 		elseif KatjaSlut <= 60:
 			pcs_horny += 10
@@ -235,10 +235,10 @@ if $ARGS[0] = 'dance':
 			KatjaSlut += 1
 			if katja_disco_Foto = 0:
 				katja_disco_Foto = 1 & !The flag in the photo
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco5_1.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco5_1.jpg"></center>'
 				'Katja unbuttons her shirt and exposes her pretty bra. A moment later there is a brief flash as someone takes a picture, you quickly look around but can''t tell who took the picture.'
 			else
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco5_2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco5_2.jpg"></center>'
 				'Katja unbuttons her shirt and exposes her pretty bra.'
 			end
 		elseif KatjaSlut <= 80:
@@ -246,24 +246,24 @@ if $ARGS[0] = 'dance':
 				pcs_horny += 10					
 				KatjaHorny += 10
 				KatjaSlut += 1
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco6_1.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco6_1.jpg"></center>'
 				'Katja resolutely lifts her dress up to her neck,  showing not only her cute little panties, but her beautiful bare breasts. Pulling her dress back down she says. "Now show me your tits."'
 				if pcs_horny > 70 or alko > 1:
 					Act 'Show your tits': 
 						*clr & cla 
-						'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco6_2.jpg"></center>' 
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco6_2.jpg"></center>' 
 						'Laughing, you pull aside your dress and reveal one of your bare breasts. Katja looks at you wanting more. "I showed you both of mine." You smile and reply "Yeah but your wearing panties and I wasn''t."'
 						act 'Move away': gt'gdkin'
 					end
 				end	
 				act 'Tease her': 
 					*clr & cla 
-					'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco6_3.jpg"></center>' 
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco6_3.jpg"></center>' 
 					'You pull at the edge of your dress, exposing just a bit of one of your nipples. Katja indignant squeaks."Hey I showed you mine.",  You responded with a laugh "I already showed you my pussy, so that makes us even."'
 					act 'Move away': gt'gdkin'
 				end
 			else 
-				'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco6_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco6_4.jpg"></center>'
 				'You began to look on with anticipation, but Katja just pulls down her top showing a little extra cleavage before stopping. After seeing your disappointed look,  she sticks out her tongue and turns away. That redheaded bitch you think and nearly say it, but you hold your tongue.'
 			end
 		else
@@ -271,7 +271,7 @@ if $ARGS[0] = 'dance':
 			KatjaHorny += 10
 			KatjaSlut += 1
 			katja_disco_end = 1 &!Event at the end of the disc
-			'<center><img src="images/characters/pavlovsk/school/girl/katja/katja_disco7_<<i>>.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/katja/katja_disco7_<<i>>.jpg"></center>'
 			'Katja does not hesitate and lifts the hem of her skirt, showing you her bare pussy.'
 		end
 		act 'Move away': gt'gdkin'

+ 4 - 4
locations/Katlake

@@ -2,7 +2,7 @@
 
 cls
 gs 'stat'
-'<center><img src="images/locations/city/residential/lake/kat.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/kat.jpg"></center>'
 'The warm rays of sun on your naked body feel nice, but at the same time... you have nothing to do! You get bored just lying there and kill the time by looking around you, examining the other beach-goers.'
 'After a few minutes, a beautiful girl lies down near you. She''s truly gorgeous, and you can''t help but stare in her direction every once in a while.'
 
@@ -51,7 +51,7 @@ if $ARGS[0] = 'kat':
 	*clr
 	gs 'stat'
 	minut += 30
-	'<center><img src="images/locations/city/residential/lake/kat.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/kat.jpg"></center>'
 	'Kat already noticed you walking towards her, and gives you a little wave as you approach her.'
 	'She smiles: "Hi <<$pcs_nickname>>, how''s it going?"'
 
@@ -82,7 +82,7 @@ if $ARGS[0] = 'voleybol':
 	agil_exp += 1
 	react_exp += 1
 	gs 'stat'
-	'<center><img src="images/locations/city/residential/lake/voleybol.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/voleybol.jpg"></center>'
 	'"Hey, Kat! Want to go play some volleyball over there? Those girls look like they could use some competition!" you say.'
 	'The other girls gladly accept your challenge, happy to play together against others instead of just playing against each other.'
 	'You spend the next half hour in a fierce competition, and have a lot of fun playing volleyball with Kat on your team.'
@@ -115,7 +115,7 @@ if $ARGS[0] = 'key':
 	kat += 10
 	minut += 60
 	gs 'stat'
-	'<center><img src="images/locations/city/residential/lake/sun.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sun.jpg"></center>'
 	'While you''re sunbathing, you suddenly feel very dizzy and nauseated. You try to stand up and get help, but faint before you get very far.'
 	''
 	'"Take it easy, <<$pcs_nickname>>!" you hear Kat''s voice in the darkness. "You''re safe, just relax!"'

+ 54 - 54
locations/Komp

@@ -3,7 +3,7 @@ if $ARGS[0] = 'start':
 	cls
 	elektro += 5
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'Your computer boots up, and soon you''re looking at your operating system''s main screen.'
 
 	act 'Play Solitaire (0:20)':gt 'Komp', 'pasians'
@@ -40,11 +40,11 @@ if $ARGS[0] = 'brows':
 	gs 'stat'
 	if internet = 0:
 		'<center><b>Browser</b></center>'
-		'<center><img src="images/shared/accessories/computer/eror.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
 		'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
 	else
 
-		'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 		'You go to your favourite start page, while you try to decide on what you want to see right now.'
 
 		'A blinking banner for a <a href="exec:GT ''Komp'',''agent''">real estate agency</a> keeps popping up in the corner.'
@@ -81,7 +81,7 @@ if $ARGS[0] = 'sale':
 	internet -= 1
 
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You go to a popular website where people can post advertisements for free. You could post an advertisement here.'
 	if obkvsdam >= 1 and housr ! 0: 'You placed an advertisement to rent out your apartment. You should probably check every once in a while to see if anyone responded.'
 
@@ -125,7 +125,7 @@ if $ARGS[0] = 'remont':
 	elektro += 3
 	internet -= 1
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You''re currently browsing the website of a local interior designer. They claim they can remodel houses so fast, it''s done by the time you leave the computer! Surely a joke...'
 
 	if housr = 1:
@@ -214,17 +214,17 @@ if $ARGS[0] = 'porno':
 	
 	if internet = 0:
 		'<center><b>Browser</b></center>'
-		'<center><img src="images/shared/accessories/computer/eror.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
 		'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
 
 		act '<B>Close the browser</B>':gt 'Komp','start'
 	elseif sisterHere > 0 and $loc = 'bedrPar':
-		'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 		'You shouldn''t watch porn with your sister in the room, she would notice for sure!'
 
 		act 'Leave this website':gt 'Komp', 'brows'
 	else
-		'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 		'You go to a porn site and browse for a few minutes, trying to find a hot video.'
 
 		act 'Watch porn':
@@ -234,7 +234,7 @@ if $ARGS[0] = 'porno':
 			pcs_mood += rand(10, 20)
 			internet -= 1
 			gs 'stat'
-			'<center><img src="images/shared/accessories/computer/porno.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/porno.jpg"></center>'
 			'You find a video you think you''d enjoy, and spend some time watching it. Wow, that girl is so lucky...'
 			
 			gs 'arousal', 'voyeur', 60
@@ -262,7 +262,7 @@ if $ARGS[0] = 'masturbate':
 	end
 
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/kompmas.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/kompmas.jpg"></center>'
 	'You get comfortable in front of your computer and with one hand begin to fondle your breasts, while you click on a link to something really dirty.'
 	'You let go of the mouse and start rubbing your pussy, imagining you''re the woman in the video. The fantasy and your touching are getting you all hot and bothered.'
 	
@@ -292,7 +292,7 @@ if $ARGS[0] = 'pasians':
 	pcs_mood += rand(10, 20)
 
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You entertain yourself for about twenty minutes, playing a game of solitaire on the computer.'
 
 	act 'Play for another 20 minutes':gt 'Komp', 'pasians'
@@ -308,7 +308,7 @@ if $ARGS[0] = 'znak':
 	elektro += 3
 	internet -= 1
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You enter a dating site, and immediately see all sorts of profiles of both men and women.'
 	'The guys on this site are rather cute! If you''re single, you could try contacting one. Who knows, maybe you''ll meet the man of your dreams through here!'
 
@@ -374,7 +374,7 @@ if $ARGS[0] = 'kabtv':
 	elektro += 3
 	internet -= 1
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You check out the website of the local cable TV provider. A subscription for cable TV costs 300 <b>₽</b> per month, payable on the 25th.'
 	''
 
@@ -418,7 +418,7 @@ if $ARGS[0] = 'foto':
 	elektro += 3
 	internet -= 1
 	gs 'stat'
-	'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 	'You''re currently on Russia''s biggest social network site, "Assbook". Almost everyone has an account here, probably including the girl you took that photo of the other day!'
 	'"Maybe if I can find her, I can blackmail her", you think to yourself. "This photo is very raunchy, after all... I bet she would hate to see it published, if she''s important!"'
 	'You can''t help but rub your pussy every now and then while you look at it. You''ll probably keep a copy of this for yourself, either way!'
@@ -480,14 +480,14 @@ if $ARGS[0] = 'rabota':
 
 	if internet = 0:
 		'<center><b>Browser</b></center>'
-		'<center><img src="images/shared/accessories/computer/eror.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
 		'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
 
 		act '<B>Close the browser</B>':gt 'Komp','start'
 
 	else
 
-		'<center><img src="images/shared/accessories/computer/komp.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
 
 		if komprabota = 0 and gorodokKomp = 0:
 			'You find a job vacancy, on a legit looking website. It reads: "Wanted! <b>URGENTLY!</b> Female underwear model, for a photoshoot. Pay: 2000 <b>₽</b> cash."'
@@ -534,7 +534,7 @@ if $ARGS[0] = 'rabota':
 				cls
 				minut += 5
 				gs 'stat'
-				'<center><img src="images/shared/accessories/computer/camwhore1.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore1.jpg"></center>'
 				'You click the button and get taken to the full job description.'
 				'<i>For this job, you will have to expose your body in front of customers, fulfilling their wishes. Payment is completely based on a tip system: customers on the website can buy tokens, which they can use to tip girls they enjoy watching.'
 				'How much money you make is up to you: the better you are at attracting viewers, and the more you are willing to do to please them, the more likely they will be to tip you.'
@@ -550,7 +550,7 @@ if $ARGS[0] = 'rabota':
 					mfccum = 0
 					minut += 20
 					gs 'stat'
-					'<center><img src="images/shared/accessories/computer/camwhore2.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
 					'You fill out the questionnaire and register yourself as a webcam model. Ten minutes later, you have already been approved and you can now earn money as a webcam girl.'
 					'Of course, you will need a functioning webcam to do this! If you don''t have one yet, they are fairly cheap to buy at most local supermarket chains.' 
 					act 'Leave this website':gt 'Komp','brows'
@@ -577,7 +577,7 @@ if $ARGS[0] = 'study':
 	internet -= 1
 	intel_exp += 1 + (mentats_dose - rand(0,mentats_dose))
 	'<center><b>The Institute for Education Measurement</b></center>'
-	'<center><img src="images/shared/accessories/computer/study.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/study.jpg"></center>'
 	'You spend an hour on the IEM website, reading news articles and educational blogs. You feel a bit smarter afterwards.'
 	
 	act 'Leave this website':gt'Komp','brows'
@@ -593,7 +593,7 @@ if $ARGS[0] = 'kursak':
 	kursovik = kursovik + RAND(pcs_intel/20,pcs_intel/10)
 	if kursovik > 100:kursovik = 100
 	'<center><b>Coursework</b></center>'
-	'<center><img src="images/shared/accessories/computer/kursak.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/kursak.jpg"></center>'
 	'It may be boring, but it still needs doing! You spend an hour doing coursework, and <<kursovik>>% of it is now finished.'
 
 	act 'Leave this website':gt 'Komp','brows'
@@ -608,7 +608,7 @@ if $ARGS[0] = 'agent':
 	internet -= 1
 	gs 'stat'
 	'<center><b>Real estate agency</b></center>'
-	'<center><img src="images/shared/accessories/computer/agent.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/agent.jpg"></center>'
 	'You''re currently at the website of the largest real estate agency in the area.'
 	'They have apartments available in the residential district. Renting one would cost you 6000 <b>₽</b> for 30 days.'
 	''
@@ -640,7 +640,7 @@ if $ARGS[0] = 'mfc':
 		tokens = 0
 		camclients = 0
 		gs 'stat'
-		'<center><img src="images/shared/accessories/computer/camwhore2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
 		'It''s that time of the month! You feel sick to your stomach and the cramps hurt pretty badly from time to time... you''re in no condition to earn money showing off your body.'
 		act 'Leave this website':gt 'Komp','brows'
 	elseif sisterHere = 0 or $loc ! 'bedrPar':
@@ -648,7 +648,7 @@ if $ARGS[0] = 'mfc':
 			cls
 			minut += 2
 			gs 'stat'
-			'<center><img src="images/shared/accessories/computer/camwhore3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
 			'You enter your own chatroom on the website. You currently have <<camclients>> viewers.'
 
 			act 'Continue':gt 'komp','startpagemfc'
@@ -671,7 +671,7 @@ if $ARGS[0] = 'mfc':
 		tokens = 0
 		camclients = 0
 		gs 'stat'
-		'<center><img src="images/shared/accessories/computer/camwhore2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
 		'You can''t do any webcam activities with your sister in the room!'
 		act 'Leave this website':gt 'Komp','brows'
 	end
@@ -689,7 +689,7 @@ if $ARGS[0] = 'startpagemfc':
 	else
 		cls
 		gs 'stat'
-		'<center><img src="images/shared/accessories/computer/camwhore3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
 		'You casually chat with the <<camclients>> visitors currently in your chatroom. Once you turn on your webcam, things will probably get busier.'
 		act 'Turn on your webcam':gt 'komp','waitclients'
 		act 'Collect your earnings and leave':
@@ -1029,16 +1029,16 @@ if $ARGS[0] = 'waitclients':
 	gs 'stat'
 
 	if topmfc = 1 and backmfc = 1:
-		'<center><img src="images/shared/accessories/computer/camwhore3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
 	end
 	if topmfc = 0 and backmfc = 1:
-		'<center><img src="images/shared/accessories/computer/camwhore4.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore4.jpg"></center>'
 	end
 	if topmfc = 1 and backmfc = 0:
-		'<center><img src="images/shared/accessories/computer/camwhore5.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
 	end
 	if topmfc = 0 and backmfc = 0:
-		'<center><img src="images/shared/accessories/computer/camwhore6.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore6.jpg"></center>'
 	end
 	
 	tokenpay = tokens / 2
@@ -1066,7 +1066,7 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore7.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore7.jpg"></center>'
 			'You stand up and lean forward, so your boobs are in full view of the camera. You slowly take off your bra and give the camera a sweet smile.'
 			'While you sit back down and toss your bra to the ground, you hear the donation sound several times. Your visitors enjoyed that!'
 			
@@ -1100,7 +1100,7 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore8.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore8.jpg"></center>'
 			'You make a show of pointing the camera at your groin, and slowly push your panties down your legs. The chat explodes for a moment, with several visitors complimenting your body, and a few more making lewd comments on what they would do to you if they were with you right now.'
 			'As promised, you receive some tokens.'
 			
@@ -1134,7 +1134,7 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore10.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore10.jpg"></center>'
 			'You adjust your camera and lie down on your bed, and start to knead your tits and pinch your nipples playfully. When you hear the donation sound, you smile sweetly at the camera and thank the person who donated personally, immediately prompting a second visitor to donate as well.'
 
 			gs 'arousal', 'porn', 2, 'exhibitionism'
@@ -1167,7 +1167,7 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore12.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore12.jpg"></center>'
 			'You lie down comfortably and put your hand between your legs, gently rubbing your labia with your fingers. You put some effort into showing how wet you are already, which is met with some enthusiastic chatter.'
 			
 			gs 'arousal', 'porn', 2, 'exhibitionism'
@@ -1206,25 +1206,25 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 			if analplugIN = 1:
-				'<center><img src="images/shared/accessories/computer/camwhore19.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore19.jpg"></center>'
 			end
 			if pcs_vag = 0 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore18.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore18.jpg"></center>'
 			end
 			if pcs_vag > 0 and pcs_vag <= 10 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore13.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore13.jpg"></center>'
 			end
 			if pcs_vag > 10 and pcs_vag <= 15 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore14.jpg"></center>'
 			end
 			if pcs_vag > 15 and pcs_vag <= 25 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore15.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore15.jpg"></center>'
 			end
 			if pcs_vag > 25 and pcs_vag <= 35 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore16.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore16.jpg"></center>'
 			end
 			if pcs_vag > 35 and analplugIN = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore17.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore17.jpg"></center>'
 			end
 			'Aww, what a sweetheart! You smile at the camera and do what your client wants. He delivers on his promise as well, sending some tokens your way. The rest of the chat is thanking him too, everyone wanted to see that!'
 			
@@ -1264,7 +1264,7 @@ if $ARGS[0] = 'waitclients':
 			gs 'stat'
 			if analplugIN = 0:
 				if cumsumass > 39:
-					'<center><img src="images/shared/accessories/computer/camwhore74.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore74.jpg"></center>'
 					'You turn your back to the camera and pull your ass cheeks aside, showing everyone your battered anus. When you push softly, you suddenly hear the chat exploding.'
 					'"Oh my god, is that sperm!?" someone wonders.'
 					'"Definitely! What a whore!" someone else adds.'
@@ -1276,7 +1276,7 @@ if $ARGS[0] = 'waitclients':
 					gs 'stat'
 					
 				else
-					'<center><img src="images/shared/accessories/computer/camwhore20,<<rand(0,7)>>.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore20,<<rand(0,7)>>.jpg"></center>'
 					'You bite your lip for a second, trying to think of a way to get out of his request. Then, you sigh and show them your rectum. It''s obviously quite used to having objects shoved in, something your audience notices immediately.'
 					'Then your greed overcomes you. They already know... you might as well earn some money by showing them properly, right?'
 					'You pull your ass cheeks aside, giving them a good view of your worn out anus.'
@@ -1286,7 +1286,7 @@ if $ARGS[0] = 'waitclients':
 					
 				end
 			else
-				'<center><img src="images/shared/accessories/computer/camwhore21.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore21.jpg"></center>'
 				'You smile to yourself, he''s going to love what you have in store for him!'
 				'"I''m sorry", you tell him, explicitly mentioning his username as well. "I can''t right now..."'
 				'Then you turn around, and show him the large plug you currently have shoved inside you. You wiggle your ass seductively at the camera, and hear the donation sound mere seconds later.'
@@ -1367,10 +1367,10 @@ if $ARGS[0] = 'waitclients':
 			gs 'stat'
 
 			if backmfc = 1:
-				'<center><img src="images/shared/accessories/computer/camwhore4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore4.jpg"></center>'
 			end
 			if backmfc = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore5.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
 			end
 			'Even though no one requested you to do so, you figure showing off your nice boobs might get some more viewers into the channel. You slowly take off your bra and wiggle your breasts seductively at the camera.'
 			
@@ -1402,9 +1402,9 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 			if alko >= 4:
-				'<center><img src="images/shared/accessories/computer/camwhore80.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore80.jpg"></center>'
 			else
-				'<center><img src="images/shared/accessories/computer/camwhore9.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore9.jpg"></center>'
 			end
 			'You chat with your visitors for a little while, but begin to play with your boobs absent-mindedly in a slow moment. It feels quite nice! You knead your boobs and play with them more and more intently, almost completely forgetting about the camera.'
 			
@@ -1422,10 +1422,10 @@ if $ARGS[0] = 'waitclients':
 			backmfc = 0
 			gs 'stat'
 			if topmfc = 1:
-				'<center><img src="images/shared/accessories/computer/camwhore5.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
 			end
 			if topmfc = 0:
-				'<center><img src="images/shared/accessories/computer/camwhore6.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore6.jpg"></center>'
 			end
 			'You know that the fewer clothes you have on, the more visitors will be inclined to check out your channel. You slowly take off your panties in front of the camera, rewarding the viewers already in your channel to a free show when you expose your naked pussy to them.'
 			
@@ -1453,7 +1453,7 @@ if $ARGS[0] = 'waitclients':
 			end
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore11.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore11.jpg"></center>'
 			'You get bored during a slow moment in the chat, and begin to play with your pussy without giving it another thought.'
 			'"How does that feel, girl?" one of your visitors asks. "I bet you love fingering yourself, with a bunch of strangers watching you!" another adds.'
 			'Giving them a defensive smile, you shrug and reply with one hand, while you keep rubbing your clit slowly with the other.'
@@ -1499,7 +1499,7 @@ if $ARGS[0] = 'waitclients':
 			end  
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore45.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore45.jpg"></center>'
 			'You put two fingers in your mouth and generously cover them in saliva, and then turn your back to the camera. Much to the appreciation of your viewers, you give them a short preview of what an anal show would look like from you. You finger your anus for the camera for a little while, giving your viewers a happy smile the whole time.'
 			
 			gs 'arousal', 'porn', 2, 'exhibitionism'
@@ -1539,7 +1539,7 @@ if $ARGS[0] = 'waitclients':
 			end  
 			gs 'stat'
 
-			'<center><img src="images/shared/accessories/computer/camwhore80.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore80.jpg"></center>'
 			'You''re getting too turned on, and need to slow yourself down a little!'
 			'You tightly pinch your nipples and pull hard on them. It hurts a lot, and the sharp pain lowers your excitement by quite a lot. Nevertheless, your viewers enjoy the free show and have no idea you actually did that for your own good.'
 			
@@ -1555,7 +1555,7 @@ if $ARGS[0] = 'waitclients':
 		backmfc = 1
 		karta += tokens/2
 		gs 'stat'
-		'<center><img src="images/shared/accessories/computer/camwhore2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
 		'Suddenly you hear the handle of your door creak, and an annoyed voice shouting: "<<$pcs_nickname>>, what the hell!? Why is the door locked? Let me in!"'
 		'Oh crap, it''s your sister! "Sorry everyone, show''s over!" you whisper to the camera, and you slap your laptop shut. You quickly put your clothes back on and open your door, trying to avoid the scrutinizing gaze of your sister.'
 		'When she''s no longer paying attention to you, you open your laptop again and find yourself in the main lobby of MyFreeCams. You''re a bit bummed that you couldn''t get more out of that session, but cash in your earnings.'
@@ -1566,7 +1566,7 @@ if $ARGS[0] = 'waitclients':
 end
 
 if $ARGS[0] = 'bank':
-	'<center><img src="images/shared/accessories/computer/online_bank.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/shared/accessories/computer/online_bank.jpg"></center>'
 	if karta + bankDebtLimit >= 10:
 		*pl
 		

+ 7 - 7
locations/Kwlake1

@@ -3,7 +3,7 @@
 cls
 pcs_horny += 15
 gs 'stat'
-'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake1.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake1.jpg"></center>'
 'While you and Kat walk along the beach, you notice a rock shaped like a dildo.'
 '"Hah, look at that!" you interrupt her, while you point at the rock. It really does look exactly like a stone cock!'
 'Kat picks it up and laughs, looking at it from all angles. Then she brings it to her mouth and pretends to give it a blowjob, with a wicked grin on her face.'
@@ -15,7 +15,7 @@ act 'Fondle her':
 	cla
 	*clr
 	kat += 5
-	'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake2.jpg"></center>'
 	'Kat still has her lips wrapped around the stone dildo when you approach her and begin to rub her pussy, out of the blue. How could you not?'
 	'She smiles at you but doesn''t stop you, grinding her hips against your hand eagerly. Then you drop to your hands and knees and lick her pussy eagerly, while she keeps pretending to suck the stone cock.'
 
@@ -27,7 +27,7 @@ act 'Fondle her':
 	act 'Lie down':
 		cla
 		*clr
-		'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake3.jpg"></center>'
 		'You lie down on the sand and Kat gives you the rock, giving you a lewd wink: "Your turn! And my turn... yummy!"'
 		'She then lowers her head to your groin and really digs in, eagerly licking your wet slit. Without even realizing it, you bring the stone cock to your mouth and begin to suck on it like she had before, while Kat licks you enthusiastically.'
 		'You don''t even notice the man approaching you until he''s very close to you, awkwardly rubbing his cock. You''re fairly sure you''ve never seen him before, but he''s obviously very aroused from the show you and Kat put up!'
@@ -41,7 +41,7 @@ act 'Fondle her':
 			cla
 			*clr
 			kat += 5
-			'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake4.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake4.jpg"></center>'
 			'You give the man a ''come hither'' sign with your hand while Kat keeps licking you, and you can see the indecisiveness in his eyes. Should he approach you, or Kat?'
 			'Kat answers the question for him, eagerly grabbing his cock and taking it into her mouth. Now that she''s ignoring you, you quickly decide to do the next best thing - and thrust the stone cock deep inside your welcoming snatch.'
 
@@ -53,7 +53,7 @@ act 'Fondle her':
 			act 'Get closer to Kat':
 				cla
 				*clr
-				'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake5.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake5.jpg"></center>'
 				'After you masturbate yourself to an orgasm, you can''t help but get very aroused again by watching Kat get pounded by this total stranger. You pull the stone cock out of your wet cunt and order Kat: "Lick my juices off it!"'
 				'Kat doesn''t need any more encouragement and closes her lips around the rock, moaning: "Mmmm... delicious!"'
 
@@ -63,7 +63,7 @@ act 'Fondle her':
 				act 'Continue':
 					cla
 					*clr
-					'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake6.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake6.jpg"></center>'
 					'Then the guy groans for Kat to get on all fours, which she does without a doubt. Your eyes bulge when you see her take his cock in her ass without a complaint.'
 					'"<<$pcs_nickname>>!" Katja says intently.'
 					'"Wa... what?" you mutter, lost in your own thoughts for a moment.'
@@ -76,7 +76,7 @@ act 'Fondle her':
 					act 'Continue':
 						cla
 						*clr
-						'<center><img src="images/locations/city/residential/lake/sex/kwlake1/kwlake7.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake1/kwlake7.jpg"></center>'
 						'Once Kat is fully satisfied, the guy pulls his cock out of her ass and cums in her mouth. Kat swallows it automatically, and smiles apologetically: "Sorry! Next time I''ll try to leave you some..."'
 
 						gs 'arousal', 'end'

+ 5 - 5
locations/Kwlake2

@@ -2,7 +2,7 @@
 
 cls
 gs 'stat'
-'<center><img src="images/locations/city/residential/lake/sex/kwlake2/kwlake1.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake2/kwlake1.jpg"></center>'
 'While you''re walking along the beach, Kat notices a man sitting by himself.'
 '"Let''s tease him for a while!" Kat suggests, pointing at the guy.'
 
@@ -12,7 +12,7 @@ act '"Alright!"':
 	cla
 	*clr
 	kat += 5
-	'<center><img src="images/locations/city/residential/lake/sex/kwlake2/kwlake2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake2/kwlake2.jpg"></center>'
 	'You smile at Kat''s mysterious look and follow her lead, sitting down near him. Kat immediately pulls you in for a kiss, and slowly rubs your wet slit while the two of you make out.'
 	'The man watches the two of you intently, and you notice a bulge forming in his groin.'
 	'"Look at him!" Kat moans into your mouth between kisses. "Don''t you want him to fuck you, <<$pcs_nickname>>? Because I know I do..."'
@@ -28,7 +28,7 @@ act '"Alright!"':
 		cla
 		*clr
 		kat += 5
-		'<center><img src="images/locations/city/residential/lake/sex/kwlake2/kwlake3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake2/kwlake3.jpg"></center>'
 		'When you nod, Kat smiles at you and whispers: "Ask him over, come on!"'
 		'She begins to lick your pussy in plain view of the man, while she keeps encouraging you to invite him.'
 		'You beckon the man to come closer. He quickly jumps up and runs over to you, his penis bobbing up and down as he goes.'
@@ -44,7 +44,7 @@ act '"Alright!"':
 			cla
 			*clr
 			stat['vaginal'] += 1
-			'<center><img src="images/locations/city/residential/lake/sex/kwlake2/kwlake4.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake2/kwlake4.jpg"></center>'
 			'After a few minutes the man pulls away from you. He makes you lie down on the sand, so he can fuck you.'
 			'Kat is all for the idea and encourages you to do what he says. Meanwhile the man helps you down and brings his cock to your snatch, penetrating you with one fierce thrust.'
 			'He begins to fuck you rather roughly, but Kat gives you no opportunity to complain and immediately grinds her wet snatch against your mouth.'
@@ -61,7 +61,7 @@ act '"Alright!"':
 				*clr
 				spafinloc = 12
 				gs 'cum_manage'
-				'<center><img src="images/locations/city/residential/lake/sex/kwlake2/kwlake5.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kwlake2/kwlake5.jpg"></center>'
 				'When the man is close to his orgasm, he pulls his cock out of you and stands up. As he guides his dick to your mouth, Kat immediately takes his place between your legs and caresses your clit with her tongue.'
 				'You can barely hold yourself from smothering Kat as you ride her face, getting very close to your own orgasm as well. At that moment, the man demands your full attention again shoves his cock back into your mouth. Mere seconds later, he fills your mouth with his sperm while Kat licks you to an amazing orgasm.'
 				'After you recover, you kiss Kat on the mouth, sharing the stranger''s sperm with her.'

+ 12 - 12
locations/LBZhouse

@@ -7,7 +7,7 @@ $LBZH_sex={
 		gs'stat' 
 		mrapic=rand(0,7)
 		!'<<mrapic>>'
-		'<center><img src="images/characters/pavlovsk/vadim/sex/mitka<<mrapic>>.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/vadim/sex/mitka<<mrapic>>.gif"></center>'
 		''
 		gs 'arousal', 'vaginal', 10, 'sub'
 		gs 'stat'
@@ -22,7 +22,7 @@ $LBZH_anal={
 		gs'stat' 
 		mrapic=rand(0,7)
 		!'<<mrapic>>'
-		'<center><img src="images/shared/sex/anal/doggy/anal<<mrapic>>.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal<<mrapic>>.gif"></center>'
 		''
 		gs 'arousal', 'anal', 10, 'sub'
 		gs 'stat'
@@ -40,9 +40,9 @@ $LBZH_bj={
 		cls
 		gs'stat' 
 		mrapic=rand(0,12)
-		'<center><img src="images/shared/sex/blowjob/bj<<mrapic>>.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj<<mrapic>>.gif"></center>'
 		'You take a cock in your mouth and start sucking it, you get busy working up and down his dick with your mouth. Your lips lock tightly around his shaft while your tongue licks and plays with his dick.'
-		'Soon <<$bname>> starts to pant heavily and moans out. "<<$pcs_nickname>>, I''m about to cum."'
+		'Soon <<$boydesc>> starts to pant heavily and moans out. "<<$pcs_nickname>>, I''m about to cum."'
 
 		gs 'arousal', 'bj', 5, 'sub'
 		gs 'stat'
@@ -54,7 +54,7 @@ $LBZH_bj={
 			gs'stat'
 			mrapic=rand(0,10)
 			!'<<mrapic>>'
-			'<center><img src="images/shared/sex/cum/mouth/cum<<mrapic>>.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum<<mrapic>>.gif"></center>'
 			'You pull his dick out of your mouth and keep working on it with your hand, within moments spurts of hot sperm splashes on your face and in your mouth.'
 			'Once the last of the cum shoots in your mouth you swallow it all down.'
 
@@ -81,13 +81,13 @@ $LBZH_end={
 		pcs_makeup = 1
 		if frost > 0:frost = 0
 		gs'stat'
-		'<center><img src="images/shared/home/bathroom/dush.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/dush.gif"></center>'
 		'In the bathroom you take a shower to clean up.'
 
 		act 'Get out of the bathroom':
 			cls
 			gs'stat'
-			'After you are done washing you get dressed and blow <<$bname>> a kiss before you leave.'
+			'After you are done washing you get dressed and blow <<$boydesc>> a kiss before you leave.'
 			
 			
 			act'Leave':
@@ -105,7 +105,7 @@ temp_anal=0
 temp_hj=0
 temp_guy=0
 
-gs 'npcgeneratec', 0, $bname, rand(18,34)
+gs 'npcgeneratec', 0, $boydesc, rand(18,34)
 gs 'boyStat', $npclastgenerated
 
 'He takes you back to his house, once you are both safely inside you start kissing.'
@@ -116,7 +116,7 @@ act'Sex':
 	tiprand=rand(1,100)
 
 	if tiprand<=70:
-		'<<$bname>> gently pushes your shoulders down and you kneel in front of him, waiting for his hard shaft.'
+		'<<$boydesc>> gently pushes your shoulders down and you kneel in front of him, waiting for his hard shaft.'
 		dynamic $LBZH_bj
 	     
 		act'Masturbate':
@@ -125,9 +125,9 @@ act'Sex':
 			temp_guy+=1
 			gs'stat' 
 			mrapic=0
-			'<center><img src="images/shared/sex/handjob/hj<<mrapic>>.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj<<mrapic>>.gif"></center>'
 			'You immediately take his cock in your hand and start jerking him off.'
-			'Soon <<$bname>> starts to pant heavily and moans out. "<<$pcs_nickname>>, I''m about to cum."'
+			'Soon <<$boydesc>> starts to pant heavily and moans out. "<<$pcs_nickname>>, I''m about to cum."'
 			
 			gs 'arousal', 'hj', 5, 'sub'
 			gs 'stat'
@@ -136,7 +136,7 @@ act'Sex':
 			dynamic $LBZH_anal
 		end
 	else
-	'<<$bname>> undresses you and lays you down on the bed'
+	'<<$boydesc>> undresses you and lays you down on the bed'
 	dynamic $LBZH_sex
 	dynamic $LBZH_anal
 

+ 7 - 7
locations/LCporn

@@ -5,7 +5,7 @@ if $ARGS[0] = 'firsttime':
 	*clr
 	LCEugenefirst = 1
 	gs 'stat'
-	'<center><img src="images/locations/city/industrial/bbq/sex/lakefirsttime.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/lakefirsttime.jpg"></center>'
 	'You follow Eugene through the kitchen, into the pantry. The soiled mattress in the corner makes you believe that you''re not the first girl Eugene has brought here.'
 	'Eugene looks at you a bit hesitantly, and there is an awkward pause when she closes the door behind you.'
 	'Then she breaks the silence and says: "Look. This may scare you a bit, but I don''t know how else to say it, so..."'
@@ -20,7 +20,7 @@ if $ARGS[0] = 'firsttime':
 		sexpartkno = 1
 		pose = 1
 		gs 'stat'
-		'<center><img src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
 		'You smile reassuringly at Eugene, and she immediately grows more bold and begins to paw at your clothes. She impatiently helps you undress and lies down on the mattress with you.'
 		
 		dynamic $sexudo
@@ -49,7 +49,7 @@ end
 if $ARGS[0] = 'sex':
 	cla
 	*clr
-	'<center><img src="images/locations/city/industrial/bbq/sex/lakefirsttime.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/lakefirsttime.jpg"></center>'
 	'Eugene guides you to the pantry again, and looks at you expectantly while she begins to undress.'
 	'"So! How may I fill you today, <<$pcs_nickname>>?" she laughs, exposing her semi-hard cock to you.'
 
@@ -61,7 +61,7 @@ if $ARGS[0] = 'sex':
 		sexpartkno = 1
 		pose = 1
 		randlcpic = rand(1, 7)
-		'<center><img src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
 		'Eugene grins at you and says: "I was hoping you''d say that. Come on, let me help you."'
 		'She helps you take your clothes off, and lies down on the mattress with you. She slips her <<dick>>cm <<$dick_girth>> dick into your pussy and starts to fuck you. She spends time rubbing your clit while she fucks you, to keep you nice and wet.'
 
@@ -83,7 +83,7 @@ if $ARGS[0] = 'sex':
 		npc_rel['A89'] += 5
 		gs 'boyStat', 89
 		randlcpic = rand(10, 16)
-		'<center><img src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
 		'You silently take your clothes off, and drop to your knees in front of her. "Excellent choice!" she laughs.'
 		'Eugene is fairly dominant, and impatiently shoves her <<dick>>cm <<$dick_girth>> cock deep into your mouth as soon as you close your lips around the tip. She grabs you firmly by the hair and begins to thrust her hips back and forth, making you take her whole length repeatedly. After a while, with her cock deep down your throat, you begin to wonder how it''s possible that she still hasn''t reached orgasm yet... guys never last this long!'
 
@@ -104,7 +104,7 @@ if $ARGS[0] = 'sex':
 		*clr
 		npc_rel['A89'] += 5
 		randlcpic = rand(10, 16)
-		'<center><img src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/<<randlcpic>>.jpg"></center>'
 	    'Once you are undressed she grabs some cooking oil and lubes up her dick and then your ass really well. With that done she bends you over and lifts one of your legs off the ground. You put your hands against the wall to help keep your balance. Then she slides her <<dick>>cm <<$dick_girth>> dick into your ass and start pounding it balls deep almost at once.'				
 		gs 'arousal', 'anal', 40, 'futa'
 
@@ -123,7 +123,7 @@ if $ARGS[0] = 'toiletsex':
 	*clr
 	gs 'npcgeneratec', 0, 'Stranger from the diner restroom', rand(18,32)
 	gs 'boyStat', $npclastgenerated
-	'<center><img src="images/locations/city/industrial/bbq/sex/toiletsexend.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/toiletsexend.jpg"></center>'
 	'You come up from behind the man, and suddenly wrap your arms around him. He''s startled for a moment, but relaxes when you whisper: "That''s a nice cock you have there! I bet we could have some fun together, you and I..."'
 	'The man gives you a dirty grin when he feels you wrap your fingers around his cock, but he wants more. He takes you by the hand and guides you to the rear entrance of the diner, into the back alley. He positions you against the dumpsters and eagerly shoves his cock inside you.'
 	'Not a surprise, he barely lasts any time at all, with in a few minutes he grunts and pulls out of your pussy and shoots his load all over you ass. With out a further word he goes back into the cafe.'

+ 16 - 16
locations/LCwork

@@ -11,7 +11,7 @@ if $ARGS[0] = 'start1':
 
 	if pcs_vag < 20:pcs_vag += randguycafe
 
-	'<center><img src="images/locations/city/industrial/bbq/sex/bjride.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/bjride.gif"></center>'
 	'You walk up to the group of men and give them a friendly smile as you say: "Good evening, sirs. I will be your waitress tonight."'
 	'The guys understand what you mean immediately, and all get up and guide you to their car. They make you sit in the back seat between two of them, and drive off. During the trip you constantly have hands on your body. The men fondle your boobs and legs eagerly, shove their hands underneath your clothes and fondle your pussy.'
 	'Before long one of them pulls down his pants and drags your head over to his dick. You suck his dick for the rest of the ride, while the other guys grab at your breasts, ass, or even fingers you pussy.'
@@ -25,7 +25,7 @@ if $ARGS[0] = 'start1':
 	act 'Continue':
 		*clr
 		cla
-	    '<center><img src="images/locations/city/industrial/bbq/sex/1b.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/1b.jpg"></center>'
 	    'When you arrive at a house, the guys begin to strip you almost as soon as you walk through the door. You also noticed there was several of them waiting at the house for their friends to return with you. All six of them proceed to fuck all of your holes, two or three at a time. They take turns and swap holes fairly randomly, for a good two hours.'
 	    'At least they was nice enough to all wear condoms and use lubricant, still six guys all taking turns, fucking each of your three holes leaves them aching and gapping.'
 		gs 'arousal', 'bj', 120, 'sub', 'gangbang', 'prostitution'
@@ -41,7 +41,7 @@ if $ARGS[0] = 'start1':
 	    act 'Continue':
 		    cls
 		    gs 'stat'
-		    '<center><img src="images/locations/city/industrial/bbq/sex/1b.jpg"></center>'
+		    '<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/1b.jpg"></center>'
 		    'By the end, the guys tell you to kneel down in the center of the room and to bring them all to orgasm. You kneel down in the middle of them, sucking one off while your jerk off two more, it takes you a bit to work your way around and get them all off, by the time the last one cums on you, your entire body is covered in cum.'
 		    'Fortunately, they allow you to take a shower and one of them even drives you home. He pays you <<randLCpay>> <b>₽</b>, and says he hopes you''ll be their waitress again some day.'
 			gs 'arousal', 'bj', 10, 'sub', 'gangbang', 'prostitution'
@@ -69,7 +69,7 @@ if $ARGS[0] = 'start2':
 
 	guy += 1
 	dynamic $venerasiak
-	'<center><img src="images/locations/city/industrial/bbq/sex/2a.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/2a.jpg"></center>'
 	'You walk up to the older man and give him a friendly smile as you say: "Good evening, sir. I will be your waitress tonight."'
 	'The older man gives you a dirty grin, and ogles your body for a few seconds before he says: "Very good, you will do. Follow me."'
 	'You get into a van with the older man, and are a bit surprised when he enters a narrow side road that leads into the woods. You''re in the middle of nowhere here!'
@@ -84,7 +84,7 @@ if $ARGS[0] = 'start2':
 	act 'Continue':
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/industrial/bbq/sex/2b.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/2b.jpg"></center>'
 		'At long last, the man pulls out of you and pulls your out of the van down onto your knees, where he shoots his load all over your face. It''s surprisingly large amount of sperm, he must have been saving up for some time!'
 		'He says kindly: "You were great! Get back in the van, I''ll give you a ride back."'
 		'With a wink he adds: "As long as you don''t get any cum on the seats, my wife would kill me!"'
@@ -113,7 +113,7 @@ if $ARGS[0] = 'start3':
 	if pcs_vag < 18:pcs_vag += 2
 
 	dynamic $venerasiak
-	'<center><img src="images/locations/city/industrial/bbq/sex/3a.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/3a.jpg"></center>'
 	'You walk up to the two men in the corner and give them a friendly smile as you say: "Good evening, sirs. I will be your waitress tonight."'
 	'One of the men laughs when the other begins to place another order, and says: "She''s not here for drinks, Dmitri."'
 	'His friend''s eyes light up, and he''s all giddy with anticipation when the three of you leave the diner. The two of them lead you to a car and drive you to an apartment in the city industrial district.'
@@ -132,7 +132,7 @@ if $ARGS[0] = 'start3':
 	act 'Continue':
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/industrial/bbq/sex/3b.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/3b.jpg"></center>'
 		'Finally in a small mercy they both pull out of you and put you on your knees where they jerk off, covering your face and tits with their sperm. As soon as they finish, before you even have a chance to do anything, one of them grabs you roughly by the hair and drags you out of the apartment naked, while the other throws your clothes out into the hallway. With that done, they toss <<randLCpay>> <b>₽</b> out and slam the door. Leaving you standing naked, with your clothes and money scattered around the hall floor and your ass and pussy aching from the rough fucking.'
 		'Wincing you gather up the money and put on your clothes, then you head down the stairs out of the apartment.'
 
@@ -160,7 +160,7 @@ if $ARGS[0] = 'start4':
 	dynamic $venerasiak
 	
 	if lcwork_counter = 0:
-		'<center><img src="images/locations/city/industrial/bbq/sex/4a.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/4a.jpg"></center>'
 		'As you walk up to the couple, you notice the guy grinning deviously while his girlfriend''s face is a deep shade of red. Before you can get a word in, the guy looks at his girl and grins: "What do you say, babe? She''s cute, right?"'
 		'The girl is still blushing, but can''t keep her eyes off you and nods quietly. The guy looks at you and smiles: "She''s a bit shy. It''s our first time bringing someone else in the bedroom. You''re our waitress, right? Are you ready to go?"'
 		'They live in the residential area of the city, and it''s a short drive there. You''re fairly sure the guy is the one in charge of this relationship, and when you arrive at their home, you''re proven right.'
@@ -183,7 +183,7 @@ if $ARGS[0] = 'start4':
 			lcwork_counter = 1
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/industrial/bbq/sex/4b.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/4b.jpg"></center>'
 			'After an extended period of fucking your ass, she asks you a lot of questions about how getting fucked in the ass feels, if it hurts, if you enjoy it. You tell her the truth that it can be very pleasant if the guy is gentle. The boyfriend seems to really enjoy what you are telling her.'
 			'After some time the guy pulls out of your ass and shoots his hot load all over your stomach. The girl laps some of it up, but leaves most of it on you and politely thanks you for a lovely evening. She''s adorable!'
 			'As you get up, the guy is very happy. He grins and says: "Thanks, you were great! She''s still a bit shy, but at this rate it won''t be long before I can properly introduce her to my buddies, if you know what I mean."'
@@ -197,7 +197,7 @@ if $ARGS[0] = 'start4':
 		end
 	else
 !!second visit, only happens if you have seen them once.
-		'<center><img src="images/locations/city/industrial/bbq/sex/couple.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/couple.jpg"></center>'
 		'As you walk up to the couple, you remember them from before. The guy grins at you and the girl smiles. "Told you we would be back, are you ready to go?"'
 		'They live in the residential area of the city, and it''s a short drive there. You remember it form last time, they inform you, she is ready to try anal, but wants you to coach her through it and get her ready.'
 		'Once inside he watches the two of you have fun. He waits until you bring his girlfriend to a orgasm.'
@@ -211,7 +211,7 @@ if $ARGS[0] = 'start4':
 		act 'Continue':
 			cla
 			*clr
-			'<center><img src="images/locations/city/industrial/bbq/sex/couple1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/couple1.jpg"></center>'
 			'At that point he comes over and sits on the couch with the two of you. He lubes up his dick, while you lube up her asshole. You help her ease down on his dick, he is very gentle with her and lets her lead the action. You help by licking her clit while she rides his dick with her ass.'
 			'By the sounds of it, you can tell she kinda likes it but also finds it a bit painful. Before long she gets off him and says she can''t take anymore and applogises to him. He tells her it''s ok they can try again some other time. With that he bends you over the couch and starts to fuck you in the ass. He is fairly gentle with you, but not nearly as much as he was with his girlfriend, which is kinda sweet.'
 			
@@ -223,7 +223,7 @@ if $ARGS[0] = 'start4':
 			act 'Continue':
 				cla
 				*clr
-				'<center><img src="images/locations/city/industrial/bbq/sex/couple2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/couple2.jpg"></center>'
 				'After an extended period of fucking your ass, she watches obviously a bit envious by how easily you are taking his anal fucking.'
 				'Some time later the guy shoots his load deep in your ass, pulling his dick out, she catches a few drops of sperm from his dick with her tongue.'
 				'After you get dressed and he walks you to the door, he grins and says: "Thanks, you were great! She''s still a bit shy, but at this rate it won''t be long before I can properly introduce her to my buddies, if you know what I mean. Maybe we can do it again next week and you can help her get use to anal." He gives you a dirty wink and gives you <<randLCpay>> <b>₽</b> as he walks you out.'
@@ -248,7 +248,7 @@ if $ARGS[0] = 'start5':
 	randLCpay = rand(500, 2000)
 	girl += 1
 	dynamic $venerasiak
-	'<center><img src="images/locations/city/industrial/bbq/sex/5.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/5.jpg"></center>'
 	'The girl looks fairly shy, and seems a bit taken aback when you walk up to her and say: "Hello, miss. I will be your waitress tonight."'
 	'She''s a bit hesitant, afraid to ask if that means what she thinks it means, but relaxes when you take her by the hand and purr: "So where are you taking me tonight, sweetie?"'
 	'As it turns out, she lives in the residential district. She holds your hand while you walk there, but doesn''t say much. When you arrive at her place, she apologizes: "I''m sorry... I umm... I''ve never done this before..."'
@@ -283,7 +283,7 @@ if $ARGS[0] = 'start6':
 	if pcs_vag < 18:pcs_vag += 1
 
 	dynamic $venerasiak
-	'<center><img src="images/locations/city/industrial/bbq/sex/6a.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/6a.jpg"></center>'
 	'You walk up to the older man and give him a friendly smile as you say: "Good evening, sir. I will be your waitress tonight."'
 	'"My waitress, huh?" he laughs. "That''s adorable!"'
 	'He leads you to his car and drives to his house in the residential district. For the next hour and a half, he alternates between fucking your wet clit, and making you lick your own juices off his hard cock repeatedly. He doesn''t go soft once during all this! Such stamina.'
@@ -299,7 +299,7 @@ if $ARGS[0] = 'start6':
 	act 'Continue':
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/industrial/bbq/sex/6b.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/sex/6b.jpg"></center>'
 		'Finally, the man''s cock erupts in your mouth, and he doesn''t explain when you take his cock out of your mouth after a few spurts and release the rest onto your boobies.'
 		'He gives you a satisfied grin and lets you use his shower to clean yourself up before you go. He peeks into the shower once or twice while you''re washing yourself, but you don''t care, it''s not like he hasn''t seen you naked before!'
 		'He gives you <<randLCpay>> <b>₽</b>, and walks you to the door when you''re all freshened up.'
@@ -318,7 +318,7 @@ if $ARGS[0] = 'Kitchen':
 	LCwork2 += 1
 	money += 175
 	LCwork2day = daystart
-	'<center><img src="images/locations/city/industrial/bbq/kitchenworkcafe.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/industrial/bbq/kitchenworkcafe.jpg"></center>'
 	'Eugene gives you a warm smile and says: "That would be great, thanks!"'
 	'You spend the next hour and a half washing dishes, cleaning the floors, chopping vegetables and cooking food. When you''re finished, Eugene gives you your well-earned 175 <b>₽</b>.'
 

+ 10 - 16
locations/LakeBoyDy

@@ -1,10 +1,9 @@
 # LakeBoyDy
-$LBD_ride={
+
+if ARGS[0] = 'ride':
 	act'Go with the massive man':
 		cls
-		if belgangQW<100:belgangQW=100
 		minut+=15
-		minut+=5
 		gs'stat'
 
 		'You quickly get dressed and follow the fat man to his car. He guides you to an old Mitsubishi Pajero, and takes place behind the wheel while he invites you to relax in the passenger seat. Once you get in the car, he puts his hand on your knee as he starts the engine.'
@@ -19,10 +18,9 @@ $LBD_ride={
 			act'Kiss him':gt 'BelSex'
 		end
 	end
-}
-
+end
 
-$LBD_go={
+if ARGS[0] = 'go':
 	act'Try to get away':
 		cls
 		minut+=5
@@ -34,7 +32,6 @@ $LBD_go={
 				cls
 				minut+=5
 				pcs_dom-=1
-				if belgangQW<1:belgangQW=1
 				gs'stat'
 				'You assure him that you really need to get going, trying to hide the fact that you are indeed scared of him.'
 				'The guy lets go of your wrist and gives you an amicable smile: "Alright, girl. It''s a small world... I''m sure I will see you around". You rub your wrist as you leave, he was really quite rough about it.'
@@ -42,7 +39,6 @@ $LBD_go={
 			end
 		end
 
- 
 		act'You''re not nervous...':
 			cls
 			minut+=5
@@ -51,14 +47,13 @@ $LBD_go={
 			'The guy chuckles, and pulls you against his hairy chest. His sweaty hands are mauling your ass now.'
 			'As he feels you up, he tries to coax you into joining him, as if he owns you already: "I know you''re not, baby. You should come with me, I''ll show you a good time. You won''t regret it."'
 			
-			dynamic $LBD_hand
+			act 'Resist':gt 'LakeBoyDy', 'slap'
 			 
 			if pcs_dom>0:
 				act'Apologize and leave':
 					cls
 					minut+=5
 					pcs_dom-=1
-					if belgangQW<2:belgangQW=2
 					gs'stat'
 					'You assure him that you really need to get going, trying to hide the fact that you are in fact quite scared of him.'
 					'The guy lets go of your ass and gives you an amicable smile: "Alright, girl. It''s a small world... I''m sure I will see you around". You rub your wrist as you leave, he was really quite rough about it.'
@@ -67,9 +62,9 @@ $LBD_go={
 			end
 		end
 	end
-}
+end
 
-$LBD_hand={
+if ARGS[0] = 'slap':
 	act'Tell him to let go':
 		cls
 		minut+=5
@@ -96,6 +91,7 @@ $LBD_hand={
 				act'Offer him money':
 					cls
 					minut+=5
+					npc_QW['A113'] = 1
 					if money<10000:
 						belgangPay=50000
 					end
@@ -110,7 +106,6 @@ $LBD_hand={
 					act'Agree to pay him tomorrow':
 						cls
 						minut+=5
-						belgangQW=9000
 						belgangday=daystart
 						gs'stat'
 				 
@@ -134,11 +129,10 @@ $LBD_hand={
 							if sashaBeliSex=0:sashaBeliSex=1&guy+=1
 							spafinloc = 12
 							gs 'cum_manage'
-							belgangQW=1000
 							belgangday=daystart
 							belgangPay-=100
 							gs'stat'
-							'<center><img src="images/characters/pavlovsk/vadim/sex/beachblow.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/vadim/sex/beachblow.jpg"></center>'
 							'You take his flacid cock in your mouth and begin to suck, slowly feeling it harden inside your mouth. Once you''ve warmed him up properly, he takes control of you and begins to fuck your throat, while you do your best to surpress your gag reflex. A few minutes later, he shoots his thick ropes of cum deep down your throat, pulling his cock out only to drop the last few gobs onto your tongue. It tastes quite bitter, and you have to force yourself to hide the disgust on your face. When you look over at his accomplice, you see he shot a video of you performing a deepthroating blowjob on your phone. He sends the video to a different number, and then deletes the file from your phone.'
 							'The fat man casually pushes you on your back while he gets up. He looks down at you and indifferently says: "Not bad, whore. You still have a lot to learn but we will work on that. That blowjob just took 100 <b>₽</b> off your debt, so you now have <<belgangPay>> left to pay me. Don''t look for us, we''ll come find you when it''s time for you to work off more of your debt. By the way: my name is Vadim Bely, but whores like you can call me Mr. Bely. Call me anything else and you''ll be punished."'
 							'The two men leave you to collect your thoughts and walk away, taking a seat a bit further down at the beach. The younger guy pulls out his phone and watches the video of you giving the fat man a blowjob again, while the fat man makes a call with your passport in his hand - you hope he''s not digging up more info on you while you quickly gather your things and get ready to leave.'
@@ -154,7 +148,7 @@ $LBD_hand={
 			end
 		end
 	end
-}
+end
 
 --- LakeBoyDy ---------------------------------
 

+ 2 - 2
locations/LariskaGo

@@ -2,7 +2,7 @@
 gs'stat'
 
 '<center><b><font color="maroon"><<$npc_firstname[''A13'']>> <<$npc_lastname[''A13'']>></font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/13.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/13.jpg"></center>'
 'You went to Larissa and went to her home.'
 
 act 'Go with Lariska':
@@ -11,7 +11,7 @@ act 'Go with Lariska':
 	gs'stat'
 
 	'<center><b><font color="maroon"><<$npc_firstname[''A13'']>> <<$npc_lastname[''A13'']>></font></b></center>'
-	'<center><img src="images/characters/pavlovsk/school/head/13.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/13.jpg"></center>'
 	'You 15 minutes walking down the street to the house of Larisa discussing all the small stuff.'
 
 	act 'Log in to the apartment':gt'LariskaHome'

+ 8 - 8
locations/LariskaHome

@@ -11,7 +11,7 @@ CLOSE ALL
 gs'stat'
 
 if (hour >= 14 and hour < 19 and week < 6) or (hour >= 9 and hour < 19 and (week >= 6 or kanikuli > 0)):
-	'<center><img src="images/characters/pavlovsk/school/girl/lariska/home_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/home_1.jpg"></center>'
 	if beInLariskaHome = 0:
 		'Entering the apartment, you see that it is decorated in a Japanese style.'
 		'"You have a nice apartment, Lariska." you said while looking around with interest.'
@@ -24,7 +24,7 @@ if (hour >= 14 and hour < 19 and week < 6) or (hour >= 9 and hour < 19 and (week
 			cls
 			minut += 5
 			gs'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/lariska/lariskamother.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/lariskamother.jpg"></center>'
 			'You knock on the dorr of Lariska''s apartment and a smart looking brunette opens the door. You looked helplessly into her impressive cleavage and let out an involuntary sigh.'
 			'"Hello, are you looking for Lariska?" the woman asked you with a smile.'
 			'"Yes, I''m <<$pcs_nickname>>." you reply tearing your eyes away from her nearly exposed breasts.'
@@ -36,7 +36,7 @@ if (hour >= 14 and hour < 19 and week < 6) or (hour >= 9 and hour < 19 and (week
 	minut += 5
 	act 'Continue':gt 'LariskaHome','in'
 else
-	'<center><img src="images/characters/pavlovsk/school/girl/lariska/lariskamother.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/lariskamother.jpg"></center>'
 	if lariskaMotherKnown = 0:
 		minut += 5
 		gs'stat'
@@ -59,7 +59,7 @@ end
 if $ARGS[0] = 'in':
 	cls
 	gs'stat'
-	'<center><img src="images/characters/pavlovsk/school/girl/lariska/home_1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/home_1.jpg"></center>'
 	if frost > 0: frost = 0
 	if lernHome ! 0:
 		act 'Do homework':
@@ -79,7 +79,7 @@ if $ARGS[0] = 'in':
 		cls
 		minut += 10
 		gs'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/13.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/13.jpg"></center>'
 		'You talked with Lariska about whatever came to mind.'
 		
 		act 'Continue':gt 'LariskaHome','in'
@@ -94,7 +94,7 @@ if $ARGS[0] = 'in':
 	if pcs_energy <= 60:
 		act 'Ask for a drink':
 			cls
-			'<center><img src="images/characters/pavlovsk/school/head/13.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/13.jpg"></center>'
 			'Lariska casually waves towards the door, "You know where the kitchen is, help yourself"'
 			act 'Go and get a drink':
 				cls
@@ -112,7 +112,7 @@ if $ARGS[0] = 'in':
 				elseif week >= 6:
 					lariskaRand = rand(1,100)
 					doorpeek = 1
-					'<center><img src="images/characters/pavlovsk/school/girl/lariska/home_2.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/home_2.jpg"></center>'
 					if doorlocked = 1 or lariskaBDSM > 0:
 						doorlocked = 0
 						'On your way back from the kitchen, you noticed that the room next to the toilet was closed, curiosity took over and you tried to open it. You opened the door and you saw a room full of what appears to be BDSM accessories and toys.'
@@ -147,7 +147,7 @@ if $ARGS[0] = 'in':
 			cls
 			minut += 5
 			gs'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/13.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/13.jpg"></center>'
 			'You decided to talk to Lariska about joining the professional volleyball team.'
 			'"Lariska, you are an excellent volleyball player. Coach Mikheil Nikolayevich has a professional team, why don''t you ask to join it?" you asked your friend.'
 			'"Well, I guess I''m afraid he''ll tell me I''m not good enough. I''ve seen him tell other good players they aren''t good enough to play for him.'

+ 120 - 90
locations/LariskaStart

@@ -6,7 +6,7 @@ if $ARGS[0] = 'start':
 	gs'stat'
 	
 	'<center><b><font color = maroon><<$npc_firstname[$static_num]>> <<$npc_lastname[$static_num]>></font></b></center>'
-	'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 	'<<$npc_notes[''A<<numnpc>>'']>>'
 
 	if grupTipe[numnpc] = 5:'<<$npc_firstname[$static_num]>> She is one of the school outcasts.'
@@ -29,60 +29,56 @@ if $ARGS[0] = 'start':
 	'Now that you have beaten Christina, she suddenly wants to talk. She does look more confident, happier and more active. Maybe she wants to thank you for beating up the bully?'
 	lariskaQwestDay = daystart + 1
 
-	act 'Go for Lariska':
+	act 'Follow Lariska':
 		cls
 		minut += 5
 		gs'stat'
-		'You walk over to Lariska. She leads you around the corner, then pushes you against the wall. She plants a strong hand on your chest to keep you in position and looks around to make sure you are alone.'
-
+		'You followed Larissa, but when you turned behind the corner, somebody caught you by your sides and pushed you against the wall.'
 		act 'Do nothing':
 			cls
 			minut += 5
 			pcs_horny += 10
 			gs'stat'
-			'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_1.jpg"></center>'
-			'You will quickly come to their senses and see, that pushes you to the wall Lariska Gruzdev. It is so close to your face, that you start to blush and excited.'
-			'Immediately it becomes clear, that it is not just her terribly excited, all shakes and constantly looks for fear, You will notice that. And her nose at turns her head touches your, and you unconsciously want to hug and comfort her.'
-			'You gently touch her shoulder, just ask and priobnimaya:'
-			'- Laris, what happened? You, than-the help?'
-
-			act 'Soothe':
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_1.jpg"></center>'
+			'You quickly recovered and now you could see that it is Lariska Gruzdeva who is pushing you against the wall. Her face was so close to yours, so you started blushing and becoming aroused.'
+			'Then, the penny dropped that she was not excited, but frightened. She was shuddering with fear and she was looking all around fearfully that somebody spotted you.'
+			'Her nose was touching your face, as she was turning her head from one side to other. You couldn''t help, but you wanted to hug and calm her. You were touching her gently and put your arms on her shoulders and asked:'
+			' "Larisa, what happened? How can I help you?"'
+			act 'Soothe her':
 				cls
 				minut += 5
 				gs'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_3.jpg"></center>'
-				'- Sveta ... - Larissa says and pauses.'
-				'You hug her a lot and slowly stroking the back.'
-				'- What Larisa?'
-				'Larisa calms down a bit, She takes a deep breath and start talking fast:'
-				'- <<$pcs_nickname>>, you are in danger! Zverev narkosh you want to incite ...'
-				'Now you''re in a complete stupor:'
-				'- What narkosh?'
-				'- Well, it''s not only the coach sucking, it is still in narkosh, that is foolishness trade, what-the supersteroidy bought and that they she decided to unleash on you! Tomorrow, after the section you want to catch them and rape!'
-				'As she says,, she escapes.'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_3.jpg"></center>'
+				'"Sveta ..." Larissa said and paused.'
+				'You hugged her tighter and stroked on her back gently. "What Larisa?"'
+				'"Larissa had calmed down a little, she took a deep breath and started talking quickly:'
+				'"Sveta, you are in danger! Zvereva wants to set junkies on you .. "'
+				'You were totally numb now. "What junkies?"'
+				'"Well, she gave blow job not only the trainer, but she also blew the junkies, who are selling drugs here. She also bought some super steroids and she wants to contaminate you with them! Tomorrow after the section, they want to catch and rape you!"'
+				'As soon as she said it, she ran away.'
 				lariskaHelp = 1
 				
 				if kotovLoveQW > 0:
-					act 'Call Kotovu':
+					act 'Call Kotov':
 						cls
 						minut += 5
 						gs'stat'
 						
-						'- Hello. Listen, you said, that will protect me from all? I just prepare the bases Zverev tomorrow. He wants to incite its dealers on me, that they raped me.'
-						'- That bitch, Do not worry, I know these uebkov, Nosov crap they currently takes, no one is dangerous, for me anyway! Nothing to worry about!'
+						'"Hi Vitek. Listen, you said that you can protect me from anybody. I need you help now! Zvereva is going to dig a pit on me tomorrow. She wants to set her dealers on me so that they rape me."'
+						'"That bitch! Do not worry, I know these bastards, Nosov takes his dope from them. Nobody is dangerous, for me anyway! Do not worry about anything!"'
 						
 						KotovZverHelp = 1
 						act 'Leave':gt'gdk'
 					end
 				end
-				if IvanShowerQW >= 10 and npc_rel[3] >= 60:
+				if IvanShowerQW >= 10 and npc_rel['A3'] >= 60:
 					act 'Call Prokhorov':
 						cls
 						minut += 5
 						gs'stat'
 						
-						'-	Hello, listen, me stuck here maniacs, you might not have tomorrow to conduct home after section?'
-						'-	Yes No problem.'
+						'"Hey Ivan, listen, some perverts badgering me here, could you escort me home after section tomorrow?"'
+						'"Sure, no problem Sveta."'
 						
 						IvanZverHelp = 1
 						act 'Leave':gt'gdk'
@@ -94,10 +90,10 @@ if $ARGS[0] = 'start':
 						minut += 5
 						gs'stat'
 						
-						'-	Albina hi, you can not help me, I though, that you do!'
-						'-	What happened?'
-						'-	I was pitted Zvereva narkosh!'
-						'-	Okay, do not be afraid, I''ve got a connection, Now I call, she left with nothing!'
+						'"Hi Albina, could you help me? I will make it all up for to you."'
+						'"What happened?"'
+						'"Zvereva set junkies on me."'
+						'"Okay, don''t be afraid. I''ve got contacts, I''ll call right now, she''ll go away empty-handed."'
 						
 						AlbZverHelp = 1
 
@@ -105,16 +101,32 @@ if $ARGS[0] = 'start':
 					end
 				end
 
+				if fedorKozlovQW = -15 or fedorKozlovQW >= 10:
+					act 'Call Fyodor':
+						cls
+						minut += 5
+						gs'stat'
+						
+						'"Fedor, I need your help, Christina has paid off some steroid pumping punks to rape me outside the sports center tomorrow, Can you please help me?"'
+						'"There is no way I''m letting them hurt you, I will wait for you outside the club and do all in my power to keep you safe."'
+						'"Thank you Fyodor, I knew I could count on you."'
+						
+						FyodorZverHelp = 1
+						
+						act 'Leave':gt'gdk'
+					end
+				end		
+
 				act 'Leave':gt'gdk'
 			end
 		end
 		if razradKik >= 2 and pcs_stren >= 55:
-			act 'Attack her':
+			act 'Attack':
 				cls
 				minut += 5
 				gs'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_2.jpg"></center>'
-				'You captured enemy hands lifted them up and turned to the opponent''s wall, hit in the stomach with all his strength. From the mouth of your opponent''s left screaming in pain.'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_2.jpg"></center>'
+				'You grabbed the enemy''s hands, pinned him to the wall and hit his stomach with all your might. A cry of pain flew from your opponent''s mouth.'
 				act 'See the enemy':
 					cls
 					minut += 5
@@ -122,17 +134,17 @@ if $ARGS[0] = 'start':
 					npc_rel[$static_num] = 0
 					
 					'<center><b><font color = maroon><<$npc_firstname[$static_num]>> <<$npc_lastname[$static_num]>></font></b></center>'
-					'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 					'<<$npc_notes[''A<<numnpc>>'']>>'
 
-					if grupTipe[numnpc] = 5:'<<$npc_firstname[$static_num]>> It refers to the group of outcasts.'
-					if grupTipe[numnpc] = 2:'<<$npc_firstname[$static_num]>> It refers to a group sportikov.'
+					if grupTipe[numnpc] = 5:'<<$npc_firstname[$static_num]>> belongs to a group of outcasts.'
+					if grupTipe[numnpc] = 2:'<<$npc_firstname[$static_num]>> belongs to a group of sportsmen.'
 
-					if npc_rel[$static_num] < 20:'You have a bad attitude.'
+					if npc_rel[$static_num] < 20:'You have a bad relationship.'
 					''
-					'As soon as you hit you saw, that before you Lariska and tears in her eyes. You just released her. Once you have made, Lariska screamed in your face:'
-					'"Fool! And I want to help you!" And pushing you ran.'
-					'You have five minutes standing in disbelief and think, it would be necessary at school tomorrow to apologize. And you go home.'
+					'Right away you hit the stomach, you realized that it is Lariska, who is standing in front of you. She had tears in her eyes. You unclinched her immediately. As soon as you did, Lariska yelled in your face:'
+					'"Idiot, I wanted to help you!" and she pushed you back and ran away.'
+					'You had stood still five minutes in perplexity and thought about that you should apologize at school tomorrow, before you finally got off and went home.'
 					lariskaHelp = -1
 
 					act 'Leave':gt'gdk'
@@ -152,7 +164,7 @@ if $ARGS[0] = 'end':
 		numnpc = 3
 		
 		'<center><b><font color = maroon><<$npc_firstname[$static_num]>> <<$npc_lastname[$static_num]>></font></b></center>'
-		'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 		'<<$npc_notes[''A<<numnpc>>'']>>'
 
 		if grupTipe[numnpc] = 2:'<<$npc_firstname[$static_num]>> He is one of the sporty kids.'
@@ -170,30 +182,30 @@ if $ARGS[0] = 'end':
 		end
 		''
 		pcs_horny += 10
-		'You see, that Ivan Prokhorov stands before leaving the gym smiling and looking in your direction.'
-		'- <<$pcs_nickname>>, hello - he says, and you can not help recalling the case of the soul.'
-		'He takes your handbag in hand with his bag, You and the other by the arm and leads to the output.'
-
+		'You meet Ivan Prokhorov in front of gym entrance.'
+		'He is standing there waiting for you and when he spots you, he smiles.'
+		'"Hey <<$pcs_nickname>>!" He greets you and you unwittingly remember the incident in the shower.'
+		'He takes your bag in his hand together with his own bag and puts the other hand on your arm and he leads you to the exit.'
 		act 'Go with Ivan':
 			cls
 			minut += 5
 			gs'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/19.jpg"></center>'
-			'You leave the club and see, that you are Lina.'
-			'- <<$pcs_nickname>>, wait! Help me, please, inventory in the storeroom remove, and that the coach made, and there bulb burns out! You just Flashlight Support, I rest myself!'
-			'- Em, forgive Lina, but I have to go home - you say look making allusion to Ivan.'
-			'- So let me drag all, and you <<$pcs_nickname>> and hold? - Stuck in your conversation Ivan.'
-			'- Come on, do not, I myself! - Says Lina quickly and leaves.'
-
-			act 'Going home':
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/19.jpg"></center>'
+			'You are leaving the club when you see Lina coming to you.'
+			'"<<$pcs_name>>, wait! Help me, please, to tidy up the equipment in the storage room, the trainer ordered me to do it, but the bulb burned out there. You will hold just the flashlight, and I do the rest!"'
+			'"Uhm, I''m sorry, Lina, but I must go home." You reply making a hint to Ivan.'
+			'"So let''s do it, I''ll move it and you will hold the flashlight." Ivan breaks in on your conversation.'
+			'"That''s okay, you don''t have to, I do it myself." Lina replies quickly and walks away.'
+
+			act 'Go home':
 				cls
 				minut += 15
 				gs'stat'
 				'<center><b><font color = maroon><<$npc_firstname[$static_num]>> <<$npc_lastname[$static_num]>></font></b></center>'
-				'<center><img src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/<<numnpc>>.jpg"></center>'
 				'<<$npc_notes[''A<<numnpc>>'']>>'
 
-				if grupTipe[numnpc] = 2:'<<$npc_firstname[$static_num]>> It refers to a group sportikov.'
+				if grupTipe[numnpc] = 2:'<<$npc_firstname[$static_num]>> He is one of the sporty kids.'
 
 				if npc_rel[$static_num] < 20:
 					'You avoid each other.'
@@ -207,16 +219,16 @@ if $ARGS[0] = 'end':
 					'You are best friends.'
 				end
 				''
-				'Ivan quietly bring you home.'
+				'Ivan escorts you quietly home.'
 
-				act 'Going home':gt'korrPar'
-				act 'Thank':
+				act 'Go home':gt'korrPar'
+				act 'Thank him':
 					cls
 					pcs_horny += 5
 					minut += 5
 					gs'stat'
 					gs 'boyStat', 3
-					'You have decided to thank Ivan for their assistance'
+					'You decide to thank Ivan for his assistance.'
 
 					act 'Get his dick':gt 'LariskaStart', 'IvanHelp_down'
 					act 'Kiss':
@@ -225,17 +237,16 @@ if $ARGS[0] = 'end':
 						pcs_dom += 1
 						pcs_horny += 5
 						gs'stat'
-						'<center><img src="images/shared/sex/kiss/kiss.jpg"></center>'
-						'You came up to the guy and leaned his face. Then you kissed and Ivan became passionately stroking her hands over your body.'
-
-						act 'Run a hand in his pants':
+						'<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
+						'You walk slowly to Ivan and incline your face towards his. You hug and kiss and Ivan starts stroking gently your back.'
+						act 'Run your hand into his pants':
 							cls
 							pcs_horny += 10
 							minut += 3
 							gs'stat'
 
-							'<center><img src="images/shared/sex/grab/cock2.jpg"></center>'
-							'You put his hand to a guy in his pants and felt his fingers, and his hard hot cock.'
+							'<center><img <<$set_imgh>> src="images/shared/sex/grab/cock2.jpg"></center>'
+							'You shoved your hand deeper into Ivan''s pants and your fingers are touching his big hard cock.'
 
 							act 'Masturbate':
 								cls
@@ -244,25 +255,44 @@ if $ARGS[0] = 'end':
 								stat['hj'] += 1
 								gs'stat'
 								rand1 = rand(0,2)
-								if rand1 = 0:'<center><img src="images/shared/sex/handjob/hj.jpg"></center>'
-								if rand1>=1:'<center><img src="images/shared/sex/cum/handjob/hand0,'+rand(0,1)+'.gif"></center>'
+								if rand1 = 0:'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
+								if rand1>=1:'<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand0,'+rand(0,1)+'.gif"></center>'
 								spafinloc = 13
 								gs 'cum_manage'
-								'You got it hard and hot cock out of his pants and took his hand. You started to kiss Ivan, while masturbate his penis. Finally the guy strangled groan and you have seen how the member departs from his sperm.'
+								'You pull out his hard cock from his pants and grasp it firmly with your hand. You are kissing Ivan passionately and pumping his cock up and down simultaneously. Finally, Ivan gives a groan of pleasure  you can see streams of his semen gushing out of his cock.'
 								
-								act 'Going home':gt'korrPar'
+								act 'Go home':gt'korrPar'
 							end
 
 							act 'Get his dick':gt 'LariskaStart', 'IvanHelp_down'
 						end
 
-						act 'Going home':gt'korrPar'
+						act 'Go home':gt'korrPar'
 					end
 				end
 			end
 		end
+	elseif 	FyodorZverHelp = 1:
+		'<center><b><h4><font color=#00ffe4><<"Avelina [Lina] Starov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/19.jpg"></center>'
+		'_ You leave the club then see Lina approaching you.'
+		'- <<$pcs_nickname>>, wait! Help me please, I need to move inventory in the storeroom but the light blew out. Can you please help me move it while I go and get a flashlight?'
+		'- "Erm, forgive me Lina but I have to go home." you then give Fedor a nod.'
+		'- "C''mon <<$pcs_nickname>>, I just need your help for a few minutes. I can move the heavy stuff." Lariska pouts.'
+		'_ "Sorry but we can''t help you." Fedor says as he grabs onto your arm then pulls you away toward the street.'
+		'- Lina with a disappointed look on her face, turns and walks away.'
+		'- You turn to Fedor and say, "Thank you Fyodor. I knew that I could count on you." Fedor gives you a kiss on the forehead then walks you home."'
+		*nl
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		if fedorKozlovQW < -10:
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		end	
+		
+		act 'Leave':gt 'korrPar'
 	else
-		'<center><img src="images/characters/pavlovsk/school/head/19.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/19.jpg"></center>'
 		'You leave the club and see, that you are Lina.'
 		'- <<$pcs_nickname>>, wait! Help me please remove equipment in the pantry, and that the coach made, and there bulb burns out! You just Flashlight Support, I rest myself!'
 		act 'Help':
@@ -271,7 +301,7 @@ if $ARGS[0] = 'end':
 				cls
 				minut += 5
 				gs'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_4.jpg"></center>'
 				'- Okay! Why no. - You said and followed Lina.'
 				'You went into a dark room and heard, as the door closed behind you, and you knocked to the floor and obviously began to undress.'
 				'The noise of heavy blows on the door, two strokes and the door falls on you and the guy that was sitting on top, You crushed the door and the guy can not move, and the sounds around the fight. From-Man hands in your mouth on you slowly choke and lose consciousness, through you hear a faint voice Kotova «Light hold!»'
@@ -279,7 +309,7 @@ if $ARGS[0] = 'end':
 					cls
 					minut += 40
 					gs'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_kotov_end.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_kotov_end.jpg"></center>'
 					'You open your eyes and see the worried face Kotova:'
 					'- You''re like okay?'
 					'- Yes, thank you saved me.'
@@ -292,28 +322,28 @@ if $ARGS[0] = 'end':
 				cls
 				minut += 5
 				gs'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_4.jpg"></center>'
 				'- Okay! Why no. - You said and followed Lina.'
 				'You went into a dark room and heard, as the door closed behind you, and you knocked to the floor and obviously began to undress. You are trying to resist, but you pour, that-then in the mouth and consciousness fades.'
 				act 'Recover':
 					cls
 					minut += 15
 					gs'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_5.jpg"></center>'
 					'You like plasticine, You bend and so, to put an end to cancer with all lapaya, that sticks out and thrusting his hands in all holes, and you do not care at all, Only in my head where-then «Run, I have to run away». Meanwhile, the boys began to fuck you.'
 					act 'Further':
 						cls
 						pcs_horny += 10
 						minut += 5
 						gs'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_6.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_6.jpg"></center>'
 						'You put cancer and pat your body, you flow like a waterfall. Smile on your face, and you all know though, but can not do anything. In my head, only one thought «Save!»'
 						act 'Further':
 							cls
 							pcs_horny += 10
 							minut += 5
 							gs'stat'
-							'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_7.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_7.jpg"></center>'
 							if stat['bj'] >= 100:
 								$start_text = 'you purely on the machine begins to suck, surely, If you are sleeping and your mouth stuck dick you would like is usually sucked.'
 							else
@@ -335,7 +365,7 @@ if $ARGS[0] = 'end':
 								pcs_horny += 10
 								minut += 5
 								gs'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_8.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_8.jpg"></center>'
 								'Finally you feel, the guys are ready to be discharged.'
 								'You put in the center of the room and you see smiling stupidly they play their trunks.'
 								act 'Watch':
@@ -357,14 +387,14 @@ if $ARGS[0] = 'end':
 									cumarrkno =  0
 									gs 'cum_manage'
 									gs'stat'
-									'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_9.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_9.jpg"></center>'
 									'They began to finish pouring your face and warm tart sperm! Discharge they start to beat you huyami lips, gradually penetrating into his mouth and clearing them from the remnants of sperm.'
 									act 'Further':
 										cls
 										pcs_horny += 10
 										minut += 5
 										gs'stat'
-										'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_10.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_10.jpg"></center>'
 										'- Can umoem this whore? - You heard through a veil.'
 										'- And let''s!'
 										'And your face hit the stream of urine'
@@ -372,7 +402,7 @@ if $ARGS[0] = 'end':
 											cls
 											minut += 5
 											gs'stat'
-											'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_11.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_11.jpg"></center>'
 											'- What went slut! - You have bare arms and where-the lead, Suddenly you realize, that you are in the middle of the club and everyone is looking at you.'
 											'- Dance slut - with these words, you are thrust into the center of the crowd. Your consciousness fades.'
 											pav_sex += 30
@@ -406,7 +436,7 @@ if $ARGS[0] = 'end':
 												agape = 2
 												vgape = 2
 												gs'stat'
-												'<center><img src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_end.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/lariska/sex/fight/start_end.jpg"></center>'
 												'You woke up covered in semen and a bottle, sticking out of the pussy, and your entire body covered with writing obscene graffiti. The whole body hurts, and holes to whine like glowing rod shoved all night.'
 
 												act 'Leave':gt'pavResidential'
@@ -431,7 +461,7 @@ if $ARGS[0] = 'IvanHelp_down':
 		pcs_horny += 5
 		gs'stat'
 
-		'<center><img src="images/shared/sex/cock/cock3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/shared/sex/cock/cock3.jpg"></center>'
 		'Did you get a member of Ivan''s pants'
 		act 'Take in the mouth':
 			cls
@@ -444,9 +474,9 @@ if $ARGS[0] = 'IvanHelp_down':
 			gs'stat'
 
 			rand1 = rand(0,50)
-			if rand1<5:'<center><img src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
-			if rand1>=5 and rand1<30:'<center><img src="images/locations/pavlovsk/park/sex/publ0,0.jpg"></center>'
-			if rand1>=30:'<center><img src="images/locations/pavlovsk/park/sex/publ0,0.gif"></center>'
+			if rand1<5:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/sex/boybj3.jpg"></center>'
+			if rand1>=5 and rand1<30:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/sex/publ0,0.jpg"></center>'
+			if rand1>=30:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/sex/publ0,0.gif"></center>'
 			'You sat down on his haunches and began to suck Ivan.'
 
 			dynamic $dinrandswallow
@@ -468,9 +498,9 @@ if $ARGS[0] = 'IvanHelp_sex':
 	if npcSex[numnpc] = 0:npcSex[numnpc] = 1 & guy += 1
 
 	rand1 = rand(0,50)
-	if rand1<5:'<center><img src="images/shared/sex/public/boysex.jpg"></center>'
-	if rand1>=5 and rand1<30:'<center><img src="images/shared/sex/public/publ1,'+rand(0,2)+'.gif"></center>'
-	if rand1>=30:'<center><img src="images/shared/sex/public/publ1,'+rand(0,6)+'.jpg"></center>'
+	if rand1<5:'<center><img <<$set_imgh>> src="images/shared/sex/public/boysex.jpg"></center>'
+	if rand1>=5 and rand1<30:'<center><img <<$set_imgh>> src="images/shared/sex/public/publ1,'+rand(0,2)+'.gif"></center>'
+	if rand1>=30:'<center><img <<$set_imgh>> src="images/shared/sex/public/publ1,'+rand(0,6)+'.jpg"></center>'
 	'You bent down and framed mooning guy.'
 	dynamic $sexstart
 	dynamic $sexstart2

+ 2 - 2
locations/MBallroom

@@ -6,7 +6,7 @@ if $ARGS[0] = 'ballroom':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
 	'Ballroom'
 	act 'Go to west wing hall': gt 'MHall', 'west'
 	act 'Go to the atrium': gt 'MBallroom', 'atrium'
@@ -19,7 +19,7 @@ if $ARGS[0] = 'atrium':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
 	'Atrium'
 
 	act 'Go to the Ballroom': gt 'MBallroom', 'ballroom'

+ 14 - 14
locations/MBasement

@@ -3,14 +3,14 @@
 $metkaM = $ARGS[0]
 $locM = $CURLOC
 $location_type = 'private'
-'<center><img src="images/locations/city/suburb/bdsm_club/basement.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/basement.jpg"></center>'
 'Basement, for torture and whatnot'
 act 'Go upstairs to the east wing hallway': gt 'MHall', 'east'
 
 if rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand1.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand1.gif"></center>'
 	'You see a Mistress with two submissives, she is fucking one of them.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -21,7 +21,7 @@ if rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand2.jpg"></center>'
 	'You see a submissive, tied up and waiting for someone to play with.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -32,7 +32,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand3.png"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand3.png"></center>'
 	'A submissive woman is tied up and displayed like an art exhibition, the sign tells people to use the whip on her.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -43,7 +43,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand4.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand4.gif"></center>'
 	'You see a Mistress with two submissives, she is fucking one of them.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -54,7 +54,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand5.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand5.jpg"></center>'
 	'You see a submissive, tied up and waiting for someone to play with.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -65,7 +65,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand6.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand6.gif"></center>'
 	'You see a two submissives being used by 2 dommes.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -76,7 +76,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand7.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand7.jpg"></center>'
 	'You see three submissives, tied up and hanging upside down.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -87,7 +87,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand8.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand8.gif"></center>'
 	'You see a submissive woman, tied and gagged and being fucked by a dominant man.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -98,7 +98,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/baserand9.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/baserand9.gif"></center>'
 	'You see a submissive woman, tied and being fucked by a dominant man. Their eyes are locked and they are oblivious to the crowd of people watching them.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -109,7 +109,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/subbyhubby.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/subbyhubby.jpg"></center>'
 	'A dominate wife wearing a strap-on fucks her husband with another man.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -120,7 +120,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/3dom.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/3dom.gif"></center>'
 	'Three dommes taking turn fucking their submissive male bent over a padded bench.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -131,7 +131,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/2domsub.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/2domsub.gif"></center>'
 	'Two dommes fuck their subs wearing ball gags roughly, in a contest to see how can make their sub orgasm first.'
 	
 	gs 'arousal', 'voyeur', 5
@@ -142,7 +142,7 @@ elseif rand (0,100) < 3:
 elseif rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/stacross.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/stacross.gif"></center>'
 	'A woman is shackled to a Saint Andrews Cross while several dom''s take turns whipping her.'
 	
 	gs 'arousal', 'voyeur', 5

+ 3 - 3
locations/MBathrooms

@@ -4,7 +4,7 @@ if $ARGS[0] = 'bath':
 	$metkaM = $ARGS[0]
 	$locM = $CURLOC
     $location_type = 'bathroom'
-	'<center><img src="images/locations/city/suburb/bdsm_club/bath1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bath1.jpg"></center>'
 	'A luxrious bathroom, designed to indulge and relax.'
 	gs 'din_van', 'private'
 	act 'Return to east wing landing':gt'MLanding', 'east'
@@ -12,7 +12,7 @@ end
 
 if $ARGS[0] = 'ensuite':
     $location_type = 'bathroom'
-	'<center><img src="images/locations/city/suburb/bdsm_club/ensuite1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ensuite1.jpg"></center>'
 	'An ensuite bathroom'
 	gs 'din_van', 'private'
 end
@@ -21,7 +21,7 @@ if $ARGS[0] = 'restroom':
 	$metkaM = $ARGS[0]
 	$locM = $CURLOC
     $location_type = 'bathroom'
-	'<center><img src="images/locations/city/suburb/bdsm_club/rest.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/rest.jpg"></center>'
 	'A beautiful little room for taking care of the essentials and making yourself look good.'
 	gs 'din_van', 'private'
 	act 'Return to foyer':gt'MHall', 'foyer'

+ 1 - 1
locations/MConservatory

@@ -5,7 +5,7 @@ $locM = $CURLOC
 $location_type = 'private'
 cls
 gs 'stat'
-'<center><img src="images/locations/city/suburb/bdsm_club/conservatory.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/conservatory.jpg"></center>'
 'This huge glass fronted room is kept very warm and houses a number of rare and exotic plants.'
 'It is one of the few places where you can just relax and enjoy the opulence of the mansion.'
 act 'Go to the garden': gt 'MRear', 'garden'

+ 13 - 13
locations/MDining

@@ -5,7 +5,7 @@ $locM = $CURLOC
 $location_type = 'private'
 cls
 gs 'stat'
-'<center><img src="images/locations/city/suburb/bdsm_club/diningroom.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/diningroom.jpg"></center>'
 act 'Go to foyer': gt 'MHall', 'foyer'
 act 'Go to the east wing hallway':gt 'MHall', 'east'
 
@@ -14,7 +14,7 @@ if rand (0,100) < 3:
 	pcs_horny += 5
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/maid_a8.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/maid_a8.jpg"></center>'
 	'You see a maid bending over a table.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -22,7 +22,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b2.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b2.jpg"></center>'
 	'You see a maid giving a man a blowjob.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -30,7 +30,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b6.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b6.gif"></center>'
 	'A submissive women is giving a man a blowjob.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -38,7 +38,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_bound_e1.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_bound_e1.gif"></center>'
 	'Two dominant women are having fun with a bound and gagged submissive women.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -46,7 +46,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_bound_e2.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_bound_e2.gif"></center>'
 	'Two dominant women are having fun with a bound and gagged submissive women.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -54,7 +54,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_mis3.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_mis3.gif"></center>'
 	'A dominant woman is trying to read a magazine while her sub pleasures her.'
 	act 'Return':gt 'MDining'
 !!elseif rand (0,100) < 3:
@@ -62,7 +62,7 @@ elseif rand (0,100) < 3:
 !!	pcs_horny += 10
 !!	minut += 5
 !!	gs 'stat'
-!!	'<center><img src="images/bdsm_club/diningroom/"></center>'
+!!	'<center><img <<$set_imgh>> src="images/bdsm_club/diningroom/"></center>'
 !!	'A group of women and men are sitting in chairs while they order two young women to strip naked and then change into different fetish clothing and then walk back and forth in them for a bit. Then they repeat the whole process again, a bit of a fetish clothing fashion show.'
 !!	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -71,9 +71,9 @@ elseif rand (0,100) < 3:
 	minut += 5
 	gs 'stat'
 	if rand(0,1) = 0:
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/tablepussy.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/tablepussy.jpg"></center>'
 	else
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/tablepussy1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/tablepussy1.jpg"></center>'
 	end
 	'A naked woman sits on the end of the table with her feet on it and her legs spread wide. A middle aged couple stand in front of her, the woman pointing at varies parts of the naked womans pussy, apparently giving her husband a anatomy lesson on pussies and the proper way to pleasure them.'
 	act 'Return':gt 'MDining'
@@ -82,7 +82,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/girltable'+rand(1,5)+'.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/girltable'+rand(1,5)+'.jpg"></center>'
 	'A woman is on all fours between two men sitting in chairs talking. There is a serving tray on her back with drinks and snacks on it.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -90,7 +90,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/footstool.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/footstool.jpg"></center>'
 	'A dominant woman has her legs propped up on a young mans back who is on all fours, while another young man sits and massages her feet.'
 	act 'Return':gt 'MDining'
 elseif rand (0,100) < 3:
@@ -98,7 +98,7 @@ elseif rand (0,100) < 3:
 	pcs_horny += 10
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/spank'+rand(1,8)+'.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/spank'+rand(1,8)+'.jpg"></center>'
 	'A well dressed man has a young woman bent over his knees with her bare ass exposed, giving her a spanking. The sound from the flesh on flesh slaps carry some distance.'
 	act 'Return':gt 'MDining'
 end

+ 1 - 1
locations/MDressing

@@ -6,7 +6,7 @@ $locM = $CURLOC
 $location_type = 'private'
 cls
 gs 'stat'
-'<center><img src="images/locations/city/suburb/bdsm_club/dressingroom.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/dressingroom.jpg"></center>'
 'A huge dressing room. Mostly used by submissives to dress as staff and because of this, it is a safe space and games are not allowed.'
 'It contains several wardrobes (where you can <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">organize your clothes</a> or <a href="exec:gt ''clothing_QV'', ''list''">pick something to wear</a>).'
 

+ 17 - 17
locations/MEastbed

@@ -6,13 +6,13 @@ if $ARGS[0] = 'guestB':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/bedb.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bedb.jpg"></center>'
 	'Guest bedroom B'
 	act 'Go to the east wing landing':gt 'MLanding', 'east'
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand1.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand1.gif"></center>'
 		'A submissive woman is cleaning up her dom''s cum from another woman''s chest.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -22,7 +22,7 @@ if $ARGS[0] = 'guestB':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand5.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand5.gif"></center>'
 		'You see three submissive women on the bed, they are tied and gagged.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -32,7 +32,7 @@ if $ARGS[0] = 'guestB':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/mis_1.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/mis_1.gif"></center>'
 		'A well dressed women is very much enjoying giving a blowjob, she must be a switch.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -49,7 +49,7 @@ if $ARGS[0] = 'guestB':
 				sexvolume = 5
 				spafinloc = 12
 				gs 'cum_manage'
-				'<center><img src="images/locations/city/suburb/bdsm_club/sex/snowball.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/snowball.jpg"></center>'
 				'Seeing you watching them, the couple beckons you over. You obey them and come over and kneel down next to the well dressed woman. She offers the cock to you and you dutifully suck it and soon the two of you are trading it back and forth.'
 				'The man begins to grunt getting close, when he does the woman takes the cock completely to herself no longer sharing, after another minute or so the man cums in her mouth.'
 				'She rises up a bit and pulls your head back, pulling your mouth open. Then she spits the man''s cum into your mouth. Then they dismiss you and as you''re leaving you swallow the cum.'
@@ -70,13 +70,13 @@ if $ARGS[0] = 'guestC':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/bedc.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bedc.jpg"></center>'
 	'Guest bedroom C'
 	act 'Go to the east wing landing':gt 'MLanding', 'east'
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand2.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand2.gif"></center>'
 		'A submissive woman on a leash is being fucked by her dom.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -87,7 +87,7 @@ if $ARGS[0] = 'guestC':
 			act 'Join them':
 				cls
 				gs 'stat'
-				'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedmff.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedmff.jpg"></center>'
 				'As you watch the man notices you and motions you over, obeying you walk over to him. He keeps fucking the woman on the bed he says."Straddle her face and look at me."'
 				'You do as you was told and the womans tongue plunges into your pussy at once as she starts tongue fucking you. The man pulls you forward and kisses you as he keeps fucking the other woman.'
 				'You orgasm before he does and when he does, he does deep inside or her. Once finished they get dressed.'
@@ -103,7 +103,7 @@ if $ARGS[0] = 'guestC':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand8.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand8.gif"></center>'
 		'A man and two women are having a threesome, you can''t tell who is sub or dom, but they are so carried away in their act that you don''t suppose that''s important right now.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -114,7 +114,7 @@ if $ARGS[0] = 'guestC':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_pun1.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_pun1.gif"></center>'
 		'A submissive women has been tied and gagged with a body massager strapped to her pussy. Poor thing, hopefully someone will let her go soon.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -131,13 +131,13 @@ if $ARGS[0] = 'guestD':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/bedd.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bedd.jpg"></center>'
 	'Guest bedroom D'
 	act 'Go to the east wing landing':gt 'MLanding', 'east'
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand4.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand4.gif"></center>'
 		'A submissive woman is gagged and tied to a stool and the bedstead and her dom is fucking her roughly.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -147,7 +147,7 @@ if $ARGS[0] = 'guestD':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand6.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand6.gif"></center>'
 		'A submissive women is tied up and gagged, her domme is fucking her with a strap-on.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -158,7 +158,7 @@ if $ARGS[0] = 'guestD':
 			act 'watch':
 				cla
 				*clr
-				'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand6.gif"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand6.gif"></center>'
 				'You keep watching them, at the rough treatment the sub occasionally cries out through the gag, which only seems to annoy her dom, which gives her a smack each time and tell her to take it like a good whore.'
 				'Noticing you the dom turns and pulls out of her sub. "You come over here and show my worthless sub how to take it like a good whore."'
 
@@ -166,7 +166,7 @@ if $ARGS[0] = 'guestD':
 					cls
 					pcs_ass += 1
 					gs 'stat'
-					'<center><img src="images/locations/city/suburb/bdsm_club/sex/fffdomstrap.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/fffdomstrap.jpg"></center>'
 					'You undress and walk over to her as she unties her sub. As you get to the bed she grabs you and pushes you down face first on the bed. She crawls up on top of you and rubs the strap-on against your asshole.'
 					'With only the lube from her subs pussy juices she shoves it in your ass, sliding it balls deep in you, then she starts to furiously fuck you as she tells her sub this is how she should take it.'
 					'After a long time she beings to pant and sweat from her efforts in fucking you. Finally rolling off you to take a break, she looks at you. "You may go." You get up and get dressed leaving them still in the room.'
@@ -183,7 +183,7 @@ if $ARGS[0] = 'guestD':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_pun2.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_pun2.gif"></center>'
 		'A submissive women appears to have broken the dress code and is being punished.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -194,7 +194,7 @@ if $ARGS[0] = 'guestD':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b7.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b7.gif"></center>'
 		'A submissive women is having her face fucked by a dom in a suit.'
 		
 		gs 'arousal', 'voyeur', 5

+ 2 - 2
locations/MGames

@@ -3,14 +3,14 @@
 $metkaM = $ARGS[0]
 $locM = $CURLOC
 $location_type = 'private'
-'<center><img src="images/locations/city/suburb/bdsm_club/games.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/games.jpg"></center>'
 'Games room'
 act 'Go to the west wing landing':gt 'MLanding', 'west'
 
 if rand (0,100) < 3:
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/maid_a5.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/maid_a5.jpg"></center>'
 	'A maid is crawling along a bench seat showing everyone her pussy and anus.'
 	
 	gs 'arousal', 'voyeur', 5

+ 9 - 9
locations/MHall

@@ -7,7 +7,7 @@ if $ARGS[0] = 'foyer':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/foyer.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/foyer.jpg"></center>'
 	'You stand in the grand foyer, your eye is draw towards and up the dual staircases. To your left is the Dinning room, to your right the dressing room.'
 	'Discreetly to the sides of the staircases are two rest rooms.'
 	act 'Leave the club':
@@ -36,7 +36,7 @@ if $ARGS[0] = 'west':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/hall.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/hall.jpg"></center>'
 	'You are standing in the west wing hallway, the reception and office are located here. If you need to speak to management, you need to go to the reception.'
 	'The dressing room is to your right and at the end of the hallway is the ball room leading to the atrium.'
 	act 'Go to the foyer':gt 'MHall', 'foyer'
@@ -51,7 +51,7 @@ if $ARGS[0] = 'east':
     $location_type = 'private'
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/hall.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/hall.jpg"></center>'
 	'You are standing in the east wing hallway, you can feel the warm air from the conservatory to your right and the dinning room is to your left.'
 	'Further down the hallway are the kitchen, pantry and laundry room. At the end of the hall is are stairs leading up to the guest bedrooms and down to the basement.'
 	act 'Go to the foyer':gt 'MHall', 'foyer'
@@ -65,7 +65,7 @@ if $ARGS[0] = 'east':
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_mis2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_mis2.jpg"></center>'
 		'A sexy domme in her underwear is leading a sub upstairs by her leash.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -76,7 +76,7 @@ if $ARGS[0] = 'east':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/ponyboy.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/ponyboy.jpg"></center>'
 		'A man on all fours comes crawling into the room, wearing a pair of tight latex shorts, a saddle across his back and a bit with reigns. While a woman rides on the saddle, dressed in a latex corset and shorts, in knee high boots with larges spurs that she occasionally uses on the man to make him crawl faster, as she pulls on the reigns to direct him.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -94,7 +94,7 @@ if $ARGS[0] = 'east':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/petgirl.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/petgirl.jpg"></center>'
 		'A man dressed in leather stands talking to a well dressed couple, at his feet rests his petgirl on her knees. She holds her own leash in her mouth, wearing nothing but her collar, bra, cat ears, and a buttplug tail. She obediently waits on her knees for her master to finish talking to the couple.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -115,7 +115,7 @@ if $ARGS[0] = 'east':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b5.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b5.gif"></center>'
 		'A submissive woman is give her dominant a blowjob while another sub watches from the stairs.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -125,7 +125,7 @@ if $ARGS[0] = 'east':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b3.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b3.gif"></center>'
 		'One of the maids is giving her dominant a blowjob by the small staircase.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -134,7 +134,7 @@ if $ARGS[0] = 'east':
 		act 'Continue':
 			cls
 			gs 'stat'
-			'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_b4.gif"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_b4.gif"></center>'
 			'It looks like she has learnt to overcome her gag-reflex.'	
 
 			gs 'arousal', 'voyeur', 5

+ 3 - 3
locations/MKitchen

@@ -4,7 +4,7 @@ $location_type = 'private'
 if $ARGS[0] = 'kitchen':
 	$metkaM = $ARGS[0]
 	$locM = $CURLOC
-	'<center><img src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
 	act 'Go to the east hall': gt 'MHall', 'east'
 	act 'look in the pantry': gt 'MKitchen', 'pantry'
 end
@@ -12,7 +12,7 @@ end
 if $ARGS[0] = 'laundry':
 	$metkaM = $ARGS[0]
 	$locM = $CURLOC
-	'<center><img src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
 	'The laundry'
 	act 'Go to the east hall': gt 'MHall', 'east'
 end
@@ -20,7 +20,7 @@ end
 if $ARGS[0] = 'pantry':
 	$metkaM = $ARGS[0]
 	$locM = $CURLOC
-	'<center><img src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
 	act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
 end
 

+ 3 - 3
locations/MLanding

@@ -6,7 +6,7 @@ if $ARGS[0] = 'west':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/wlanding.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/wlanding.jpg"></center>'
 	act 'Go to the east wing landing':gt 'MLanding', 'east'
 	act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
 	act 'Visit the master bedroom':gt 'MWestbed', 'master'
@@ -16,7 +16,7 @@ if $ARGS[0] = 'west':
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_sex_b1.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_sex_b1.gif"></center>'
 		'A maid is being helped with the vacuum cleaning by a man in casual clothing, you think about reporting him, but he''s a bit busy right now.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -32,7 +32,7 @@ if $ARGS[0] = 'east':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/elanding.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/elanding.jpg"></center>'
 	act 'Go to the west wing landing':gt 'MLanding', 'west'
 	act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
 	act 'Go downstairs to the west wing hallway':gt 'MHall', 'west'

+ 2 - 2
locations/MLibrary

@@ -5,14 +5,14 @@ $locM = $CURLOC
 $location_type = 'private'
 cls
 gs 'stat'
-'<center><img src="images/locations/city/suburb/bdsm_club/library.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/library.jpg"></center>'
 'Library, full of books.'
 
 if hour = 18:
 	pcs_horny += 10
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/librand.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/librand.gif"></center>'
 	'It looks like the librarian has put one of the books back in the wrong place, she really does seem to like the being punished.'
 	act 'Leave her to it': gt 'MHall', 'west'
 end

+ 1 - 1
locations/MLiving

@@ -3,7 +3,7 @@
 $metkaM = $ARGS[0]
 $locM = $CURLOC
 $location_type = 'private'
-'<center><img src="images/locations/city/suburb/bdsm_club/living.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/living.jpg"></center>'
 'Living room'
 act 'Go to the east wing landing':gt 'MLanding', 'east'
 

+ 14 - 14
locations/MRear

@@ -6,7 +6,7 @@ if $ARGS[0] = 'garden':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/garden.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/garden.jpg"></center>'
 	'Extensive garden, meticulously designed and maintained. Split into different areas each with its own theme and inspiration.'
 
 	act 'Go to the conservatory': gt 'MConservatory'
@@ -17,7 +17,7 @@ if $ARGS[0] = 'garden':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/garrand.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/garrand.gif"></center>'
 		'The gardener is fucking a sub, gagged and tied to a tree.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -28,7 +28,7 @@ if $ARGS[0] = 'garden':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/uniform.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/uniform.jpg"></center>'
 		'A strapping young dom is checking a sub is adhering to the dress code. Looks like she forgotten her panties.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -38,7 +38,7 @@ if $ARGS[0] = 'garden':
 		act 'Return':gt 'MRear', 'garden'
 	elseif rand (0,100) < 3 and sunWeather = 1:
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/drink.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/drink.jpg"></center>'
 		'A dominate woman is forcing a naked man to drink from the fountain.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -48,7 +48,7 @@ if $ARGS[0] = 'garden':
 		act 'Return':gt 'MRear', 'garden'
 	elseif rand (0,100) < 3 and sunWeather = 1:
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/race.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/race.jpg"></center>'
 		'A cluster of people are gathered around five women bent over in a row masturbating, you quickly realize everyone is betting on who will orgasm first. You briefly wonder if their is a prize for winning.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -62,7 +62,7 @@ end
 if $ARGS[0] = 'gEV1':
 	*clr
 	cla
-	'<center><img src="images/locations/city/suburb/bdsm_club/randgirl.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/randgirl.jpg"></center>'
 	if $clothingworntype ! 'nude':
 		'Another submissive women approaches you and says, "If you are looking to earn a nice bonus, there are a group of older men at the outside dining table. If you strip off, go over to them and have sex with them, they will give you a load of cash."'
 		'This isn''t exactly the BDSM you come here for, but it is not breaking any rules and you have the choice.'
@@ -79,7 +79,7 @@ if $ARGS[0] = 'gEV2':
 	*clr
 	cla
 	sub += 2
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup1.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup1.gif"></center>'
 	'You walk over to the older men, they can''t take their eyes of your beautiful naked body.'
 	act 'Continue':gt 'MRear', 'gEV3'
 end
@@ -93,7 +93,7 @@ if $ARGS[0] = 'gEV3':
 	pcs_vag += 1
 	dick = RAND(12,21)
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup2.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup2.gif"></center>'
 	'Half of the men are already naked and probably asked the sub who spoke to you. You leave them no doubt as to your intentions and lead one of the men on to the table.'
 	'You crawl on top of him and already aroused in anticipation, you quickly take him inside and start to grind.'
 	
@@ -106,7 +106,7 @@ end
 if $ARGS[0] = 'gEV4':
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup3.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup3.gif"></center>'
 	'You let the man go from under you and lie on your back. All of the men surround you and you do all you can to please them with your mouth and hands.'
 	'Unseen hands rub your pussy and you start to feel the familiar sense of bliss, soon overtaken by a need to be filled.'
 	
@@ -122,7 +122,7 @@ end
 if $ARGS[0] = 'gEV5':
 	*clr
 	cla
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup4.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup4.gif"></center>'
 	'"Fuck me." You moan to no particular man. The invite is soon accepted and as you continue to suck one of the men''s cocks another pushes itself into your pussy.'
 	
 	gs 'arousal', 'vaginal', 10, 'sub', 'group'
@@ -134,7 +134,7 @@ end
 if $ARGS[0] = 'gEV6':
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup5.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup5.gif"></center>'
 	'Not wanting this to turn into a creampie party, you get yourself onto all fours and spend sometime sucking on the cocks that you have otherwise been neglecting.'
 	
 	gs 'arousal', 'bj', 10, 'sub', 'group'
@@ -148,7 +148,7 @@ if $ARGS[0] = 'gEV7':
 	spafinloc = 11
 	gs 'cum_manage'
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup6.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup6.gif"></center>'
 	'Experience tells you that they are close to finishing and you lie back and tell them to finish on your face.'
 	'Almost immediately the right side of your face receives a warm, sticky treat.'
 	
@@ -188,7 +188,7 @@ if $ARGS[0] = 'gEV8':
 	spafinloc = 11
 	gs 'cum_manage'
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/sex/grup7.gif"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/grup7.gif"></center>'
 	'You remain in position lending a helping hand were needed and take another 6 cumshots to your face.'
 	'As you reveal in your successful work, you realise for the first time that there was 7 men there.'
 	'You get up, still naked and your face covered in cum. The men have had their fun and are leaving. You find 2,000 <b>₽</b> on the table.'
@@ -206,7 +206,7 @@ if $ARGS[0] = 'garage':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/garage.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/garage.jpg"></center>'
 	'The garage has many different expensive cars, the doors are shut and it is surprisingly warm.'
 	act 'Go to reception': gt 'BDSM_Club', 'reception'
 	act 'Go to the garden': gt 'MRear', 'garden'

+ 8 - 8
locations/MWestbed

@@ -6,13 +6,13 @@ if $ARGS[0] = 'master':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/masterbed.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/masterbed.jpg"></center>'
 	'Master bedroom'
 	act 'Go to the west wing landing':gt 'MLanding', 'west'
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand3.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand3.gif"></center>'
 		'You see a submissive woman in lingerie and on a leash, she appears to have earned herself a treat from a dominant man in a suit.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -23,7 +23,7 @@ if $ARGS[0] = 'master':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/bedrand7.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/bedrand7.gif"></center>'
 		'A dominant woman is being pleasured by her sub.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -34,7 +34,7 @@ if $ARGS[0] = 'master':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_pun4.gif"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_pun4.gif"></center>'
 		'Ooo, a spanking, someone''s been a bad girl.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -48,7 +48,7 @@ if $ARGS[0] = 'master':
 		minut += 5
 		gs 'pain', 4, 'asscheeks', 'spank'
 		gs 'stat'
-	    '<center><img src="images/locations/city/suburb/bdsm_club/sex/spank'+rand(1,2)+'.gif"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/spank'+rand(1,2)+'.gif"></center>'
 	    'As you are walking into the bedroom you accidentally bump into a man walking out. Before you can even say a word he grabs you by the arm. "Watch where you are going little girl."'
 	    'You meekly nod your head. "Sorry, I will be more careful in the future."'
 	    '"You don''t sound very sorry, I think I need to teach you a lesson." With that he pulls you into the room and bares your ass, then he pulls off his belt and spanks you until tears are running down your face.'
@@ -62,13 +62,13 @@ if $ARGS[0] = 'guest':
 	$locM = $CURLOC
 	cls
 	gs 'stat'
-	'<center><img src="images/locations/city/suburb/bdsm_club/beda.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/beda.jpg"></center>'
 	'Guest bedroom A'
 	act 'Go to the west wing landing':gt 'MLanding', 'west'
 	if rand (0,100) < 3:
 		cls
 		gs 'stat'
-		'<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_bound_d1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/maid_bound_d1.jpg"></center>'
 		'A submissive woman is being tied to a bed by a dominant man.'
 		
 		gs 'arousal', 'voyeur', 5
@@ -79,7 +79,7 @@ if $ARGS[0] = 'guest':
 	elseif rand (0,100) < 3:
 		cls
 		gs 'stat'
-	    '<center><img src="images/locations/city/suburb/bdsm_club/sex/crossdressfuck.gif"></center>'
+	    '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/sex/crossdressfuck.gif"></center>'
 	    'You peek in the room when you hear grunts coming from it.'
 		'Inside you a man wearing womens clothes being fucked by his mistress wearing a strap-on.'
 		

+ 10 - 10
locations/MagEncounterFairy

@@ -132,11 +132,11 @@ if $ARGS[0] = 'fairy_chat':
 				pcs_nips += 5
 				pcs_horny += 10
 				gs 'stat'
-				if pcs_nips < 20:'<center><img src="images/pc/body/nipples/nipples1.jpg"></center>'
-				if pcs_nips >= 20 and pcs_nips < 40:'<center><img src="images/pc/body/nipples/nipples2.jpg"></center>'
-				if pcs_nips >= 40 and pcs_nips < 60:'<center><img src="images/pc/body/nipples/nipples3.jpg"></center>'
-				if pcs_nips >= 60 and pcs_nips < 80:'<center><img src="images/pc/body/nipples/nipples4.jpg"></center>'
-				if pcs_nips >= 80:'<center><img src="images/pc/body/nipples/nipples5.jpg"></center>'
+				if pcs_nips < 20:'<center><img <<$set_imgh>> src="images/pc/body/nipples/nipples1.jpg"></center>'
+				if pcs_nips >= 20 and pcs_nips < 40:'<center><img <<$set_imgh>> src="images/pc/body/nipples/nipples2.jpg"></center>'
+				if pcs_nips >= 40 and pcs_nips < 60:'<center><img <<$set_imgh>> src="images/pc/body/nipples/nipples3.jpg"></center>'
+				if pcs_nips >= 60 and pcs_nips < 80:'<center><img <<$set_imgh>> src="images/pc/body/nipples/nipples4.jpg"></center>'
+				if pcs_nips >= 80:'<center><img <<$set_imgh>> src="images/pc/body/nipples/nipples5.jpg"></center>'
 				'She giggles in her little squeaky voice, "Ohh, goodie!", and throws something sparkly at your chest.  Suddenly, your nipples get really firm and pointed, and seem to be a bit larger now.'
 				'You can''t help but rub both breasts, feeling the warm tingling in them, and in your pussy.'
 				'The fairy admires the changes she''s made, and smiles at you.'
@@ -149,11 +149,11 @@ if $ARGS[0] = 'fairy_chat':
 				clit_size += 5
 				pcs_horny += 10
 				gs 'stat'				
-				if clit_size < 20:'<center><img src="images/pc/body/clit/clit1.jpg"></center>'
-				if clit_size >= 20 and clit_size < 40:'<center><img src="images/pc/body/clit/clit2.jpg"></center>'
-				if clit_size >= 40 and clit_size < 60:'<center><img src="images/pc/body/clit/clit3.jpg"></center>'
-				if clit_size >= 60 and clit_size < 80:'<center><img src="images/pc/body/clit/clit4.jpg"></center>'
-				if clit_size >= 80:'<center><img src="images/pc/body/clit/clit5.jpg"></center>'
+				if clit_size < 20:'<center><img <<$set_imgh>> src="images/pc/body/clit/clit1.jpg"></center>'
+				if clit_size >= 20 and clit_size < 40:'<center><img <<$set_imgh>> src="images/pc/body/clit/clit2.jpg"></center>'
+				if clit_size >= 40 and clit_size < 60:'<center><img <<$set_imgh>> src="images/pc/body/clit/clit3.jpg"></center>'
+				if clit_size >= 60 and clit_size < 80:'<center><img <<$set_imgh>> src="images/pc/body/clit/clit4.jpg"></center>'
+				if clit_size >= 80:'<center><img <<$set_imgh>> src="images/pc/body/clit/clit5.jpg"></center>'
 				'She giggles in her little squeaky voice, "Ohh, goodie!", and throws something sparkly at your hips.'
 				'Suddenly, you feel a warm tingle at the top of your slit, and, after taking a quick glance around to make sure nobody is looking, you reach down and part your pussy lips with your fingers.'
 				'Your clitoris has swollen, and seems to stand out even more than before! You can''t help but rub all around it, feeling the warm tingling and the moisture build at the entrance.'

+ 1 - 1
locations/Maria1

@@ -1,6 +1,6 @@
 # Maria1
 clr
-'<right><img src="images/locations/city/industrial/casino/metrd.jpg"></right>'
+'<right><img <<$set_imgh>> src="images/locations/city/industrial/casino/metrd.jpg"></right>'
 'You are standing at the front reception and you smiling young girl behind the counter'
 '"How can I help you?"'
 

+ 93 - 93
locations/Meadow

@@ -15,7 +15,7 @@ if $ARGS[0] = 'start' or $ARGS[0] = '':
 !MiraLoc = 5 (Mira with gop)
 	
 	'<center><H4>Meadow</H4></center>'
-	'<center><img src="images/locations/gadukino/meadow/meadow1_<<rand(0,5)>>.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/meadow/meadow1_<<rand(0,5)>>.jpg"></center>'
 	'A quiet and deserted open field of grass and wildflowers in the forest, well hidden from civilization.'
 
 	!125s
@@ -105,9 +105,9 @@ if $ARGS[0] = 'Mira':
 				gs 'stat'
 				
 				if npc_QW['A60'] = 0:
-					'<center><img src="images/characters/village/mira/mira.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/mira.jpg"></center>'
 				else
-					'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 				end
 				'You agree, intrigued.  You ask Mira what see has in mind?  After a few seconds, she tells you she saw her father masturbateing that morning.  She doesn''t think her father has been with a woman since her mother passed away.  Mira is sorry for her father''s lose, hers too for that matter, but she has an overwhelming desire to help him.  She can''t just do nothing.'
 				'You know Mira loves her father very much, you don''t know what you can do to help.  You don''t want or need this drama in your life.  First, you find out about migic being real.  School is rapid approaching.  You tell her that there is nothing you can do to help with her father''s depression.  Mira''s pouts and stands with her arms crossed. Her whole demeaner is one of injured innocence.'  
@@ -126,21 +126,21 @@ if $ARGS[0] = 'Mira':
 				! WD: missing horny adjust
 				gs 'stat'
 				if tanga = 1:
-					'<center><img src="images/characters/village/mira/sex/miralick.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/miralick.jpg"></center>'
 					'Mira immediately sits on the grass and waits until you get undress.  Holding out your hand, you throw caution to the winds and push your panties aside, revealing your already dripping snatch...'
 					gs 'arousal', 'foreplay', 5, 'lesbian'
 					gs 'stat'
 					act 'Further':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/sex/miralick1.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/miralick1.jpg"></center>'
 						'You enjoy, Mira''s gentle touch between your legs.  She teases you by gently touching your clit...'
 						gs 'arousal', 'vaginal_finger', 5, 'lesbian'
 						gs 'stat'
 						act 'Further':
 							cls
 							gs 'stat'
-							'<center><img src="images/characters/village/mira/sex/miralick2.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/miralick2.jpg"></center>'
 							'A couple of minutes later you eagerly get rid of your panties wait, while Mira lowers her mouth to your pussy and lightly nibbles on your clit, suddenly you are in the midst of an orgasm.'
 							$orgasm_or = 'yes'
 							gs 'arousal', 'cuni', 5, 'lesbian'
@@ -153,7 +153,7 @@ if $ARGS[0] = 'Mira':
 					act 'Further':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/sex/miralick2.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/miralick2.jpg"></center>'
 						'Mira obediently kneels at your feet and pulls starts licking your clit and starts to finger your pussy.  After a few minutes of this treatment, Mira brings you to blazing orgasm.'
 						$orgasm_or = 'yes'
 						gs 'arousal', 'cuni', 5, 'lesbian'
@@ -174,47 +174,47 @@ if $ARGS[0] = '0':
 	if temper < 20:
 		cls
 		minut += 2
-		'<center><img src="images/characters/village/mira/mirameadowmastr.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr.jpg"></center>'
 		'You were about to approach her, but stop as she undoes her pants.  You decide to watch it to what she does...'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mirameadowmastr1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr1.jpg"></center>'
 			'Mira, pulls harshly on her panties so that they bite deeply between her labia.  Mira looks around again, but you are concealed in the dense thicket thus she fails to spot you watching...'
 			gs 'arousal', 'voyeur', 2, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mirameadowmastr2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr2.jpg"></center>'
 				'It is a couple of seconds slowly Stoke himself in the stomach, and then, staring eyes where-in the void, as slowly dives it myself in your pants, starting to RUB her crotch.'
 				gs 'arousal', 'voyeur', 2, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/mirameadowmastr3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr3.jpg"></center>'
 					'Suddenly she pulls out the perineum hand and look down my pants, that-there looking.'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/mirameadowmastr4.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr4.jpg"></center>'
 						'But soon she gets tired of it and she strips off her jacket, but for her and blouse, exposing you her small Tits.'
 						gs 'arousal', 'voyeur', 2, 'lesbian'
 						gs 'stat'
 						act 'Watch':
 							cls
 							gs 'stat'
-							'<center><img src="images/characters/village/mira/mirameadowmastr5.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr5.jpg"></center>'
 							'Removing the jacket, she-then again puts on a jacket and running one hand in panties, another begins to fondle Breasts.'
 							gs 'arousal', 'voyeur', 2, 'lesbian'
 							gs 'stat'
 							act 'Watch':
 								cls
 								gs 'stat'
-								'<center><img src="images/characters/village/mira/mirameadowmastr6.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr6.jpg"></center>'
 								'In a minute she provalivaetsja back to the nearest tree, her pants fall down to his knees and she, continuing with one hand to knead and squeeze her Breasts, another brings herself to orgasm. You watch a couple minutes in hopes of a sequel, but Mira has come to life and begins to get dressed, so, you decide to make a hasty retreat...'
 								gs 'arousal', 'voyeur', 10, 'lesbian'
 								gs 'arousal', 'end'
@@ -229,35 +229,35 @@ if $ARGS[0] = '0':
 	elseif temper < 25:
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/mirameadowmastr7.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr7.jpg"></center>'
 		'Mira is, leaning against a tree and starts to caress herself.'
 		gs 'arousal', 'voyeur', 2, 'lesbian'
 		gs 'stat'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mirameadowmastr8.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr8.jpg"></center>'
 			'It is a few minutes continues to play with them, and then stops and a few seconds looking thoughtfully at lying near a log...'
 			gs 'arousal', 'voyeur', 5, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mirameadowmastr9.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr9.jpg"></center>'
 				'Lastly, having made the decision, she approaches him and starts to remove her panties.'
 				gs 'arousal', 'voyeur', 2, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/mirameadowmastr10.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr10.jpg"></center>'
 					'Taking off panties, she gently sits down on a log and tries to swing it a little bit, checking, see, the strength...'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/mirameadowmastr11.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr11.jpg"></center>'
 						'Sure, what accidentally falls down to him, Mira begins to caress herself, while not forgetting to look around, while, lastly, do not bring yourself to orgasm... You watch a couple minutes in hopes of a sequel, but Mira has come to life and begins to get dressed, so, you decide to make a hasty retreat...'
 						gs 'arousal', 'voyeur', 10, 'lesbian'
 						gs 'arousal', 'end'
@@ -270,33 +270,33 @@ if $ARGS[0] = '0':
 	else
 		cls
 		minut += 2
-		'<center><img src="images/characters/village/mira/mirameadowmastr12.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr12.jpg"></center>'
 		'You have time just at the most interesting. Mira stands on a stump, which was lying near razdelennoe bedspread, and looking taller blouse, enjoying the cool breeze, running his hand over crotch himself.'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mirameadowmastr13.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr13.jpg"></center>'
 			'But she soon gets bored and she, as if on purpose, turning to you ass, pulls off her skirt.'
 			gs 'arousal', 'voyeur', 2, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mirameadowmastr14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr14.jpg"></center>'
 				'By doing this, she sits down on a stump and continues to caress herself, but after a couple of minutes and do this, it is a little...'
 				gs 'arousal', 'voyeur', 5, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/mirameadowmastr15.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr15.jpg"></center>'
 					'Walking up from the stump covers, Mira takes off her top and remains only in her panties.'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/mirameadowmastr16.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowmastr16.jpg"></center>'
 						'Who immediately takes off after the blouse and left in the buff, squatting brings herself to orgasm. You watch a couple minutes in hopes of a sequel, but Mira has come to life and begins to get dressed, so, you decide to make a hasty retreat...'
 						gs 'arousal', 'voyeur', 10, 'lesbian'
 						gs 'arousal', 'end'
@@ -314,12 +314,12 @@ if $ARGS[0] = '1':
 	minut += 2
 	pcs_horny += 15
 	gs 'stat'
-	'<center><img src="images/characters/village/mira/mirameadowsex.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowsex.jpg"></center>'
 	'They are talking to each other, along the way, undressing, but what exactly are they saying, you cannot hear from-for distances.'
 	act 'Watch':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/mirameadowsex1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowsex1.jpg"></center>'
 		'After a couple of minutes Mira lies before Mitka on the bedspread and dangles invitingly in front of him legs. The, not forcing myself to wait, immediately takes its way between her legs and starts roughly and strongly to bitch-slap her with your dick, why she starts loudly and oohing and podveshivat.'
 		gs 'arousal', 'voyeur', 15
 		gs 'stat'
@@ -327,7 +327,7 @@ if $ARGS[0] = '1':
 			cls
 			if npc_QW['A60'] = 2:npc_QW['A60'] = 3
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mirameadowsex2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadowsex2.jpg"></center>'
 			'Fifteen minutes Mitka finally cums Mira on his stomach and a little more rested, they begin to gather...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -342,12 +342,12 @@ if $ARGS[0] = '2':
 	temp = RAND(0,1)
 	gs 'stat'
 	if temp = 0:
-		'<center><img src="images/characters/village/mira/sex/mirameadowanal.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowanal.jpg"></center>'
 		'Mira ass jumps on a member mitkina, every time Selepas buttocks on his thighs, and loud postanyvat.'
 		gs 'arousal', 'voyeur', 2
 		gs 'stat'
 	else
-		'<center><img src="images/characters/village/mira/sex/mirameadowanal1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowanal1.jpg"></center>'
 		'Mira, extending his arms buttocks, is on all fours and moaning loudly, when Mitka, completely removing, drives in her wide open ass my cock.'
 		gs 'arousal', 'voyeur', 2
 		gs 'stat'
@@ -355,7 +355,7 @@ if $ARGS[0] = '2':
 	act 'Watch':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowanal2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowanal2.jpg"></center>'
 		'After a couple of minutes Mitka much slaps her ass and Mira unfolds quickly, gets up on her knees before him and far sticking his tongue out, takes his face his warm sperm...'
 		gs 'arousal', 'voyeur', 10
 		gs 'arousal', 'end'
@@ -368,14 +368,14 @@ if $ARGS[0] = '3':
 	cls
 	gs 'stat'
 	if temper < 15:
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj.jpg"></center>'
 		'She enthusiastically sucks his cock and sees the holes in her cheeks, when she sucks him into her throat...'
 		gs 'arousal', 'voyeur', 2
 		gs 'stat'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/mirameadowbj1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj1.jpg"></center>'
 			'But, apparently, you''re a little late, because after a couple minutes calamba puts a hand Mira on the back of the head and with one sharp jerk skewer on yourself. At first she gags and coughs of oneoriginal, but then still cope with the waves of nausea and hanging out a little of the language, obediently swallows his cum...'
 			gs 'arousal', 'voyeur', 2
 			gs 'arousal', 'end'
@@ -384,7 +384,7 @@ if $ARGS[0] = '3':
 		end
 	else
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj2.jpg"></center>'
 		'She''s in some flip-flops is cancer, sticking out in your face your ass, and moaning loudly, when kolamba slaps her crotch with my cock, pushing in her cunt his cock. Mira scratching his hands on the ground and arched like a cat, with that-then in between Kagami speaking Calamba. But the, it seems. isn''t paying absolutely no attention, continuing to batter in her pussy, and soon shall bring the girl to orgasm, a minute later and he cums...'
 		gs 'arousal', 'voyeur', 10
 		gs 'arousal', 'end'
@@ -398,7 +398,7 @@ if $ARGS[0] = '4':
 	gs 'stat'
 	if temper < 12:
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj5.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj5.jpg"></center>'
 		'Vasya enthusiastically drives the cock in her mouth tied to a tree Mira. She gags and coughs, but at the same time, she moves her head towards the member. After a couple of minutes Vasya tilts back his head and with a blissful roar cums in her mouth...'
 		gs 'arousal', 'voyeur', 5
 		gs 'arousal', 'end'
@@ -406,7 +406,7 @@ if $ARGS[0] = '4':
 		act 'Leave':minut += 30 & gt 'gadukino'
 	elseif temper >= 12 and temper < 15:
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj3.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj3.jpg"></center>'
 		'They are both completely naked and Mira, far sticking out his ass, feeling fucked kafousia the Vasya. After a couple of minute you see, as Mira onto the head on his cock and fades, swallowing sperm...'
 		gs 'arousal', 'voyeur', 5
 		gs 'arousal', 'end'
@@ -414,7 +414,7 @@ if $ARGS[0] = '4':
 		act 'Leave':minut += 30 & gt 'gadukino'
 	elseif temper >= 15 and  temper < 20:
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj4.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj4.jpg"></center>'
 		'They are both completely naked and lustful Mira with squeals, like crazy, galloping on Vaskerom member. The long such rate does not stand up and unceremoniously throwing off his rider, cums on her buttocks...'
 		gs 'arousal', 'voyeur', 5
 		gs 'arousal', 'end'
@@ -422,7 +422,7 @@ if $ARGS[0] = '4':
 		act 'Leave':minut += 30 & gt 'gadukino'
 	elseif temper >= 20:
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj6.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj6.jpg"></center>'
 		'Fully naked Mira, bent, facing Vasya and strenuously substitutes his ass, in which he drives his cock. Judging by her lustful moans, she quite like it, what have her in the ass, but after a couple of minutes Vasya takes from it his penis and pulls on her buttocks...'
 		gs 'arousal', 'voyeur', 5
 		gs 'arousal', 'end'
@@ -447,12 +447,12 @@ if $ARGS[0] = '6':
 	cls
 	gs 'stat'
 	if temper < 20:
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj7.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj7.jpg"></center>'
 		'Mira is kneeling between the three friends and with pleasure sucks their cocks. You see, how spokeout who in her mouth, who is on the breast, and who is just on the face...'
 		gs 'arousal', 'voyeur', 15
 		gs 'stat'
 	else
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj8.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj8.jpg"></center>'
 		'Mira sits on his haunches between the three friends and happily chomps their members. You see, how spokeout who in her mouth, and who is just on the face...'
 		gs 'arousal', 'voyeur', 5
 		gs 'stat'
@@ -467,17 +467,17 @@ if $ARGS[0] = '7':
 	npc_QW['A60'] += 1
 	gs 'stat'
 	if temper < 15:
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj11.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj11.jpg"></center>'
 		'Mira sits on his haunches in front of one of the boys and just take in my mouth his cum. Licking and hiding in his pants his cock, it is the same with another prodelyvat...'
 		gs 'arousal', 'voyeur', 15
 		gs 'stat'
 	elseif temper >= 15 and temper < 25:
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj10.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj10.jpg"></center>'
 		'Boys, the two of us fucking Mira in the mouth and pussy, about what-then with a laugh talking to each other. Mira also echoed them, their moans and placename... Fifteen minutes later they finish and begin to gather...'
 		gs 'arousal', 'voyeur', 15
 		gs 'stat'
 	else
-		'<center><img src="images/characters/village/mira/sex/mirameadowbj9.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj9.jpg"></center>'
 		'All three of them almost naked and one of them, Mira just sucks, and the second, all appearances, already finished, but because just touching her Breasts and there it goes hand between her lustful rasstavlennyh feet...'
 		gs 'arousal', 'voyeur', 15
 		gs 'stat'
@@ -491,7 +491,7 @@ if $ARGS[0] = '8':
 	cls
 	npc_QW['A60'] += 1
 	gs 'stat'
-	'<center><img src="images/characters/village/mira/sex/mirameadowbj12.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/mirameadowbj12.jpg"></center>'
 	'Miras for their bodies almost invisible, only a piece of naked ass yeah swaying feet in sneakers. You half an hour watching, as the men take turns fucking weak and tired Mira, but then you get bored and you decide to leave...'
 	gs 'arousal', 'voyeur', 30
 	gs 'arousal', 'end'
@@ -502,7 +502,7 @@ end
 if $ARGS[0] = '9':
 	cls
 	gs 'stat'
-	'<center><img src="images/characters/village/mira/mirameadows.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mirameadows.jpg"></center>'
 	'She is on all fours with his back to you and painful, but enough moaning, fingering your ass a ear of corn.'
 	gs 'arousal', 'voyeur', 30
 	gs 'arousal', 'end'
@@ -521,12 +521,12 @@ if $ARGS[0] = 'mira_mitka':
 
 
 	gs 'stat'
-	'<center><img src="images/characters/village/mira/MiraMeadowSex.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex.jpg"></center>'
 	'Out on the meadow, you suddenly notice Mira Mitya. They talk among themselves, undressing along the way, but what exactly are they saying, you cannot hear because of the distance.'
 	act 'Watch':
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/MiraMeadowSex1.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex1.jpg"></center>'
 		'After a couple of minutes before Miroslav Mitka goes on and puts a blanket invitingly in front of him legs. He was not forcing himself to wait, he immediately takes its way between her legs and starts roughly and badly to slam into her his cock, making loud and she starts to moan and podpisyvat.'
 		gs 'arousal', 'voyeur', 5
 		gs 'stat'
@@ -535,7 +535,7 @@ if $ARGS[0] = 'mira_mitka':
 			if npc_QW['A60'] = 2:npc_QW['A60'] = 3
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/MiraMeadowSex2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex2.jpg"></center>'
 			'Fifteen minutes through Miroslav Mitka finally cums on her stomach and a little more rested, they begin to gather...'
 			gs 'arousal', 'voyeur', 15
 			gs 'arousal', 'end'
@@ -552,7 +552,7 @@ if $ARGS[0] = 'mira_gang':
 	gs 'stat'
 	!gs'time'
 
-    '<center><img src="images/characters/village/mira/sex/MiraMeadowBJ12.jpg"></center>'
+    '<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ12.jpg"></center>'
 	'Miras for their bodies is almost not visible, only a piece of a naked ass bobbing Yes in sneakers feet. You half an hour watching the guys take turns fucking weak and tired Miroslav, but then you get bored and you decide to leave...'
 	gs 'arousal', 'voyeur', 30
 	gs 'arousal', 'end'
@@ -578,7 +578,7 @@ if $ARGS[0] = 'lesb_mira':
 	mirahorny = rand(0,80)
     gs 'stat'
    
-	'<center><img src="images/characters/village/mira/mirakiss1.jpg"></center>'	
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mirakiss1.jpg"></center>'	
 	'Glade you never came to Mira.'
 	'"Mira, I want you," you whispered in her ear and kissed her passionately on the lips.'
 	gs 'arousal', 'kiss_give', 5, 'lesbian'
@@ -593,7 +593,7 @@ if $ARGS[0] = 'mira_lesb':
 	mirahorny = rand(40,80)
     gs 'stat'
    
-	'<center><img src="images/characters/village/mira/mirakiss4.jpg"></center>'	
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mirakiss4.jpg"></center>'	
 	'In the meadow you went to Mira, smiling mischievously.'
 	'" - <<$pcs_nickname>>, get freaky?" - she whispered in your ear and pinning you to the tree, dug kiss.'
 	gs 'arousal', 'kiss', 5, 'lesbian'
@@ -608,7 +608,7 @@ if $ARGS[0] = 'mira_lesb':
             npc_rel['A60'] -= 1
             gs 'stat'
         
-            '<center><img src="images/characters/village/mira/mira_lesb_talk2.jpg"></center>'
+            '<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk2.jpg"></center>'
             'You had to prioritity a lot of effort to break out of her embrace.'
             '" - Mira, come now, " said you, seeing the silent question in her eyes. - The mood is not very.'
             '"- You`re beastly, " she sulked resentfully lips in response.'
@@ -681,7 +681,7 @@ if $ARGS[0] = 'mira_lesb_talk1':
 	mirahorny = rand(0,80)
     gs 'stat'
    
-	'<center><img src="images/characters/village/mira/mira_lesb_talk.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk.jpg"></center>'
 	if MiraLoc ! 2:'In the clearing you met Mira. Seeing you, she immediately came up with a sly smile on his lips.'	
 	if MiraLoc = 2:'When you came into the clearing, Mira immediately came to you with a sly smile on his lips.'
 	'" - <<$pcs_nickname>>, you`re all the boys in our gang, gave, " she began. - So?'
@@ -705,7 +705,7 @@ if $ARGS[0] = 'mira_lesb_talk1':
 	        pcs_horny += 30
             gs 'stat'
    
-	        '<center><img src="images/characters/village/mira/mira_lesb_talk2.jpg"></center>'
+	        '<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk2.jpg"></center>'
             'From these words, you stared dumbfounded Mira.'
             '" - But I don`t do that, not this... uh... not a lesbian, " I tried to deny you. But the idea that you will go down on a girl right here in the middle of the clearing, forcing your pussy treacherously sasodei.'
 	        act 'Further':
@@ -714,7 +714,7 @@ if $ARGS[0] = 'mira_lesb_talk1':
 	            pcs_horny += 10
                 gs 'stat'
                 
-                '<center><img src="images/characters/village/mira/mira_lesb_talk3.jpg"></center>'
+                '<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk3.jpg"></center>'
                 'You still hoped, looking at Mira that she changes her mind.'
                 '" - Come on, don`t break <<$pcs_nickname>>," - said Mira, taking you for a t-shirt and pulling him to the nearest stone. - "Little Sluts should always bring joy to my friends."'
 	            'Sitting on the she looked eagerly at you:'
@@ -735,7 +735,7 @@ if $ARGS[0] = 'mira_lesb_talk2':
 	mirahorny = rand(0,80)
     gs 'stat'
    
-	'<center><img src="images/characters/village/mira/mira_lesb_talk.jpg"></center>'	
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk.jpg"></center>'	
 	'When you came into the clearing, Mira immediately came to you with a sly smile on his lips.'
 	'" - Well, <<$pcs_nickname>>, congratulations, " she said. - You are now the same whore as I. All the boys gave. So?'
 	'You tried to keep silent, but it didn`t suit Mira.'
@@ -756,7 +756,7 @@ if $ARGS[0] = 'mira_lesb_talk3':
 	miraday = daystart
     gs 'stat'
    
-	'<center><img src="images/characters/village/mira/mira_lesb_talk3.jpg"></center>'	
+	'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_lesb_talk3.jpg"></center>'	
 	if MiraLoc ! 2:
         'In the clearing you met Mira. Seeing you, she immediately came to you with an excited face.'
         '" - But where are you <<$pcs_nickname>>, I was looking for you, looking for, " she said. - Need to be tongue in cheek.'
@@ -795,47 +795,47 @@ if $ARGS[0] = 'mirameadow':
 	if (meadow = 3 or meadow = 6) and MiraLoc = 0 and mirasextimes < 15 and temper >= 12 and temper < 20 and sunWeather = 1 and temp = 0:
 		cls
 		minut += 2
-		'<center><img src="images/characters/village/mira/MiraMeadowMastr.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr.jpg"></center>'
 		'You were about to approach her, but you are surprised to see her start to unzips her pants... You are excited by what you are seeing and decide to watch...'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/MiraMeadowMastr1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr1.jpg"></center>'
 			'Miroslava, with the force lifting the panties so that they cut between her labia, furtively looks around, but, of course, because of the dense vegetation does not notice, and therefore continues...'
 			gs 'arousal', 'voyeur', 2, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/MiraMeadowMastr2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr2.jpg"></center>'
 				'A couple of seconds she slowly strokes herself on his stomach, and after staring gaze somewhere in the void, as slowly it dives my pants, starting to stroke the crotch.'
 				gs 'arousal', 'voyeur', 2, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/MiraMeadowMastr3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr3.jpg"></center>'
 					'Suddenly, she pulls the crotch of the hand, and look down my pants, there is something looking out.'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/MiraMeadowMastr4.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr4.jpg"></center>'
 						'But soon she is bored and she takes off her jacket and blouse, exposing you her small Tits.'
 						gs 'arousal', 'voyeur', 2, 'lesbian'
 						gs 'stat'
 						act 'Watch':
 							cls
 							gs 'stat'
-							'<center><img src="images/characters/village/mira/MiraMeadowMastr5.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr5.jpg"></center>'
 							'Removing the jacket, she again puts on a jacket and running one hand into her panties, the other begins to caress Breasts.'
 							gs 'arousal', 'voyeur', 2, 'lesbian'
 							gs 'stat'
 							act 'Watch':
 								cls
 								gs 'stat'
-								'<center><img src="images/characters/village/mira/MiraMeadowMastr6.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr6.jpg"></center>'
 								'A minute later she perevalivaetsya back to the nearest tree, her pants fall down to his knees and she continued with one hand to knead and squeeze her Breasts, the other brings themselves to orgasm. You see a couple of minutes in hope for a sequel, but already Mira wakes up and starts to dress, so you decide to make a hasty retreat...'
 								gs 'arousal', 'voyeur', 10, 'lesbian'
 								gs 'arousal', 'end'
@@ -850,35 +850,35 @@ if $ARGS[0] = 'mirameadow':
 	elseif meadow = 3 and MiraLoc = 0 and mirasextimes < 15 and temper >= 20  and temper < 25 and sunWeather = 1 and temp = 0:
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/MiraMeadowMastr7.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr7.jpg"></center>'
 		'Mira is standing, leaning against a tree and starts to caress herself.'
 		gs 'arousal', 'voyeur', 2, 'lesbian'
 		gs 'stat'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/MiraMeadowMastr8.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr8.jpg"></center>'
 			'A few minutes she continues to play with herself, and then stops a moment and looks thoughtfully at lying near a log...'
 			gs 'arousal', 'voyeur', 5, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/MiraMeadowMastr9.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr9.jpg"></center>'
 				'Finally, having made the decision, she approaches him and starts to remove her panties.'
 				gs 'arousal', 'voyeur', 2, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/MiraMeadowMastr10.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr10.jpg"></center>'
 					'Taking off panties, she gently sits down on a log and tries to swing it a little bit, checking to see that the strength...'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/MiraMeadowMastr11.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr11.jpg"></center>'
 						'Making sure that accidentally fall to him, Mira begins to caress herself, while not forgetting to look around, before finally brings himself to orgasm... You see a couple of minutes in hope for a sequel, but already Mira wakes up and starts to dress, so you decide to make a hasty retreat...'
 						gs 'arousal', 'voyeur', 10, 'lesbian'
 						gs 'arousal', 'end'
@@ -891,33 +891,33 @@ if $ARGS[0] = 'mirameadow':
 	elseif meadow = 3 and MiraLoc = 0 and mirasextimes < 15 and temper >= 25 and sunWeather = 1 and temp = 0:
 		cls
 		minut += 2
-		'<center><img src="images/characters/village/mira/MiraMeadowMastr12.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr12.jpg"></center>'
 		'You have time just at the most interesting. Mira stands on a stump, near which lies rasteenie veil, and looking higher up the blouse, enjoying the cool breeze, running his hand over the crotch himself.'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/MiraMeadowMastr13.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr13.jpg"></center>'
 			'But she is soon bored and she, as if on purpose, turning to you ass, pulls off her skirt.'
 			gs 'arousal', 'voyeur', 2, 'lesbian'
 			gs 'stat'
 			act 'Watch':
 				cls
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/MiraMeadowMastr14.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr14.jpg"></center>'
 				'That done, she sits down on a tree stump and continues to fondle herself, but after a couple of minutes and do this, it is a little...'
 				gs 'arousal', 'voyeur', 5, 'lesbian'
 				gs 'stat'
 				act 'Watch':
 					cls
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/MiraMeadowMastr15.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr15.jpg"></center>'
 					'Walking up from the stump covered, Mira takes off her blouse and remains only in her panties.'
 					gs 'arousal', 'voyeur', 1, 'lesbian'
 					gs 'stat'
 					act 'Watch':
 						cls
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/MiraMeadowMastr16.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowMastr16.jpg"></center>'
 						'Which immediately takes off after the blouse and remained in the buff, squatting brings herself to orgasm. You see a couple of minutes in hope for a sequel, but already Mira wakes up and starts to dress, so you decide to make a hasty retreat...'
 						gs 'arousal', 'voyeur', 10, 'lesbian'
 						gs 'arousal', 'end'
@@ -933,12 +933,12 @@ if $ARGS[0] = 'mirameadow':
 		minut += 2
 		pcs_horny += 15
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/MiraMeadowSex.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex.jpg"></center>'
 		'They talk among themselves, undressing along the way, but what exactly are they saying, you cannot hear because of the distance.'
 		act 'Watch':
 			cls
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/MiraMeadowSex1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex1.jpg"></center>'
 			'After a couple of minutes before Miroslav Mitka goes on and puts a blanket invitingly in front of him legs. He was not forcing himself to wait, he immediately takes its way between her legs and starts roughly and badly to slam into her his cock, making loud and she starts to moan and podpisyvat.'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
@@ -947,7 +947,7 @@ if $ARGS[0] = 'mirameadow':
 				if npc_QW['A60'] = 2:npc_QW['A60'] = 3
 				mirasextimes += 1
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/MiraMeadowSex2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowSex2.jpg"></center>'
 				'Fifteen minutes through Miroslav Mitka finally cums on her stomach and a little more rested, they begin to gather...'
 				gs 'arousal', 'voyeur', 5
 				gs 'arousal', 'end'
@@ -961,12 +961,12 @@ if $ARGS[0] = 'mirameadow':
 		temp = RAND(0,1)
 		gs 'stat'
 		if temp = 0:
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowAnal.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowAnal.jpg"></center>'
 			'Mira jumping ass on mitkina member, every time Selepas buttocks on his thighs, and loudly postanimal.'
 			gs 'arousal', 'voyeur', 2
 			gs 'stat'
 		else
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowAnal1.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowAnal1.jpg"></center>'
 			'Mirka, extending his arms buttocks, is on all fours and moaning loudly, when Mitka, completely removing, drives in her wide open ass my cock.'
 			gs 'arousal', 'voyeur', 2
 			gs 'stat'
@@ -975,7 +975,7 @@ if $ARGS[0] = 'mirameadow':
 			cls
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowAnal2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowAnal2.jpg"></center>'
 			'After a couple of minutes Mitka strongly slaps her ass and Mira quickly turns around gets on her knees before him and far out his tongue, takes his face in his warm cum...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -987,7 +987,7 @@ if $ARGS[0] = 'mirameadow':
 		cls
 		gs 'stat'
 		if temper < 15:
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ.jpg"></center>'
 			'She enthusiastically sucks his cock and sees the pits in her cheeks when she sucks him into her throat...'
 			gs 'arousal', 'voyeur', 2
 			gs 'stat'
@@ -995,7 +995,7 @@ if $ARGS[0] = 'mirameadow':
 				cls
 				mirasextimes += 1
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ1.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ1.jpg"></center>'
 				'But, apparently, you`re a little late, because after a couple of minutes calamba Miroslav puts his hand on the back of the head and with one sharp jerk skewer on yourself. She gags and coughs otnositelnosti, but then cope with the waves of nausea and slightly sticking out his tongue, obediently swallows his cum...'
 				gs 'arousal', 'voyeur', 5
 				gs 'arousal', 'end'
@@ -1006,7 +1006,7 @@ if $ARGS[0] = 'mirameadow':
 		    cls
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ2.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ2.jpg"></center>'
 			'She flops some is doggy sticking out in your face your ass, and moaning loudly, when kolamba slaps her crotch with my cock, pushing into her vagina his penis. Miroslav scratching his hands on the ground and arched like a cat, with something in between Kagami speaking Calamba. But that, it seems. not paying absolutely no attention, continuing to batter her pussy, and soon brought the girl to orgasm and then cums himself...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -1020,7 +1020,7 @@ if $ARGS[0] = 'mirameadow':
 		if temper < 20:
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ5.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ5.jpg"></center>'
 			'Vasya enthusiastically drives the cock in her mouth, Mira is tied to a tree. She gags and coughs, but at the same time, she moves towards the head member. After a couple of minutes Vasya tilts back his head and roar with blissful cums in her mouth...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -1029,7 +1029,7 @@ if $ARGS[0] = 'mirameadow':
 		else
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ6.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ6.jpg"></center>'
 			'Mira fully naked, bends over, standing in front of Vasya and intensively exposes her ass to him, Vasya drives his cock deep into your ass.  Judging by her lustful moans, she likes having her ass violated and after a couple of minutes Vasya pulls out of her ass and cums on her backside.'			
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -1043,7 +1043,7 @@ if $ARGS[0] = 'mirameadow':
 		if temper < 20:
 			mirasextimes += 1
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ3.jpg"></center>'
 			'They are both completely naked and Mira, far from sticking out his ass, feeling kafousia fucked by Vasya. After a couple of minute you see how Miroslav onto the head on his cock and calms down, swallowing sperm...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -1051,7 +1051,7 @@ if $ARGS[0] = 'mirameadow':
 			act 'Go':minut += 30 & gt'Gaddvor'
 		else
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ4.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ4.jpg"></center>'
 			'They are both completely naked and lustful Mira squeals like crazy, jumping on Vasicinol member. The long such rate does not stand up and unceremoniously dropping off his rider cums on her buttocks...'
 			gs 'arousal', 'voyeur', 5
 			gs 'arousal', 'end'
@@ -1064,12 +1064,12 @@ if $ARGS[0] = 'mirameadow':
 		mirasextimes += 1
 		gs 'stat'
 		if temper < 20:
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ7.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ7.jpg"></center>'
 			'Mira is kneeling between the three friends and with pleasure sucking their cocks. You watch as they take turns in who spokeout her mouth, who is on the breast, and who is just on the face...'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
 		else
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ8.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ8.jpg"></center>'
 			'Mira squats between the three friends and happily chomps their members. You watch as they take turns in who spokeout her mouth, and who is just on the face...'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
@@ -1083,17 +1083,17 @@ if $ARGS[0] = 'mirameadow':
 		if npc_QW['A60'] < 20: npc_QW['A60'] += 1
 		gs 'stat'
 		if temper < 20:
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ11.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ11.jpg"></center>'
 			'Mira squats in front of one of the boys and just take in my mouth his cum. Licking and hiding in his pants his cock, it`s the same with other prodelyvat...'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
 		elseif temper >= 20 and temper < 25:
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ10.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ10.jpg"></center>'
 			'Guys, the two of us fucking Peace in her mouth and her pussy, something with a laugh talking to each other. Miroslav also echoed them, their moans and placename... Fifteen minutes later they finish and start packing...'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
 		else
-			'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ9.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ9.jpg"></center>'
 			'All three of them almost naked and one of them, Mira just sucks, and the second, apparently, already finished, but because just touching her Breasts and there it goes hand from between her Horny legs rasstavlennyh...'
 			gs 'arousal', 'voyeur', 5
 			gs 'stat'
@@ -1107,7 +1107,7 @@ if $ARGS[0] = 'mirameadow':
 		npc_QW['A60'] += 1
 		mirasextimes += 1
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/sex/MiraMeadowBJ12.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/sex/MiraMeadowBJ12.jpg"></center>'
 		'Miras for their bodies is almost not visible, only a piece of a naked ass bobbing Yes in sneakers feet. You half an hour watching the guys take turns fucking weak and tired Miroslav, but then you get bored and you decide to leave...'
 		gs 'arousal', 'voyeur', 30
 		gs 'arousal', 'end'
@@ -1117,7 +1117,7 @@ if $ARGS[0] = 'mirameadow':
 	if meadow = 3 and MiraLoc = 0 and npc_QW['A60'] >= 20 and temper >= 15 and sunWeather = 1 and temp = 9:
 		cls
 		gs 'stat'
-		'<center><img src="images/characters/village/mira/MiraMeadowS.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraMeadowS.jpg"></center>'
 		'She is on all fours with his back to you and painfully, but enough moaning, fingering her butt a ear of corn.'
 		gs 'arousal', 'voyeur', 10
 		gs 'arousal', 'end'

+ 11 - 11
locations/Military

@@ -6,7 +6,7 @@ if $ARGS[0] = 'start':
     $location_type = 'public_outdoors'
 	gs 'stat'
 	'<center><b><font color="maroon">Army Camp</font></b></center>'
-	'<center><img src="images/locations/city/shared/military/military.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/shared/military/military.jpg"></center>'
 	'A small city with a lot of tents and full of people, a lot of soldiers are running around with guns, training.'
 
 	act 'Work in the infirmary':
@@ -27,7 +27,7 @@ if $ARGS[0] = 'start':
 
 	act 'Take a walk in the woods':
 		cls
-		'<center><img src="images/img/_nuki/military/woman_forest.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/img/_nuki/military/woman_forest.jpg"></center>'
 		minut += 60
 		milprorand = rand(0, 10)
 		gs 'stat'
@@ -56,7 +56,7 @@ if $ARGS[0] = 'san0':
 	*clr
 	gs 'npcgeneratec', 0, 'soldier', rand(18,30)
 	gs 'boyStat', $npclastgenerated
-	'<center><img src="images/locations/city/shared/military/sex/san0.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/san0.jpg"></center>'
 	'During the examination, the patient shows you his erection and looks at you with anticipation.'
 
 	act 'Drive him away':gt 'Military', 'start'
@@ -75,7 +75,7 @@ if $ARGS[0] = 'san1':
 	*clr
 	gs 'npcgeneratec', 0, 'army doctor', rand(22,32)
 	gs 'boyStat', $npclastgenerated
-	'<center><img src="images/locations/city/shared/military/sex/san1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/san1.jpg"></center>'
 	'While the infirmary is unoccupied, the doctor begins to molest you.'
 
 	act 'Drive him away':gt 'Military', 'start'
@@ -103,7 +103,7 @@ if $ARGS[0] = 'pro0':
 		$boy[1] = $npclastgenerated
 		cla
 		*clr
-		'<center><img src="images/locations/city/shared/military/sex/pro0.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/pro0.jpg"></center>'
 		'Your hands are tied and you are led to the headquarters where they set up an interrogation, then with the words "Now the interrogation begins!", they pull out their cocks. That''s what you get for allowing two burly men you do not even know to bind your hands.'
 
 		act 'Submit':
@@ -124,7 +124,7 @@ if $ARGS[0] = 'pro1':
 	act 'Ignore it':gt 'military', 'rape'
 
 	act 'Run away':
-		'<center><img src="images/img/_nuki/military/forest_running.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/img/_nuki/military/forest_running.jpg"></center>'
 		if pcs_run < 10:
 			peshimraperand = rand(0, 11)
 		elseif pcs_run < 20:
@@ -170,14 +170,14 @@ if $ARGS[0] = 'rape':
 	guy += 1
 	'You suddenly feel a blow on the back of your head, and lose conciousness.'
 	'...'
-	'<center><img src="images/locations/city/shared/military/sex/rape1.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/rape1.jpg"></center>'
 	'...'
 	'You woke up in a barn with a bag on your head, so you can''t see anything. You also have a headache from the impact to your head, and a leash around your neck.'
 
 	act 'Shout':
 		cla
 		*clr
-		'<center><img src="images/locations/city/shared/military/sex/rape2.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/rape2.jpg"></center>'
 		'You began to cry for help, when a dick is stuffed in your mouth.'
 		'"Here''s something to shut your mouth", came the voice of a rapist.'
 		'You tried to spit it out, but its getting worse as he thrust it down your throat, and began to throatfuck you.'
@@ -190,7 +190,7 @@ if $ARGS[0] = 'rape':
 			*clr
 			cumprecheck = 1
 			gs 'cum_manage'
-			'<center><img src="images/locations/city/shared/military/sex/rape3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/rape3.jpg"></center>'
 			'When you are starting to lose consciousness choking on his cock, he takes it out of you mouth, pulls the baf from your head and throws you on a crate. He steps to you, forcing his dick into your vagina quite forcefully. Although you can see now, you still tied up to do effectively anything.'
 
 			gs 'arousal', 'vaginal', 10, 'sub', 'rough'
@@ -199,7 +199,7 @@ if $ARGS[0] = 'rape':
 			act 'Further':
 				cla
 				*clr
-				'<center><img src="images/locations/city/shared/military/sex/rape4.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/rape4.jpg"></center>'
 				'When your pussy bored him, he turned you around and drove his cock into your ass. You cry out in pain, but he does not care and continues to fuck your ass as hard as he could. You cry and beg him to at least use some lubrication, but he just scowls in response. You pass out from the pain and shock.'
 
 				gs 'arousal', 'anal', 10, 'sub', 'rough'
@@ -214,7 +214,7 @@ if $ARGS[0] = 'rape':
 					pcs_makeup = 0
 					minut += 240
 					SUB += 5
-					'<center><img src="images/locations/city/shared/military/sex/rape5.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/city/shared/military/sex/rape5.jpg"></center>'
 					'You do not know how much time passed since you fainted, but when you regain your concoiusness he''s pulling out of you. He pulls you to your knees and stuck his dick in your mouth, saying only a word, "Suck". You dutifully start to suck him off with your ass is brutally raped and in pain, wondering whether to bite it off, but before you could give it a second thought your rapist suddenly comes in your mouth. After this you are immediately knocked out again with a blow to your head.'
 
 					gs 'arousal', 'end'

+ 19 - 19
locations/Mirafather

@@ -13,7 +13,7 @@ gs 'stat'
 
 if npc_QW['A64'] < 10:'<center><b><font color = maroon>Father Miroslava</font></b></center>'
 if npc_QW['A64'] >= 10:'<center><b><font color = maroon>Afanasiy</font></b></center>'
-'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 'Mira''s father, <<boyage>> years old. After his wife died, he drank heavily and looks much older than is actually is, still he is in good shape for a man his age.'
 if MiraFather ! daystart:
 	MiraFather = daystart
@@ -25,7 +25,7 @@ if MiraFather ! daystart:
 
 		act 'Leave': gt 'miroslavahome', 'start'
 
-		'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 		'You are greeted with Mira''s father and politely inquire about his health.  He responds with a smile and says,"All is well, little lady"'
 		if npc_QW['A64'] >= 10:
 			act 'Chat':
@@ -33,7 +33,7 @@ if MiraFather ! daystart:
 				if npc_QW['A64'] < 20:npc_QW['A64'] += 1
 				minut += 5
 				gs 'stat'
-				'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 				'You spend several minutes chatting with Mira''s father about the weather and trivia.'
 
 				act 'Leave': gt 'miroslavahome', 'start'
@@ -45,7 +45,7 @@ if MiraFather ! daystart:
 				if npc_QW['A64'] < 30:npc_QW['A64'] += 1
 				gs 'stat'
 						
-				'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 				'You spend several minutes with Afanasiy, playful looking him over and smiling meaningfully at him.  He is glad of the company of a beautiful young woman.  A couple of times during your conversation, you noticed that his eyes roving up and down your body appraisingly.'
 				gs 'arousal', 'foreplay', 10
 				gs 'stat'		
@@ -54,7 +54,7 @@ if MiraFather ! daystart:
 					    cls
 					    npc_QW['A64'] = 31
 					    gs 'stat'
-					    '<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+					    '<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 					    'You move over and stand next to Afanasiy.  You let your hand start to strokie his thigh and end up on his chest. Afanasiy a releases languid sigh, licking his lips and in a couple of minutes nods to himself as if he has made a decision.  Which he has.  Athanasios, takes you by the hand and leds you into his house, and then down the hall into his room.'
 					    gs 'arousal', 'foreplay', 10
 						gs 'stat'
@@ -62,7 +62,7 @@ if MiraFather ! daystart:
 					        cls
 							guy += 1
 							gs 'stat'
-							'<center><img src="images/locations/gadukino/sex/mira/mirafathersexkuni.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersexkuni.jpg"></center>'
 							'Afanasiy'' is a gentle lover.  With practiced ease he gently undresses you and crouches before you.  His mouth and fingers play across the lips of your pussy, he skillfully licks you until, until he brings you a powerful orgasm.'
 							$orgasm_or = 'yes'
 							gs 'arousal', 'cuni', 10
@@ -74,7 +74,7 @@ if MiraFather ! daystart:
 								gs 'boyStat', 64
 								pose = 0
 								gs 'stat'
-								'<center><img src="images/locations/gadukino/sex/mira/mirafathersex.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex.jpg"></center>'
 								if mesec = 0 and pcs_vag > 0:
 									dynamic $sexstart
 									dynamic $sexstart2
@@ -100,7 +100,7 @@ if MiraFather ! daystart:
 						pose = 0
 						temp = RAND(0,5)
 						gs 'stat'
-						'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 						if temp < 5:
 							'You expressly wink at Afanasiy and he understands your meaning.  Looking about for noicy nieghbors, he quickly waves for you to enter the house.'
 							gs 'arousal', 'foreplay', 5
@@ -111,43 +111,43 @@ if MiraFather ! daystart:
 								gs 'stat'
 								
 								if temp = 0:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafathersex.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex.jpg"></center>'
 									gs 'arousal', 'vaginal', 10
 									gs 'stat'
 								elseif temp = 1:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafathersex1.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex1.jpg"></center>'
 									gs 'arousal', 'vaginal', 10
 									gs 'stat'
 								elseif temp = 2:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafathersex2.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex2.jpg"></center>'
 									gs 'arousal', 'vaginal', 10
 									gs 'stat'
 								elseif temp = 3:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafathersex3.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex3.jpg"></center>'
 									gs 'arousal', 'vaginal', 10
 									gs 'stat'
 								elseif temp = 4:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafathersex4.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathersex4.jpg"></center>'
 									gs 'arousal', 'vaginal', 10
 									gs 'stat'
 								elseif temp = 5:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafatherbj.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafatherbj.jpg"></center>'
 									gs 'arousal', 'bj', 10
 									gs 'stat'
 								elseif temp = 6:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafatherbj1.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafatherbj1.jpg"></center>'
 									gs 'arousal', 'bj', 10
 									gs 'stat'
 								elseif temp = 7:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafatherbj2.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafatherbj2.jpg"></center>'
 									gs 'arousal', 'bj', 10
 									gs 'stat'
 								elseif temp = 8:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafatherbj3.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafatherbj3.jpg"></center>'
 									gs 'arousal', 'bj', 10
 									gs 'stat'
 								elseif temp = 9:
-									'<center><img src="images/locations/gadukino/sex/mira/mirafatherbj4.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafatherbj4.jpg"></center>'
 									gs 'arousal', 'bj', 10
 									gs 'stat'
 								end
@@ -182,7 +182,7 @@ if MiraFather ! daystart:
 										spafinloc = 14 & gs 'cum_manage'
 										gs 'stat'
 												
-										'<center><img src="images/locations/gadukino/sex/mira/mirafathercum.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirafathercum.jpg"></center>'
 										'Afanasiy gently pulls away from you and leaving a couple of pearly drops of semen on your lips, he starts cumming on your tits and abdomen.'
 										gs 'arousal', 'end'
 										gs 'stat'

+ 72 - 72
locations/Miroslava

@@ -55,8 +55,8 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 		mira_no_home = 0
 		gs 'stat'
 		if MiraLoc = 1:
-			if $clothingworntype ! 'nude':'<center><img src="images/characters/village/mira/mira_go_home.jpg"></center>'
-			if $clothingworntype = 'nude':'<center><img src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
+			if $clothingworntype ! 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home.jpg"></center>'
+			if $clothingworntype = 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
 		end    
 		if MiraLoc ! 1:gs 'Miroslava', 'miraclothes'
 		'"<<$pcs_nickname>>, you''re fun to be with, but Dad has chores for me to work on." Mira tells you.'
@@ -71,8 +71,8 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 		mira_no_home = 0
 		gs 'stat'
 		if MiraLoc = 1:
-			if $clothingworntype ! 'nude':'<center><img src="images/characters/village/mira/mira_go_home.jpg"></center>'
-			if $clothingworntype = 'nude':'<center><img src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
+			if $clothingworntype ! 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home.jpg"></center>'
+			if $clothingworntype = 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
 		end    
 		if MiraLoc ! 1:gs 'Miroslava', 'miraclothes'
 		'"<<$pcs_nickname>>, you''re fun to be with, but I gotta get home.  Dad has chores for me to work on.," Mira tells you.'
@@ -99,8 +99,8 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 		mira_no_home = 0
 		gs 'stat'
 		if MiraLoc = 1:
-			if $clothingworntype ! 'nude':'<center><img src="images/characters/village/mira/mira_go_home.jpg"></center>'
-			if $clothingworntype = 'nude':'<center><img src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
+			if $clothingworntype ! 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home.jpg"></center>'
+			if $clothingworntype = 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/mira_go_home_nude.jpg"></center>'
 		end    
 		if MiraLoc ! 1:gs 'Miroslava', 'miraclothes'
 		'"<<$pcs_nickname>>, you''re fun to be with, but I gotta get home and get to bed.  Dad has chores for me to work on tomorrow." Mira tells you.'
@@ -137,7 +137,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 20
 					tanga = flag_tanga
 					gs 'clothing', 'wear', $lastwornclothingtype, lastwornclothingnumber
-					'<center><img src="images/locations/gadukino/river/dressbch.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/river/dressbch.jpg"></center>'
 					'You change into your clothes and go home with Mira.'
 						
 					act 'Further': gt'Gadhouse'
@@ -150,7 +150,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				npc_rel['A60'] -= 1
 				gs 'stat'
 				
-				'<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 				'You denied Mira, citing the fact that there you will be bored.'
 				
 				act 'Further': gt 'Miroslava', 'Start'
@@ -174,7 +174,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				mira_go_blok = 1
 				gs 'stat'
 
-				'<center><img src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
 				'You Mira for an hour killed for watching TV.'
 					
 				act'Further':gt'Gadhouse'
@@ -185,7 +185,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				minut += 1
 				npc_rel['A60'] -= 1
 				
-				'<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 				'You denied Mira, referring to the fact that you are not interested.'
 				act 'Further': gt $loc, $metka
 			end    
@@ -213,7 +213,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				end			    
 				gs 'stat'
 				
-				'<center><img src="images/characters/village/mira/girls_go.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/girls_go.jpg"></center>'
 				'You go to Mira through the dense undergrowth to the hidden meadow and all the way she goes, merrily chirping and telling stories from his past city life.'
 				act 'Further': gt 'Meadow'
 			end	
@@ -224,7 +224,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				npc_rel['A60'] -= 1
 				gs 'stat'
 				
-				'<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 				'You denied Mira, citing the fact that there you will be bored.'
 				act 'Further': gt 'Miroslava', 'Start'
 			end
@@ -253,7 +253,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				end			    
 				gs 'stat'
 				
-				'<center><img src="images/characters/village/mira/girls_go.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/girls_go.jpg"></center>'
 				'You decided to go with Mira to the village beach and all the way she goes, merrily chattering and telling stories.'
 				act 'Further': gt'Gadriver', 'Gadbitch'
 			end	
@@ -264,7 +264,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				npc_rel['A60'] -= 1
 				gs 'stat'
 				
-				'<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 				'You tell Mira that you don''t feel like going to the river, citing the fact that there you will be bored.'
 				act 'Further': gt 'Miroslava', 'Start'
 			end
@@ -298,7 +298,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				npc_rel['A60'] -= 1
 				gs 'stat'
 				
-				'<center><img src="images/pc/speak_to_the_hand.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 				'You denied Mira, citing the fact that there you will be bored.'
 				act 'Further': gt 'Miroslava', 'Start'
 			end
@@ -323,7 +323,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				npc_rel['A60'] -= 1
 				gs 'stat'
 				
-				'<center><img src="images/characters/village/mira/mira.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mira.jpg"></center>'
 				'"Not right now Mira," you said.  "I''m not in the mood to talk right now."'
 				act 'Further': gt 'Miroslava', 'Start'
 			end
@@ -340,7 +340,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 			if npc_rel['A60'] < 50: npc_rel['A60'] += 1
 			gs 'stat'
 			
-			'<center><img src="images/characters/village/mira/graze_cow_mira.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/graze_cow_mira.jpg"></center>'
 			'Within the hour you chatted with Mira. Your relationship has improved.'
 					
 			if hour < 13:act 'Further':gt'gadfield','cow'
@@ -360,7 +360,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				if temper >= 25 and sunWeather = 1:water -= 24
 				gs 'stat'
 				
-				'<center><img src="images/characters/village/mira/graze_cow_run_mira.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/graze_cow_run_mira.jpg"></center>'
 				'You within the hour, nothing to do, was running across the field.'
 				
 				if hour < 14:act 'Further':gt'gadfield','cow'
@@ -377,7 +377,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					pcs_sweat += 10
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/graze_cow_sun_mira.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/graze_cow_sun_mira.jpg"></center>'
 					'You lie down next to Mira on the cover and thrilled in the sun.'
 					
 					if hour < 14:act 'Further':gt'gadfield','cow'
@@ -397,7 +397,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				if pcs_stren < 30:stren_exp += 1
 				gs 'stat'
 					
-				'<center><img src="images/locations/gadukino/village/graze_cow_river_mira.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/graze_cow_river_mira.jpg"></center>'
 				'You wade in the river, fun with Mira spray each other with water.'
 					
 				act 'Further':gt'gadfield','cow2'
@@ -411,7 +411,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				pcs_tan += 1
 				gs 'stat'
 					
-				'<center><img src="images/characters/village/mira/graze_cow_sun_mira2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/graze_cow_sun_mira2.jpg"></center>'
 				'You lie down next to Mira on the sand and chatting about nothing, thrilled in the sun.'
 					
 				act 'Further':gt'gadfield','cow2'
@@ -453,7 +453,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						end
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/girls_walking'+rand(1,3)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/girls_walking'+rand(1,3)+'.jpg"></center>'
 						'You invite her along to wander around the village and she gladly accepts, then you walk together around the small village, telling each other different stories from your lives.'
 						if npc_QW['A63'] > 15 and npc_QW['A60'] > 15 and gadriver_gang < 3:
 							temp = rand(1,20)
@@ -477,7 +477,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						minut += 5
 						gs 'stat'
 							
-						'<center><img src="images/characters/village/mira/Mira_said_no.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_said_no.jpg"></center>'
 						'You ask Mira to walk around the village, but she tells you that she does not want people to see you walking together and then wonder if she, too, is such a whore...'
 								
 						act 'Leave':gt $loc, $metka    
@@ -486,7 +486,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 5
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira to take a stroll around the village, but Mira only shakes her head, saying that she is too ashamed to leave the house.'
 					
 					act 'Leave':gt $loc, $metka    
@@ -508,7 +508,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				end
 				gs 'stat'
 			
-				'<center><img src="images/characters/village/mira/girls_go.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/girls_go.jpg"></center>'
 				'You lead Mira through the thickets to the hidden meadow and all the way she talks about everything and anything, merrily chirping and telling stories from her past urban life.'
 			
 				act 'Come':gt 'meadow'
@@ -529,7 +529,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						end
 						gs 'stat'
 					
-						'<center><img src="images/characters/village/mira/girls_go.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/girls_go.jpg"></center>'
 						'You offer Mira to take a stroll down to your secret place and she readily agrees.  On the way you tell each other different stories, some true but mostly tall tales.'
 						
 						act 'Further':gt 'meadow'
@@ -537,7 +537,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						minut += 5
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/Mira_said_no.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_said_no.jpg"></center>'
 						'You offer Mira to walk outside the village, but she says she doesn`t want you to trudge wherever is handy.'
 						
 						act 'Leave':gt $loc, $metka
@@ -546,7 +546,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 5
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira ifg she wants to go to the meadow, but Mira only shakes her head, saying that she is too ashamed to leave the house.'
 					
 					act 'Leave':gt $loc, $metka    
@@ -603,7 +603,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 5
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira if she wants to go drink with the boys, but she only shakes her head, saying that she is too ashamed and she will will not leave the house.'
 					
 					act 'Leave':gt $loc, $metka						    
@@ -639,7 +639,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						MiraLoc = 0
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/Mira_said_no.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_said_no.jpg"></center>'
 						'You offer Mira together to relax you in the bath, but she rudely answers that will never go out with such a whore like you, one-bath.'
 						
 						act 'Leave':gt $loc, $metka		            
@@ -649,7 +649,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					MiraLoc = 0
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira is she wants to come over and take a steam bath, but she only shakes her head, saying that after what she did she is too ashamed to leave the house.'
 					act 'Leave':gt $loc, $metka						    
 				end
@@ -683,7 +683,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						minut += 5
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/Mira_said_no.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_said_no.jpg"></center>'
 						'You suggest going to the river together, but she snorts contemptuously at you and says that she is not going anywhere with a slut like you.'
 						
 						act 'Leave':gt $loc, $metka
@@ -693,7 +693,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 5
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira if she wants to go to the river with you, but she only shakes her head, saying that after her humiliation she will not leave the house.'
 					act 'Leave':gt $loc, $metka
 				end
@@ -756,7 +756,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						MiraLoc = 0
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/Mira_said_no.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_said_no.jpg"></center>'
 						'You have to offer Mira together to go to the forest for mushrooms and berries, but the contemptuous snorts in response and says that`s not going anywhere with this slut as you.'
 						
 						act 'Leave':gt $loc, $metka
@@ -765,7 +765,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 5
 					gs 'stat'
 					
-					'<center><img src="images/characters/village/mira/Mira_shy.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_shy.jpg"></center>'
 					'You ask Mira to go to the forest with you to look for mushrooms and berries, but she only shakes her head, saying that after her humiliation she will not leave the house.'
 					act 'Leave':gt $loc, $metka
 				end
@@ -783,7 +783,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 				gs 'clothing', 'strip', 'gadforest'
 				gs 'stat'
 				 
-				'<center><img src="images/characters/village/mira/miraforest6.jpg"></center>'		    
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/miraforest6.jpg"></center>'		    
 				'You offered Mira to take a walk through the woods naked and she immediately agreed.'
 				 
 				act'Further':gt'gadforest','1'    
@@ -807,7 +807,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					cls
 					minut += 15				    
 					gs 'stat'
-					'<center><img src="images/locations/gadukino/village/street.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/street.jpg"></center>'
 					'You lead Mira on the village street. Mira stares at his feet, sometimes throwing at you with watchful eyes...'
 					
 					act 'Ordering her to undress':
@@ -815,7 +815,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						minut += 2
 						gs 'stat'
 						
-						'<center><img src="images/characters/village/mira/Mira_looks.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_looks.jpg"></center>'
 						'You lead her to the center of the village square, in front of the market.  Here you turn to her and demand in a haughty that see undress.  You tell her that this is your final wish and after she completes this task you will forgive her betrayal.  Mira''s mouth slowly drops open and she looks at you like you insane.'
 						'"Come on, you`re like a little girl," you snort, "we both know you`re a big whore and can`t live without having cock on a daily basis. And now this is the mother load, entirely for free."'
 						'Mira in silence and looks at you, then looks around at the village street on which people walk about their business.'
@@ -827,7 +827,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 							pcs_horny += RAND(5,10)
 							gs 'stat'
 							
-							'<center><img src="images/characters/village/mira/Mira_nude1.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_nude1.jpg"></center>'
 							'"No, you freely made the promise of three wishes.  Anything I want.  I want you to strip naked and head through the village to the fields.  I will meet you there with your cloths.  Now, do as you promised," you stated in an adamant voice.'
 							'Mira hesitates for another minute shifting uncomfortably from foot to foot, then nods to herself and finally decides to undress before you.  Once nude, she hands you her cloths.'								    
 							'"Well, now you have get through the entire village and to the fields.  Once you get to me you can consider yourself forgiven," you said with a malicious smile and slammed the palm of you hand into Mira''s ass to help her on the way.  You slowly follow herand watch with interest.'
@@ -838,7 +838,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 								pcs_horny += RAND(5,10)
 								gs 'stat'
 								
-								'<center><img src="images/characters/village/mira/Mira_nude2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_nude2.jpg"></center>'
 								'Mira hesitantly begins to move through the village street. You look at her and the reaction of passers-by.'
 								
 								act 'Look further':
@@ -851,7 +851,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 									npc_rel['A60'] = 1
 									gs 'stat'
 									
-									'<center><img src="images/characters/village/mira/Mira_nude3.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_nude3.jpg"></center>'
 									'Finally flushed crimson, Mira gets to the fields just beyond the village.  She then turn and rushes up to you.'
 									'"<<$pcs_nickname>>, we`re even!", - Mira states and looks at you emploringly.'
 									'You nodding his head while handing her clothes back.  After watching a few more minutes as Mira dresses several of the village men are hooting as she sprint to her house, slowly the men settle down and go about their business.'
@@ -868,7 +868,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 							npc_QW['A60'] = 31
 							gs 'stat'
 							
-						   '<center><img src="images/characters/village/mira/Mira_leaves.jpg"></center>'
+						   '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_leaves.jpg"></center>'
 						   '"Well Mira, fuck you.  I had a good day planned.  You can consider yourself forgiven," - you said, after a pause.'
 						   'The girl was still for several moments, shifts uncomfortably from foot to foot, unable to believe his ears, then jumps up to you and kisses you on the cheek.'								    
 						   '"Thank you <<$pcs_nickname>>, I.. I.., "- not retrieves as she could and ran home.'
@@ -884,13 +884,13 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						cls
 						minut += 10
 						gs 'stat'
-						'<center><img src="images/beast/bandit/piratmira.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira.jpg"></center>'
 						'You lead Mira to your grandparents barn, where you are welcomed by horny Bandit.  His bloodshot swollen member and a huge dick hanging between his legs.  Mira, trying not to look up, catches a glimsp at him and promptly gets flushed beet red...'
 						act 'Order her to suck Bandit':
 							cls
 							minut += 2
 							gs 'stat'
-							'<center><img src="images/beast/bandit/piratmira.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira.jpg"></center>'
 							'You tell Mira that she will now fulfill your third wish.  You tell her in a demanding voice to suck Bandit bloated dog cock.  You tell her that if shw fulfill her vow and grants her wish, all will be forgiven. Her mouth drops open slowly and she looks at you, as if your insane.'
 							'"Come on", you tell the girl.  With a contemptuous snort you,"We both know that you''re a whore and prostitute, and can''t live without dick in you at least a few times a day.  And right here," you point at Bandit''s dick, "is a huge cock ready to go!  Mitka''s cock is puny next to this one, is it not?"'
 							'Mira stares at you like a deer in headlights, Bandit''s huge pulsating cock and just quivers, she isn''t going for it.  You decide to push her and say, "It isn''t his first time with a human.  I have been riding this cock for awhile now.  It''s heavenly."  Mira looks at you after that confession with eyes wide and round, as if seeing you for the first time.'
@@ -899,14 +899,14 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 								minut += 5
 								pcs_horny += RAND(5,15)
 								gs 'stat'
-								'<center><img src="images/beast/bandit/piratmira2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira2.jpg"></center>'
 								'As proof of your words, you walk over and sit down next to Bandit, who immediately tries to knock you down and hump you.  You stop him by taking his cock in your hand and then bending down and sticking it in your mouth.  You withdraw your mouth from the monsterous cock but first plant a kiss on the tip of his cock.  Mira is shocked and gasps, and you immediately stand up and say, "You see!  A cock is a cock, man or animal makes no difference.  Now it''s your turn."  Mira keeps looking from you to Bandit for another couple of moments, shifting from foot to foot uncomfortably.  Finally, you can see she has made up her mind...'
 								act 'Watch':
 									cls
 									minut += 5
 									pcs_horny += RAND(25,30)
 									gs 'stat'
-									'<center><img src="images/beast/bandit/piratmira1.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira1.jpg"></center>'
 									'Mira hesitantly crouches next to Bandit.  He watches her with interest.  Mira exhales sharply and with a new found resolve she lowers her head and gently, and with much hesitation takes his throbing cock in hand, after a minute, she sticking out her tongue and starts licking it... You tell her what a good whore she is and how much pleasure she is give to her canine lover.'
 									act 'Watch':
 										cls
@@ -915,7 +915,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 										gs 'stat'
 										npc_QW['A60'] = 31 & !back to mira questline by illume
 										mirabandit = 1
-										'<center><img src="images/beast/bandit/piratmira3.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/beast/bandit/piratmira3.jpg"></center>'
 										'She spends several minutes twisting her tongue over the tip and shaft of the dog''s dick.  With a sigh, Mira lays on her back and starts to suck his cock, her lips crawl over Bandit''s massive hard cock. After a minute she pulls away, you see, she is having a hard time taking his cock into her mouth, Bandit''s cock starts to drip pre-cum.  You tell her, to swallow every last drop, pro-cum, sperm or even piss if Bandit needs to go.  She sighs resignedly and continues to suck.  Soon Bandit starts to cum and Mira chokes at the shear volume of his cum, but she swallows it all and then she wipes a finger across her face and gathers up all the stay cum and shoves that into her mouth and swallows.  She repeats this on her lips, chin, and the little that escaped to her neck and chest...'
 										act 'Finish':mira_guest = 0 & gt 'gadukino'
 									end
@@ -930,7 +930,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					minut += 10
 					gs 'stat'
 					
-					'<center><img src="images/locations/gadukino/village/sarai.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/village/sarai.jpg"></center>'
 					'You lead Mira to his barn, where there is an empty kennel next to Bandit`s.  Mira looks at you blankly, waiting for you to continue.'
 					
 					act 'Ordering her to undress':
@@ -938,7 +938,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 						minut += 2
 						gs 'stat'
 					
-						'<center><img src="images/characters/village/mira/Mira_looks.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_looks.jpg"></center>'
 						'Having taken Mira and the booth, appraising look, you certain of, demanding voice Mira ordered to undress and climb into the booth, adding that this is your last wish, after which you will have to forgive her betrayal. She slowly mouth drops open and she looks at you like you insane.'
 						' - Come on, you`re like a girl, ` snort you, we both know you`re a big whore and can`t live without members. And then just want to sit in the booth and posobirat Bandit.'
 						'Mira stares on you, then on the booth, which still bears a dog.'
@@ -950,7 +950,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 							pcs_horny += RAND(5,10)
 							gs 'stat'
 							
-						   '<center><img src="images/characters/village/mira/Mira_kennel1.jpg"></center>'
+						   '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_kennel1.jpg"></center>'
 						   '- No Peace, your tongue no one pulled, now well, do as you promised, are adamant voice said you.'
 						   'The girl for another minute shifts uncomfortably from foot to foot, then finally decided and undresses before the goal.Casting box the last time she gets on all fours and awkwardly tries to get in close box.'								    
 						   '- Now sit a couple of hours and free, you said with a malicious smile and slamming the palm Mira on the back to make the speed began to watch with interest for her.'
@@ -964,7 +964,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 								!npc_rel['A60'] = 5
 								gs 'stat'
 								
-								'<center><img src="images/characters/village/mira/Mira_kennel2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_kennel2.jpg"></center>'
 								'After watching Mira for a while, you went on the Affairs.'
 								' - Unbind yourself if you don`t come - threw you she lastly.'
 								'<b>(While this is the end of the event, the sequel will follow in the next versions)</b>'
@@ -980,7 +980,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 							npc_QW['A60'] = 31
 							gs 'stat'
 							
-						   '<center><img src="images/characters/village/mira/Mira_leaves.jpg"></center>'
+						   '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_leaves.jpg"></center>'
 							'- Well Mira, fuck you, I have a good day. You can consider yourself forgiven, - you said, after a pause.'
 							'The girl was still a few moments, hesitates from foot to foot, unable to believe his ears, then jumps up to you and smacking you in the cheek.'								    
 							'- Thank you <<$pcs_nickname>>, I.. I.., - not retrieves as he could and ran home.'
@@ -1014,7 +1014,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 							mira_guest = 1
 							tanga = flag_tanga
 							gs 'clothing', 'wear', $lastwornclothingtype, lastwornclothingnumber
-							'<center><img src="images/locations/gadukino/river/dressbch.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/gadukino/river/dressbch.jpg"></center>'
 						   'You changed into some new clothes and went home with Mira.'	
 						   act 'Further': minut += 15 & gt'Gadhouse'
 						end	
@@ -1029,7 +1029,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					pcs_mood += 10
 					gs 'stat'
 
-					'<center><img src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
 					'You and Mira watch TV for an hour.'
 					
 					act'Further':gt'Gadhouse'
@@ -1042,7 +1042,7 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 					if npc_rel['A60'] < 20: npc_rel['A60'] += RAND(1,2)
 						gs 'stat'
 
-						'<center><img src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira_TV'+rand(1,12)+'.jpg"></center>'
 						'You ask your grandparents if Mira can sleep over.  They tell you it''s fine with them.  So you invite Mira to sleep over.'
 						*nl
 						'You and Mira head over to the huge wardrobe where your cloths are and you spend an hour trying on different cloths and underwear.'
@@ -1075,25 +1075,25 @@ end
 if $ARGS[0] = 'miraclothes':
     '<center><B>Mira</B></center>'	
     if npc_QW['A60'] = 0:
-	    '<center><img src="images/characters/village/mira/Mira.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira.jpg"></center>'
     elseif npc_QW['A60'] > 0 and npc_QW['A60'] < 4:
-	    '<center><img src="images/characters/village/mira/Mira3.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/Mira3.jpg"></center>'
     elseif npc_QW['A60'] >= 4 and npc_QW['A60'] < 8:
-	    '<center><img src="images/characters/village/mira/mira0,'+rand(0,5)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/mira0,'+rand(0,5)+'.jpg"></center>'
     elseif npc_QW['A60'] >= 8 and npc_QW['A60'] < 12:
-	    '<center><img src="images/characters/village/mira/mira1,'+rand(0,2)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/mira1,'+rand(0,2)+'.jpg"></center>'
     elseif npc_QW['A60'] >= 12 and npc_QW['A60'] < 20:
-	    '<center><img src="images/characters/village/mira/mira2,'+rand(0,5)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/mira2,'+rand(0,5)+'.jpg"></center>'
     elseif npc_QW['A60'] >= 20:
-	    '<center><img src="images/characters/village/mira/mira3,'+rand(0,3)+'.jpg"></center>'
+	    '<center><img <<$set_imgh>> src="images/characters/village/mira/mira3,'+rand(0,3)+'.jpg"></center>'
     end
 end
 
 
 if $ARGS[0] = 'mira_river':	
-	if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):'<center><img src="images/characters/village/mira/miraRiverTalk.jpg"></center>'	        
-	if $clothingworntype = 'swimwear':'<center><img src="images/characters/village/mira/miraRiverTalkBikini.jpg"></center>'
-	if $clothingworntype = 'nude':'<center><img src="images/characters/village/mira/miraRiverNudeTalk.jpg"></center>'
+	if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):'<center><img <<$set_imgh>> src="images/characters/village/mira/miraRiverTalk.jpg"></center>'	        
+	if $clothingworntype = 'swimwear':'<center><img <<$set_imgh>> src="images/characters/village/mira/miraRiverTalkBikini.jpg"></center>'
+	if $clothingworntype = 'nude':'<center><img <<$set_imgh>> src="images/characters/village/mira/miraRiverNudeTalk.jpg"></center>'
 end
 
 if $ARGS[0] = 'miratalk':
@@ -1131,7 +1131,7 @@ if $ARGS[0] = 'miratalk':
 				npc_rel['A60'] += 1
 				npc_QW['A60'] = 2
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 				'You ask Mira if there is something between her and Mitka.  She looks at you a little timidly, but responds yes, there is.  She refuses to go into further detail, so you decide to leave the subject until a more appropriate time come up...'
 				act 'Finish':gt $loc, $metka
 			end
@@ -1148,14 +1148,14 @@ if $ARGS[0] = 'miratalk':
 			minut += 2
 			pcs_horny += 10
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 			'You coldly tell Mira that you saw her when she fucked Mitka in your meadow.  You remind her that she swore not to tell anyone about your secret place.  Mira turns red and flutters her eyes at you trying to look innocent as she mumbles that she''s sorry about breaking her promise.  Mira asks if there is any way to make amends.  You smile and remind her that she promised you three wishes if she ever revealed the meadow to anyone.  Mira meekly nods her head confirming that she does indeed remember making that promise and is ready to fullfil them.'
 			if pcs_dom >= 25:
 				cls
 				cla
 				minut += 5
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 				act 'Tell her to show you her pussy':
 					'"To start, you will pull down your panties and show me your pussy, and tell me what it felt like fucking Mitka in my meadow." you tell her sternly, "I want to know what is so special about his dick that you would exchange it for our friendship."' 
 					'Mira gasps in shock from the sting in your words and jumps to her feet. She stares at you stupified and you can see the protest welling up in her but you don''t give her time to recover.'
@@ -1169,7 +1169,7 @@ if $ARGS[0] = 'miratalk':
 						minut += 10
 						pcs_horny += 15
 						gs 'stat'
-						'<center><img src="images/characters/village/mira/mirawish1.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/village/mira/mirawish1.jpg"></center>'
 						'Mentally exulting over your victory, you allow Mira to drag you behind the shed. She stops and turns to you, her face filled with  a mix of anger and shame.  Mira searches your face for a few secons, hoping that you will relent until she sees that you meant what you said. She stomps her feet a few times on the ground in frustration, and then, with a heavy sigh, she starts to remove her panties.'
 						act 'Watch':
 							cls
@@ -1178,7 +1178,7 @@ if $ARGS[0] = 'miratalk':
 							npc_QW['A60'] = 4
 							Mira4day = daystart
 							gs 'stat'
-							'<center><img src="images/characters/village/mira/mirawish1_1.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/village/mira/mirawish1_1.jpg"></center>'
 							'Taking off her panties, Mira turns her ass to you and lifts up her skirt as she bends low. You smile broadly and in an indifferent voice order her to pull her ass cheeks apart. Mira reluctantly fulfills your requirement.  You then ask her to tell you what she felt as she fucked with Mitka on your meadow. Mira tries to straighten but you place a restraining hand on her back and tell her that your wishes will be humiliating punishments for her. Over the next five minutes, you rub Mira buttocks as she tells you in detail what she felt when she fucked Mitka...'
 							'Finally, you tell her that you do not feel she has fully atoned for her actions and this was only part of your first wish but futher punishments will have to wait for another time.'
 							act 'Turn around and walk away': gt 'gadukino'
@@ -1194,7 +1194,7 @@ if $ARGS[0] = 'miratalk':
 					npc_QW['A60'] = 5
 					npc_rel['A60'] -= 1
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/Mira3.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mira3.jpg"></center>'
 					'You say you want to see my fuck her ass because she told your secret. Mira jumps to her feet from such a word and just looks at you, but you don`t give her time to recover and continue to emphasize further, Recalling that a deal is a deal, and if it is his word doesn`t, then your friendship will end. Miroslav densely blushes and hesitantly shifting from foot to foot and you decided to go for broke, turn around and start to leave...'
 					' - Wait, so it`s screaming you in the back of Mira, but you pretend to not notice and go on.'
 					' - Well, <<$pcs_nickname>>, - after a couple of seconds until you hear a hysterical scream from Mira, I`ll think of something!'
@@ -1211,7 +1211,7 @@ if $ARGS[0] = 'miratalk':
 				pcs_horny += 10
 				npc_QW['A60'] = 5
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 				'You tell her that what you want to see, is Mitka fucking her in the ass.  Mira jumps to her feet in shock and looks at you with disbelief in her eyes.  But you don''t give her time to recover and continue to speak, emphasizing the deal she made with you, and if she can''t uphold her end then your friendship is at an end. Miroslava deeply blushes and hesitantly shifting from foot to foot watching you.  After a few seconds of silence, you nod your head and turn around and start to leave...'
 				'Mira loudly shouts at you to stop, but you pretend to not hear her and keep walking on.'
 				'"Fine, <<$pcs_nickname>> you win," Mira states loud enough for you to hear.  She is on the verge of hysteria, eyes watering and nose running, Mira nearly screams,"I, I`ll figure something out!"'
@@ -1231,7 +1231,7 @@ if $ARGS[0] = 'miratalk':
 			pcs_horny += 15
 			npc_QW['A60'] = 7
 			gs 'stat'
-			'<center><img src="images/characters/village/mira/mira3.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/village/mira/mira3.jpg"></center>'
 			'You tell Mira, that you have now seen Mitka fuck her in the ass.  Maliciously you ask, does she like having her ass fucked?  To your surprise, Mira responds that yes she does like it a bit.  Your slightly disappointedly, and then remind her, that she still has two wishes to fullfil.  Once they are all fullfilled, you will fill she had satisfied her debt to you.  Mira nods her head and says, she is ready to redeem your wishes upon demand.  You think it over several moments before walking away...'
 			act 'Leave':gt $loc, $metka
 		end

+ 25 - 25
locations/MiroslavaHome

@@ -9,8 +9,8 @@ if $ARGS[0] = 'start':
 	minut += 5
 	mira_temp = rand(0,15)
 	gs 'stat'
-
-	'<center><H4>Mira''s Yard</H4></center>'
+	'<center><h2>Gadukino Village</h2></center>'
+	'<center><b>Mira''s Yard</b></center>'
 
 	!!MiaLoc tells us where Mira is Located
 	!!----------------------------------------------
@@ -25,15 +25,15 @@ if $ARGS[0] = 'start':
 	if hour >= 8 and hour <= 22:
 		if month >= 4 and month <= 10:
 			if hour >= 6 and hour < 22:
-				'<center><img src="images/locations/gadukino/village/mirahome.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirahome.jpg"></center>'
 			else
-				'<center><img src="images/locations/gadukino/village/mirahome_night.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirahome_night.jpg"></center>'
 			end
 		else
 			if hour >= 8 and hour < 18:
-				'<center><img src="images/locations/gadukino/village/mirahome_winter.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirahome_winter.jpg"></center>'
 			else
-				'<center><img src="images/locations/gadukino/village/mirahome_winter_night.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirahome_winter_night.jpg"></center>'
 			end
 		end
 
@@ -67,7 +67,7 @@ if $ARGS[0] = 'start':
 				MiraLoc = 1
 				mira_no_home += rand(1,4)
 				gs 'stat'
-				'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 				'Mira''s father tells you that she''s not home, she is over at the river.'
 				act 'Go to river':gt 'gadriver','start'	
 			elseif mira_temp >= 10 and sunWeather = 0 and hour < 20 and MiraLoc ! 0 and Mira_no = 0:
@@ -75,7 +75,7 @@ if $ARGS[0] = 'start':
 				minut += 2
 				mira_no_home += rand(1,4)
 				gs 'stat'         
-				'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 				'Mira''s father tells you that she isn''t home.'
 				act 'Leave':gt 'Gadukino'
 			else
@@ -83,7 +83,7 @@ if $ARGS[0] = 'start':
 			end
 		end
 	else
-		'<center><img src="images/locations/gadukino/village/mirahome.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirahome.jpg"></center>'
 		'It''s late, most of Mira''s family is asleep, no need to wake people up unnecessarily.'
 	end
 
@@ -95,7 +95,7 @@ if $ARGS[0] = 'start':
 	   mirafathertalk = 1
 	   gs'stat'
 
-		'<center><img src="images/locations/gadukino/village/mirafather.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirafather.jpg"></center>'
 		'You are passing Mira''s house when you see Mira''s father headed in your direction.'
 		'"<<$pcs_firstname>>, wait.  I need to speak with you," he says coming closer to you.'
 		'You stop and look at him frightfully. "Did Mira tell him what I made her do?" you think as panicked thoughts race through your head.'
@@ -111,7 +111,7 @@ if $ARGS[0] = 'start':
 
 	if temper >= 15 and sunWeather = 1 and npc_QW['A60'] = 7 and hour >= 8 and hour <= 18:
 		cls
-		'<center><img src="images/characters/village/mira/MiraQW7.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/village/mira/MiraQW7.jpg"></center>'
 		'Entering the courtyard, you notice Miroslav, working in the garden.  She is bent over and, to your amazement, you see her bare naked crotch...'
 		act 'Approach it':
 			cls
@@ -125,14 +125,14 @@ if $ARGS[0] = 'start':
 				pcs_horny += 15
 				minut += 15
 				gs 'stat'
-				'<center><img src="images/characters/village/mira/Mirawish2.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/village/mira/Mirawish2.jpg"></center>'
 				'You enjoy the view, then you comes to mind crazy idea, and you decide to make a second wish. Mira Sadly said that you thought this was your second wish, but you answer that just could not resist, after which the speaks her to go for you.'
 				act 'Go out on the road':
 					cls
 					minut += 15
 					npc_QW['A60'] = 8
 					gs 'stat'
-					'<center><img src="images/characters/village/mira/Mirawish2_1.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/village/mira/Mirawish2_1.jpg"></center>'
 					'Out on the road you say Miroslava, so she posed as a prostitute, this will be the second wish. Mira sadly nods her head, looks around and seeing that the street was quiet, fulfills your desire...'
 					act 'Go':gt'gadukino'
 				end
@@ -146,14 +146,14 @@ if $ARGS[0] = 'mirabrother':
 	minut += 2
 	gs 'stat'
 
-	'<center><img src="images/locations/gadukino/sex/mira/mirabrother.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirabrother.jpg"></center>'
 
 	act 'Ask if you can get a ride on his motorcycle':
 		cls
 		minut += 2
 		gs 'stat'
 
-		'<center><img src="images/locations/gadukino/sex/mira/mirabrother.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/mirabrother.jpg"></center>'
 		'You ask Mira''s brother for a ride on his motorcycle.'
 		if hotcat < 7:
 			if npc_rel['A60'] > 20:
@@ -176,7 +176,7 @@ if $ARGS[0] = 'mirabrother':
 					minut += 2
 					gs 'stat'
 
-					'<center><img src="images/locations/gadukino/sex/mira/mirabromoto.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto.jpg"></center>'
 					'You quickly swing your leg up and over the iron horse, you plop your ass down on the motorcycles padded seat and grab the handlebars.  Mira''s brother, with a satisfied smile, never takes his eyes off your crotch.  You wiggle your ass on the seat a little giving him a great view of your naked pussy.'
 
 					'"Fine", he say still smiling, "Just fine!  You have an awesome pussy, and I''m sure my friend," and he slaps the gas tank,"is looking forward to having you ride on him. You know what I mean, yes?"  You give him a wicked grin and nod.  "We''ll give you a ride to remember, and then you can give me a ride to remember..."  You just continue to nod.'
@@ -190,7 +190,7 @@ if $ARGS[0] = 'mirabrother':
 						sub += 1
 						gs 'stat'
 
-						'<center><img src="images/locations/gadukino/sex/mira/mirabromoto.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto.jpg"></center>'
 
 						'"Cool, here take this helmet, safety first."'
 
@@ -200,7 +200,7 @@ if $ARGS[0] = 'mirabrother':
 							minut += 2
 							gs 'stat'
 
-							'<center><img src="images/locations/gadukino/sex/mira/mirabromoto1.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto1.jpg"></center>'
 
 							'You slide your as back to allow him room to mount the motorcycle.  He grabs his helmet from the handlebars and slams it down on his head.'
 
@@ -211,7 +211,7 @@ if $ARGS[0] = 'mirabrother':
 								pcs_mood = 100
 								gs 'stat'
 
-								'<center><img src="images/locations/gadukino/sex/mira/mirabromoto2.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto2.jpg"></center>'
 
 								'He guns the engine, which roars and then sets out at furious pace.  The rear wheel burns rubber and smokes a little as he rides you down the highway, after a few miles he does a U-turn and heads back towards Gadyukino and does not stop in the village.'
 
@@ -222,7 +222,7 @@ if $ARGS[0] = 'mirabrother':
 									minut += 2
 									gs 'stat'
 
-									'<center><img src="images/locations/gadukino/sex/mira/mirabromoto3.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto3.jpg"></center>'
 									'He rolls down a higway another mile he pulls the motorcycle off the main road onto a little side track and parks a couple hundred meters off the road. He jumps off the bike, pulling off his helmet, and turns to you with a "devil may care" attitude.   He pulls the helmet of your head and drops it to the ground.  He turns you around and begins to paw your crotch and tits...'
 
 									act 'Stand':
@@ -231,7 +231,7 @@ if $ARGS[0] = 'mirabrother':
 										minut += 2
 										gs 'stat'
 
-										'<center><img src="images/locations/gadukino/sex/mira/mirabromoto4.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto4.jpg"></center>'
 										'You, bearing in mind the deal, obediently stand, while his hands imperiously crumple your Breasts and stroking the crotch.'
 
 										act 'Stand':
@@ -240,7 +240,7 @@ if $ARGS[0] = 'mirabrother':
 											minut += 2
 											gs 'stat'
 
-											'<center><img src="images/locations/gadukino/sex/mira/mirabromoto5.jpg"></center>'
+											'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto5.jpg"></center>'
 											'You feel, as his hand rubs your crotch, fingering labia. A minute later a guy turns you on yourself, and persistently puts pressure on the shoulders...'
 
 
@@ -250,7 +250,7 @@ if $ARGS[0] = 'mirabrother':
 												minut += 2
 												gs 'stat'
 
-												'<center><img src="images/locations/gadukino/sex/mira/mirabromoto6.jpg"></center>'
+												'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto6.jpg"></center>'
 												'You obediently sit down in front of him on his haunches and unzip his pants. Opened them together with cowards, you see right in front of my face on his swelling member...'
 												act 'Suck':
 													cls
@@ -258,7 +258,7 @@ if $ARGS[0] = 'mirabrother':
 													minut += 5
 													gs 'stat'
 
-													'<center><img src="images/locations/gadukino/sex/mira/mirabromoto7.jpg"></center>'
+													'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto7.jpg"></center>'
 													'You have a few seconds, transfixed, watching, as he grows in power, and then, mouth wide open, gently absorb it into himself and then release, then take in hand and begin to suck on it and at the same time nadrachivat hand.'
 
 													act 'Swallow':
@@ -273,7 +273,7 @@ if $ARGS[0] = 'mirabrother':
 														if mirabrosextime = 0:mirabrosextime = 1 & guy += 1
 														gs 'stat'
 
-														'<center><img src="images/locations/gadukino/sex/mira/mirabromoto8.jpg"></center>'
+														'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mira/mirabromoto8.jpg"></center>'
 														'After a couple of minutes you in the mouth strikes unexpectedly warm sticky cum and you quickly begin to swallow. Miroslava brother for another minute stands, blissfully closed his eyes, while you are sucking his cock, and then zips up pants, sits on a motorcycle and drives away...'
 
 														act 'Going home': gt 'Gadhouse'

+ 2 - 2
locations/NatBelGo

@@ -1,7 +1,7 @@
 # NatBelGo
 gs 'stat'
 '<center><b><font color="maroon"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></font></b></center>'
-'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 'You go up to Natasha and she asks you, "Will you come to my house to do our homework?"'
 
 act 'Go with Natasha':
@@ -9,7 +9,7 @@ act 'Go with Natasha':
 	minut += 15
 	gs 'stat'
 	'<center><b><font color="maroon"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></font></b></center>'
-	'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 	'It takes you 15 minutes to walk to Natasha''s home. You discuss all the small stuff in your lives that amuse you.'
 
 	act 'Go into the apartment':gt 'NatBelHome'

+ 33 - 33
locations/NatBelHome

@@ -11,9 +11,9 @@ if natpregday > 0 and (daystart-natpregday) > (280 + rand(-2,2)):
 end
 if (daystart-natpregday) > 84 and natpregday > 0:
 	if (daystart-natpregday) < 200:
-		'<center><img src="images/characters/pavlovsk/school/girl/natasha/16(2).jpg" width="356"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/16(2).jpg" width="356"></center>'
 	else 
-		'<center><img src="images/characters/pavlovsk/school/girl/natasha/16(3).jpg" width="356"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/16(3).jpg" width="356"></center>'
 	end
 	'The state of the room and the whole apartment shows, that the occupant is very poor.'
 	'Looking at Natasha, it is obvious that she is pregnant; you have a strong suspicion that she carries your niece or nephew.'
@@ -30,7 +30,7 @@ if (daystart-natpregday) > 84 and natpregday > 0:
 		nataskedbaby = 1
 	end
 else 
-	'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 	'The state of the room and the whole apartment shows that the occupants are very poor: The color and even parts of the plaster are coming down everywhere, there are cracks in the floor and the furniture seems to have been bought secondhand and with no direction or style in mind.'
 end
 
@@ -45,7 +45,7 @@ if lernHome ! 0:
 		lern += rand(3, 6)
 		intel_exp += rand(1, 2)
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 		'You spend an hour doing your homework with Natasha and reading up on what you did in class. Natasha might be poor but she''s a great study partner.'
 
 		act 'Next':gt $curloc
@@ -58,7 +58,7 @@ elseif lernHome = 0:
 		minut += 15
 		NatBelBestFrend += 1
 		gs 'stat'
-		'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 		'You talk with Natasha about this and that, passing fifteen minutes with ease.'
 
 		if NatBelBestFrend = 1:'Natasha knows that she lives in a very poor family. She has no father and her mother works for a pittance at the garment factory. You feel sorry for her.'
@@ -76,7 +76,7 @@ elseif lernHome = 0:
 			NatDolg = 2000
 			money -= 2000
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 			'You get your purse and give Natasha the money. At this point, both of you know very well that she is not going to be able to repay you and that you will treat her like a sextoy as long as she is in your debt. Doesn''t this make her a prostitute?'
 
 			act 'Next':gt $curloc
@@ -92,7 +92,7 @@ elseif lernHome = 0:
 			NatDolgDay = daystart+30
 			NatBelBestFrend += 1
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 			'You get your purse and give Natasha the money. Natasha is delighted and says that she will pay it back in a month.'
 
 			act 'rest':gt $curloc
@@ -109,7 +109,7 @@ elseif lernHome = 0:
 			NatDolgDay = 0
 			NatBelBestFrend += 10
 			gs 'stat'
-			'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 			'You decide to forgive the Natasha''s debt. She is delighted and thanks you with all her heart.'
 
 			act 'rest':gt $curloc
@@ -120,7 +120,7 @@ elseif lernHome = 0:
 				cls
 				minut += 15
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 				'You decide not to reduce Natasha''s debt. You angrily confront her, demanding that she return the money to you, one way or another. Natasha curls up into a ball on her bed: "<<$pcs_nickname>>, I''m so sorry! I will do anything you say! Anything!"' 
 				''
 				'Natasha looks at you with fearful eyes and you are getting some ideas as to how you could "use" her. She did say "anything", after all...' 
@@ -135,7 +135,7 @@ elseif lernHome = 0:
 					pcs_dom += 1
 					!!natknee
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
 					'You bark at Natasha to get on her knees. She immediately kneels down at your feet and obediently opens her mouth.'
 
 					act 'Spit in her face':
@@ -146,7 +146,7 @@ elseif lernHome = 0:
 						NatDolg -= 500
 						!!natknee
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
 						'You collect the saliva in your mouth and, with relish spit in Natasha''s face. She jerks and squeezes her eyes shut but makes no move to wipe the spittle away.' 
 						'You smile, "Fair enough, you are forgiven."'
 						'Natasha opens her eyes and asks in disbelief, "It''s forgiven?"' 
@@ -168,7 +168,7 @@ elseif lernHome = 0:
 				pcs_dom += 1
 				!!natknee
 				gs 'stat'
-				'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natknee.jpg"></center>'
 				'You bark at Natasha to get on her knees. She immediately kneels down at your feet and obediently opens her mouth.'
 
 				act 'Spit in her face':
@@ -179,7 +179,7 @@ elseif lernHome = 0:
 					NatDolg -= 500
 					!!natknee
 					gs 'stat'
-					'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natspit.jpg"></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natspit.jpg"></center>'
 					'You collect the saliva in your mouth and, with relish spit in Natasha''s face. She jerks and squeezes her eyes shut but makes no move to wipe the spittle away.'
 
 					act 'Next':gt $curloc
@@ -200,7 +200,7 @@ elseif lernHome = 0:
 						natlesb += 1
 						!!natknee
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natlick.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natlick.jpg"></center>'
 						'You force Natasha to undress you and then watch as she undresses herself before she returns to kneeling at your feet. You pull her face into your pussy and snarl at her, "Now lick!". Natasha fearfully starts to work.'
 
 						if natsub < 10:
@@ -216,7 +216,7 @@ elseif lernHome = 0:
 									natpee += 1
 									!!natknee
 									gs 'stat'
-									'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natpee.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natpee.jpg"></center>'
 									'You are angry at this bitch so you release your urine in Natasha''s face. She closes her eyes and bows her head down but does not recoil and silently accepts your golden shower until the very end.'
 									
 									act 'Next':gt $curloc
@@ -230,7 +230,7 @@ elseif lernHome = 0:
 									
 									gs 'stat'
 									$ImageNeededPlaceholder
-									'<center><img src="images/shared/food/icecreem.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/shared/food/icecreem.jpg"></center>'
 									'You get tired of her lackluster attempts to get you off, in fact, she is doing such a bad job that it is actually turning you off.'
 									'"You are hopeless. Here, go buy an icecream and practice licking. You''d better do better next time, bitch." You throw a 50 ruble note at her as she stops licking you.'
 									
@@ -259,7 +259,7 @@ elseif lernHome = 0:
 						natbro += 1
 						natfuckday = daystart
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natbj.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natbj.jpg"></center>'
 					
 						'You call your brother and he quickly comes up to Natasha''s apartment. You briefly explain the situation to your brother.'
 						'"And you, bitch, you''re going to use that mouth of yours to make Kolka feel good, you got it?" you hiss at Natasha, grabbing her jaw and staring in the eyes.'
@@ -275,7 +275,7 @@ elseif lernHome = 0:
 								natfuck += 1
 								npc_rel['A34'] += 5
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natfuck.gif"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natfuck.gif"></center>'
 								'In a few minutes your brother is hard and panting, but you stop him, and pull away Natasha to whisper into her ear.'
 								'"I let go another 500 of your debt if you fuck him."'
 								'Natasha stares at you, then nods her head without a glance at Kolka, then she gets in doggie pose. Still staring at you, she says "He can fuck me."'
@@ -301,7 +301,7 @@ elseif lernHome = 0:
 										natcp += 1
 										natsub += 1
 										pcs_dom += 3
-										'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
 										'You grab her head, and say to her, "He will not pull out. The deal was a fuck, so that''s what he gets."'
 										'She looks at you submissively then nods, just as Kolka groans and fills her womb with his semen.'
 										if rand(1,100) >= 93 and natpregday = 0:natpregday = daystart
@@ -314,7 +314,7 @@ elseif lernHome = 0:
 										natcp += 1
 										natsub += 1
 										pcs_dom += 3
-										'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
 										'You grab her head and say, "That''s right, whore. Take his cum deep in your slutty pussy and get knocked up."'
 										'She looks at you joyfully as Kolka groans and fills her womb with his semen.'
 										if rand(1,100) >= 93 and natpregday = 0:natpregday = daystart
@@ -328,7 +328,7 @@ elseif lernHome = 0:
 										natsub += 2
 										npc_rel['A34'] += 5
 										gs 'stat'
-										'<center><img src="images/shared/sex/anal/doggy/anal11.gif"></center>'
+										'<center><img <<$set_imgh>> src="images/shared/sex/anal/doggy/anal11.gif"></center>'
 										'You tell your brother to stop moving, put a finger under her chin and look at her imperiously. "How would you like to get fucked in the ass by my brother?"'
 										''
 										if natanal = 0:
@@ -373,14 +373,14 @@ elseif lernHome = 0:
 									if rand(0,9) = 0:
 										natcp += 1
 										'You let her pull away from your brother, but it appears Kolka was really close, and before anyone could do anything, your brother pumps his seed in Natasha''s body.'
-										'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natcp.gif"></center>'
 										'"Fuck, I really am sorry, Nat!", he says apologetically. "It is just, you are so hot!"'
 										'Natalia doesn''t even listen to him, just looks at you with a strange expression on her face. You can''t really decide whether she is scared that Kolka came in her pussy, or enjoyed it. Maybe both at the same time?'
 										'You quitely signal your brother to dress up and leave while you kiss her deeply. "I hope you enjoyed it, pet. We may repeat it."'
 										if rand(1,100) >= 95 and natpregday = 0:natpregday = daystart
 									else
 										'You let her pull away from your brother, so that you brother''s dick slips out of her just in time. His seed sprays Natasha''s ass, back and hair, and it even reaches your face and hair.'
-										'<center><img src="images/characters/pavlovsk/school/girl/natasha/sex/natkolfacial.jpg"></center>'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/natasha/sex/natkolfacial.jpg"></center>'
 										'"Nice shot, bro!", you say laughing, wiping his seed away from your eyelid. "That was quite the distance!"'
 										'"That was close," whispers Nat, with a strange look in her face. You actually can''t decide whether she is relieved or disappointed that Kolka didn''t cum in her pussy.'
 										'You quitely signal your brother to dress up and leave while you kiss her deeply. "I hope you enjoyed it, pet. We may repeat it."'
@@ -403,7 +403,7 @@ elseif lernHome = 0:
 							minut += 5
 						
 							gs 'stat'
-							'<center><img src="images/shared/sex/cum/mouth/cum50.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum50.jpg"></center>'
 						
 							'Kolka holds Natasha by the hair as he pistons his cock into he mouth rapidly. Natasha''s chin is covered with her drool and it is soaking the front of her shirt. With a grunt, Kolka pulls his dick from Natasha''s mouth and she automatically opens her mouth and sticks out her tongue. Kolka pumps his dick a few times then shoots his cum into Natasha''s waiting mouth.'
 							'"Swallow it, slut." You command when Kolka is done before Natasha can spit out the sperm.'
@@ -423,7 +423,7 @@ elseif lernHome = 0:
 						natsub += 1
 						natfuck += 1
 						gs 'stat'
-						'<center><img src="images/characters/pavlovsk/school/head/16.jpg"></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/16.jpg"></center>'
 						'You know you need to help out with Olu more soon, but your ass is still to sore. Then you get a great idea, kill two birds with one stone. Have Natasha have sex with him, she owes you anyways, besides it might be fun to make the little bitch squeal.'
 						'"Since I know you don''t have my money, I have a way you can help me out and pay off some of that debt. We are going to see my Aunt''s boyfriend Olu, he has a massive... sex drive and she can''t keep up and I need a break too."'
 						'Natasha seems a little unsure about this and perhaps a bit confused but she nods her head, you smile to her and lead her across the hall to your Aunts place.'
@@ -432,7 +432,7 @@ elseif lernHome = 0:
 							cla
 							minut += 5
 							'<center><b><font color=maroon>Apartment Aunt</font></b></center>'
-							'<center><img src="images/characters/pavlovsk/resident/olu/olu.jpg"></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/olu/olu.jpg"></center>'
 							'You take off your shoes and go straight to the living room, where you find Olu resting on the couch.'
 							'He looks at you, that perpetual smile still on his face. "Hi, <<$pcs_nickname>>! Who friend?"'
 							'"Hello, Olu! This is my friend Natasha, she wants you to fuck her." You say to him, pointing at his crotch and then slapping Natasha on the ass. He seems to get it at once and nods with a huge grin holding up the bottle of lube.'
@@ -441,7 +441,7 @@ elseif lernHome = 0:
 								cls
 								minut += 5
 								gs 'stat'
-								'<center><img src="images/characters/pavlovsk/resident/olu/sex/olu4.jpg"></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/olu/sex/olu4.jpg"></center>'
 								'You can''t help but smile, when you glance over and see Olu already naked with his massive dick swinging. She looks up and catches sight of his huge dick and freezes looking to you with a slightly panicked look.'
 								'You smile at her. "Yep it''s huge I know, my ass needs a break and you need to pay me back so..." you trail off, it only takes a moment for Natasha to understand and then it hits her you said ass.'
 								'She squeaks a reply. "You want him to fuck me in the ass with that thing?" she says in disbelief.'
@@ -454,7 +454,7 @@ elseif lernHome = 0:
 									pcs_horny += 10
 									Olu_pay += 1
 									gs 'stat'
-									'<center><img src="images/characters/pavlovsk/resident/olu/olu.jpg"></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/olu/olu.jpg"></center>'
 									'You help Natasha get undressed and get her down on all fours in front of Olu, while he lubes up his dick and her ass you get undressed as well. No reason he should have all the fun. You kneels down beside Natasha and grab her butt cheeks with your hands and spread them wide for Olu. Not needing any more invitation than that, she squeals loudly as his <<dick>>cm <<$dick_girth>> cock slides in her ass.'
 									'He starts fucking her slowly at first but you encourage him to go faster and deeper, pulling on his body. You feel your pussy getting wet listening to Natasha cry out and watching the <<dick>>cm <<$dick_girth>> cock rip up her ass. You start rubbing your clit as you watch.'
 									'Getting up you move to sit in front of Natasha and spread your legs, you pull her face to your pussy and she wastes no time and starts licking your pussy. Your loving it, grinding your pussy into her face, her muffled cries as she eats you, while Olu pounds her ass. You keep encouraging Olu to fuck her harder, the more she squeals the more turned on you get. Before long you are cumming, apparently seeing this is a turn on for Olu as well. As he shoots his load deep in her ass with in a few moments of watching you cum.'
@@ -579,20 +579,20 @@ if $ARGS[0] = 'natknows1':
 	if pav_slut < 25: '"Is it the same father as last time?"'
 	if pav_slut >= 25: '"Do you know if it''s the same father as last time?"'
 	*nl
-	if $wombthfath = 'Kolka' and npc_rel['A34'] > 50 and $ChildThFath - 1 = 'Kolka':
+	if $wombthfath = 'Kolka' and npc_rel['A34'] > 50 and arrpos('$ChildThFath',$wombthfath) >= 0 and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1:
 		'"Yeah, I think you’re right. I’m not sure if I’ll let him get me pregnant again after this though." You pull your face as close to Natasha’s as you can without actually touching her and sultrily whisper, "You, on the other hand, are going to be his personal breeding bitch. There won’t be a single moment where your womb doesn’t contain either his baby or his cum. He is going to keep you knocked up until he gets bored of you and leaves you a single mother."'
 		'As soon as you finish speaking you give Natasha a deep, passionate kiss. You pull away, a string of saliva still hanging between you. Natasha just stares at you, unable to respond, but very visibly aroused.'
-	elseif $wombthfath !  $ChildThFath and $ChildThFath - 1 = 'Kolka':
+	elseif arrpos('$ChildThFath','Kolka') = arrsize($ChildThFath)-1:
 		'"Not this time. My body is far too fantastic to limit myself. My brother can''t be the only person to put a baby in me," you joke. "Plus, he already has a baby factory. That''s your job." You punctuate your sentence by kissing Natasha. After you pull away, she stares at you in silence, face red, trying to determine if you were serious.'
-	elseif $wombthfath = 'Kolka' and npc_rel['A34'] > 50 and $ChildThFath - 1 ! $wombthfath:
+	elseif $wombthfath = 'Kolka' and npc_rel['A34'] > 50 and arrpos('$ChildThFath',$wombthfath) = arrsize($ChildThFath)-1:
 		'"No, this time it''s Kolka''s," you inform her.'
 		'"Wow. He really has a thing for knocking girls up," she says.'
 		'"Yeah, it seems like he does," you reply. "But don''t worry, we''ll make sure he has plenty of opportunities to keep getting you pregnant. Who knows how many of his children you''ll have before he''s finished."'
 		'Natasha''s face goes completely red with embarrassment and she starts to mumble something before you cut her off with a passionate kiss. When you finally break the kiss, she is still visibly red, but she isn''t protesting your suggestion. You know what she wants.'
-	elseif $wombthfath ! 'Kolka' and $ChildThFath - 1 = $wombthfath:
+	elseif $wombthfath ! 'Kolka' and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1:
 		'"Yeah. I guess I needed him to give me another baby before I could be satisfied," you jest.' 
 		'"Well, I hope you find satisfaction," she laughs.'
-	elseif $wombthfath ! 'Kolka' and $ChildThFath - 1 ! $wombthfath:
+	elseif $wombthfath ! 'Kolka' and arrpos('$ChildThFath',$wombthfath) ! arrsize($ChildThFath)-1:
 		'"No, I needed to test drive someone else before I could decide what father I like best."'
 		'"If you''re going that route, you might as well keep shopping around." You laugh together for a while before moving on to another topic.'
 		end

+ 1920 - 0
locations/NikoDates

@@ -0,0 +1,1920 @@
+# NikoDates
+
+if $ARGS[0] =  'Date 1_1':
+	cls
+	NikoDate_Day = daystart
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/d.jpg"></center>'
+	'As you are both riding the train. Niko pulls out his phone, and asks, "Would you like to take a photo together?" You give Niko a smile, and a nod. Niko returns the smile, as he wraps his arm around your waist: pulling you toward him. He then lifts his phone above you both, before snapping a photo. You and Niko spend the rest of the time discussing your favorite musical artists/bands.'
+
+	act 'Finish ride':
+		cls
+		minut += 15
+		gs'stat'
+		'The train arrives at the station, and you both get out. Niko asks, "Are you ready to have a great time?" You smirk, as you reply, "We''ll see about that. Won''t we?" Niko chuckles as he responds, "That, we will." As he wraps his arm around your neck, and walks you to the amusement park. As soon as you both arrive. Niko pays for the tickets while you enjoy the fresh air. Niko hands a ticket to you, and you both enter the amusement park together.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/Entrance.jpg"></center>'
+
+		act 'Enter amusement park':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/d1.jpg"></center>'
+			'When you both enter, you turn to Niko to see a warm smile staring back at you, as Niko says, "There is so much to do here. Maybe we should try out the shooting range first. What do you think?" You reply, "Sure, that sounds like fun." Niko then leads you to the shooting range.'
+
+			act 'Shooting range':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/d2.jpg"></center>'
+				'When you both arrive at the shooting range. Niko leans in closer to you, and says, "How about we make this more fun? If I can shoot more bottles than you then you will have to do anything I ask, and the same applies, if you win. What do you say? Sound fair?" You giggle, as you reply, "So you''ll have to do anything that I want, if I win?" He whispers in your ear. "Anything."'
+
+				VK = rand(1,5)
+				if VK < 5:
+					act 'Compete':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/d3.jpg"></center>'
+						'You and Niko grab a plastic gun then begin shooting the bottles, as quickly and efficiently as possible. After a few minutes, the scores get tallied up, and...Niko won. The man hosting the event, hands Niko a stuffed bear. Niko holds it below his chin with an innocent smile on his face, as he asks you, "Since I won, I would like to know if it would be too brazen of me to ask you for a kiss. What say you milady?"'
+
+						act 'Kiss Niko':
+							cls
+							NikoSub += 5
+							minut += 5
+							'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Charmer1.jpg"></center>'
+							'You downcast your eyes; feeling more bashful, as Niko approaches you; moving his face one inch from yours. "So, May I?" You finally get up the courage to tell him, "You...You may.." Niko gives you a warm smile, as he leans forward, pressing his lips against yours; sharing a very gently but firm kiss. After you both finish kissing, you look up to Niko, and see a very pleased smile on his face. "You are so beautiful <<$pcs_firstname>>, and your lips are as soft as silk; So perfect." You can feel your face quickly growing flushed, as you turn your head; trying to hide how red it is. Niko chuckles lightly, "We''re not done yet. Let''s go to the boxing game next."'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+
+							act 'Follow Niko':gt 'NikoDates', 'Stranger Danger'
+						end
+					end
+				else
+					act 'Compete':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+						'You and Niko grab a plastic gun then begin shooting the bottles, as quickly, and efficiently, as possible. After a few minutes, the scores get tallied up, and...You won. The man hosting the event, hands you a plastic gnome. Niko looks at the score, a little shocked, as he scratches the back of his head. "I guess... You won. So what do you desire for your prize?" Niko moves his face closer to yours.'
+						'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Charmer1.jpg"></center>'
+
+						act 'Kiss me':
+							cls
+							NikoSub += 5
+							minut += 5
+							gs'stat'
+							'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+							'You downcast your eyes, feeling more bashful as Niko approaches you; moving his face 1 inch from yours. "So what can I do for you <<$pcs_firstname>>?" You finally get your courage to tell him. "I want you to...kiss me." Niko responds, "As you wish milady." He then leans forward; pressing his lips against yours, sharing a very gently but firm kiss. After you both finish kissing, you look up to Niko and see a very pleased smile on his face. "You are so beautiful <<$pcs_firstname>>, and your lips are as soft as silk. So perfect." You can feel your face quickly growing flushed, as you turn your head; trying to hide how red it is. Niko chuckles lightly, "We''re not done yet. Let''s go to the boxing game next."'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+
+							act 'Follow Niko':gt 'NikoDates', 'Stranger Danger'
+						end
+						act 'Ride the child ride':
+							cls
+							minut += 5
+							gs'stat'
+							'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+							'You giggle before replying, "I want you to take this then go and ride on that kiddie ride over there." You hand him the plastic gnome that you won then point to the kiddie ride across from you. Niko lowers his sunglasses, as he replies, "I guess a deal is a deal." and he heads for the ride then sits down on the ride while you walk up in front of him, and take a photo of him on your phone. After he finishes his ride, he hands you back your gnome. "Well you beat me, I hope you will take pitty on your servant, and let me take you to that boxing game, over yonder."'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/winner.jpg"></center>'
+
+							act 'Follow Niko':gt 'NikoDates', 'Stranger Danger'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] =  'Stranger Danger':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As you are both walking, Niko pats on his pockets then looks back, and says to you, "Ohh shit! I think that I dropped my wallet back there. Give me a minute please." Niko quickly runs off.'
+
+	act 'Wait for Niko':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="red"><<"Burly Bearded Man">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/Stranger/Stranger1.jpg"></center>'
+		'You patiently wait for Niko, under the shade of a nearby pillar when you see a burly bearded man, quickly approaching you while licking his lips. You begin backing away from him when he reaches out, and grabs your arm; pulling you toward him while he covers you mouth with his other hand. The burly man begins dragging you into a nearby bush while reaching into your shirt when you suddenly hear, "Hey shithead!" You and the burly man turn to see Niko with his fist raised to his face. Niko rams his fist against the burly man''s face; knocking him to the ground before Niko turns to you, and asks, "<<$pcs_firstname>> he didn''t hurt you, did he?"'
+		*nl
+		'You shake your head. "No, I''m fine now. Thanks to you." Niko replies, "You can always feel safe with me." You give Niko a warm smile, as he grabs your hand, and leads you toward the boxing vending game.'
+
+		act 'Follow Niko':gt 'NikoDates', 'Date 1_2'
+	end
+end
+
+if $ARGS[0] =  'Date 1_2':
+	cls
+	minut += 5
+	gs 'boyStat', 'A189'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/boxing.jpg"></center>'
+	'Niko takes your hand and leads you to the boxing vending game, where he puts a coin into the machine, causing it to light up. Niko turns to you. "How about another wager? If I can get the top prize for winning this then you will have to grant me a request. What say you, milady?"'
+
+	act 'Sure':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/Niko/nikoev/dates/1/d4.jpg"></center>'
+		'"You''ve got yourself a deal." Niko gives you a confident smirk as he winds up his fist. Niko takes a deep breath then rams his fist into the punching bag, causing the scoreboard to to light up, tallying the score. Niko receives a stuffed bear, as his prize before turning to you. "It looks like I won. Now let''s go somewhere more private." You tilt your head as you respond, "More private huh?" Niko gives you a wink as he takes your hand, leading you to the less populated side of the amusement park.'
+
+		act 'Follow Niko':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+			'You both end up behind a out of order ride. Niko brings his face close to yours. "You promised to do me a favor, now may I please gaze upon your nude body?" You reply, "You want me to strip, here?" Niko holds your arms as he replies, "Yes I would and don''t worry no one will see us here."'
+
+			act 'Strip':
+				cls
+				exhibition_exp += 1
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/strip1.jpg"></center>'
+				'You slowly pull down your top, revealing your breasts and stare Niko in his eyes, noticing his lustful gaze as you continue removing your clothes. You can feel your body tremble a little, as Niko watches you with a bulge in his pants that continues to grow larger. You slowly begin dropping your pants, feeling your cheeks grow flushed as you hear Niko say, "You''re doing really good <<$pcs_firstname>>. Please keep going." Which gives you the confidence to continue stripping.'
+
+				act 'Continue':
+					cls
+					gs 'clothing', 'strip'
+					exhibition_exp += 1
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/nude.jpg"></center>'
+					'You finish removing your clothes and Niko says to you, "You have such a divine body <<$pcs_firstname>>, so perfect." You can feel your face growing flushed, as you place your hands on your face trying to cover up how red your face is. You suddenly hear Niko snapping pictures with his phone, causing you to quickly cover yourself and face Niko as you exclaim, "I didn''t agree to taking pictures." Niko gives you a meek smile as he responds, "It will be okay <<$pcs_firstname>>. I will never let these pictures get out, honestly. I just need to preserve this beautiful moment that I am spending with you. Please <<$pcs_firstname>>, let me take a few photos...for us."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/cover.jpg"></center>'
+
+					act 'Agree':
+						cls
+						exhibition_exp += 1
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/pose1.jpg"></center>'
+						'You slowly lower your hands as you reply, "Okay, I trust you. Take as many picture as you want." Niko''s eyes light up as he replies, "Thank you <<$pcs_firstname>>. You are simply divine." You smile for Niko, as he continues taking photos of you. After a few photos, Niko asks, "Can you please give me a few poses. I wish to capture your beauty in all it''s splendor." You nod your head you begin striking a few poses, feeling both nervous and excited, at the same time. After a few poses, Niko walks over to the Teddy bear that he won earlier, and throws it to you. "Hey why don''t you pose with this? It will look so cute."'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/pose2.jpg"></center>'
+						gs 'arousal', 'flash_breasts', 5, 'sub', 'exhibitionism'
+						gs 'arousal', 'flash_pussy', 5, 'sub', 'exhibitionism'
+						gs 'arousal', 'flash_ass', 5, 'sub', 'exhibitionism'
+						gs'stat'
+
+						act 'Pose with bear':
+							cls
+							exhibition_exp += 1
+							minut += 5
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/pose3.jpg"></center>'
+							'You catch the bear then hold it to your chest as you give Niko a innocent smile. You can feel your heart beat slowing down as you begin feeling more comfortable, and less nervous. Niko begins fidgeting, as you drop to your knees in multiple poses. The stuffed bear slips out of your hand, causing you to lean over to pick it up. You pick up the bear then look up to see Niko standing directly in front of you with a lustful gaze, as he unbuttons his pants, causing you to gasp which opens you mouth just enough for his dick to slide in.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/nude/pose4.jpg"></center>'
+							gs 'arousal', 'flash_breasts', 5, 'sub', 'exhibitionism'
+							gs 'arousal', 'flash_pussy', 5, 'sub', 'exhibitionism'
+							gs 'arousal', 'flash_ass', 5, 'sub', 'exhibitionism'
+
+							act 'Suck Niko''s dick':
+								cls
+								minut += 5
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/bj.gif"></center>'
+								'Niko''s warm penis enters your mouth and you look up to see a longing look on Niko''s face, showing you how badly he wants you to please him. You eagerly begin sucking Niko''s dick, wanting to reward him for all the sweet things he has said, and done for you. You stare into Niko''s eyes, feeling more turned on at how badly he craves you. You soon hear Niko groan as he begins pumping his cum down your throat which you do your best to swallow every drop of.'
+								*nl
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow4.gif"></center>'
+								gs 'arousal', 'bj', 5, 'sub'
+								gs 'cum_call', 'mouth', $boy
+								gs 'arousal', 'end'
+								gs'stat'
+
+								act 'Finish':
+									cls
+									NikoStrip = 1
+									minut += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+									'After Niko is completely spent, he looks down to you. "<<$pcs_firstname>> you are a goddess. Thank you." You give Niko a smile as you reply, "I''m always glad to help out." Niko chuckles as he responds, "I should call upon your "help" more often then." You give Niko a sarcastic smirk as you reply, "Hey don''t push it." Which causes you both to burst into laughter. Niko grabs your hand and raises it to his face before giving it a kiss. "So are you ready to head home milady?"'
+
+									act 'Sure am':gs 'clothing', 'wear_last_worn' & gt 'NikoDates', 'Home 1'
+								end
+							end
+						end
+					end
+
+					act 'Disagree':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+						'"I trust you but I...I just can''t." Niko gives you a exaggerated frown as re responds, "You have such a beautiful body, and I just want you to feel more confident with your body." You lower your head as you respond, "I don''t quite have that confidence...yet." Niko smiles as he says, "We could work on that if you like." You reply, "Maybe but not today." Niko responds, "Fair enough. Let''s get you home." Niko helps you get dressed then takes your hand, and walks you toward the train station.'
+
+						act 'Follow Niko':gs 'clothing', 'wear_last_worn' & gt 'NikoDates', 'Home 1'
+					end
+				end
+			end
+
+			act 'I can''t':
+				cls
+				gs'stat'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+				'You look up to Niko then say, "I''m sorry but I can''t." Niko gives you a very disappointed look, as he replies, "Come on <<$pcs_firstname>>. We had a deal." You nod your head. "I''m sorry but I can''t" Niko gives you a sad look as he replies, "Well I guess it''s alright. I wouldn''t want you to be uncomfortable. I just figured that you were a very confident girl. I guess I was wrong." Niko gives you a sarcastic grin, causing you to reply, "Hey I am confident ok? I just don''t want to make things too easy for you." Niko responds, "Whatever you say my princess." Niko then takes you by the hand then leads you toward the front of the amusement park.'
+
+				act 'Follow Niko':gt 'NikoDates', 'Home 1'
+			end
+		end
+	end
+
+	act 'Nope':
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+		'You giggle before responding, "Sorry but I don''t really like gambling. How about playing just for fun?" Niko sighs before replying, "Where is the fun in that?" You respond, "The fun is playing a good game of course." Niko places his hand over his face, as he shakes his head. "Ugh Fine, Suit yourself." He then haphazardly punches the punching bag, causing the scoreboard to to light up, tallying the score. Niko won second place, earning him a cheap watch which he scoffs at before putting in his pocket. Niko seems very disappointed as he says, "Well I guess we are done here. Let''s get going." Niko then places his hand on your shoulder, and walks you toward the train station.'
+
+		act 'Sure am':gt 'NikoDates', 'Home Sad'
+	end
+end
+
+if $ARGS[0] =  'Home 1':
+	cls
+	NikoEv = 3
+	minut += 30
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/exit.jpg"></center>'
+	'You and Niko walk out of the amusement park then head toward the train. You both enter the train then spend the rest of the time discussing your favorite hobbies until the train reaches Pavlovsk, where you both exit the train before Niko gives you a hug. "You are an amazing girl <<$pcs_firstname>>, I will await anxiously for our next meeting. Take care milady." Niko gives you a kiss on the forehead before letting go of you and walking away.'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+
+	act 'Walk toward the city':gt 'pavResidential'
+end
+
+if $ARGS[0] =  'Home Sad':
+	cls
+	minut += 20
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/1/exit.jpg"></center>'
+	'You and Niko walk out of the amusement park then head toward the train. You both enter the train then spend a few minutes discussing your favorite hobbies until the train reaches Pavlovsk, where you both exit the train before Niko turns to you, and says, "I hope you enjoyed yourself today. Hopefully next time we could do something more interesting." Niko gives you a kiss on the hand before letting go of you and walking away.'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+
+	act 'Walk toward the city':gt 'pavResidential'
+end
+
+if $ARGS[0] =  'Date 2':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/boat/boat1.jpg"></center>'
+	'As you arrive at the lake, Niko takes you toward a worn out dock where you see a boat with paddles, and fishing rods inside. Niko says, "Have you ever fished before?" You tilt your head as you reply, "No, I haven''t but I guess I''m willing to try it out." Niko smiles as he responds, "Great, let''s get started." Niko carefully guides you onto the boat before getting comfortably seated while Niko begins gently paddling the boat further onto the lake.'
+
+	act 'Learn how to fish':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/boat/boat2.jpg"></center>'
+		'Niko shows you how to properly catch fish while you turn to Niko then say, "You make this look so easy. Where did you learn to fish?" Niko smiles as he replies, "My father used to always teach me when I was little." You ask, "Where is he now? Do you still live with him?" Niko replies, "No...he passed away a few years ago." You respond, "I''m sorry to hear that. Were you two close?" Niko replies, "I rarely saw him. He was always so focused on his studies." '
+
+		act 'Continue':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+			'You ask, "Was he a teacher?" Niko replies, "No he was a psychiatrist who was obsessed with finding a cure for psychosis." You tilt your head as you respond, "What could have made him so absorbed by that?" Niko takes a deep breath then replies, "My little brother was diagnosed with psychosis, and he was always screaming to himself in his room, and my father didn''t want him put in an asylum, so my father had to keep him in the house to protect him. My sister was really upset. She and Eduard were very close before he was diagnosed. My brother and I did our best to console her, and help keep her mind off of our little brother." You place your hand on Niko''s shoulder then ask, "Did she ever move on from her loss?"'
+			*nl
+			'Niko remains silent for a few seconds before responding, "She died...My big brother only needed to watch her for a few minutes, but of course he was distracted by that Bitch Vio..." You place your hand on his shoulder, causing him to calm down before continuing, "His girlfriend distracted him, and he didn''t see our sister run onto the street chasing after our spooked cat then... A car came out of nowhere and she...She didn''t survive. All because of Yurik! One fucking job to do and he failed it!"'
+
+			act 'Place your hand on his shoulder':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+				'Niko takes a long breath, and remains silent for a few seconds before shaking his head then saying, "Never mind. It was a long time ago, and I have moved on, so wanna try something interesting?" You raise an eyebrow as you reply, "What do you have in mind?" Niko unbuttons his pants then says, "I am really feeling stressed right now, and if you can help me relax then I would be so grateful. Can you please do this little favor for me <<$pcs_firstname>>?...Please." Niko gives you an innocent frown.'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+
+				act 'Sure':
+					cls
+					minut += 5
+					gs'stat'
+					'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+					*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+					'You gve Niko a innocent smile as you nod your head. Niko rubs on your cheek as he says, "That''s my girl. I knew that I made the right choice with you." You reach into Niko''s pants then wrap your fingers around his penis, gripping it firmly before pulling it out of his pants then gently licking the tip. Niko continues rubbing on your cheek while giving you an adoring smile.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/boat/boat3.jpg"></center>'
+
+					act 'Suck Niko''s dick':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/boat/boat4.jpg"></center>'
+						'You wrap your lips around Niko''s dick, taking as much of it inside your mouth, as you can before licking and sucking the shaft. Niko begins lightly moaning while keeping his eyes on you, making you feel very sexy. You begin thinking to yourself, <font color=#FF00FF>Those eyes of his. He makes me feel so sexy. I must not disappoint him. I will please you Niko, and you will know that I am the right one for you.</font> Niko''s eyes suddenly begin squinting as he groans, filling your mouth with his warm seed. You try your best to swallow it, but with the rocking boat, and your poor position on the seat, some of it leaks out of your mouth, and onto the floor of the boat.'
+						*nl
+						'Niko pats your head gently before saying, "You were outstanding <<$pcs_firstname>>. Thank you. You are one sexy girl." You give Niko a innocent smile, as he lays back then wraps his arms around you. You both spend the next two hours chatting about your past experiences.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/boat/boat5.jpg"></center>'
+
+						act 'Continue':gt 'NikoDates', 'Date 2_2'
+					end
+				end
+
+				if NikoEv = 3:
+					act 'No way!':
+						cls
+						NikoPayback = 1
+						NikoVolkovQW = -1
+						NikoLuv = -20
+						NikoEv = -1
+						minut += 30
+						gs'stat'
+						'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+						'You shake your head as you respond, "No way. I''m not that kind of girl. I told you that." Niko get noticeably angry. "Come on <<$pcs_firstname>>. I''m not asking you to donate one of your kidneys. Just give a quick.." You cut him off. "I SAID NO!" Niko grabs your head then begins pushing it toward his crotch, as he says, "Come on <<pcs_nickname>>, it wont take long.". You quickly pull away then slap him across his face, causing him to pause for a second before he raises his hand then smacks you across the face, as he shouts, "YOU FUCKING UNGRATEFUL BITCH! I have done so much for you, and you toss it in my face. Get the fuck out and swim!" Niko grabs you by the neck, and pushes you off the boat then begins angrily paddling away, as you do your best to swim back to the shore. You arrive at the shore completely drenched, so you hang your clothes on a nearby tree, and wait for it to dry. You take a few seconds to think to yourself, <font color=#FF00FF>What the fuck was his problem!? What a nutjob!</font>'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/grab.jpg"></center>'
+
+						act 'Get dressed':gt 'gLake'
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] =  'Date 2_2':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	minut += 120
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'After you both finish catching a few fish, Niko begins paddling the boat back toward the dock where he gently guides you off the boat then takes the bag of fish, and carries it on his back while leading you back into town. Niko walks you toward his home where he says, "Can you give me a minute to drop off these fish, so that they don''t go bad?" You sarcastically reply, "But what about my share of the precious cargo." Niko chuckles as he says, "You can stop by anytime for a good fish dinner. There is no way that Yurik and myself can finish all these anytime soon." Niko heads inside then after a minute, he comes back out then gives you a kiss on the cheek before taking your hand then leading you toward the train station where you both board a train to the industrial district of the city.'
+	*nl
+	'As soon as you both arrive at the industrial district Niko guides you toward a bar while talking on the phone. When you both arrive at the bar, Niko hangs up the phone then says, "Are you ready to have as many drinks as you can take before passing out?" You scratch your head as you reply, "So you want to get me drunk I see." Niko smirks as he replies, "No I just want to get to know the real you. There is a saying which states that you never know truly know someone until you see them drunk. So are you ready to have some fun?"'
+
+	act 'Yes':
+		cls
+		minut += 25
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile3.jpg"></center>'
+		'You reply, "Sure, but how are we going to get inside? We aren''t exactly the drinking age." Niko grins as he pulls out two ID cards then says, "I had a guy who specializes in fake documents, create some ID''s for us. That is why I needed to take that picture on the train." You giggle before responding, "You are so clever. Alright let''s go." Niko happily grabs your hands then leads you into the bar where he orders a drink for you then finds some seats for you to sit. You both sit on two stools then Niko asks you, "I told you a bit about my family, so what''s your story?"'
+		*nl
+		'You smile as you reply, "My story might be a bit boring but I live with my mother, stepfather, sister and half brother." Niko asks, "Have you ever met your biological father?" You reply, "Well my father..." You suddenly see a shadowy figure quickly grab onto Niko then tosses him on the ground before reaching out for you.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/d1.jpg"></center>'
+
+		act 'Pull back':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="red"><<"Burly Bearded Man">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/stranger/stranger2.jpg"></center>'
+			'You try to pull away from him but he was too quick, and grabs onto your shirt then pulls you into the restroom. Another man tries to block him when the burly man quickly punches him, sending him recoiling into the wall where he slumps over. As you reach the restroom the burly man begins roughly fondling your breasts as you try let out a scream, but the man covers your mouth then begins undressing you before he suddenly gets pulled off of you by Niko. The man throws a punch that misses Niko, and Niko counters with a head butt, sending the burly man recoiling into the wall then Niko climbs on top of him, and begins punching the man a few times.'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+
+			act 'Continue':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/d2.jpg"></center>'
+				'Niko climbs off of the burly man then turns to  you, and asks, "Are you okay, he didn''t hurt you did he?" You quickly hug Niko then reply, "I''m fine. Thank you Niko. I feel so safe with you." You then kiss Niko''s neck, as he leads you back toward the bar, for a few drinks. While drinking with Niko, you can''t help but think to yourself: <font color=#FF00FF>What if that big guy gets up then comes back for revenge? Should we just leave?</font> Niko hands you another drink when you see the restroom door open, and the burly man steps out then brush off the dirt from his jacket before casually leaving the bar, not even looking back.'
+				*nl
+				'<font color=#FF00FF>He... He wasn''t mad? I thought that he would want revenge. That is so strange.</font> You try to focus on what Niko is saying, as he chats about various topics with you.'
+				*nl
+				'<center><b><h4><font color="blue"><<"Burly Bearded Man">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/stranger/stranger2.jpg"></center>'
+
+				act 'Continue drinking':
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/d3.jpg"></center>'
+					'After three drinks, you begin feeling so tipsy that you are barely able to keep from slurring your words. Niko chuckles as he hands you one last shot glass then says, "Here is one last shot for the train ride back." He gives you a confident grin as you take the last shot. Niko then lifts you up on his shoulder then says, "Time to take you back." He then pays the tab before carrying you out of the bar to the train station where you can feel yourself drifting away...'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/train.gif"></center>'
+
+					act '...':gt 'NikoDates', 'Date Rape'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] =  'Date Rape':
+	cls
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/d4.jpg"></center>'
+	'You open your eyes to see Niko carrying you to his house, you are feeling very lightheaded, as you almost fall to the ground. Niko catches you then begin carrying you up the stairs to his place before opening the door, carrying you inside.'
+
+	act 'Enter':
+		cls
+		gs 'clothing', 'strip'
+		gs'stat'
+		'You can feel the room spinning, as Niko carries you to his bedroom, and drops you on the bed. You look around the room while you lose feeling in your legs. You can faintly feel your clothes being removed. After most of your clothes are removed you slowly look down to see Niko spreading your vaginal lips, as he looks inside of your pussy.'
+		if pcs_vag = 0:
+			'Niko smiles widely as he says to himself, "Ahh a virgin, I always wanted to fuck a virgin. Lucky me." Niko then walks toward his desk and pulls out a camera and then places it by the bedside facing you.'
+		else
+			'Niko shrugs as he says to himself, "Of course she isn''t a virgin, that would have been too good." Niko then walks toward his desk and pulls out a camera and then places it by the bedside facing you.'
+		end
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/home/1.jpg"></center>'
+
+		act 'Continue':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/home/2.jpg"></center>'
+			'Niko removes his pants then spreads your legs, as he aligns his penis with your pussy. You hear Niko moan, as he pushes his dick inside of your pussy. Your entire body is too numb to feel anything, as you look around the room, feeling too lightheaded to understand exactly what is happening. Thrust after thrust Niko fucks you before pausing for a second to turn you over then begins pounding you from behind.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/home/3.jpg"></center>'
+			gs 'arousal', 'vaginal', 5
+			gs'stat'
+
+			act 'Moan':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/home/4.jpg"></center>'
+				'Niko''s breathing becomes more rapid, as he fucks you faster then suddenly his breathing pauses, and he pulls his penis out of you, as he groans; spraying your ass with his seed. You can slightly feel the warmth of his cum, slowly dripping on your ass. Niko takes a few seconds, to catch his breath, as he checks his camera for a few seconds, before walking up to you and kissing your forehead then leaving the room. You lay still for a few minutes before feeling your consciousness fade...'
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5
+				gs 'arousal', 'end'
+				gs'stat'
+
+				act '...':
+					cls
+					gs 'clothing', 'wear_last_worn'
+					if NikoEv < 4:NikoEv = 4
+					if hour > 6:gs 'cikl'
+					hour = 6
+					pcs_sleep = 100
+					NikoDate = 0
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/home/wake.jpg"></center>'
+					'You awake to birds chirping, you roll around in the bed, and suddenly feel a bad headache. You think to yourself; <font color=#FF00FF><<"What happened? Where am I? How much did I drink? What time is it? FUCK! MY HEAD!">></font> Niko walks into the room with a bowl of cereal in his hand, and lays down next to you. "Hey you''re up, you were way too tipsy yesterday, so I took you to my place to catch some shut eye. I hope that you rested well." You reply, "This headache is killing me." Niko chuckles, "You had so many shots yesterday, I couldn''t keep you away from the bottle." You scratch your head, "Was I really that wild yesterday? I can''t remember a thing."'
+					*nl
+					'Niko kisses your leg, "You were a bit wild, it was a side of you that I haven''t seen before, and I liked it." You reply, "Really? well I guess I could try cutting loose a bit more often." Niko pats your ass gently as he replies, "Now that''s what I like to hear! So would you like some cereal? I have plenty downstairs." You shake your head, "No I need head back home, but thanks for the offer." You give Niko a kiss before walking out the room where Niko guides you out of the door.'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+
+					act 'Walk to the residential district':gt 'pavResidential'
+				end
+			end
+		end
+	end
+end
+
+if NikoVolkovQW = 5 and NikoEv = 4 and NikoDate = 0:
+	'You, and Niko walk out of the cafeteria then Niko leans against the wall, and pulls you toward him, gently kissing your lips before whispering in your ear, "" '
+end
+
+if $ARGS[0] =  'Cafeteria':
+	cls
+	gs 'boyStat', 'A189'
+	NikoDate = 1
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/hold.jpg"></center>'
+	'As you get up to walk out of the cafeteria, Niko wraps his arms around your shoulders, and kisses you on the cheek. "Hey <<$pcs_nickname>>, how is my princess doing?" You smile, as you reply, "Your princess is doing well, and she is much happier now that you are here." Niko sits down next to you, and you both spend the next 5 minutes, gossiping about your classmates. Niko leans toward you then whispers in your ear, "Hey do you remember when you said that you wanted to be more daring?" You reply, "I said that I wanted to cut loose more." Niko replies, "Yeah same thing, so how about you be more "daring" right now?" You tilt your head, as you reply, "What do you mean?"'
+	*nl
+	'Niko gives you a wolfish grin as he replies, "I want you to suck me off right now." You can feel your face growing red, as you respond, "I..I don''t know. What if someone sees us?" Niko rubs your back with one hand while he begins unbuttoning his pants with the other. "Now that''s the fun part, Let''s see what happens, shall we?"'
+
+	act 'Suck Niko''s dick':
+		cls
+		exhibition_exp += 6
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/cafeteria/bj.jpg"></center>'
+		'Not wanting to disappoint Niko, you nod your head meekly then lower your head slowly, trying your best not to make any quick movements. You slowly wrap your lips around Niko''s penis, feeling the warmth of his dick in your mouth. You spend the next few minutes doing your best to please Niko while feeling the sweat dripping down your neck, terrified that someone might see you. Niko''s slides his hand down your shirt exposing your breast, causing you to start trembling in fear; wishing that you were invisible.'
+		*nl
+		'After a few minutes, Niko''s hand tightens around your breast, as his penis begins throbbing in your mouth, causing Niko''s cum to shoot down your throut which you swallow as best you can. Once Niko is fully spent, he pulls you up and kisses your forehead, "That''s my girl, so beautiful, and daring too. You really are a precious gem <<$pcs_firstname>>." Niko''s words, warm your already rapidly beating heart, leaving you speechless, as he gives you a wink, before buttoning his pants then walking away.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj2.gif"></center>'
+		gs 'cum_call', 'mouth', $boy
+		gs 'arousal', 'bj', 5
+		gs 'arousal', 'end'
+		gs'stat'
+
+		act 'Watch Niko walk away':gt 'gschool_lunch', 'break'
+	end
+end
+
+if $ARGS[0] =  'Date 3':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d.jpg"></center>'
+	'As soon as you reach the lake, Niko scoffs, "What the hell are these people doing here? I thought that we would have this place to ourselves. It is normally secluded." You look to see a bunch of people relaxing by the lake, and even see some food carts around. You think to yourself, <font color=#FF00FF>Niko is right. This place is normally empty. Maybe there is some kind of fair today, or something. Oh well, let''s not let this stop us from having a good time.</font> You grab onto Niko''s hand as you say, "Let''s sit over there." Niko chuckles as he replies, "Sure thing, let''s have some fun." Niko places the beach towel on the floor then lights a cigarette before you both sit down by the shore. You wink as you say to Niko, "My skin feels so dry. Can you help me out?" Niko then quickly reaches into his bag, pulling out the sunscreen then begins applying it to your skin.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d1.jpg"></center>'
+
+	act 'Talk to Niko':
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+		*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+		'As Niko is applying the sunscreen, you say, "Do you mind if I ask you some more questions about your...family? I am really interested in getting to know you better." Niko pauses for a second then replies, "Sure, why not? Ask away." You then say, "You told me that you had a sister who...passed away, but you never told me what happened to your younger brother, or your father." Niko continues applying the sunscreen to your skin, as he answers, "After my sister''s death, my father took it extremely hard, and blamed himself for not being there. I believe that he lost faith in both Yurik, and I.'
+		*nl
+		'It wasn''t my fault but of course, I received some of the blame, for Yurik''s failure... I just can''t believe how fast it happened. One second she was on the sidewalk holding the cat then... Anyway my father began working even harder, trying to find a cure for my little brother''s condition. I don''t know much about his research. He always stayed locked in his study."'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+
+		act 'Go on':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+			'You ask, "What happened to them?" Niko replies, "They both died..." You ask, "But how?" Niko shrugs then remains silent. You realize that he is not interested in answering, so you ask, "So what happened to your mother?" Niko replies, "I never met her. She left my father shortly after I was born. Yurik told me that she was just a gold digger who only wanted my father''s money, but after a long heated argument, she left without ever looking back. What a greedy bitch!" You respond, "Are there any happy memories that you have with your family?" Niko shrugs as he says, "None that aren''t surrounded in bad memories. Let''s talk about something else."'
+			*nl
+			'You and Niko spend the next 15 minutes, talking about various topics before Niko asks, "Hey <<$pcs_firstname>>, would you consider yourself a daring girl?" You scratch your head before replying, "I don''t know." Niko grins as he says, "Well let''s find out right now." Niko unbuttons his pants then says, "I dare you to suck me off right now." You look around at all the people around you then say, "But there are people around." Niko replies, "So? Come on, show me how daring you are. It will be really sexy." You bite your lip as you take one last look around.'
+			'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+			*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+
+			act 'Jerk Niko off':
+				cls
+				exhibition_exp += 2
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d2.gif"></center>'
+				'You reach down then pull out Niko''s penis from his pants before wrapping your fingers around it, stroking it firmly. You can feel your heart pounding, as you think of what might happen if someone sees you. After a few seconds of stroking, you lean forward then begin licking the tip of Niko''s penis while occasionally looking around to see if anyone notices what you are doing. Niko pats the back of your head then says in a soft encouraging voice, "You''re doing great <<$pcs_nickname>>, Keep it up." You nod then begin slowly sliding Niko''s penis into your mouth.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d3.gif"></center>'
+				gs 'arousal', 'hj', 5
+				gs 'arousal', 'bj', 5
+				gs'stat'
+
+				act 'Suck Niko''s penis':
+					cls
+					exhibition_exp += 2
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj1.gif"></center>'
+					'You begin eagerly sucking Niko''s dick, feeling both nervous and excited. You continue licking and sucking Niko''s penis, wanting to be as sexy as you can for Niko. You look up at Niko to see a very proud look on his face, informing you that you are doing a good job, and encouraging you to keep going. After a few more seconds, Niko closes his eyes then lightly grunts as a sudden burst of warm liquid fills your mouth. You do your best to relax your throat and let Niko''s seed slide down your throat into your belly. Niko looks down to you then gently rubs on your cheek, as he says, "You are so sexy <<$pcs_nickname>>, I certainly picked the right girl."'
+					*nl
+					'Niko then gives you a wink, as you lower your head, feeling your cheeks growing red from both Niko''s, words, and the realization that you just sucked off Niko in a public beach. Niko buttons his pants then says, "Let''s go somewhere more private where we can talk without any worry of getting interrupted." You nod your head then Niko guides you to a nearby dock where you both take a seat under.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj2.gif"></center>'
+					gs 'cum_call', 'mouth', $boy
+					gs 'arousal', 'bj', 5
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Continue':
+						cls
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d4.jpg"></center>'
+						'As you both get comfortably seated, you take this time to ask Niko, "Niko I hate to keep prying, but I feel that there is more to your story that you might need to get off your chest. Can you tell me how your brother died?" Niko takes a few second pause before replying, "There was a fire in our old home, and before you ask, No they didn''t die in the fire. My brother and I set up a christmas tree, but sadly we never realized how close we placed it to the fireplace. It would have been alright if we didn''t place rattling ornaments on the tree." You quickly ask, "How can rattling ornaments cause a fire?"'
+
+						act 'Listen to Niko''s reply':
+							cls
+							minut += 5
+							gs'stat'
+							'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+							'Niko replies, "Our little brother Eduard was alway drawn to rattling things like bells, and the like. He was always excited to play with them, and watching him play with them was like watching a cat play with a ball of yarn. He saw the rattling bells on the tree then he must have tried to climb the tree, or maybe knocked the tree down, trying to get the rattling ornaments because the next thing we knew, the house was on fire, and our little brother was trapped inside. My father tried to rush in to save him, and managed to get him out, but he was too quick to run out. He ran out of the house and onto the street where a truck... The rest is history.'
+							*nl
+							'None of them survived, and nothing else really matters..." A wave of water suddenly splashes on Niko''s back, causing him to jump up, and say, "Aw shit that was cold. We should probably get going. Are you ready?"'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d5.jpg"></center>'
+
+							act 'Yes':
+								cls
+								minut += 5
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d6.jpg"></center>'
+								'You nod at Niko then begin preparing to leave when something catches Niko''s eye. "<<$pcs_firstname>> you''re wearing the necklace that I gave you?" You look down at the necklace then back at Niko, and happily smile, as you nod. "I really like it. Thank you for giving it to me." Niko chuckles, "I knew that the necklace would look beautiful with you in it." You respond, "Don''t you mean that this necklace would make me look beautiful?" Niko grins as he replies, "I meant what I said." You downcast your eyes, feeling your face growing flushed. "You''re just too sweet." Niko replies, "I only speak the truth." Then chuckles as he continues getting ready to leave.'
+								*nl
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d7.jpg"></center>'
+
+								act 'Prepare to head home':
+									cls
+									minut += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d8.jpg"></center>'
+									'You get your stuff together then get up, as Niko guides you back toward the city when you both notice an ice cream stand. Niko asks, "Hey <<$pcs_firstname>>, would you like some ice cream?" You think for a second then reply, "Sure I guess a little ice cream wont kill me." Niko replies, "Don''t worry I wont plump you up. I have no interest in dating a cow." Niko then sticks his tongue out, as he guide you to the ice cream stand, and lets you choose any one you want. You spend the next few seconds, looking over the choices while comparing calories before you decide to go with plain vanilla, You ask the man in the ice cream stand for vanilla when Niko adds, "Make that 2 vanilla cones." You give Niko a happy smile, as he rubs on your lower back while returning the smile.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d9.jpg"></center>'
+
+									act 'Continue':
+										cls
+										minut += 5
+										gs'stat'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d10.jpg"></center>'
+										'Niko recieves the ice cream cones then hands you one before saying, "You''re smoking hot <<$pcs_nickname>>, maybe this will cool you down a bit." You giggle as you take the ice cream then reply, "Well I always feel hot when you are around." Niko gives you a very pleased smile, as he responds, "How about we head back to my place for some more alone time?" You give Niko a seductive grin, as you reply, "Sounds like fun." Niko responds, "Oh we''ll have a lot of fun. Let''s go." You and Niko then head toward Niko''s home while chatting about various topics along the way.'
+										*nl
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/d11.jpg"></center>'
+
+										act 'Follow Niko':gt 'NikoDates', 'Home'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] =  'Home':
+	cls
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+	'You and Niko arrive at his house, and Niko holds the door open for you, inviting you inside. Niko gives your ass a firm smack, as you walk in the door. "We only have about two hours before my brother shows up, so let''s not waste time." Niko grabs your hand, and leads you to the livingroom.'
+
+	act 'Continue':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home1.jpg"></center>'
+		'As soon as you both enter the livingroom, Niko begins kissing your neck, and pawing at your breasts. Niko then pushes you onto the couch as he removes your clothes. You lay back on the sofa enjoying Niko; caressing your body, and licking on your neck. Niko continues removing your clothes, as he begins kissing your lips roughly, but passionately.'
+		gs 'arousal', 'kiss', 5
+		gs'stat'
+
+		act 'Return the kiss':
+			cls
+			gs 'clothing', 'strip'
+			minut -= 10
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home2.jpg"></center>'
+			'After Niko fully undresses you, he breaks off the kiss and then lowers himself down your waist where he begins rubbing on your vaginal lips. You can feel your cheeks growing red, as Niko begins gently licking on your clitoris, feeling both shy, and embarassed having Niko licking your clitoris which causes your thoughts to race <font color=#FF00FF>I can''t believe that Niko and I are having sex. His tongue is so soft and his arms so strong. There is no going back now, I hope he doesn''t get me pregnant..No! I can trust him. He cares for me and is really smart, I know he can control himself.</font> Niko says, "It''s your turn." as he grabs you by your shoulders, and lifts you up before pushing your down on your knees.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home3.jpg"></center>'
+			gs 'arousal', 'kiss', 5
+			gs 'arousal', 'cuni', 5
+			gs 'arousal', 'foreplay', 5
+			gs'stat'
+
+			act 'Pull down Niko''s pants':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home4.jpg"></center>'
+				'You eagerly begin pulling down Niko''s pants, causing his hard cock to swing out, almost hitting you in the face. You begin slowly stroking the shaft before Niko grabs the back of your head, and pushes his dick into your mouth, causing you to gag for a second before the feeling passes, and you begin sucking on Niko''s dick. Niko brushes your hair from your face as he stares into your eyes with a very satisfied grin. You spend the next few minutes, sucking on Niko''s warm hard dick, feeling it occasionally throb in your mouth. Eventually Niko lets out a moan before pulling you off his dick then lifting you up, and dropping you onto the couch before lining up his dick with your vaginal lips.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home5.jpg"></center>'
+				gs 'arousal', 'bj', 5
+				gs'stat'
+
+				act 'Vaginal':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home6.jpg"></center>'
+					'Niko pushes his dick inside of you, causing a rush of pleasure, feeling his hard cock pushing it''s way inside you. You lay back enjoying the thrusts, as you continue to stare into Niko''s eyes, feeling his lustful gaze almost hypnotizing you into submission, wanting him to fuck you harder while feeling helpless to stop it, but also feeling satisfaction in that feeling. <font color=#FF00FF>What is this feeling? Why do I want him to have this power over me? Niko is so rough with me right now, but He is so strong, and dominant. I only want to please him. Am I wrong in feeling this?</font> Niko suddenly pulls out of you, as he groans, and begins covering your stomach with his seed. You let out a load moan, as you feeling the warmth of his cum wash over you.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/3/home/home7.jpg"></center>'
+					gs 'cum_call', 'stomach', $boy
+					gs 'arousal', 'vaginal', 10
+					gs 'arousal', 'end'
+					gs'stat'
+
+					act 'Continue':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/home/livingroom/couch.jpg"></center>'
+						'Niko climbs off of you then heads to the kitchen for a few seconds, and comes back with a beer. Niko sits on the couch next to you and says, "You were great <<$pcs_nickname>>. If you wanna wash up, the bathroom is two rooms down that way. After you''re done, meet me at the front door, and I''ll escort you out." Niko leans over and gives you a kiss on the cheek.'
+
+						act 'Wash up':gs 'clothing', 'wear_last_worn' & gt 'NikoDates', 'Bathroom'
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Bathroom':
+	cls
+	$metka = 'Bathroom'
+	$loc = 'NikoDates'
+	$metkaM = 'Bathroom'
+	$locM = 'NikoDates'
+	$location_type = 'bathroom'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/Volkovhome/rooms/bathroom.jpg"></center>'
+	'This bathroom seems rather clean, and has two towels, two bathrobes, a sink, a toilet, a <a href="exec:gt ''mirror'', ''start''">mirror</a>, and a bathtub.'
+
+	act 'Quick wash (0:10)':gt 'NikoDates', 'Quick Wash'
+
+	act 'Leave bathroom':
+		if NikoEv = 5:
+			gt 'NikoDates', 'Yurik Intro'
+		elseif NikoEv 11:
+			gt 'NikoEv2', 'Reward'
+		end
+	end
+end
+
+if $ARGS[0] = 'Quick Wash':
+	cls
+	minut += 10
+	pcs_hairbsh = 0
+	pcs_makeup = 1
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end
+	gs'stat'
+	'<center><h4><font color="blue">Bathroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself, as thoroughly, as possible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
+
+	act 'Dry off':
+		if NikoEv = 5:
+			gt 'NikoDates', 'Yurik Intro'
+		elseif NikoEv = 11:
+			gt 'NikoEv2', 'Reward'
+		end
+	end
+end
+
+if $ARGS[0] = 'Yurik Intro':
+	cls
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/hallway1.jpg"></center>'
+	'As you walk out of the bathroom, you look around for Niko then hear loud hammering coming from outside. You follow the noise to an old garage. You push the door open, and see a motorcycle with a lot of tools and parts, scattered around the room. You begin examining the parts when you suddenly hear someone shout, "Hands off my shit!"'
+	*nl
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/garage/garage.jpg"></center>'
+
+	act 'Turn around':
+		cls
+		gs'stat'
+		'<center><b><h4><font color="red"><<"Burly Bearded Man">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/Niko/yurikev/avatars/yurik.jpg"></center>'
+		'You turn around to see a man standing across the room from you, covered in tattoos. You take a closer look, and recognize him as the burly bearded man that attacked you before. You gasp, "You''re the one that attacked me." The bearded man chuckles, as he replies, "Oh yeah. Your the girl that Nikolai is dating, He got you here a lot quicker than I thought. That boy works fast, I see." The man approaches you, as you let out a scream, causing Niko to storm into the room.'
+
+		act 'See what Niko does':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'Niko shouts, "What the fuu... Oh shit, Yurik? You said that you were going to be out all day." Yurik grins, as he replies, "I was, until I noticed how excited you were when I told you. I figured that you were trying to steal my revolver again, but I see that you were just delivering my gift to me early. I never should have doubted you, baby brother."'
+			*nl
+			'You quickly turn to Niko, "What is he talking about Niko? What does he mean by <font color=#FF00FF>gift</font>?" Niko quickly jogs up to Yurik then the two of them whisper to each other while clearly not agreeing with each other. They argue for a few seconds, until Finally, Yurik shakes his head, "You better deliver Niko. I wont wait long." Yurik then leaves the room, clearly upset with the outcome of the argument they had.'
+			'<center><b><h4><font color="blue"><<"Yurik Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/Niko/yurikev/avatars/yurik1.jpg"></center>'
+
+			act 'Watch Yurik leave':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+				'After Yurik angrily storms out of the room, Niko wraps his arm around your shoulder and says, "Oh that brother of mine, he is such a wild card. Are you alright?" You pull away from him, "What did he mean by <font color=#FF00FF>gift</font>? You didn''t send him after me, did you?" Niko chuckles for a few seconds before replying, "Of course not, He was just talking... about a bet we had a few days ago which I promised him 50 ruble if he won an arm wrestling contest. That''s all, really." You stare him in the eyes for a few seconds.'
+				*nl
+				'Niko''s posture lowers, as he tells you, "I know it sounds hard to believe, but please try to believe me. I would never do anything to harm you. You mean everything to me <<$pcs_firstname>>. All the time I have spent with you has been the greatest time in my life...Please <<$pcs_firstname>>. I love you." Niko lifts your hands to his face, and begins kissing them repeatedly.'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer3.jpg"></center>'
+
+				act 'I believe you':
+					cls
+					NikoDate = 0
+					minut += 5
+					gs'stat'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+					'Niko''s eyes light up as he begins kissing your hands even faster before saying, "Thank you <<$pcs_firstname>>. I always knew that you were one of the good ones. Hey wanna watch some TV together?" You give him a smile as you reply, "I would love to but I need to head home. I''ll see you tomorrow Niko." Niko returns the smile, as he responds, "I always look forward to seeing you again." Niko then walks you out of the front door then gives you a passionate kiss before closing the door.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+
+					act 'Walk away':gt 'pavResidential'
+				end
+
+				act 'I don''t believe you':
+					cls
+					minut += 5
+					gs'stat'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Charmer2.jpg"></center>'
+					'You pull your hands away from Niko then say, "This doesn''t add up Niko." Niko gives you a frown as he replies, "I know this doesn''t make too much sense, but sometimes the truth sounds confusing. I care for you <<$pcs_firstname>>, Can you please try to believe me?" Niko gives you a cute sad face.'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Charmer3.jpg"></center>'
+
+					act 'Alright, I believe you':
+						cls
+						NikoDate = 0
+						minut += 5
+						gs'stat'
+						'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+						'Niko''s eyes light up as he grabs onto then begins kissing your hands before saying, "Thank you <<$pcs_firstname>>. I always knew that you were one of the good ones. Hey wanna watch some TV together?" You give him a smile as you reply, "I would love to but I need to head home. I''ll see you tomorrow Niko." Niko returns the smile, as he responds, "I always look forward to seeing you again." Niko then walks you out of the front door then gives you a passionate kiss before closing the door.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+
+						act 'Walk away':gt 'pavResidential'
+					end
+
+					act 'No, I don''t believe you <font color=#FF00FF>[Break up with Niko]</font>':
+						cls
+						npc_rel['A189'] = 10
+						NikoVolkovQW = -1
+						NikoLuv = -8
+						NikoEv = 0
+						NikoDate = -1
+						NikoPayback = 1
+						minut += 5
+						gs'stat'
+						'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+						'You shake your head as you say, "I''m not falling for it Niko. I know that you''ve been lying to me, and to have your brother attack me...Why? To make you look tough?" Niko gets noticeably angry as he shouts, "I HAVE DONE SO MUCH FOR YOU! HOW COULD YOU JUST TURN ON ME LIKE THIS?" Niko clenches his fist then grabs you by the throat before winding his fist to punch you.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/grab.jpg"></center>'
+
+						act 'Protect your face':
+							cls
+							NikoDate = 0
+							minut += 5
+							gs'stat'
+							'<center><b><h4><font color="red"><<"Yurik Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/avatars/slap.jpg"></center>'
+							'Just as Niko begins moving his fist to your face, he is suddenly slapped across his face, knocking him back. You turn to see Yurik with a stern look on his face, as he shouts, "What has come over you Niko? Haven''t I taught you better than using a closed fist on a girl? Have some self respect boy!" Niko remains silent as he rubs his face. Yurik turns to you then says, "Get out of here girl. Niko and I have a dept to discuss." Yurik then pushes you out of the room before slamming the door closed behind you. You quickly leave the house without looking back.'
+							'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/bruised1.jpg"></center>'
+
+							act 'Leave house':gt 'pavResidential'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Hallway Strip':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As you enter the cafeteria, Niko grabs your hand and whispers in your ear, "Are you ready for another "Daring" activity?" You look back to him, and say...'
+
+	act 'Sounds fun':
+		cls
+		minut += 1
+		NikoEv = 6
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+		'Niko leads you out of the cafeteria, as the other students enter. You and Niko wait for a few seconds before he leans forward, and whispers in your ear, "Take off your clothes." You look back at Niko in shock, "But we are in the hallway outside of the cafeteria. Someone will see me for sure." Niko grins as he replies, "Everyone in there is too focused on chating, and eating. i doubt that anyone will even look in this direction, and if they do then I will cover you up before anyone recognizes you. You can trust me."'
+
+		act 'Begin stripping':
+			cls
+			exhibition_exp += 1
+			minut += 1
+			gs'stat'
+			'You look around to make sure that no one is looking before slowly reaching for your shirt and sliding it off while looking back to Niko, and seeing the pleased grin on his face, as you continue striping for him. You constantly look back at the cafeteria, checking if someone has noticed you. After removing your shirt, you look Niko in his eyes, "There...I took off my top...I feel more daring now..Thank you, I should go now." You then quickly try to put on your top when Niko grabs it, as he responds, "Come on now, don''t let fear get the better of you. Take it all off." You grab onto Niko''s hand, "Please...I...I can''t. Someone will see me." Niko whispers in your ear, "Don''t get cold feet now. Take it all off."'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip1.jpg"></center>'
+
+			act 'Continue stripping':
+				cls
+				exhibition_exp += 2
+				gs 'clothing', 'strip'
+				minut += 1
+				gs'stat'
+				'You can feel your heart racing as you meekly nod and begin fully undressing, not even checking if anyone is watching anymore, feeling your hands trembling, as you remove your shoes then your pants. You lean against the wall behind you, looking Niko in the eyes, "Alright, I did it." Niko rubs on his crotch as he replies, "Damn <<$pcs_firstname>>. You are so beautiful, and so fucking sexy." You can feel your heart pounding and cheeks completely flushed as you give Niko a warm smile. "Thank you Niko, I..." Your thoughts are racing too fast to finish your sentence. Niko takes out his phone then says, "Why don''t you give me some poses? I need new wallpaper for my phone."'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip2.jpg"></center>'
+
+				act 'Pose':
+					cls
+					exhibition_exp += 2
+					minut += 2
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip3.jpg"></center>'
+					'You begin striking multiple poses as Niko films you on his phone. Niko continues rubbing on his crotch, as he says, "Sit down and spread your legs." You do exactly as he says while completely forgetting about where you are. After a minute of posing, you suddenly hear someone say, "Dude check out this girl. She is hot." You suddenly remember where you are, and franticly begin grabbing your clothes, as Niko puts his hand on your shoulder. "Relax, those guys weren''t talking about you." He then points to two students looking at pictures of girls on their phones. You let out a sigh of relief, as Niko''s hands on your shoulder tighten. "<<$pcs_firstname>> I want you to suck me off, right now."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip4.jpg"></center>'
+
+					act 'Suck Niko''s dick':
+						cls
+						exhibition_exp += 2
+						minut -= 3
+						gs'stat'
+						'You can feel your heart pounding with both, fear, and excitement. You see Niko unbutton his pants then pull out his penis, and begin slowly stroking it, as he stares at your body. <font color=#FF00FF>Niko has done so much for me. I need to do this for him</font>. You drop to your knees, and wrap your lips around Niko''s dick, feeling his penis, so warm, as it leaks with pre cum. <font color=#FF00FF>He must have craved this for some time. He wants me so bad, he needs me. I must give him the release he craves. I can''t let him down. Please Niko, enjoy my touch, and cum for me</font>.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/bj.gif"></center>'
+						gs 'arousal', 'bj', 5
+						gs'stat'
+
+						act 'Make Niko cum':
+							cls
+							exhibition_exp += 2
+							minut -= 3
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/kotovbj23.gif"></center>'
+							'You quicken your pace until you see Niko''s head slam into the wall as he begin shooting his warm seed into your mouth. You do your best to swallow every drop of his warm nectar, despite it''s sharp, tart taste. Niko looks down to you, and says, "Thank you <<$pcs_firstname>>. You are truly a goddess. Now let''s get you dressed before someone notices us." Niko kneels down, and picks up your clothes then helps you get dressed while occasionally checking to see if anyone has noticed. Once you are fully dressed, Niko whispers in your ear, "You were extremely daring today, I look forward to next time." Niko gives you a kiss on your cheek before walking back into the cafeteria.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow4.gif"></center>'
+							gs 'cum_call', 'mouth', $boy
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Enter the cafeteria':gs 'clothing', 'wear_last_worn' & gt 'gschool_lunch', 'lunch'
+						end
+					end
+				end
+			end
+		end
+	end
+
+	act 'I can''t right now':
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+		'Niko shrugs, as he replies, "Aww, too bad. I must have caught you at a bad time. I''ll try again later. Until then stay sexy." He then gives your ass a firm smack before turning around, and walking away.'
+
+		act 'Enter the cafeteria':gt 'gschool_lunch', 'lunch'
+	end
+end
+
+if $ARGS[0] = 'After School':
+	cls
+	NikoDate_Day = daystart
+	minut += 5
+	gs 'boyStat', 'A189'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/hold.jpg"></center>'
+	'As you walk out of the school, Niko wraps his arms around your neck then whispers in your ear, "What is my daring girl doing on such a fine day?" You turn to face Niko, flashing him a sweet smile as you reply, "Just waiting, for my boyfriend to surprise me with an exciting activity." Niko chuckles, as he responds, "I have some plans for you, are you ready, for some daring activities?"'
+
+	act 'Sure am':
+		cls
+		NikoEv = 7
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/jewelry/collar.jpg"></center>'
+		'Niko pulls out a purple, and black collar, and dangles it in front of your face, "You will be wearing this today, as we go for a stroll." You look at the collar while nervously bitting your lip. Niko wraps his arm around your neck, and guides you behind the school.'
+
+		act 'Continue':
+			cls
+			gs 'clothing', 'strip'
+			minut += 5
+			gs'stat'
+			'When you reach the back of the school, Niko whispers in your ear, "Take off your clothes." You meekly nod your head then begin removing your clothes until you are completely naked. Niko says, "Why don''t you crawl down, like a good pet while I put this collar on you?" You drop to your knees, and begin crawling, as Niko stares. You crawl as sexy as possible for Niko, feeling so excited, thinking about how sexy you must look to Niko.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/strip1.jpg"></center>'
+
+			act 'Continue crawling':
+				cls
+				exhibition_exp += 1
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/wos.jpg"></center>'
+				'After a few seconds, Niko approaches you, and places the collar around your neck then attaches a leash to it. "Let''s go for a walk, toward the courtyard." Your heart immediately skips a beat before you reply, "I can''t walk around like this, Everyone is out there. They will see me for sure." Niko responds, "Not feeling daring enough?" You quickly begin putting your clothes back on, "There is no way that I can do this! I need to go." Niko sighs before replying, "Ok, how about we just walk around fully clothed? Would that be alright?" You sigh in relief, "That will be fine."'
+
+				act 'Get dressed':
+					cls
+					gs 'clothing', 'wear_last_worn'
+					exhibition_exp += 1
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/clothed1.jpg"></center>'
+					'After you are fully dressed then Niko pulls up on the collar, bringing you to your feet. "Let''s go for a walk." You respond, "With the collar on?" Niko replies, "Well of course. What fun would a regular walk be?" You nod your head then begin walking with Niko. You both spend the next few minutes, walking around town while chatting with Niko. Every once in a while someone would stop, and stare at the collar, and leash around your neck while you pretend not to notice, and keep walking. After a few more minutes, Niko pulls you toward him, using the collar, "I want you to start crawling." You reply, "But I..." Niko cuts you off, "Don''t worry, we are pretty much at the end of our walk anyway."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/clothed2.jpg"></center>'
+
+					act 'Crawl':
+						cls
+						exhibition_exp += 2
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/clothed3.gif"></center>'
+						'You drop down to your hands, and knees, and begin crawling. You can see many more people staring at you now, as you crawl behind Niko, like a pet. The hard gravel pressed against your hands, and knees is increasing your discomfort, but the thought of becoming more confident, daring, and making Niko happy drive you to continue crawling, for him. After a few more seconds, you suddenly hear someone say, "Now what do we have here? A cute little puppy, and her owner?" You quickly turn to see Denis Ryzhov leaning over you. Niko laughs as he replies, "I''m just taking my girl, for a walk." Dan smirks, as he looks down at you, "Is that <<$pcs_firstname>>? Any chance I could buy this pet of yours?"'
+						'<center><b><font color="green"><<"Denis [Dan] Ryzhov">></font></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/10.jpg"></center>'
+
+						act 'Listen':
+							cls
+							exhibition_exp += 2
+							minut += 5
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/Denis.jpg"></center>'
+							'Niko chuckles, as he replies, "How much are you offering?" Dan replies, "I only have a few coins, and a condom wrapper." Niko responds, "Sold!" The boys both laugh, as Dan pets your head, "Hey <<$pcs_nickname>>, you can always stop by my place, for a clothing optional party, and don''t worry, I have a special chew toy, for you to nibble on." Dan then begins chuckling, as he walks away. Niko pats your head, as he says, "That guy can be a wild card at times. I hope you enjoyed our adventure today."'
+							*nl
+							'Niko kneels down in front of you then removes the collar from your neck before kissing your lips passionately for a few seconds then gently rubbing your cheek. "You will always be my perfect little princess. I have an important test to take tomorrow, so I will be very busy, but feel free to stop by the <font color=#c600ff>disco tomorrow</font>, and we can have a good time." Niko then stands up, and walks away.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss2.gif"></center>'
+
+							act 'Stand up':gt 'pavResidential'
+						end
+					end
+				end
+			end
+		end
+	end
+
+	act 'I can''t right now':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'Niko replies, "I''m sorry to hear that, maybe another time then." You reply, "You bet." You lean forward and give Niko a kiss on the cheek, as you walk away.'
+
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] = 'Disco':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As you enter the disco, someone gives your ass a firm smack, causing you to hop up in shock. You quickly dart around to see Niko with a confident smile on his face, "Hey <<$pcs_nickname>>, I''m glad that you''re here. This place has been so dull today, but with you here, the party can actually start." You return the smile, "Party huh? I''m always ready to party." Niko hands you a bottle, as he asks, "Care for a drink?"'
+
+	act 'Drink':
+		cls
+		alko += 3
+		NikoEv = 8
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_2_2.gif"></center>'
+		'You happily take the bottle then give Niko a wink. You both take a seat and begin chatting about various topics, as Niko continues pouring you more beer. After a few minutes, You begin feeling the alcohol kicking in, causing you to feel groggy. Niko grabs on your ass, and asks, "Are you up for a dance?"'
+		*nl
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_2_1.gif"></center>'
+
+		act 'Dance':
+			cls
+			danc_exp += rand(1,3)
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/dance1.gif"></center>'
+			'"You bet I am." You grab Niko''s hand then lead him to the dance floor. You both spend the next few minutes dancing while you occasionally grind against him, feeling his hard cock rubbing against your ass. Knowing how turned on Niko is, fills you with a rush of excitement, as you continue teasing his cock with your ass. Niko leans his head, over your shoulder, "Hey <<$pcs_nickname>>, I want you to suck my dick, right now."'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/dance2.gif"></center>'
+
+			act 'Unbutton Niko''s pants':
+				cls
+				exhibition_exp += 1
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/kotovbj2.gif"></center>'
+				'You feel too lightheaded to resist. You drop down to your knees in front of Niko, and begin unbuttoning his pants. Niko''s hard dick springs out of his pants, and almost hits you in the face. You take Niko''s dick into your hand and begin stroking it before licking the tip of it, in a circular motion while staring Niko in his eyes, noticing his lustful gaze, as he watches you.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/bj1.gif"></center>'
+				gs 'arousal', 'rimming_give', 5
+				gs'stat'
+
+				act 'Suck Niko''s dick':
+					cls
+					exhibition_exp += 1
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/bj2.gif"></center>'
+					'Wanting to please Niko, you slide his penis into your mouth then begin licking, and sucking it intently. Niko moans, and grabs your hair, as you continue sucking his dick. Niko''s eyes begin squinting, as you pick up the pace, wanting Niko to cum for you. Niko''s head suddenly jerks back as he bites his lip, shooting his cum, down your throat. You do your best to swallow every drop, not wanting any of Niko''s cum to go to waste.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow3.gif"></center>'
+					gs 'cum_call', 'mouth', $boy
+					gs 'arousal', 'bj', 5
+					gs'stat'
+
+					act 'Lick Niko''s dick clean':
+						cls
+						exhibition_exp += 1
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/bj1.gif"></center>'
+						'You finish licking all the cum off of Niko''s penis when Niko leans forward, and gives you a kiss on the forehead, "That''s my girl, Always getting braver everyday. Well I''m gonna go clean up, I''ll be right back." Niko then walks toward the restroom. As he leaves you think to yourself, <font color=#FF00FF>Getting braver?... Ohh shit, I totally forgot where I was, what if someone saw me? ohh no, I hope no one saw me.</font> You quickly look around to see in anyone noticed you, and you can see a few guy snickering, as they both whisper to each other. You slowly rise to your feet, feeling your face growing red. You walk to the other side of the dance floor while keeping an eye out for Niko.'
+						gs 'arousal', 'rimming_give', 5
+						gs'stat'
+
+						act 'Collect your thoughts':
+							cls
+							gs'stat'
+							'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+							*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+							'You take a few seconds to collect your thoughts, <font color=#FF00FF>I''m sure those guys wont be a problem, I have nothing to worry about. I just need to wait for Niko then I can go home and relax.</font> You suddenly feel a hand sliding up your skirt, and rubbing on your clitoris, <font color=#FF00FF>Ohh Niko, always so sexy.</font> You spread your legs then tilt your head back, enjoying the caress. The rubbing gets more rapid then you feel his fingers enter your vagina, gripping your g-spot then rubbing it firmly. <font color=#FF00FF>Niko always knows just how to please me, I love you so much Niko.</font>'
+							*nl
+							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_13_2.gif"></center>'
+							gs 'arousal', 'foreplay', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Turn around and kiss him':
+								cls
+								minut += 5
+								gs'stat'
+								'<center><b><font color="green"><<"Denis [Dan] Ryzhov">></font></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/10.jpg"></center>'
+								'You turn around, and wrap your arms around the man behind you then quickly recoil in shock when you realize that Niko wasn''t the one touching you, it was Dan Ryzhov. You quickly exclaim, "What the fuck are you doing Dan?" He chuckles, as he replies, "I was just giving you what you wanted, I didn''t hear you complaining between the moans," You push Dan away. Dan begins cackling, as he walks away.'
+
+								act 'Look for Niko':
+									cls
+									minut += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/Valentin.jpg"></center>'
+									'You stumble around looking for Niko, and find him drinking with Valentin Bogdanov. You walk up to Niko, and say, "Niko, you said that you''d...be right back. I was waiting...for you." Niko replies, "Ohh shit. I totally forgot, I''m sorry, would you like me to walk you home?" You reply, "It''s cool, we all forget things sometimes...I''ll be fine on my own." Valentin adds, "Damn Niko, she looks wasted, you should probably take her home." Niko responds, "You''re right, come on <<$pcs_firstname>>. I''m taking you home." You try to object, "I''m fine...I...I can..." Niko lifts you onto his back then carries you home.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/2/d4.jpg"></center>'
+
+									act 'Rest on Niko''s back':gt 'korrPar'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+
+	act 'I really need to go':
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'Niko shrugs, as he responds, "Too bad, I really wanted to spend some time with you today, but if you have something important to do then I wont keep you from it." You give Niko a kiss on the chek then say, "Maybe some other time we could drink together." Niko replies, "I would like that. Goodbye for now." You wave at Niko as you walk away.'
+
+		act 'Move away':gt 'gdkin'
+	end
+end
+
+if $ARGS[0] = 'After School 2':
+	cls
+	NikoDate_Day = daystart
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/hold.jpg"></center>'
+	'As you walk out of the school, Niko wraps his arms around your neck then whispers in your ear, "How is my fearless girl doing today?" You turn to face Niko, flashing him a sweet smile as you reply, "I''m feeling a lot better with you here." Niko''s smile widens, as he responds, "How about we do something really daring today?"'
+
+	act 'Sure':
+		cls
+		NikoEv = 9
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/jewelry/collar.jpg"></center>'
+		'Niko pulls out the purple, and black collar, from the other day then dangles it in front of your face, "How about we go through with the plan I had last time? I want you to wear only this collar as we go for a nice stroll through the school. The school is pretty much empty right now, so I doubt that anyone will see us." You nervously bit your lip, as you reply, "I guess we could try that. You will cover me up, if we get caught, right?" Niko replies, "Of course I will. I''ll always keep you safe. You can trust me." Niko then leads you behind the school.'
+
+		act 'Continue':
+			cls
+			gs 'clothing', 'strip'
+			exhibition_exp += 1
+			minut += 5
+			gs'stat'
+			'As you reach the back of the school, Niko whispers in your ear, "Alright <<$pcs_nickname>>, strip, and I''ll get this collar on you." You begin undressing, as Niko stares at your body with a very confident smile on his face. After you are completely nude, Niko says, "Good, now crawl up to me, like a good little pet." You drop to your hands and knees then begin crawling toward Niko in the sexiest way you can, wanting to see him happy. Niko kneels down in front of you then places the collar around your neck. After the collar is firmly around your neck, Niko runs his hands down your back then squeezing your ass firmly before standing up and saying, "Alright, let''s get moving." Niko then begins leading you toward the school.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/strip2.jpg"></center>'
+
+			act 'Follow Niko':
+				cls
+				exhibition_exp += 2
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/crawl1.jpg"></center>'
+				'You can feel your heart, and thoughts racing, as Niko leads you closer to the school <font color=#FF00FF>I can''t believe that I''m doing this. What if someone sees me? What will I do? I feel so exposed right now.</font> Niko leads you down the stairs toward the back door of the school. "You''re doing great <<$pcs_nickname>>, and you look so damn sexy right now." You give Niko a strained smile, as your body trembles. You arrive at the back door, and Niko opens it then leads you inside.'
+
+				act 'Enter school':
+					cls
+					exhibition_exp += 2
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/exhibition/crawl2.gif"></center>'
+					'You enter the school, and Niko leads you further inside. You can hear some people talking in one of the nearby rooms. You quickly look up to Niko, "Someone is here." Niko grins, as he replies, "Well let''s hope they don''t see us then." Niko pulls you forward. Your heart is pounding so fast, <font color=#FF00FF>I can''t believe this. I''m really doing this. Someone could see me at anytime but, Why do I feel excited? Should I be excited? Is there something wrong with me?</font> Niko gives your collar a firm tug forward in the middle of the intersecting hallway then stands right in front of you, and says, "Suck my dick."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall02.jpg"></center>'
+
+					act 'Suck Niko''s dick':
+						cls
+						exhibition_exp += 2
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/kotovbj23.gif"></center>'
+						'You obediently wrap your lips around Niko''s dick, and begin sucking it eagerly. You lick and suck Niko''s hard cock while enjoying the warmth of his penis in your mouth. <font color=#FF00FF>I can''t believe that I''m doing this. I''m sucking Niko''s dick in the middle of the hallway. What if someone sees me? What if a teacher sees me? I can''t... but Niko will protect me, he always protects me. I just need to trust him. I will always be safe with him. Ohh Nikolai I hope that you enjoy what I do for you. Please let me continue to please you. I need you Nikolai</font>.'
+						gs 'arousal', 'bj', 5
+						gs'stat'
+
+						act 'Make Niko cum':
+							cls
+							minut -= 3
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow4.gif"></center>'
+							'You suddenly hear Niko groan, as he begins spraying his hot cum down your throat. You swallow it while enjoying the sting of it, as it slides down your throat, knowing that you have fully satisfied Niko. You slowly look up to Niko, "I love you Nikolai. I love you with all my heart." Niko recoils in shock, "Uhh, I love you too, and I''m...glad you enjoy our time together." You can tell that your sudden show of affection caught Niko off guard which makes you giggle for a few seconds, as Niko buttons his pants then says, "You were outstanding today. I always have a blast when I''m with you. Here are your clothes. You should get dressed before anyone sees us."'
+							gs 'cum_call', 'mouth', $boy
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'end'
+							gs'stat'
+
+							act 'Get dressed':
+								cls
+								gs 'clothing', 'wear_last_worn'
+								minut += 5
+								gs'stat'
+								'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+								*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+								'You grab your clothes then begin getting dressed in the hallway, not even worried about anyone seeing you anymore. After you finish getting dressed, Niko gives you a firm hug, as he says, "You really impressed me today. You are becoming quite fearless. I''m gonna get going, but make sure to pay me a visit at <font color=#c600ff>lunchtime</font> where I will have a special activity ready." Niko then gives your ass a firm smack before walking out of the school building.'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+
+								act 'Leave the school':gt 'gschool_grounds', 'main'
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+
+	act 'I can''t right now':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'Niko replies, "I''m sorry to hear that, maybe another time then." You reply, "You bet." You lean forward and give Niko a kiss on the cheek before walking away.'
+
+		act 'Move away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] = 'Sonia Block':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#FF00FF><<"Sonia Ivanko">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/soniahome/soniaupset.jpg"></center>'
+	'Niko wraps his arm around your neck then leads you to the locker room. As you are both walking, you suddenly hear, "No walking in the halls until class is back in session!" You turn to see Sonia Ivanko holding a notepad. Niko responds, "What''s it to you?" Sonia replies, "I''m the school hall monitor, and it''s my duty to stop students from breaking the rules. so get back to the lunch room before I report you to the principle."'
+	*nl
+	'Niko grunts, "Fine! You really need to lightly up sometime Sonia. Better yet, try getting laid, it will help you not being such an up tight bitch." Sonia scowls then points her pencil at Niko. "Lunch room, NOW!" You can hear Niko utter under his voice, "If only <font color=#FF00FF>Sonia wasn''t such a prude, and got laid</font> then we could have had a good time." As you both walk back to the cafeteria.'
+
+	act 'Walk away':gt 'gschool_lunch', 'break'
+end
+
+if $ARGS[0] = 'Locker Room':
+	cls
+	gs 'boyStat', 'A189'
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'Niko wraps his arm around your neck then leads you to the locker room. When you enter the locker room, Niko closes the door then takes a quick look around to see if anyone is there. Niko walks up behind you then whispers in your ear, "<<$pcs_firstname>> take off your clothes." You obediently do as he asks, removing all your clothes. Niko collects your clothes then puts them in a bag. You can''t help but feel nervous when you see Niko packing up your clothes. <font color=#FF00FF>Is he taking my clothes away? What if someone walks in? I wont be able to get dressed. I''m sure Niko knows what he is doing. Just follow his lead <<$pcs_firstname>>, just follow his lead.</font>'
+	*nl
+	'You reassure yourself, as you see Niko take out the collar that you wore the other day then places it around your neck, followed by a pair of matching leather cuffs which Niko begins placing around your wrists. You can feel your heart racing even faster.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/jewelry/cuffs.jpg"></center>'
+
+	act 'Continue':
+		cls
+		gs 'clothing', 'strip'
+		minut += 5
+		NikoDate_Day = daystart
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker1.gif"></center>'
+		'Niko attaches the leash to your cuffs then walks you toward a nearby pipe before pushing you down, on your knees. Niko begins unbuttoning his pants then takes off his pants before pressing his penis against your lips, "Open your mouth." You obediently do as he commends, opening your mouth as his dick slides into your mouth then brushes against your throat. You can feel your gag reflex kicking in, but do your best to suppress it, not want to disappoint Niko. After a few thrusts, Niko pauses then gives you a confident wink while pointing down to his penis, you immediately understand what he wants, and begin sucking his dick thoroughly, trying your best to please him.'
+		*nl
+		'Niko looks down to you, and says, "You''re doing great <<$pcs_nickname>>, keep it up." Niko''s approval gives you a warm feeling in your heart. <font color=#FF00FF>I''m doing good. Niko likes what I''m doing for him. I only want to please you Niko. Please cum for me. I want your seed inside me.</font>'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker2.gif"></center>'
+
+		act 'Make Niko cum':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow3.gif"></center>'
+			'Niko begins lightly moaning before grabbing onto your hair then pushing his cock down your throat, filling your throat with his warm cum. You enjoy the warm feeling of his cum entering your throat, and the rapid throbbing of his penis, as it pumps your throat with his seed. After Niko is fully spent, he puts his pants back on before kneeling forward to attach the leash to your collar which he then ties to the nearby pipe. Niko gives you an approving pat on the head before leaving the locker room.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker3.gif"></center>'
+			gs 'cum_call', 'mouth', $boy
+			gs 'arousal', 'bj', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Try to remove cuffs':
+				cls
+				minut += 1
+				gs'stat'
+				'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+				*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+				'You squirm for a few seconds, attempting to free yourself from the cuffs. <font color=#FF00FF>Where did Niko go? Did he forget to uncuff me? Maybe he just left to wash his hands before untying me. He wouldn''t forget about me. I just need to wait patiently, for him to return.</font> You spend the next few minutes trying to get comfortable until you hear the locker room door open. You quickly look up in excitement. <font color=#FF00FF>I knew that Niko wouldn''t forget me.</font> but as you look up...'
+
+				act '???':
+					cls
+					minut += 2
+					gs'stat'
+					'<center><b><font color="green"><<"Denis [Dan] Ryzhov">></font></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/10.jpg"></center>'
+					'You see Dan Ryzhov standing in front of you with a wolfish grin on his face, "Well well, I never thought that you were into this kind of stuff." He begins pinching your nipples. You then exclaim, "Dan stop! What are you doing here?" He replies, "Ever since I saw Niko walking you around then I''ve been keeping an eye on you, and saw you doing some pretty naughty things, and I like naughty things." He then lifts you to your feet, as you bellow, "Let go of me, or I''ll scream!"'
+					*nl
+					'Dan''s grin grows even wider, and who would hear you? Everyone is in the cafeteria, laughing, and shouting over each other. Even if someone heard you, would you like them to see you chained up naked, like this? Maybe I should just walk you into the cafeteria where you can scream all you want." <font color=#FF00FF>I''m completely naked. If he walks me into the cafeteria then I will be completely humiliated.</font>'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker4.jpg"></center>'
+
+					act 'Submit':
+						cls
+						gs'stat'
+						'You lower your head in submission, "Please don''t do that. I''ll stay quiet." Dan quickly turns you around then unbuttons his pants before sliding his dick inside of your ass, causing a surge of pressure, and pain to fill your ass. Dan wastes no time and begins fucking your ass, slowly at first then continues picking up the pace. <font color=#FF00FF>I can''t believe this is happening. Niko where are you? Please help me!</font> Dan continues fucking your ass when his phone begins ringing.'
+						*nl
+						'Dan doesn''t even stop fucking you, as he answers his phone. The person on the other end of the phone says something to Dan, to which he responds, "I can''t right now. I''m too busy fucking <<$pcs_firstname>>''s ass." Your eyes widen, as Dan continues, "Yeah, I''m in the locker room...Sure you can come." <font color=#FF00FF>Did he just tell someone about this? Who was he talking too? I can''t do anything. Please tell me I''m dreaming.</font>'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker5.gif"></center>'
+						gs 'arousal', 'anal', 5, 'sub'
+						gs 'stat'
+
+						act 'Who was that?':
+							cls
+							minut += 5
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/locker6.gif"></center>'
+							'Dan hangs up as he replies, "It was just Vasily, don''t worry about it." He begins fucking you harder, as you try ask, "Why...mmmmm...Why''d you....mmmm..Tell him abo...." Dan wraps his hand around your neck, bringing your head to his face. "He is my friend, and I believe in sharing, don''t you?" You suddenly hear the locker room door open again then turn to see who it is...'
+							gs 'arousal', 'anal', 5, 'sub'
+							gs 'stat'
+
+							act '???':
+								cls
+								exhibition_exp += 1
+								gs 'boyStat', 'A10'
+								minut -= 2
+								gs'stat'
+								'<center><b><font color="maroon"><<"Vasily [Shulga] Shulgin">></font></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/10.jpg"></center>'
+								if kotovloveQW > 0:
+									kotovloveQW = -1
+									'Vitek and Vasily enter the room then Vitek begins shouting at Dan, "What the fuck do you think you''re doing Dan? <<$pcs_firstname>> is mine!" Dan suddenly rams his dick far in your ass, causing you to scream, as he fills your ass with his cum. You feel his dick throbbing inside you, as his warm cum fills your ass. Vitek suddenly wraps his hand around Dan''s throat, "Answer my fucking question! What are you doing, fucking my girl?" Dan chocks on his words as he tries to explain, "<<$pcs_firstname>> is a...whore, and I can...Grr...prove it. Check this out," Dan reaches into his pocket then pulls out his phone, and taps the screen a few times. After a few more taps, he lift the phone up to Vitek''s face. A video plays where you hear sucking sounds followed by a groan then shortly after hear yourself saying,'
+									*nl
+									'"I love you Nikolai. I love you with all my heart." You suddenly realize what that Dan must have recorded you, as you sucked Niko''s dick in the hallway, after school. <font color=#FF00FF>There is no way I can talk my way out of this. What will Viktor do to me?</font> Vitek watches the video for a few more seconds before releasing Dan''s throat then turning to you with his face; seething with rage. "You fucking worthless whore!" He then lifts his hand, and smacks you hard, knocking you to the ground. Vitek begins smashing a nearby garbage can in rage then Dan places his hand on Vitek''s shoulder, "It''s alright Vitek, you don''t need her, you never did." Vitek takes a few seconds to calm himself then brushes Dan''s hand off his shoulder, as he unbuttons his pants then pushes his dick against your lips. "What are you waiting for, whore? Start sucking." You meekly nod before wrapping your lips around his dick.'
+								else
+									'Vitek, and Dan enter the room then quickly begin whistling at you before Vitek says, "I thought that Dan was fucking with me when he told me about this." Dan suddenly rams his dick far in your ass, causing you to scream, as he fills your ass with his cum. You feel his dick throbbing inside you, as his warm cum fills your ass. "You take a second to catch your breath when you look up to see Vitek''s dick in your face. "What are you waiting for slut? Start sucking."'
+									*nl
+									'You plead, "Please don''t. I need to get back to..." Vitek wraps his hand around your throat. "That can wait, now get sucking." Dan pulls out of you, causing you to feel a rush of pressure, as it evokes a moan to escape your mouth. Vitek immediately takes advantage of this, and shoves his dick into your mouth.'
+								end
+								'<center><b><font color="red"><<"Viktor [Vitek] Kotov">></font></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+								gs 'cum_call', 'anus', $boy
+								gs 'arousal', 'bj', 5, 'sub'
+								gs 'arousal', 'end'
+								gs 'stat'
+
+								act 'Suck Vitek''s dick':
+									cls
+									gs 'boyStat', 'A9'
+									minut -= 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/sex/rand_scoolboy6.gif"></center>'
+									if kotovloveQw = -1:
+										'You begin obediently sucking Vitek''s dick, knowing better than to anger him further. Vasily has his dick out too, and begins poking your cheek with it. You quickly pull away from Vitek''s dick then suck on Vasily''s hard cock. You spend the next few minutes alternating between their cocks while Vitek roughly squeezes your breasts. Eventually Vitek grabs your hair, forcing his dick down your throat, as he fills you throat with his cum. You swallow as much as you can before Vasily pulls your head to his dick then begins cumming on your face, covering your face in his warm cum. You take a few seconds catching your breath, as you listen to them talk.'
+										*nl
+										'Dan: I told you that she was a freak. She loves getting fucked. She was basically begging me to fuck her ass.'
+										'Vasily: Come on guys we already have Sonia, we don''t need <<$pcs_nickname>> too.'
+										'Dan: She might me like Sonia 2.0, It would be wrong for us to NOT to show her off. Now is the perfect time too. I saw the teachers, leaving the cafeteria while I was on my way here.'
+										'Vitek: Sounds good to me. You hear that <<$pcs_firstname>>? You gonna get, what a whore like you, deserves. Now get up! You''re coming with us!'
+									else
+										'You begin obediently sucking Vitek''s dick, knowing better than to anger him. Vasily has his dick out too, and begins poking your cheek with it. You quickly pull away from Vitek''s dick then suck on Vasily''s hard cock. You spend the next few minutes alternating between their cocks while Vitek squeezes your breasts. Eventually Vitek grabs your hair, forcing his dick down your throat, as he fills you throat with his cum. You swallow as much as you can before Vasily pulls your head to his dick then begins cumming on your face, covering your face in his warm cum. You take a few seconds catching your breath, as you listen to them talk.'
+										*nl
+										'Dan: I told you that she was a freak. She loves getting fucked. She was basically begging me to fuck her ass.'
+										'Vasily: Come on guys, we already have Sonia, we don''t need <<$pcs_nickname>> too.'
+										'Dan: She might be like Sonia 2.0, It would be wrong, for us to NOT to show her off. Now is the perfect time too. I saw the teachers, leaving the cafeteria, as we passed it earlier.'
+										if pcs_apprnc >= 20:
+											'Vitek: That sounds like a great idea. <<$pcs_firstname>> is much hotter than Sonia anyway. Let''s do it. Hey <<$pcs_firstname>>, you''re coming with us.'
+										else
+											'Vitek: That sounds like a great idea. <<$pcs_firstname>> looks like a overgrown pig, but we can always fuck her from behind. Alright let''s do it. Hey <<$pcs_firstname>>, you''re coming with us.'
+										end
+									end
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow9.gif"></center>'
+									gs 'cum_call', 'mouth', $boy
+									gs 'arousal', 'bj', 5, 'sub'
+									gs 'boyStat', 'A11'
+									gs 'cum_call', 'face', $boy
+									gs 'arousal', 'bj', 5, 'sub'
+									gs 'stat'
+
+									act 'Plead':
+										cls
+										exhibition_exp += 2
+										minut += 5
+										gs'stat'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/wos.jpg"></center>'
+										'<font color=#FF00FF>No this can''t be! Why is this happening? This will ruin my reputation forever. I will be an outcast like Sonia. The boys will abuse me. This can''t be happening.</font>"Please don''t do this. I will do anything! Please just let me go." Vitek pulls on your collar. "Less talking, more walking." Vitek walks you out of the locker room, as Dan tells you, "Don''t worry <<$pcs_firstname>>, you will get used to it. Imagine it, every boy in school will be giving you a lot of attention. You will be popular among all the boys." You look back to Vasily, and he whispers in your ear, "I''m sorry <<$pcs_nickname>>, but I can''t help you. It''s too late." As he follows closely behind you.'
+										*nl
+										'Your heart is pounding, and you can feel tears streaming down your eyes. <font color=#FF00FF>I''m going to lose everything. My life will never be the same again. Please let this be a bad dream. PLEEEEEEASE!</font> You close your eyes, trying to wake up when you hear the sounds of chatting, and laughter, informing you that you are arriving at the cafeteria.'
+										*nl
+										if fedorkozlovQW > 1 or fedorKozlovQW < -10:
+											'You suddenly hear Fedor Kozlov shouting, "What are you guys doing with <<$pcs_firstname>>?" Dan begins laughing, as he replies, "Didn''t <<$pcs_firstname>> tell you? She wants to join Sonia as our fuck puppet." Fedor looks to you with concerning eyes, "They are lying, aren''t they?"'
+											if fedorKozlovQW < -10:
+												'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/outcast/outcast2.jpg"></center>'
+											else
+												'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+											end
+										end
+
+										if fedorkozlovQW > 1 and FedorLove = 1 or fedorkozlovQW < -10:
+											act 'Run to Fedor':
+												cls
+												gs'stat'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/fedor.jpg"></center>'
+												'You run to Fedor then jump into his arms, as he stares into your eyes, "Don''t worry <<$pcs_nickname>>. I will keep you safe." Vitek shouts, "Hey, she is ours, give her back." Fedor stands his ground, "No, she is mine!" Vitek walks up to his face, "What did you say, punk?" Dan approaches them, and says, "Hey, I''m sure that Fedor is just misunderstanding what''s going on. Let me explain. <<$pcs_firstname>> has been a very naughty girl, who has been fucking many other students." Fedor responds, "Bullshit! I know <<$pcs_firstname>>, and she''s better than that." Dan responds, "Ohh really? Watch this, and decide for yourself."'
+												*nl
+												'Dan shows Fedor the video of you sucking off Niko then confessing your love to him. Fedor''s face grows pale. "Why <<$pcs_firstname>>?...Why?" You lower your head, "I..." You can''t collect your words. Fedor clenches his fist. "<<$pcs_nickname>> promise me right here, and now, that you will never see Niko ever again!"'
+
+												act 'I promise [<font color=#c600ff>Break up with Niko</font>]':
+													cls
+													NikoBreakup = 1
+													NikoEv = -1
+													NikoLuv = -8
+													NikoVolkovQW = -1
+													minut += 5
+													gs'stat'
+													'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+													'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+													if fedorkozlovQW < -10:
+														'Fedor leans over then whispers in your ear, "Run." You quickly begin running, as Fedor runs to the nearby trash can then tosses it at Vitek. Vitek blocks it as Fedor charges him, tackling him to the ground. You continue running, as Vitek and Dan, beat up on Fedor. You look back to see Dan climb off of Fedor then start to run to you before Vasily pretends to trip, and falls on Dan, causing them both to fall to the ground, long enough for you to make you way to the locker room where you find the bag with your clothes in it. You spent a minute getting dressed before walking to the hallway, just outside of your classroom.'
+													else
+														'Fedor suddenly pulls you behind him, as he exclaims, "<<$pcs_firstname>> is not going with you, and that''s final!" Vitek rams his fist into Fedor''s stomach, knocked him back, and bringing him to his knees. You quickly sneak away, as the gopniks surround Fedor, Shortly after, you hear someone shout, "What the fuck is going on here?" You see Ivan Prokhorov, and a few of the other jocks, walking out of the cafeteria. Vitek shouts, "Get lost! This doesn''t concern you." Ivan walks right up to Vitek''s face then replies, "When you attack my friend then it does concern me." The jocks begin surrounding the gopniks.'
+														*nl
+														'Vitek looks around him, as he spends a few seconds in silence before finally saying, "Oh well, I have better things to do anyway. Let''s get going boys." Vitek turns around then walks away, as the jocks move out of their way, letting them go. Fedor turns to you then gives you a wink before being helped up by Ivan. You quickly run back to the locker room, and find the bag with your clothes which you put on before returning to the hallway.'
+														*nl
+														'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/school/jocks.jpg"></center>'
+													end
+
+													act 'Hallway':gs 'clothing', 'wear_last_worn' & gt 'gschool_lessons', 'afternoon'
+												end
+
+												act 'Remain silent [<font color=#FF00FF>Lose Fedor</font>]':
+													cls
+													if fedorkozlovQW > 1:fedorkozlovQW = -1
+													if fedorkozlovQW < -10:fedorkozlovQW = -10 & FedorOutcast = -1
+													npc_rel['A5'] = 25
+													FedorLove = 0
+													FedorHome = -1
+													FedorShelter = -1
+													minut += 5
+													gs'stat'
+													'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+													'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorsad.jpg"></center>'
+													'You lower you head in silence. Fedor sighs, as he responds, "I guess that you care for him more... Fine have fun with your new boyfriend. I just don''t care anymore." Fedor walks away without saying another word. Vitek grabs you by your hair. "You''ve wasted enough of our time. Let''s get moving." Dan adds, "It''s time to show you off <<$pcs_firstname>>, Aren''t you excited?" The gopniks then walk you into the cafeteria.'
+													*nl
+													'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/wos.jpg"></center>'
+
+													act 'Enter cafeteria':gt 'NikoDates', 'Exposed'
+												end
+											end
+
+										elseif fedorkozlovQW > 1 and FedorLove = 0:
+											act 'Run to Fedor':
+												cls
+												fedorkozlovQW = -1
+												FedorHome = -1
+												FedorShelter = -1
+												npc_rel['A5'] = 25
+												minut += 5
+												gs'stat'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/fedor.jpg"></center>'
+												'You run to Fedor then jump into his arms, as he stares into your eyes, "Don''t worry <<$pcs_nickname>>. I will keep you safe." Vitek shouts, "Hey, she is ours, give her back." Fedor stands his ground, "No, she is mine!" Vitek walks up to his face, "What did you say punk?" Dan adds, "Hey, I''m sure Fedor misunderstands what''s going on, let me explain. <<$pcs_firstname>> has been a very naughty girl who has been fucking many other students." Fedor responds, "Bullshit! I know <<$pcs_firstname>>, and she''s better than that." Dan responds, "Ohh really? Watch this, and decide for yourself."'
+												*nl
+												'Dan shows Fedor the video of you sucking off Niko then confessing your love to him. Fedor''s face grows red with anger. "You..You bitch! How could you just use me like that?" You lower your head, "I..." You can''t collect your words. Fedor grabs the back of your neck then pushes you toward Vitek who catches you, "Have fun with her. I don''t want her anymore." Dan pats Fedor on the back, as he responds, "Why don''t you join us? We were just about to show her off to everyone else." Fedor nods then you all head into the cafeteria.'
+												'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+												'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/fedorangry.jpg"></center>'
+
+												act 'Enter cafeteria':gt 'NikoDates', 'Exposed'
+											end
+										else
+											act 'Enter cafeteria':gt 'NikoDates', 'Exposed'
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] =  'Exposed':
+	cls
+	if grupTipe = 1:VKGroup = 1 & grupTipe = 5
+	if grupTipe = 2:VKGroup = 2 & grupTipe = 5
+	if grupTipe = 3:VKGroup = 3 & grupTipe = 5
+	if grupTipe = 4:VKGroup = 4 & grupTipe = 5
+	if grupTipe = 6:VKGroup = 6 & grupTipe = 5
+	school_lunch = 0
+	NikoEv = 10
+	grupTipe[61] = 600
+	exhibition_exp += 10
+	if pav_sex < 230:pav_sex = 250
+	gs 'fame'
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/exposed1.jpg"></center>'
+	'You close your eyes, as you are guided into the cafeteria. You hear whispers, as you are guided to the center of the cafeteria. "Hey boys! Look who has decided to join Sonia, as the school whore! <<$pcs_firstname>> <<$pcs_lastname>>!" The whispers grow louder, and some of the boys begin whistling, as you hear the students talking with each other.'
+	*nl
+	if pcs_apprnc >= 20:
+		'Lazar: Holy crap, now <<$pcs_firstname>> is a whore too? I love this school!'
+	else
+		'Lazar: Holy crap, now <<$pcs_firstname>> is a whore too? Too bad she has the face of a troll.'
+	end
+	'Christina: What the hell? Why would she do this to herself?'
+	'Lina: I always thought she was a nice girl, but I guess she was just a whore all along. She hid it well.'
+	if pcs_apprnc >= 20:
+		'Roman: Fuck yeah! I''ve been wanting to fuck <<$pcs_firstname>> since I first saw her drop that chalk, in Anatoly''s class.'
+	else
+		'Roman: I always thought about what it would be like to fuck <<$pcs_firstname>> since I first saw her drop that chalk, in Anatoly''s class. If only she wasn''t so ugly.'
+	end
+	*nl
+	'You can feel your body trembling, as some of the boys begin touching your body. Dan spanks your ass, as he shouts out, "Alright, Who want''s to fuck her first?" Your jaw opens in shock, your entire body trembling, knowing that everything you had in this school, your friends, your dignity, and your reputation are completely lost now. Radomir Popov steps up to you then begins fingering your vagina, "I want to fuck her first." Dan laughs, as he replies, "You mean second, right?" He then turns you around, and spreads your asscheeks, causing his cum to leak out of your ass. Radomir replies, "Ohh shit, she really is a filthy whore. I''m still fucking her though." He grabs you by the hair then unbuttons his pants, and lays down, as he pulls you on top of him.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/exposed2.jpg"></center>'
+
+	act 'Ride Radomir Popov''s cock':
+		cls
+		exhibition_exp += 5
+		gs 'boyStat', 'A154'
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall1.gif"></center>'
+		'You can feel Radomir''s penis enter your vagina. You begin riding Radomir, knowing that it is too late to go back. You can hear the boys cheering, and the girls arguing with them,'
+		*nl
+		'Roman: Wow look at her riding him. She really seems to enjoy it. I can''t wait for my turn. I''m gonna fuck her pussy so hard.'
+		'Valentin: Yeah, I''m probably going to fuck her ass because I''m not going to risk getting her pregnant.'
+		'Roman: It''s all about technique man. Watch, and learn.'
+		'Veronika: What the fuck? I just wanted to eat lunch in peace. Why the fuck do they have to do this shit here?'
+		'Arkadi: Chill out. You can always take your lunch to go. I hear the toilets have been cleaned recently.'
+		'Veronika: Fuck you asshole, I bet you would know all about eating out of the toilet with that stinky breath of yours.'
+		*nl
+		'Radomir pulls out of you then begins cumming on your feet, as you milk him. trying to use the comfort of his warm cum to distract you from your racing thoughts.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/Cum7.gif"></center>'
+		gs 'cum_call', 'feet', $boy
+		gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+		gs 'stat'
+
+		act 'Continue':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="red"><<"Bella Artamonov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/22.jpg"></center>'
+			'Bella Artamonov suddenly begins shouting at the boys, "That''s enough! Get the fuck out of here before I call the principle!" Dan replies, "You heard the girl. Let''s take <<$pcs_firstname>> back to the locker room. Everyone who wants to join can tag along." Dan, and Dan grab your arms then lead you toward the locker room, as many of the boys, and even a few girls follow.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/wos.jpg"></center>'
+
+			act 'Locker room':
+				cls
+				exhibition_exp += 1
+				gs 'boyStat', 'A157'
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall2.gif"></center>'
+				'As soon as you reach the locker room, Dan shoves you into the crowd, and Roman Yakovlev catches you then turns you around. You feel Roman''s penis entering your vagina then his pace begins increasing, as he holds onto your waist, pushing you against his crotch. <font color=#FF00FF>This is it. This is my life now. How did I let this happen?</font> Roman leans forward, and whispers in your ear, "How does my dick feel <<$pcs_nickname>>? Isn''t it the biggest dick you ever had?" You meekly nod, not wanting to upset him. After a few more seconds, Roman pulls out of you and groans, covering your back in his cum. Roman gives your ass a firm smack, as he says, "Damn <<$pcs_firstname>>, you have a tight pussy. We have to do this again sometime."'
+				*nl
+				'Lazar suddenly shouts, "Hey Roman don''t hog her, all for yourself." Roman laughs, as he pulls up his pants then pushes you toward the other boys, causing you to fall on your knees in front of the jocks, who are holding their dicks in their hand.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+				gs 'cum_call', 'back', $boy
+				gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+				gs 'stat'
+
+				act 'Suck their dicks':
+					cls
+					exhibition_exp += 1
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall3.gif"></center>'
+					'You wrap your lips around the first dick you see then use your hands to jerk off the other jocks. The jock that you are sucking begins rubbing your hair off of your face as he says, "That''s a good girl. Just like that." You look up to see Ivan Prokhorov, giving you a approving smile. You can hear some of the other jocks talking about you.'
+					*nl
+					'Lazar: I never thought that <<$pcs_nickname>> would end up being a whore, did you?'
+					'Fedor: No I always thought of her as a sweet girl, you know, one of the good ones.'
+					'Ivan: Come on guys, let''s not talk about <<$pcs_firstname>> like she isn''t here.'
+					'Lazar: You''re right, Hey <<$pcs_nickname>>, can you suck me next?'
+					*nl
+					'Lazar gently rubs your head while giving you a warm welcoming smile. You pull off of Ivan''s dick then start sucking Lazar''s dick. You spend the next few minutes, alternating between the cocks of the jocks.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/sex/rand_scoolboy6.gif"></center>'
+					gs 'arousal', 'bj', 5, 'sub', 'exhibitionism'
+					gs 'stat'
+
+					act 'Make them cum':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall4.gif"></center>'
+						'After a few seconds, Ivan lifts you up then says, "Enough warm up, who is ready to fuck her? Lazar waves his hand. Ivan gives him an approving nod as he lifts you up then lowers you on top of Lazar''s hard cock. You let out a loud moan, as Lazar''s cock enters you. You begin riding Lazar''s dick, felling him pushing deeper inside you, and enjoying the boys cheering you on. You look around, and see a few of the nerdy kids, rubbing their crotches, but then looking around to make sure that no one notices. The fact that you are turning them on, begins to cause you to feel even more aroused then you already are. Lazar suddenly states, "I''m cumming!"'
+						gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+						gs 'stat'
+
+						act 'Take his cum':
+							cls
+							gs 'boyStat', 'A149'
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/facial5.gif"></center>'
+							if fedorkozlovQW =-1:
+								'You quickly pull off of Lazar then drop to your knees, as he covers your face, in his warm seed. You rub your face against Lazar''s penis, enjoying how your face sticks to his dick, as you rubs against it. Lazar pulls up his pants then says, "You''re a nasty girl, aren''t you <<$pcs_nickname>>." Lazar then walks out of the locker room. Ivan says, "Hey Fedor, you''re up." Fedor then gives him an approving nod, as he walks up to you.'
+								*nl
+								'Fedor spreads your legs then forcefully shoves his penis inside of you, causing a jolt of pain. Fedor''s hard cock enters you, and starts rubbing against your g spot. Fedor stares you in the eyes, as he continues fucking you. <font color=#FF00FF>He still has feeling for me even after all that I''ve done. I''m so sorry Fyodor. I never meant to hurt you.</font>'
+							else
+								'You quickly pull off of Lazar then drop to your knees, as he covers your face, in his warm seed. You rub your face against Lazar''s penis, enjoying how your face sticks to his dick, as you rubs against it. Lazar pulls up his pants then says, "You''re a nasty girl, aren''t you <<$pcs_nickname>>." Lazar then walks out of the locker room. Ivan says, "Hey Fedor, you''re up." Fedor then gives him an approving nod, as he walks up to you.'
+								*nl
+								'Fedor spreads your legs then pushes his penis inside of you, causing a jolt of pleasure. Fedor''s hard cock enters you, and starts rubbing against your g spot. Fedor stares you in the eyes with a very loving gaze, as he continues fucking you. <font color=#FF00FF>His eyes are so beautiful. His gaze is so loving. Why does he look at me like this? Aren''t I just a whore to him? Maybe there is more to this boy then I realized.</font>'
+							end
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall5.gif"></center>'
+							gs 'cum_call', 'face', $boy
+							gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+							gs 'stat'
+
+							act 'Make Fedor cum':
+								cls
+								gs 'boyStat', 'A5'
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall7.gif"></center>'
+								if fedorkozlovQW =-1:
+									'You continue staring Fedor in his eyes, as you hear him groan. Fedor pulls out of you, and sprays his warm seed, over your chest. Fedor takes a few seconds to catch his breath before looking down to you, as he says, "<<$pcs_firstname>>, I could have saved you from this, Why didn''t you stay with me? I would have protected you." You feel tears streaming down your cheeks. "I''m sorry Fyodor." He responds, "So am I." He then climbs off you then pulls his pants up then silently leaves the restroom. Ivan then lifts you up, and says, "I hope you''re ready because I''m up." Ivan then places you on your feet then spits on his hand, and lubes up his penis before shoving it into your ass.'
+								else
+									'You continue staring Fedor in his eyes, as you hear him groan. Fedor pulls out of you, and sprays his warm seed, over your chest. Fedor takes a few seconds to catch his breath before whispering in your ear, "You are so beautiful <<$pcs_firstname>>. If only we met before this whole thing happened. I could have protected you." He then climbs off of you then pulls his pants up, and gives Ivan a high five before leaving the restroom. Ivan then lifts you up, and says, "I hope you''re ready because I''m up." Ivan then places you on your feet then spits on his hand, and lubes up his penis before shoving it into your ass.'
+								end
+								*nl
+								'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum110.gif"></center>'
+								gs 'cum_call', 'breasts', $boy
+								gs 'arousal', 'vaginal', 5, 'sub', 'exhibitionism'
+								gs 'stat'
+
+								act 'Anal':
+									cls
+									gs 'boyStat', 'A3'
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/smroom/event/rought/dog9.gif"></center>'
+									'Ivan fucks your ass slowly at first, but then picks up the pace. You let out high pitch squeals, as you feel Ivan''s penis rubbing against your inner ass. His big hard dick pushing it''s way deeper inside you, as his strong arms hold you up. <font color=#FF00FF>Ivan is so strong yet, gentle, and caring. He hasn''t been rough. He hasn''t called me a whore. There may be more to him than I thought.</font> After a few more seconds, Ivan says, "I hope you''re ready because here I cum." Ivan then fills your ass with his warm seed. You can feel Ivan''s hot cum filling your ass, and then leaking out, as he pulls out of you. "You''re a great fuck <<$pcs_firstname>>. Maybe we could do this again." Ivan pulls up his pants then leaves the locker room.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumAnal2.gif"></center>'
+									gs 'cum_call', 'anus', $boy
+									gs 'arousal', 'anal', 5, 'sub'
+									gs 'arousal', 'end'
+									gs 'stat'
+
+									act 'Continue':
+										cls
+										gs 'boyStat', 'A158'
+										gs'stat'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall9.gif"></center>'
+										'Valentin Bogdanov suddenly approaches you. "My turn." He then pushes you onto the bench, and spreads your legs. You feel his penis enter your sore vagina, You lay back letting Valentin do what he wants to you. feeling fatigue setting in. You look around the room and only see Artem, Petia, Sonia, Julia and Katja left in the room. Sonia and Katja watch you with a sympathetic look on their face while Julia is looking away from you while covering her eyes, obviously uncomfortable with what is going on. You can feel your body growing numb, as the soreness of your muscles begins to slowly fade.'
+										*nl
+										'Valentin suddenly pulls out of you then begins painting your stomach with his cum before buttoning his pants then leaving the room. You suddenly hear heavy breathing over you. You look up to see Petia standing over you with his penis in his hand, stroking it over your face. He then suddenly groans, as he begins cumming all over your face. Petia storms out of the room shortly after, as Artem begins pushing his penis inside you.'
+										*nl
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/facial7.gif"></center>'
+										gs 'cum_call', 'stomach', $boy
+										gs 'arousal', 'vaginal', 5, 'sub'
+										gs 'boyStat', 'A159'
+										gs 'cum_call', 'face', $boy
+										gs 'stat'
+
+										act 'Continue':
+											cls
+											gs 'boyStat', 'A2'
+											gs'stat'
+											'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall10.gif"></center>'
+											'Artem begins fucking you, thrusting at an increased pace, as he holds your legs open, giving himself easier access. You have no fight left, your strength is gone, your entire body is numb, you feel nothing, as Artem continues using your body. <font color=#FF00FF>Wha...what''s going...feel...so hot...head...can''t think...why...</font>'
+											gs 'cum_call', 'stomach', $boy
+											gs 'arousal', 'vaginal', 5, 'sub'
+											gs 'arousal', 'end'
+											gs 'stat'
+
+											act '...':gs 'clothing', 'wear_last_worn' & gt 'NikoDreams', 'Family'
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Walk Of Shame':
+	cls
+	if pav_sex < 230:pav_sex = 250
+	gs 'fame'
+	grupTipe[61] = 4
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos1.jpg"></center>'
+	'You walk into the school building, and hear many of the students whispering to each other. One of the girls, calls out, "Look who it is, It''s <<$pcs_firstname>> the filthy whore!" You immediately lower your head in shame, pretending not to hear her. One of the boys walks alongside you and says, "Hey <<$pcs_firstname>>, you have such a gorgeous body, can I fuck it again?" Another guy pushes him aside and says, "Don''t listen to him. He doesn''t know how to treat a babe, as fine as yourself, so why don''t you join me in the restroom, where we can get to know each other better?"'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos2.jpg"></center>'
+
+	act 'Accept his offer':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos2.jpg"></center>'
+		'<font color=#FF00FF>Maybe this boy can help me out, he is being nice to me when he doesn''t have to.</font> You meekly nod to the boy, and his eyes light up, as he replies, "Great! let''s get going." He then grabs your arm, and guides you to the restroom.'
+
+		act 'Restroom':
+			cls
+			gs 'boyStat', 'A154'
+			gs'stat'
+			'<center><b><h4><font color="green"><<"Radomir Popov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/39.jpg"></center>'
+			'You both arrive at the restroom, and the boy pulls you to a mirror then stands behind you, as he says, "Hello <<$pcs_firstname>>, my name is Radomir, and I can''t stop thinking about your rockin'' bod, and cute face. I want another round, and don''t worry, I''ll be gentle." He begins undressing you, as he runs his hands down your body. You can feel you shirt being removed, followed by your pants. Radomir finishes undressing you then begins sliding his hand up your leg arrivning at you vagina which he begins finering, as you close your eyes, letting him do, as he want to your body. After a few seconds Radomir begins taking off his shirt then pulling down his pants. Radomir whispers in your ear, "I''ve never had a girl suck my balls before. I want you to be the first." He then lightly pushes down on your shoulders.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/1.jpg"></center>'
+			gs 'arousal', 'foreplay', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Suck Radomir''s balls':
+				cls
+				gs 'clothing', 'strip'
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/2.jpg"></center>'
+				'You obediently begin licking Radomirs balls gently before wrapping your lips around them and sucking firmly. After a few seconds Radopir grunts then says, "Easy <<$pcs_firstname>>, not so hard." You quickly stop before sucking again, but more gently this time. You continue sucking Radomir''s balls while enjoying the warmth of his balls and how they occasionally throb in your mouth. Radomir looks down at you and says, "That a girl, keep doing that." You continue gently sucking on his balls, feeling excited, knowing that you are pleasing him. After a few more moments, Radomir grabs onto your shoulders then lifts you up before kissing you passionately. You can feel your heart warming up. <font color=#FF00FF>He is kissing me so passionately. Maybe he cares for me. Please care for me. I need someone to care for me. Please care for me.</font>'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/3.jpg"></center>'
+				gs 'arousal', 'bj', 5, 'sub'
+				gs 'arousal', 'kiss', 5, 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+
+				act 'See what he does next':
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/4.jpg"></center>'
+					'Radomir lifts you to your feet then turns you around before pressing his penis against your anus. You lean your breasts against the wall knowing that Radomir will soon fuck your ass. You suddenly feel Radomir''s hard cock ram it''s way into your anus causing a sudden jolt of pain. You scream out loud before Rafomir covers your mouth with his hand for a few seconds before the pain reduces to a manageable level. As Radomir begin rapidly fucking your ass, you ask him "Can you...Ehh...take it slow...Ehhh...Please." Radomir continues fucking you at the same pace, It seems that he is either ignoring you, or didn''t hear you speak. <font color=#FF00FF>Owww It hurts, he is fucking me so hard. Please slow down. It hurts, please stop. OOOwwwwww!</font> You close your eyes and just wait for it to be over. Radomir suddenly wraps his arms around yours then drops back causing you to be on top of him with his dick still in your ass. Radomir then says, "Ride me."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/5.jpg"></center>'
+					gs 'arousal', 'anal', 5, 'sub'
+					gs 'arousal', 'end'
+					gs 'stat'
+
+					act 'Ride Radomir':
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/6.jpg"></center>'
+						'Even though the pain is quite severe, you do as he says, not wanting to disappoint him. Feeling his dry dick roughly scraping against your inner ass you close your eyes and try to think of anything other than the pain. <font color=#FF00FF>Please cum soon. Please. I can''t tae much more of this. Please just cum. PLEEEEAASE!</font> to your relief you hear Radomir groan then feel his warm seed filling your ass. The focus on the warm as he continues pumping you with his cum. After Radomir is spent, he pushes you off of him then says, "You were great <<$pcs_firstname>>. We should do this again sometime." You reply, "Does that mean that we can out together, maybe?" Radomir laughs as he replies, "I didn''t say that. I''m not a one girl kind of guy, but you have my permission to keep dreaming about me." Radomir continues laughing as he gets dressed then leave you alone in the restroom. <font color=#FF00FF>So...He didn''t care for me. Does no one care for me? I need someone. Why wont anyone care for me anymore?</font> you suddenly hear, "Ah there you are. I''ve been looking all over for you."'
+						gs 'cum_call', 'anus', $boy
+						gs 'arousal', 'anal', 5, 'sub'
+						gs 'arousal', 'end'
+						gs 'stat'
+
+						act 'Turn around':
+							cls
+							gs 'boyStat', 'A189'
+							gs'stat'
+							'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+							'You turn to see Niko standing over you. "I''ve been so worried about you <<$pcs_firstname>>, I heard what happened yesterday, and I am so sorry about what happened. What shitty luck, but don''t worry, your safe with me <<$pcs_firstname>>." He then hugs you.'
+
+							act 'Return the hug':
+								cls
+								gs'stat'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+								'You return the hug, as you think to yourself, <font color=#FF00FF>I know Katja told me that he is no good for me, but I need him. Niko takes care of me, and I just want to make him happy. I know that he wouldn''t lie to me. I''m sure that he will even find a way to clear my reputation. I just need to do what he says. Ohh Nikolai, I love you so much.</font> Niko kisses your forehead then says, "You know that you can always trust me right?" You eagerly nod with a big smile on your face, "Of course I do. I love you Nikolai." Niko returns the smile as he leans forward, and gives you a very passionate kiss. After you both finish your kiss, Niko rubs your cheek then says, "I know that you''ve been through a lot, but you look so beautiful, and your body is so perfect. Could you please suck my dick? I would be so grateful." He continues to rub your cheek gently.'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+
+								act 'Suck Niko''s dick':
+									cls
+									NikoEv = 11
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/kotovbj23.gif"></center>'
+									'You reply, "Of course I will Niko. You need only ask." You eagerly unbutton his pants then pull out his dick before quickly wrapping your lips around it, hearing Niko moan, as you do it. <font color=#FF00FF>It feels so good to be sucking Niko''s dick again. My man. Oh How I missed you. I don''t even care if I''m a whore, but I want to be your whore Niko. I only want to please you. Only you.</font> You continue sucking Niko''s dick firmly while staring into his eyes, enjoying the pleased look that he is giving you which shows you that you are doing a good job. Suddenly Niko''s eyes squint as he groans, filling your mouth with his warm seed which you swallow eagerly, enjoying the warmth of it sliding down your throat, and even the sting, as it goes down. Niko places his hand on your cheek, gently stroking it with his thumb, as he says, "You are so perfect <<$pcs_firstname>>. I am so lucky to have you, and don''t worry, I will find a way to fix what happened yesterday. Meet me after school, and we will go out on a nice walk. We''ll discuss what to do next then." Niko kisses you on your forehead before zipping his pants then leaving the restroom.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum1.11.gif"></center>'
+									gs 'cum_call', 'mouth', $boy
+									gs 'arousal', 'bj', 5, 'sub'
+									gs 'arousal', 'end'
+									gs 'stat'
+
+									act 'Go to class':gs 'clothing', 'wear_last_worn' & gt 'gschool_lessons', 'class'
+								end
+							end
+
+							act 'Pull away from Niko':
+								cls
+								gs'stat'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+								'You suddenly pull away from Niko while shouting, "Where the fuck were you yesterday? You left me cuffed on the floor then I got raped, and humiliated!" Niko sighs as he replies, "I totally forgot <<$pcs_firstname>>, I''m sorry. I know that is no excuse, but we can make things better." You quickly shout back, "Make things better? How the fuck can you make things better? I am nothing but a whore to everyone now! I have lost everything!" Niko smirks as he replies, "I know someone that can restore your reputation for you." You recoil in shock, "Really? How?" Niko says, "Let''s talk about this at my place tonight."'
+
+								act 'Agree':
+									cls
+									NikoEv = 11
+									minut += 5
+									gs'stat'
+									'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+									'You lower your posture as you reply, "Alright, what do I have to lose? I doubt anything could get any worst." Niko wraps his arms around you then brings his face to yours before responding, "Come on <<$pcs_firstname>>. That attitude wont solve anything. Meet me after school then we will work on fixing your reputation. You can trust me, and try to cheer up." You nod your head while giving Niko a warm smile. <font color=#FF00FF>I don''t know how, but I know that Niko will find a way to help me. Niko loves me as much as I do him. I know in my heart that he will always protect me.</font> You lean forward then give Niko a passionate kiss.'
+									*nl
+									'After the kiss, Niko says, "You are such a incredible girl. I always feel so lucky to have you, now don''t forget to meet me after school. I will be waiting in the courtyard." You nod your head, as Niko turns around then walks out of the restroom. You quickly get dressed then follow him out.'
+
+									act 'Go to class':gs 'clothing', 'wear_last_worn' & gt 'gschool_lessons', 'class'
+								end
+
+								act 'Refuse <font color="red">Break up with Niko</font>':
+									cls
+									NikoEv = -1
+									NikoLuv = -8
+									NikoDate = -1
+									NikoVolkovQW = -1
+									NikoPayback = 1
+									minut += 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/ouch.jpg"></center>'
+									'You quickly push Niko away. "Fuck you! You are just lying to me like you always do! I''m not trusting you anymore! Stay away from me!" Niko gets noticable angry, "You ungrateful bitch! I have done so much for you, and spent, so much on you. You better fucking apologize!" You nod your head. "Sure, I''ll apologize." You take two steps forward then ram your knee into Niko''s balls then spit on him before grabbing your clothes, and walking out of the restroom.'
+
+									act 'Go to class':gs 'clothing', 'wear_last_worn' & gt 'gschool_lessons', 'class'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+
+	act 'Walk away':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos3.jpg"></center>'
+		'You keep your head lowered, as you quicken your pace. One of the boys smacks your ass hard, causing you to jump up, but you try to ignore it while you feel tears streaming down your face. <font color=#FF00FF>Is this what my life will be like for now on? Will things ever go back to the way they were before? Why is this happening? What did I do wrong? Can''t they just leave me alone?</font> You suddenly hear, "Hey <<$pcs_nickname>> are you alright? I''ve been so worried about you."'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos4.jpg"></center>'
+
+		act 'Look up':gt 'NikoDates', 'Walk Of Shame 2'
+	end
+end
+
+if $ARGS[0] = 'Walk Of Shame 2':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'You look up to see Niko with a very distressed look on his face, "<<$pcs_firstname>> please tell me you''re ok." You take a few seconds to collect your thoughts then respond, "I...I''m scared Nikolai. I don''t think things will ever be normal for me again. I''m just a whore to everyone. What do I do Niko? What do I do?" Tears are streaming down your face, as Niko holds you in his arms, "I''m sorry about what happened to you, I wish I was there to prevent it, but I will always be here for you when you need me. Remember that. I will always be here for you." You begin weeping in his arms, as he holds you tighter.'
+
+	act 'Weep':
+		cls
+		NikoEv = 11
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+		'You let out your tears, submitting to your own sorrow while answering your own question in your head. <font color=#FF00FF>No matter what happens, Nikolai will be here for me, He is the only one who cares for me. I need you Niko. Please don''t leave me...Please!</font> You tighten your arms around Niko, as he kisses your neck firmly. "Everything will be alright. I will find a way to fix this, just follow my lead and everything will be alright, ok?" You reply, "I will do whatever you say Nikolai, just please stay with me. I need you now more than ever." Niko responds, "Don''t worry <<$pcs_firstname>>, I''m not going anywhere, now let''s get you to class." Niko guides you to your first class.'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+
+		act 'Go to class':gt 'gschool_lessons', 'class'
+	end
+
+	act 'Push him away':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'You suddenly pull away from Niko while shouting, "Where the fuck were you yesterday? You left me cuffed on the floor then I got raped, and humiliated!" Niko sighs as he replies, "I totally forgot <<$pcs_firstname>>, I''m sorry. I know that is no excuse, but we can make things better." You quickly shout back, "Make things better? How the fuck can you make things better? I am nothing but a whore to everyone now! I have lost everything!" Niko smirks, as he replies, "I know someone that can restore your reputation for you." You recoil in shock, "Really? How?" Niko says, "Let''s talk about this at my place tonight."'
+
+		act 'Stay with Niko':
+			cls
+			NikoEv = 11
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+			'You lower your posture as you reply, "Alright, what do I have to lose? I doubt anything could get any worst." Niko wraps his arms around you then brings his face to yours before responding, "Come on <<$pcs_firstname>>. That attitude wont solve anything. Meet me after school then we will work on fixing your reputation, trust me, and try to cheer up." You nod your head while giving Niko a warm smile. <font color=#FF00FF>I don''t know how, but I know that Niko will find a way to help me. Niko loves me as much as I do him. I know in my heart that he will always protect me.</font> You lean forward then give Niko a passionate kiss.'
+			*nl
+			'After the kiss, Niko says, "You are such a incredible girl. I always feel so lucky to have you, now don''t forget to meet me after school. I will be waiting in the courtyard." You nod, as Niko turns around then walks away. You quickly get dressed then follow him to the hallway.'
+
+			act 'Go to class':gt 'gschool_lessons', 'class'
+		end
+
+		act 'Break up with Niko':
+			cls
+			NikoEv = -1
+			NikoLuv = -8
+			NikoDate = -1
+			NikoVolkovQW = -1
+			NikoPayback = 1
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/ouch.jpg"></center>'
+			'You quickly push Niko away. "Fuck you! You are just lying to me like you always do! I''m not trusting you anymore! Stay away from me!" Niko gets noticeably angry, "You ungrateful bitch! I have done so much for you, and spent, so much on you. You better fucking apologize!" You nod your head. "Sure, I''ll apologize." You take two steps forward then ram your knee into Niko''s balls then spit on him before grabbing your clothes, and walking away.'
+
+			act 'Go to class':gt 'gschool_lessons', 'class'
+		end
+	end
+end
+
+
+--- NikoDates ---------------------------------
+

+ 473 - 0
locations/NikoDreams

@@ -0,0 +1,473 @@
+# NikoDreams
+
+if $ARGS[0] =  'Family':
+	cls
+	pcs_hairbsh = 0
+	pcs_makeup = 1
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	gs'stat'
+	'<center><b><h4><font color=#00eaff><<"Anya <<$pcs_lastname>>">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/anya/progulka.jpg"></center>'
+	'You feel hands, patting your leg. You open your eyes to see Anya kneeling next to you. "<<$pcs_firstname>> are you alright? It looks like you were having a bad dream." You quickly look around and realize that you are in your bedroom. Anya stands up then says, "Come on <<$pcs_nickname>>, everyone is waiting for us." You tilt your head as you reply, "Who''s waiting for us?" Anya responds, "You know, Mom, Dad, Kolka. Have you hit your head your something? Come on you know that we can''t eat breakfast without you." Anya takes your hand then leads you to the kitchen.'
+
+	act 'Enter kitchen':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color="green"><<"Vladimir <<$pcs_lastname>>">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/vladimir/father.jpg"></center>'
+		'You enter the kitchen to see Your stepfather and Kolka laughing at a joke that you can''t quite hear. They both stop laughing as you enter. Anya offers you a chair which you sit on, as Anya sits down next to you. You look around in relief, <font color=#FF00FF>That whole thing was just a dream. Oh it feels so good to be back home.</font> Your mother backs out of the kitchen with a tray of food then places a dish on food in front of each of you then says, "Nice of you to finally join us <<$pcs_firstname>>. I was beginning to think that you were never going to wake up." You giggle as you begin eating.'		
+		'<center><b><h4><font color=#FF00FF><<"Natasha <<$pcs_lastname>>">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/prost'+rand(4,6)+'.jpg"></center>'		
+
+		act 'Eat breakfast':
+			cls
+			gs'stat'
+			'<center><b><h4><font color=#FF00FF><<"Natasha <<$pcs_lastname>>">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/prost'+rand(4,6)+'.jpg"></center>'
+			'Your mother suddenly exclaims, "HEY! No eating until your brother gets here!" You look and see your stepfather whispering in Kolka''s ear, but stopping as soon as you face them. You point to Kolka as you say, "Mom, Kolka is right there." Your mother crosses her arms as she replies, "I''m not talking about Kolka." She then walks back to the kitchen as Your brother and stepfather continue cackling while whispering into each others ears. You look around in confusion until you hear light moaning nearby. You then peek over the kitchen doorway to see your mother bent over the stove with a dark burly figure pressing against her bottom. You suddenly feel someone''s hand on one of your breasts.'
+
+			act 'Turn around':	
+				cls
+				gs'stat'
+				'<center><b><h4><font color="green"><<"Kolka <<$pcs_lastname>>">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/kolka/brother.jpg"></center>'
+				'You turn to see Kolka squeezing your breast as he gives your stepfather a thumbs up. You push Kolka away then hear your stepfather shout, "Hey don''t push your little brother like that!" You respond, "But he touched me!" You mother enters the room with her pants at her angles. "Come on <<$pcs_nickname>>, it''s not like all the other boys haven''t already fucked you before. Why not let your brother have a chance?" Kolka quickly adds, "Yeah <<$pcs_firstname>>, don''t be selfish!" You see everyone in the room scolding you then hear a voice shout. "Don''t worry everyone, I will put this bitch in her place!" You see Yurik Volkov without any clothes on, walking into the room before grabbing you by your throat then pushing you against the wall.'
+				'<center><b><h4><font color="red"><<"Yurik Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/avatars/threaten1.jpg"></center>'				
+				
+				act 'Continue':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/kuh/help/event/gif/ra8.gif"></center>'
+					'You can faintly feel something entering your vagina, and can feel your tears leaking down your cheeks. You can faintly hear some soft voices in the distance. "Hey watch her head!...Don''t drop her!....Come on get that door open!" A few seconds later, you hear someone whispering in your ear. "It''s ok <<$pcs_firstname>>. This is your place now. You didn''t think that you can keep that precious body to yourself, did you?"'
+
+					act 'Turn around':
+						cls
+						gs'stat'
+						'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'					
+						'You slowly turn to see Niko standing right next to you with a wide grin on his face. You suddenly hear Yurik groan as he begins pumping his cum inside of your pussy before walking away while saying to Niko, "What a worthless whore. Couldn''t even rock her hips a bit. If I wanted to fuck a blow up doll, I would have kept fucking her mother." He then leaves, as you start hearing the soft voices again, but they sound closer. "Is she going to be alright?....She will be fine. She just needs some more rest....She''s moving. Do you think she is?..."'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum10.gif"></center>'	
+						
+						act '...':gt 'SoniaHome', 'Aftermath'
+					end	
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Woods':
+	cls
+	$tracklist_HappyHome = 'sound/happyhome/HappyHome.mp3'
+	if music_off = 0:
+		inited = 1
+		music_on = 1
+		volume = 50
+		$music_theme = 'HappyHome'
+		pl '<a href="exec: music_off = 1 & gt $loc">Turn off the music</a>'
+	else
+		music_on = 0
+		volume = 100
+		gs 'init_music'
+		pl '<a href="exec: music_off = 0 & gt $loc">Play music</a>'
+	end			
+	PLAY 'sound/happyhome/Smiley.mp3', 25
+	VKWoods = 1
+	VKSmiley = 3
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/1.jpg"></center>'
+	'You can feel grass on your face which you quickly brush away before looking around, and noticing that you are in the middle of the woods with a mist that surrounds you. <font color=#FF00FF>What''s going on? Why am I here? How did I get here? Where am I?</font> You stand up then look around to try to get your bearings when you begin hearing music along with the sounds of laughing in the far distance. <font color=#FF00FF>Where is this music coming from? Was that a person laughing? Maybe they can help me.</font> you begin heading in that direction when you suddenly feel a cold chill down your spine. <font color=#FF00FF>Something about that laughter is...unnerving.</font>'
+	*nl
+	'You can hear someone laughing, far away.'
+
+	act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 2'
+end	
+
+if $ARGS[0] =  'Woods 2':
+	cls
+	VKWoods = 2
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/2.jpg"></center>'
+	'<font color=#FF00FF>These woods are so dark. How did I get here?</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 3'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 3':
+	cls
+	VKWoods = 3
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/3.jpg"></center>'
+	'<font color=#FF00FF>Still so dark. Am I even going the right way?</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 4'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 4':
+	cls
+	VKWoods = 4
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/4.jpg"></center>'
+	'<font color=#FF00FF>More woods? At least I can see some light.</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 5'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 5':
+	cls
+	VKWoods = 5
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/5.jpg"></center>'
+	'<font color=#FF00FF>Must keep moving. There must be a way out of here.</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 6'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 6':
+	cls
+	VKWoods = 6
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/6.jpg"></center>'
+	'<font color=#FF00FF>Will this ever end? That freak is still lurking around.</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods 7'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 7':
+	cls
+	PLAY 'sound/happyhome/WeePee.mp3', 50
+	VKWoods = 7
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/7.jpg"></center>'
+	'<font color=#FF00FF>Will I be trapped here forever? Oh wait, what is that?</font> You can see a pair of train tracks ahead of you, and you can hear the music getting louder, as you approach the tracks.'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	'You can hear a woman crying in the distance.'
+	
+	if VKSmiley = 1:
+		act 'Head toward the train tracks':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Head toward the train tracks':gt 'NikoDreams', 'Woods 8'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods 8':
+	cls
+	PLAY 'sound/happyhome/WeePee.mp3', 100
+	VKWoods = 8
+	VKSmiley -= 1
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/8.jpg"></center>'
+	'You begin walking on the train tracks toward a light at what appears to be, the end of the forest. <font color=#FF00FF>Is this it? Am I out of this forest?</font>'
+	if VKSmiley = 1:
+		'You can hear laughing close by.'
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	elseif VKSmiley = 2:
+		'You can hear laughing in the distance.'
+		PLAY 'sound/happyhome/Smiley.mp3', 50
+	elseif VKSmiley = 3:
+		'You can hear someone laughing, far away.'
+		PLAY 'sound/happyhome/Smiley.mp3', 25
+	end	
+	'You can hear a woman crying nearby.'
+	
+	if VKSmiley = 1:
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Smiley 1'
+	else
+		act 'Move deeper into the woods':gt 'NikoDreams', 'Woods Home'
+	end
+	
+	act 'Hide':gt 'NikoDreams', 'Woods Hide'
+end	
+
+if $ARGS[0] =  'Woods Home':
+	cls
+	PLAY 'sound/happyhome/WeePee.mp3', 100
+	if VKHappyHome = 0:VKHappyHome = 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Happy Home">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/house/happyhome.jpg"></center>'
+	if VKTeeHee = 0:
+		'You finally approach the end of the forest when you see a derelict house. As you walk toward the house, you can can see; what appears to be a woman standing in the middle of the path, leading to the house while crying. <font color=#FF00FF>She must be stranded here like me. Maybe I can help her.</font> you suddenly feel a cold chill down your spine before seeing a strange looking <a href="exec:gt ''NikoDreams'', ''TeeHee''">cat</a> on a tree stump, licking its paw.'
+	else
+		'There is an old derelict house in the distance, but the path to the house is blocked by a crying woman. <a href="exec:gt ''NikoDreams'', ''TeeHee''">TeeHee</a> continuously rubs against your leg while purring softly.'
+	end
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/weepeeidle.jpg"></center>'
+	
+	act 'Approach the crying woman':gt 'NikoDreams', 'WeePee 1'
+end	
+
+if $ARGS[0] =  'TeeHee':
+	cls
+	PLAY 'sound/happyhome/TeeHee.mp3', 100
+	gs'stat'
+	if VKTeeHee = 0:
+		'<center><b><h4><font color=#FF00CC><<"Strange Cat">></font></h4></b></center>'
+	else	
+		'<center><b><h4><font color=#FF00CC><<"TeeHee">></font></h4></b></center>'
+	end
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/teehee.jpg"></center>'
+	if VKTeeHee = 0:
+		'You approach the cat and it turns to you with a creepy grin, as it says, "TeeHee who is thee?" You recoil in shock before replying, "You can talk?" The cat replies, "Only if you want me too, TeeHee." You respond, "Um what do you want exactly?" The cat replies, "What do I want? You approached me TeeHee." You respond, "You''re right. My name is <<$pcs_firstname>>. What is yours?" The cat replies, "My name is TeeHee and I am so happy to meet thee."' 
+		*nl
+		'You pet TeeHee''s head, causing her to begin purring before saying, "This is the end of the path for now. Come with me to return to your own path TeeHee." You reply, "But that woman might need my help." TeeHee frowns as she responds, "She doesn''t need you for reasons you may think. You really should come with me, not WeePee."'
+	else
+		'We meet again <<$pcs_firstname>>. Have you come to re-join your own path, or do you wish to stay, and face WeePee''s wrath?'
+	end
+	
+	act 'Accept TeeHee''s offer':music_on = 0 & VKTeeHee = 1 & VKWoods = -1 & VKSmiley = 3 & gt 'SoniaHome', 'Aftermath 2'
+	
+	act 'Walk away':VKTeeHee = 1 & gt 'NikoDreams', 'Woods Home'
+end	
+
+if $ARGS[0] =  'Smiley 1':
+	cls
+	PLAY 'sound/happyhome/RIP1.mp3', 90
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Smiley">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/smiley2.jpg"></center>'
+	'As you are walking through the forest you hear loud laughing behind you then suddenly feel something rubbing across your throat, causing a stream of blood to begin pouring out of your neck. You let out a scream as your energy fades, and the ground rushes toward you...'
+
+	act 'Rest in peace':music_on = 0 & VKSmiley = 3 & gt 'SoniaHome', 'Aftermath 2'
+end	
+
+if $ARGS[0] =  'WeePee 1':
+	cls
+	PLAY 'sound/happyhome/RIP2.mp3', 100
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"WeePee">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/weepee.jpg"></center>'
+	'As you approach the crying woman, she instantly turns around then lunges toward you, shoving her hand into your chest, and pulling out your heart, as she she stares into your eyes, watching your life slowly drain away...'
+
+	act 'Rest in peace':music_on = 0 & VKSmiley = 3 & gt 'SoniaHome', 'Aftermath 2'
+end	
+
+if $ARGS[0] =  'Woods Hide':
+	cls
+	gs'stat'
+	if VKSmiley = 1:
+		'<center><b><h4><font color="red"><<"Smiley">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/smiley.jpg"></center>'
+		'You quickly duck behind a tree just as a horrific looking man, wielding a hammer, and wearing clown makeup, comes out of the mist. He begins laughing loudly as he walks past the tree that you are hiding behind. He doesn''t seem to notice you, as he then walks back into the mist.'
+		VKSmiley = rand(2,3)
+		PLAY 'sound/happyhome/Smiley.mp3', 100
+	else
+		'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+		*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'	
+		'You quickly duck behind a tree then stare into the forest. You wait for a few seconds before realizing that there is nothing there. You get out from behind the tree then brush the dirt from your leg.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/woods/<<VKWoods>>.jpg"></center>'
+	end
+	
+	act 'Continue':gt 'NikoDreams', 'Woods <<VKWoods>>'
+end	
+
+if $ARGS[0] =  'Friends':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#FF00FF><<"Sonia Ivanko">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/soniahome/bedroom/soniawake.jpg"></center>'
+	'You slowly open your eyes, and see Sonia Ivanko holding a weird doll, with a goofy look on her face, causing you to giggle. "Hello sleepy head. Did you sleep well?" You give Sonia a warm smile. "I guess...Where am I?" Sonia replies, "After what happened at school, we were bored, so we decided to have you dance for us." You tilt your head. "Dance..for us?" Sonia giggles, as she points to her right. You turn to see Katja Meynold, and Julia Milov sitting on the seats right next to the bed. Katja says, "Come on <<$pcs_firstname>>. What are you waiting for?" Julia adds, "Don''t worry, I threw away all your clothes. Whores don''t need clothes." You look down and notice that you are naked. Katja suddenly slams the bed frame. "Enough messing around! DANCE WHORE!"'
+	'<center><b><h4><font color=#ff0090><<"Katja Meynold">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/Niko/Nikomisc/soniahome/bedroom/katja.jpg"></center>'
+	
+	act 'Dance':	
+		cls
+		gs'stat'	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/cam/Cam2.gif"></center>'
+		'You quickly stand up then begin dancing. <font color=#FF00FF>I need to keep dancing because ...Umm...Why am I dancing?</font> Sonia reaches forward then shoves her fingers inside of your vagina while Katja sticks her finger in your ass. Julia walks up to you then begins squeezing your breasts. Sonia says, "And they call me a whore." Katja giggles, as she responds, "That''s just silly <<$pcs_firstname>> is the only whore here." Julia replies, "I agree, I don''t even know why she thought that she could hide it." <font color=#FF00FF>Why are they being so mean to me? and why can''t I stop dancing?</font> Sonia gives your ass a firm smack, as she says, "Alright, we kept the boys waiting long enough."'
+
+		act 'Boys?':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/exposed1.jpg"></center>'
+			'Sonia pulls you toward the door which opens on it''s own, and you end up in the school cafeteria with all the boys hollering. "Hey everyone! The whore is here!" The boys all charge you and begin rubbing on your body while making lude comments,'
+			'Artem: Here is the whore again! <<$pcs_firstname>> doesn''t even care about trying to hide it.'
+			'Petka: I know right? She is such a worthless whore. I almost don''t even want her anymore.'
+			'Radomir: I know right? Her pussy is probably all stretched out by now. It''s like ground zero.'
+			'Lesko: It may be used up but I might as well try it. Lesko then grabs you by your hair then pulls out his dick then shoves it in your mouth.'
+			'<center><b><h4><font color=#ffa200><<"Lesco Tsarev">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/7.jpg"></center>'					
+
+			act 'Suck Lesco''s dick':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/blowjob3.gif"></center>'
+				'You begin sucking Lesko''s dick as the boys around you begin hollering.'
+				'Ivan: Wow <<$pcs_firstname>> is even sucking Lesko''s dick. What the fuck?'
+				'Petia: She seems to be enjoying it too. Gross!'
+				'Mr Anatoly: Don''t look at me. I never taught her that.'
+				'Lesko then pulls you up on top of him, and you begin riding his dick while tears stream down your face. <font color=#FF00FF>Why is this happening? Why are they all laughing at me? Please someone make this stop!</font>'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/locker/hall1.gif"></center>'
+
+				act 'Continue':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Home/bedroom/cum/cum3.gif"></center>'
+					'Lesko groans then begin pumping his cum inside of you. You look down to see an almost endless stream of cum filling you up, causing your belly to inflate. Suddenly Anya grabs you by your hair then leads you to the door, as she says, "<<$pcs_firstname>> Mom needs to speak with you."'
+					'<center><b><h4><font color=#00eaff><<"Anya <<$pcs_lastname>>">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/anya/progulka.jpg"></center>'
+					
+					act 'Walk through the door':	
+						cls
+						gs'stat'
+						'<center><b><h4><font color=#FF00FF><<"Natasha <<$pcs_lastname>>">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/prost'+rand(4,6)+'.jpg"></center>'
+						'You enter the room, recognizing it as your apartment. Your mother is standing in front of you with a sneer on her face. "<<$pcs_firstname>> You let those boys get you prenant? I can''t believe you!" Anya adds, "Not only that but she has also been eating my pussy." Your mother''s eyes widen, "SHE WHAT?" Kolka speaks up too. "She also had sex with me, and is the mother of my child." Your mother is seething with rage, as she grabs onto a knife then drives it into your stomach, causing a large stream of cum to leak out.' 
+						*nl
+						'You fall to the ground then stare at your stomach, watching on as an almost endless stream of cum, pours out of you. You suddenly hear someone whisper in your ear, "Hey are you alright?" You look around to see who said that, but see nothing at all. You are surrounded by darkness. <font color=#FF00FF>Where did everyone go? Where am I? It''s so dark.</font> You hear the voice whisper again, "<<$pcs_firstname>> wake up..."'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/friends/darkness.jpg"></center>'
+						
+						act '...':minut += 120 & gt 'NikoEv2', 'Niko Wake'
+					end	
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Classroom Dream':
+	cls
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/class/rest.jpg"></center>'
+	'You can feel yourself getting getting tired, so you lay your head down on your desk to rest, as you wait for the school period to end. After a few seconds, you hear, "Who''s that sleeping in my class?" You immediately sit up, pretending that you weren''t laying down, as you continue listening to the teacher teach the lesson, "Always remember to double check the problem, so that you can be confident with your solution." Now let''s move on to the next lesson... How to treat a whore. For this lesson I will need a volunteer. Miss <<$pcs_lastname>>, come up in front of the class."' 
+	*nl
+	'You recoil in shock. "Wha...Me?" The teacher places both hands on the desk then says, "Of course I mean you. Do you know of any other whores that haven''t already volunteered?" You can just barely make out Sonia under the table sucking on the teacher''s dick.'
+
+	act 'Walk to the front of the class':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/class/stand.jpg"></center>'
+		'As you reach the front of the class you feel your clothes falling off, you quickly try to grab them, but they dissolve in your hands. You try covering your body, but then the teacher shouts, "STOP COVERING YOURSELF YOUNG LADY! Whores should always keep their fuckholes on display." You can feel your body trembling, as you finally approach the front of the class. The teacher says, "Now this is what you do to a whore. Notice her pussy here? This is the best place to fuck, but don''t get carried away, or she could end up pregnant with a whore baby." He then motions you to come toward him.'		
+
+		act 'Move closer':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/blowjob1.gif"></center>'
+			'As soon as you get close the teacher grabs you then pushes you onto your knees. He pushes his penis against your lips, and says, "Open up, for your reward." You open your mouth, allowing his penis to enter. You begin sucking his dick eagerly, for what feels like a few minutes before he grabs your waist then lifts you up, dropping you on top of his desk. He then pushes you over then rams his dick inside of you, and begins thrusting. All you can think about if the humiliation of being fucked by your teacher, in front of your class.' 
+			*nl
+			'<font color=#FF00FF>Why is this happening. Why me? Will I never have a normal life again? Will I always be...</font> You suddenly hear a soft voice whispering in your ear, "Hey <<$pcs_firstname>>, are you ok? Come on, get up..."'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/class/sex.jpg"></center>'
+
+			act 'Continue':	
+				cls
+				NikoEv = 13
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/class/leave.jpg"></center>'
+				'You open your eyes then see all of the students getting out of their chairs and leaving the class while chatting with each other. You feel a hand on your shoulder shaking you, so you quickly turn to see Julia with a concerned look on her face. "Are you alright <<$pcs_firstname>>?" You take a second to collect your thoughts before responding, "I don''t know why I keep having these terrible nightmares." Julia rubs your back, as she responds, "Things must be, so hard for you. I''m so sorry." not wanting to worry Julia, you give her a fake smile then say, "They''re just dreams, I''ll be fine."' 
+				*nl
+				'Julia rubs on your forehead when you suddenly hear heavy breathing then turn to see Petia who says, "Are you two gonna kiss?" Julia recoils in shock then shouts, "Go away, you perv!" Petia quickly walks away. Julia looks back to you then says, "We can talk later." You smile as you respond, "That sounds great." You both walk out of the class.'
+				'<center><b><h4><font color=#00eaff><<"Julia Milov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/love/smile1.jpg"></center>'					
+
+				act 'Leave Classroom':minut += 5 & gt 'NikoEv2', 'Lunch Chat'
+			end
+		end	
+	end
+end
+
+--- NikoDreams ---------------------------------
+

+ 807 - 0
locations/NikoEv

@@ -0,0 +1,807 @@
+# NikoEv
+
+!! Nikolai Niko Volkov Romance  numnpc = 61  npc_rel['A189'] !!
+
+if $ARGS[0] = 'Intro':
+	cls
+	NikoIntro = 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/1.jpg"></center>'
+	'As you are walking out of school, you bump into one of your schoolmates Niko Volkov, who immediately gives you a warm smile. "Hello there, My name is Niko Volkov, may I ask you your name?"'
+
+	act 'I am <<$pcs_firstname>>':	
+		cls
+		if npc_rel['A189'] < 50:npc_rel['A189'] = 50
+		NikoLuv += 2
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+		'You return the smile as you reply. "Hello yourself, my name is <<$pcs_firstname>>. Nice to meet you." Niko responds "Ahh <<$pcs_firstname>> what a beautiful name, very suitable for you. I need to get going but I am always available at lunchtime and would be very grateful, if you would grace me with your presence." He then gently grabs onto your fingers then raises it to his face before giving your hand a gently kiss. "Goodbye for now <<$pcs_firstname>>, I look forward to seeing you again." Niko then waves to you as he walks away.'		
+
+		act 'Leave':gt 'gschool_grounds', 'main'	
+	end
+	
+	act 'Beat it!':
+		cls
+		if npc_rel['A189'] > 25:npc_rel['A189'] = 25
+		NikoLuv -= 2
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+		'You give him a harsh stare as you shout, "Beat it punk! I''m not looking for a boyfriend!" He remains completely unphased, as he responds, "I''m sorry that I bothered you." Niko never loses his smile, as he turns around and walks away. You can''t help but think to yourself. "Why was he so calm? What is it with that guy?" Before shaking your head and walking away.'	
+		
+		act 'Leave':gt 'gschool_grounds', 'main'
+	end	
+end
+
+if $ARGS[0] = 'Lunch Intro':
+	cls
+	if NikoIntro = 0:NikoIntro = 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+	'You approach Niko, he turns to you with a warm smile on his face. "Hello there, My name is Nikolai Volkov, may I ask you your name?'
+
+	act 'I am <<$pcs_firstname>>':
+		cls
+		if npc_rel['A189'] < 50:npc_rel['A189'] = 50
+		NikoLuv += 2
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+		'You return the smile as you reply. "Hello yourself, my name is <<$pcs_firstname>>. Nice to meet you." Niko responds, "Ahh <<$pcs_firstname>> what a beautiful name, very suitable for you. I need to get going, but I am always here at lunchtime, and would be very grateful if you would grace me with your presence." He then gently grabs onto your fingers then raises it to his face before giving your hand a gently kiss. "Now may I get to know you better?"'
+
+		act 'Chat with Niko':
+			cls
+			npc_rel['A189'] += rand(5,10)
+			minut += 10
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'You sit down next to Niko, and you both spend the next few minutes, getting to know each other.'
+			
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end	
+	end
+	
+	act 'Beat it!':
+		cls
+		if npc_rel['A189'] > 25:npc_rel['A189'] = 25
+		NikoLuv -= 2
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+		'You give him a harsh stare as you shout, "Beat it punk! I''m not looking for a boyfriend!" He remains completely unphased, as he responds, "I''m sorry that I bothered you." Niko never loses his smile as he turns around and walks away. You can''t help but think to yourself. "Why was he so calm? What is it with that guy?" Before shaking your head and walking away.'	
+		
+		act 'Leave':gt 'gschool_lessons', 'afternoon'
+	end	
+end
+
+if $ARGS[0] = 'Lunch Chat':
+	cls
+	numnpc = 61
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	if NikoFightDay = daystart:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/bruised2.jpg"></center>'	
+	elseif NikoPayback > 0:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+	else	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	end	
+	'<<$npc_notes[$static_num]>>'
+	if grupTipe[61] = 600:'Niko should not be available at this stage. If you are seeing this in game then please report this on the <font color=#FF00FF>Bug reports</font> thread.'
+	if grupTipe[61] = 4:'Niko is a Gopnik, and spends a lot of time doing what Gopniks usually do: be loud, and drink beer.'
+	if npc_rel['A189'] < 20:'You and Niko don''t get along at all.'
+	if npc_rel['A189'] >= 20 and npc_rel['A189'] < 40:'You and Niko don''t get along very well.'
+	if npc_rel['A189'] >= 40 and npc_rel['A189'] < 60:'You and Niko have a normal relationship.'
+	if npc_rel['A189'] >= 60 and npc_rel['A189'] < 80:'You and Niko have a good relationship.'
+	if npc_rel['A189'] >= 80:'You and Niko have a great relationship.'	
+	*nl
+	if NikoPayback = 2 and NikoPayed ! daystart:
+		'You approach Niko, and he turns to you with a puzzled look on his face. "Hmm, how did I not see you earlier? I thought that you might have been sick today, but here you are, so now to business. How will you be paying today?"'
+	elseif NikoPayback = 2:	
+		'You approach Niko, he looks at you with a blank stare, "You''re all payed up today, so what brings you here?"'
+	elseif NikoPayback = 3:	
+		'You approach Niko, and he turns to you then says, "Leave me alone. You are nothing but trouble." You giggle as you walk away.'
+	else
+		'You approach Niko, and his eyes light up. "Hello <<$pcs_firstname>>. I''m so glad to see you again. Please take a seat and chat with me."'
+	end
+	
+	if NikoLuv > -4 and NikoPayback = 0:
+		act 'Chat':	
+			cls
+			NikoLuv += 1
+			npc_rel['A189'] += rand(5,10)
+			minut += 10
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'You sit down next to Niko, and you both spend the next few minutes, getting to know each other.'
+			
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end	
+	end	
+	
+	if NikoLuv > -4 and NikoVolkovQW = 0 and NikoPayback = 0:
+		act 'Insult':	
+			cls	
+			npc_rel['A189'] -= 5
+			NikoLuv -= 1
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/pc/fuckoff1.jpg"></center>'
+			'You extend your middle finger at Niko, as you walk past him. "Get lost loser." Niko turns his head as he responds. "Am I not worthy?" You continue to walk past him until you reach the hallway.'
+			
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end	
+	end	
+	
+	if NikoPayback = 2 and NikoPayed ! daystart:
+		act 'Money (200 <b>₽</b>)':	
+			cls
+			money -= 200
+			NikoPayed = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			'"I have your money right here." You extend your hand, giving Niko (200 <b>₽</b>). Niko quickly counts it then gives you an approving nod, "it''s all here. Good, you''re all payed up for today, you can get going now."'	
+			
+			act 'Walk away':gt 'gschool_lunch', 'break'
+		end
+		
+		act 'Sex':	
+			cls
+			NikoPayed = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			'You downcast your eyes, as you reply, "You can use my body, as payment." Niko''s eyes light up, "I was hoping you''d say that. Let''s not waste time." Niko grabs your ass firmly while leading you to the less used restroom.'	
+
+			act 'Head to the restroom with Niko':gt 'NikoPayback', 'Payback 3'
+		end	
+		
+	elseif NikoPayback = 2 and NikoPayed = daystart and NikoPayback_Sex ! daystart:	
+		act 'Offer Niko sex':	
+			cls
+			NikoPayback_Sex = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+			'You walk up to Niko, and place your hand on his crotch, "I know that I already payed you in money, but I want to give you another special payment." Niko''s eyes light up, "Well, there''s no way, I''d say no to that. Let''s get going." Niko gives your ass a firm smack, as you both head toward the less used restroom.'	
+
+			act 'Head to the restroom with Niko':gt 'NikoPayback', 'Payback 3'
+		end
+	end	
+	
+	if NikoPayback = 2 and NikoPayed = daystart:
+		act 'Chat':	
+			cls
+			minut += 10
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			'You reply, "I just want to talk. Is that alright?" Niko shrugs, as he replies, "Sounds fine with me, I have some spare time." You, and Niko spend the next few minutes, chatting about various topics.'
+
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end	
+	end	
+	
+	if NikoVolkovQW = 5 and NikoEv = 9:
+		act '<font color=#FF00FF><b>Special Activity</b></font>':	
+			cls
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'You sit down next to Niko, "Hello Niko, I remember you telling me something about a special activity that you have planned." Niko grins, as he replies, "I have something special for us today. Are you ready to find out what it is?" You suddenly feel a cold chill down your spine, as he says that. <font color=#FF00FF>Why do I feel so nervous? I can''t shake the feeling that something big is going to happen.</font>'
+			
+			act '<font color=#FF00FF>Go with Niko</font>':
+				if soniaPS = 0:
+					gt 'NikoDates', 'Sonia Block'
+				else
+					gt 'NikoDates', 'Locker Room'
+				end	
+			end	
+
+			act 'Maybe later':gt 'NikoEv', 'Lunch Chat'
+		end
+	end	
+	
+	if NikoLuv <= -2 and NikoPayback = 0:
+		act 'Walk away':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/hallway/wos4.jpg"></center>'
+			VK = rand(1,3)
+			if VK = 1:
+				'You walk away without saying a word. thinking to yourself. "What kind of easy lay, does he think I am?"'
+			elseif VK = 2:
+				'You walk away without saying a word. thinking to yourself. "What an annoying, little punk?"'
+			else	
+				'You walk away without saying a word. thinking to yourself. "Something about that guy, really annoys me."'
+			end
+				
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end
+		
+	elseif NikoPayback = 2 and NikoPayed = daystart:
+		act 'Walk away':gt 'gschool_lessons', 'afternoon'
+	elseif NikoPayback = 0:
+		act 'Leave':
+			cls
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'You tell Niko. "I would love to stay but I need to head to class early today." He responds "I understand <<$pcs_firstname>>. I guess I will have to wait longer for an audience with this princess." You can feel your face getting flush as you get up and walk out toward the hallway.'
+					
+			act 'Go to class':gt 'gschool_lessons', 'afternoon'
+		end
+	elseif NikoPayback = 3:
+		act 'Walk away':gt 'gschool_lessons', 'afternoon'	
+	end
+end
+
+if $ARGS[0] = 'Date Intro':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+	'As you are walking toward the hallway, Niko runs up behind you with a small box in his hand. "<<$pcs_firstname>> I have something for you." He then holds the box in front of you, and slowly opens it, revealing a beautiful purple necklace. "An elegant lady of such beauty, deserves equally stunning jewelry, but I must ask you for a boon in return. I ask only, for permission to take you out on a date after school. What say you?"'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/jewelry/Necklace1.jpg"></center>'
+
+	act 'Accept the gift':	
+		cls
+		if npc_rel['A189'] < 80:npc_rel['A189'] = 80
+		NikoDateIntro = 1
+		NikoNecklace1 = 1
+		NikoVolkovQW = 5
+		NikoDate = 1
+		NikoEv = 1
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'
+		'You give Niko a warm smile as you take the gift from him. "Thank you Niko, This necklace is so beautiful." Niko looks at you with such loving eyes. "I''m so glad you like them, how about I pick you up after school, and we can both head out together?" You reply, "I might be a bit late so just wait for me at the courtyard, okay?" Niko bows before you. "As you wish milady." He then backs away while keeping his head bowed until he turns the corner.'		
+
+		act 'Go to class':gt 'gschool_lessons', 'afternoon'
+	end	
+	
+	act 'Decline the gift':	
+		cls
+		NikoLuv = 1
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/NoDate.jpg"></center>'
+		'"I''m sorry Niko, but I''m not really looking for any kind of relationship right now." Niko gives you a warm smile, as he responds "Don''t worry about it milady, I will just wait for the time where you feel yourself ready, for such a venture." You giggle as you respond, "You''re so weird but thanks for understanding. I''ll see you later." You turn around and walk away.'
+
+		act 'Go to class':gt 'gschool_lessons', 'afternoon'
+	end
+end
+
+if $ARGS[0] = 'Niko Dates':
+	if fedorkozlovQW >= 10 and NikoVsFedor = 0:
+		gt 'NikoEv', 'Fyodor'
+	elseif KotovloveQW >= 10 and NikoVsVitek = 0:
+		gt 'NikoEv', 'Viktor'
+	elseif dimafilm = 1 and DimaRudeBlock = 0 and NikoVsDimka = 0:
+		gt 'NikoEv', 'Dimka'
+	elseif NikoEv = 1:
+		gt 'NikoEv', 'Date 1'
+	elseif NikoEv = 2:
+		gt 'NikoEv', 'Date 2'
+	elseif NikoEv = 3:
+		gt 'NikoEv', 'Date 3'
+	elseif NikoEv = 4:
+		gt 'NikoEv', 'Date 4'
+	elseif NikoEv = 11:
+		gt 'NikoEv', 'New Life'
+	end	
+end	
+
+if $ARGS[0] =  'Date 1':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko1.jpg"></center>'
+	'You walk up to Niko, and his eyes light up as he sees you. "Greetings <<$pcs_firstname>>, I hope that you are ready to have a good time."'
+
+	act 'I''m ready':	
+		cls
+		NikoEv = 2
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Dates/Walk1.jpg"></center>'
+		'"I sure am." Niko gives you a warm smile as he responds, "I figured that we could go to an amusement park, out of town. I will pay our way of course, so come on, let''s get going." Niko takes your hand, and walks you to the train station where you both board the train and get seated.'	
+		*nl
+		'<center><img <<$set_imgh>> src="images/locations/shared/train/pavplat.jpg"></center>'
+		
+		act 'Go with Niko':gt 'NikoDates', 'Date 1_1'
+	end
+	
+	act 'Not yet':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/nodate.jpg"></center>'
+		'"I just stopped by to let you know that I can''t go right now. I have other matters to attend too." Niko gives you a warm smile as he responds, "I understand <<$pcs_firstname>>, whenever you are ready to go out, you need only return here, I will be patiently awaiting my princess''s return."'
+
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'Date 2':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko2.jpg"></center>'
+	'You walk up to Niko, and he lowers his cigarette before saying, "Hello <<$pcs_firstname>> I wanted to tell you that I am sorry, for how I acted yesterday. I just wanted to you leave your shell a bit. You always seem so tense." You reply, "Tense? I guess I could try to lighten up a bit. Maybe." Niko smiles as he responds, "Good enough. So are you ready for a surprise I have you? We could be out all afternoon."'
+
+	act 'I''m ready':	
+		cls
+		NikoEv = 3
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"I sure am." Niko''s smile widens as he replies, "Great let''s get going." Niko wraps his arm around your waist as he leads you toward the lake.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Dates/Walk2.jpg"></center>'
+		
+		act 'Follow Niko''s lead':gt 'NikoDates', 'Date 2'
+	end
+	
+	act 'Not yet':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/nodate.jpg"></center>'
+		'"Sadly I have some things that I need to attend to today so I can''t go right now." Niko gives you a warm smile as he responds, "I understand <<$pcs_firstname>>, whenever you are ready to go out, you need only return here, I will be patiently awaiting my princess''s return."'
+
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'Date 3':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko3.jpg"></center>'
+	'You walk up to Niko and his eyes light up as he sees you. "Greetings <<$pcs_firstname>>, I have a surprise activity for today, We could be out all afternoon. Are you up for it?"'
+
+	act 'I''m ready':	
+		cls
+		NikoEv = 4
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"I sure am." Niko''s smile widens as he replies, "Great let''s get going." Niko wraps his arm around your waist, as he leads you toward the lake.'	
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Dates/Walk3.jpg"></center>'
+		
+		act 'Follow Niko''s lead':gt 'NikoDates', 'Date 2'
+	end
+	
+	act 'Not yet':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/nodate.jpg"></center>'
+		'"I just stopped by to let you know that I can''t go right now. I have other matters to attend too." Niko gives you a warm smile as he responds, "I understand <<$pcs_firstname>>, whenever you are ready to go out, you need only return here, I will be patiently awaiting my princess''s return."'
+
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'Date 4':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+	'You walk up to Niko, and his eyes light up as he sees you. "Ahhh <<$pcs_firstname>>, I''m so glad to see you. Are you up for a nice relaxing day at the beach?"'
+
+	act 'I''m ready':	
+		cls
+		NikoEv = 5
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"I can never turn down a day at the beach." Niko chuckles as he responds, "Great I have everything we should need here." Niko then opens his bag which houses a beach towel, cigarettes and sunscreen. You happily grab onto his hand then say, "What are we waiting for? Let''s go!" You then lead Niko toward the lake.'	
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Dates/Walk4.jpg"></center>'
+		
+		act 'Enter train station':gt 'NikoDates', 'Date 3'
+	end
+	
+	act 'Not yet':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/nodate.jpg"></center>'
+		'"I just stopped by to let you know that I can''t go right now. I have other matters to attend too." Niko gives you a warm smile as he responds, "I understand <<$pcs_firstname>>, whenever you are ready to go out, you need only return here, I will be patiently awaiting my princess''s return."'
+
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'New Life':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/Niko1.jpg"></center>'
+	'As you approach Niko, he nods then motions you over, "Are you ready to head out?"'
+	
+	act 'Yes':
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'		
+		'Niko smiles, as he responds, "Great now let''s head out." Niko wraps his arm around your shoulder then walks you toward the park.'
+		
+		gt 'NikoEv2', 'Park'
+	end	
+	
+	act 'Not right now':gt 'gschool_grounds', 'main'
+end	
+
+!!!!!!!!!!!
+!! Disco !!
+!!!!!!!!!!!
+
+if $ARGS[0] = 'Disco Intro':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/brother/upset.jpg"></center>'
+	'You approach Niko, and immediately notice that he is passed out. He must have have a lot to drink today.'
+	
+	act 'Walk away':gt 'gdkin'
+end
+
+if $ARGS[0] = 'Disco Chat':
+	cls
+	if NikoIntro = 0:NikoIntro = 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	if NikoFightDay = daystart:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/bruised2.jpg"></center>'		
+	elseif NikoPayback > 0:
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+	else	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	end	
+	'<<$npc_notes[$static_num]>>'
+	if grupTipe[61] = 600:'Niko should not be available at this stage. If you are seeing this in game then please report this on the <font color=#FF00FF>Bug reports</font> thread.'
+	if grupTipe[61] = 4:'Niko is a Gopnik, and spends a lot of time doing what Gopniks usually do: be loud, and drink beer.'
+	if npc_rel['A189'] < 20:'You and Niko don''t get along at all.'
+	if npc_rel['A189'] >= 20 and npc_rel['A189'] < 40:'You, and Niko don''t get along very well.'
+	if npc_rel['A189'] >= 40 and npc_rel['A189'] < 60:'You, and Niko have a normal relationship.'
+	if npc_rel['A189'] >= 60 and npc_rel['A189'] < 80:'You, and Niko have a good relationship.'
+	if npc_rel['A189'] >= 80:'You, and Niko have a great relationship.'	
+	*nl	
+	if NikoLuv > -4 and  NikoPayback = 0 and NikoAlko = 0:
+		'You approach Niko, and he gives you a welcoming smile. "Good to see you again. would you like a drink?"'
+	elseif NikoLuv > -4 and  NikoPayback = 0 and NikoAlko >= 2:
+		'You approach Niko, and he gives you a welcoming smile. "You''re looking lovely today, Would you like to dance."'
+	elseif NikoPayback = 2 and NikoPayed ! daystart:
+		'You approach Niko, and he turns to you with a puzzled look on his face. "Hmm, you didn''t show up to school today, were you sick? Bah, it doesn''t matter, you''re here now, so let''s get down to business. My dick is dry and my wallet lite, which one of those issues, will you be solving today?"'
+	elseif NikoPayback = 2:	
+		'You approach Niko, and he looks at you with a blank stare, "You''re all payed up today, so why are you talking to me? Trying to mooch a free drink off me?"'
+	elseif NikoPayback = 3:	
+		'You approach Niko, and he turns to you then says, "Leave me alone. You are nothing but trouble." You giggle as you walk away.'		
+	end	
+		
+	if NikoLuv > -4 and  NikoPayback = 0:
+		act 'Drink':	
+			cls
+			NikoAlko = 2
+			alko += 2
+			NikoLuv += 1
+			npc_rel['A189'] += rand(5,10)
+			minut += 10
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_2_2.gif"></center>'
+			'"I would love to." Niko opens up a bottle of alcohol then hands you the bottle, as he gives you a wink. You both spend the next few minutes drinking, and sharing stories.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_2_1.gif"></center>'			
+			
+			act 'Get up':gt 'gdkin'
+		end	
+	end	
+	
+	if NikoLuv > -4 and  NikoPayback = 0:
+		act 'Dance':	
+			cls
+			danc_exp += rand(1,3)
+			NikoLuv += 1
+			npc_rel['A189'] += rand(5,10)
+			minut += 10
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/dance'+rand(1,2)+'.gif"></center>'
+			'"I would love to." Niko takes your hand then leads you to the dance floor where you both spend the next few minutes, dancing together.'		
+			
+			act 'Finish dancing':gt 'gdkin'
+		end	
+	end	
+	
+	if NikoLuv > -4 and NikoVolkovQW = 0 and  NikoPayback = 0:
+		act 'Insult':	
+			cls	
+			npc_rel['A189'] -= 5
+			NikoLuv -= 1
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/pc/fuckoff2.jpg"></center>'
+			'You lift up your hands then extend your middle fingers on each hand, "I only drink with men, not boys." Niko shakes his head, as he responds. "Aww, you''re no fun." You turn around then walk toward the dance floor.'
+			
+			act 'Walk away':gt 'gdkin'
+		end	
+	end	
+	
+	if NikoPayback = 2 and NikoPayed ! daystart:
+		act 'Money (200 <b>₽</b>)':	
+			cls
+			money -= 200
+			NikoPayed = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			'"I have your money right here." You extend your hand, giving Niko (200 <b>₽</b>). Niko quickly counts it then gives you an approving nod, "it''s all here. Good, you''re all payed up for today, you can get going now."'	
+			
+			act 'Walk away':gt 'gdkin'
+		end
+		
+		act 'Sex':	
+			cls
+			NikoPayed = daystart
+			NikoPayback_Sex = daystart
+			NikoDiscoPay = 1
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/disco/Niko.jpg"></center>'
+			'You downcast your eyes, as you reply, "You can use my body, as payment." Niko''s kneels down then begins rubbing your legs, as he replies,, "I was hoping you''d say that. Let''s not waste time." Niko grabs your ass firmly while leading you to the mens restroom.'	
+
+			act 'Head to the restroom with Niko':gt 'NikoPayback', 'Payback 3'
+		end	
+		
+	elseif NikoPayback = 2 and NikoPayed = daystart and NikoPayback_Sex ! daystart:	
+		act 'Offer Niko sex':	
+			cls
+			NikoDiscoPay = 1
+			NikoPayback_Sex = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+			'You walk up to Niko then place your hand on his crotch, "I know that I already payed you in money, but I want to give you another special payment." Niko''s eyes light up, "Well, there''s no way, I''d say no to that. Let''s get going." Niko gives your ass a firm smack, as you both head toward the mens restroom.'	
+
+			act 'Head to the restroom with Niko':gt 'NikoPayback', 'Payback 3'
+		end
+	end	
+	
+	if NikoPayback = 2 and NikoPayed = daystart:
+		act 'Chat':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			'You reply, "I just want to talk. Is that alright?" Niko shrugs, as he replies, "Sounds fine with me, I have some spare time, but don''t think that you''re getting any free beer off of me." You, and Niko spend the next few minutes, chatting about various topics.'
+
+			act 'Finish chatting':gt 'Nikoev', 'Disco Chat'
+		end	
+	end	
+	
+	if NikoLuv <= -2 and NikoPayback = 0:
+		act 'Walk away':	
+			cls
+			NikoAlko = 0
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/pc/glare.jpg"></center>'
+			VK = rand(1,3)
+			if VK = 1:
+				'You walk away without saying a word, thinking to yourself. "What kind of easy lay, does he think I am?"'
+			elseif VK = 2:	
+				'You walk away without saying a word, thinking to yourself. "What an annoying, little punk?"'
+			else	
+				'You walk away without saying a word, thinking to yourself. "Something about that guy, really annoys me."'
+			end	
+				
+			act 'Step away':gt 'gdkin'
+		end
+		
+	elseif NikoPayback = 2 and NikoPayed = daystart:
+		act 'Walk away':gt 'gdkin'
+	elseif NikoPayback = 0:
+		act 'Leave':
+			cls
+			NikoAlko = 0
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+			'You tell Niko. "I would love to stay, but I need to head home early today, or my mom will freak out." He responds "I know how parents can be, I will always be around, if you even have a few minutes to spare." You give Niko a warm smile, as you wave goodbye.'
+					
+			act 'Step away':gt 'gdkin'
+		end
+		
+	elseif NikoPayback = 3:
+		act 'Walk away':gt 'gdkin'		
+	end	
+end
+
+!!!!!!!!!!!!!
+!! Breakup !!
+!!!!!!!!!!!!!
+
+if $ARGS[0] =  'Lunch Breakup':
+	cls
+	NikoFightDay = daystart
+	NikoPayback = 1
+	NikoBreakup = 2
+	NikoVolkovQW = -1
+	NikoLuv = -20
+	if NikoEv > -1:NikoEv = -1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'	
+	'You approach Niko with a stern look on your face. Niko notices you then says. "Ah there you are, You disappeared on me yesterday." You quickly reply, "I DISAPPEARED!? YOU RAN OFF AND LEFT ME TIED UP!" Niko recoils before responding, "Did I? I''m sorry I just had to..." You cut Niko off. "I DON''T WANT TO HEAR IT! I never should have trusted you. How could I have been so stupid?" Niko responds, "Hey let''s not be hasty here." You quickly reply, "NO! I want nothing to do with you. Stay away from me." '
+
+	act 'Walk away':
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'		
+		'Niko then gets noticeably angry, as he responds, "After all the time and money I spent on you? You wiull not leave me. I will get what I deserve!" You reply, "You got that right." You then wind up your leg before ramming it in between his legs, smashing on his balls, causing him to drop to the ground squirming in pain. You spit on Niko before walking away.'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/restroom/ouch.jpg"></center>'
+	
+		act 'Walk away':gt 'gschool_lessons', 'afternoon'
+	end	
+end		
+	
+if $ARGS[0] =  'Disco Breakup':
+	cls
+	NikoBreakupDay = daystart
+	NikoPayback = 1
+	NikoBreakup = 2
+	NikoVolkovQW = -1
+	NikoLuv = -20
+	if NikoEv > -1:NikoEv = -1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'	
+	'You approach Niko with a stern look on your face. Niko notices you then says. "Ah there you are, You disappeared on me yesterday." You quickly reply, "I DISAPPEARED!? YOU RAN OFF AND LEFT ME TIED UP!" Niko recoils before responding, "Did I? I''m sorry I just had to..." You cut Niko off. "I DON''T WANT TO HEAR IT! I never should have trusted you. How could I have been so stupid?" Niko responds, "Hey let''s not be hasty here." You quickly reply, "NO! I want nothing to do with you. Stay away from me." '
+
+	act 'Walk away':
+		cls
+		gs'stat'
+		'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'		
+		'Niko then gets noticeably angry, as he responds, "After all the time and money that I spent on you? You will not leave me! I will get what I deserve!" You reply, "You got that right." You then wind up your leg before ramming it in between his legs, smashing against his balls, causing him to drop to the ground, squirming in pain. You spit on Niko before walking away.'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/down.jpg"></center>'
+	
+		act 'Step away':gt 'gdkin'
+	end	
+end	
+
+if $ARGS[0] =  'Disco Breakup 2':
+	cls
+	minut += 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/brother/aftermath2.jpg"></center>'	
+	'You see Niko on the ground, squirming in pain, and can''t help but feel very satisfied, seeing Niko get what he deserved.'
+
+	act 'Step away':gt 'gdkin'
+end	
+
+!!!!!!!!!!!!!!!
+!! Jealously !!
+!!!!!!!!!!!!!!!
+
+if $ARGS[0] =  'Fyodor':
+	cls
+	NikoVsFedor = 1
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko'+rand(1,3)+'.jpg"></center>'
+	'You walk up to Niko and his eyes light up as he sees you. "Greetings <<$pcs_firstname>>, I hope you are ready to have a good time." You suddenly feel a hand gently but firmly grab onto your arm.'
+
+	act 'Turn around':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'You turn to see Fedor with a concerned look on his face. "<<$pcs_firstname>> what are doing over here with him? You should be careful hanging around guys like him. He is no good for you." Niko just stares on in silence with an annoyed look on his face. You turn to Fedor and say, "Don''t worry Fedor it''s not what it looks like. Niko was just..." Niko quickly continues your sentence. "<<$pcs_firstname>>''s father is planing on buying one of my brothers old bikes, so she came to me to discuss the details. That''s all." Fedor gives Niko a blank stare. "I''ve seen your brother before and I don''t think that <<$pcs_firstname>> should be dealing with him or you." Niko shrugs as he replies, "Well that''s <<$pcs_firstname>>''s call, not yours." Fedor walks right up to Niko then clenches his fists. "Well no one asked for your input."' 
+		'Niko doesn''t seem worried as he casually leans against the wall. "No need to get violent. I''m sure <<$pcs_firstname>> doesn''t want us fighting in front of her for no reason. That would be really rude of us, wouldn''t it?" Fedor looks back to you with a embarrassed look on his face. "Sorry <<$pcs_nickname>> I hope I''m not making you uncomfortable. Just be careful with this one okay?" You give Fedor a nod and a smile as he turns around then walks away.'		
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko4.jpg"></center>'		
+
+		act 'Turn back toward Niko':gt 'NikoEv', 'Niko Dates'
+	end
+end
+
+if $ARGS[0] =  'Viktor':
+	cls
+	NikoVsVitek = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko'+rand(1,3)+'.jpg"></center>'
+	'You walk up to Niko and give him a smile then you suddenly see Vitek quickly walk up to Niko and say, "What are you doing with <<$pcs_firstname>>? She is mine." Niko chuckles as he raises his hands, "I was just helping <<$pcs_firstname>> with finding the person spreading mean rumors about her." Vitek responds, "What rumors?" Niko replies, "Someone said that <<$pcs_firstname>> here is dating a fat, brain dead, gopnik. I wonder who that rumor was referring to." Vitek begins seething with anger as he ask, "Who the fuck said that shit?" Niko replies, "It took some digging, but I found out that it was him." Niko points to Lesco Tsarev, causing Vitek to turn to Lesco then shout, "You fucking little bitch! I will tear your arm off!" He then charges at Lesco, who begins running for his life. While they were distracted, Niko takes your hand then leads you out of the school grounds.'
+	'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+	
+	act 'Follow Niko''s lead':gt 'NikoEv', 'Niko Dates'
+end
+
+if $ARGS[0] =  'Dimka':
+	cls
+	NikoVsDimka = 1
+	gs'stat'
+	'<center><b><h4><font color="maroon"><<"Dmitriy [Dimka] Nosov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'
+	'You walk up to Niko and give him a smile then see Dimka approach you then gives Niko a puzzled look. "What are you with <<$pcs_firstname>>. She is my girl." Niko gives Dimka a blank stare as he responds, "Sure she is...Why don''t you just piss off before I get pissed off?" Dimka then says, "Why don''t we ask her who she''s dating?" Niko replies, "Because asking a girl to kiss and tell is rude." Dimka looks shocked as he responds, "You don''t care? But would you care if I told you that <<$pcs_nickname>> here is a cocksucker?" Niko raises an eyebrow. "Well do you have proof of that, or are you just blowing smoke?"'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'	
+
+	act 'See what Dimka does':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color="maroon"><<"Dmitriy [Dimka] Nosov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/1.jpg"></center>'
+		'Dimka quickly pulls out his phone then starts up a video then shows it to Niko. You recognize the video of you sucking on Dimka''s dick, causing you to think to yourself: <font color=#FF00FF>Oh shit! How am I going to explain this to Niko. I''m really screwed now.</font> Niko watches the video then turns to you and says, "You have some talents, I see." He pulls out his phone then taps the screens of both phones for a few seconds then returns Dimka''s phone. Dimka grins as he says, "See I told you that she is a whore." Niko replies, "You are still being rude. Thanks for the vid, but you can get lost now." Dimka recoils in shock, "But this video sho... Hey what the hell? Did you delete it?" Niko smirks as he replies, "Well of course I have. I can''t just let you keep embarrassing videos of my girl, now can I?"'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'		
+		
+		act 'Continue':	
+			cls
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/niko4.jpg"></center>'			
+			'Niko begins lighting his cigarette before Dimka suddenly shouts, "How dare you!? You fucking sack of shit! That was my video!" Niko gets off the wall then approaches Dimka, causing Dimka to immediately back up. Niko grabs Dimka''s face with one hand then brings it to his before blowing smoke in his face then saying, "I will give you one more chance to leave before I accept Lavrenti''s offer to make your life a living hell." Dimka quickly backs off as he says, "You''re insane!...Whatever...Keep her!" Dimka then quickly walks away.'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/pissoff.gif"></center>'		
+		
+			act 'Thank Niko':
+				cls
+				dimafilm = 0
+				DimaRudeBlock = 1
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/hug1.jpg"></center>'
+				'You quickly wrap your arms around Niko, holding him tightly as you say, "Thank you so much Nikolai. I never though that I''d be free from him. You are the best." Niko smiles as he responds, "Seeing you happy is thanks enough." You lower your head as you say, "I hope you don''t think less of me because of the video." Niko replies, "Not at all. We all have talents, and your talents are not exactly...Unwanted." You can feel your cheeks getting red as you reply, "I only did that because.." Niko chuckles before saying, "Don''t worry about it, my princess. Shall we get back to discussing our activities for today?"'
+
+				if NikoEv >= 17:
+					act 'Sure thing':gt 'NikoEv2', 'Events'
+				else
+					act 'Sure thing':gt 'NikoEv', 'Niko Dates'
+				end	
+			end
+		end	
+	end	
+end
+
+--- NikoEv ---------------------------------
+

+ 1005 - 0
locations/NikoEv2

@@ -0,0 +1,1005 @@
+# NikoEv2
+
+if $ARGS[0] =  'Park':
+	cls
+	if pav_sex < 230:pav_sex = 250
+	gs 'fame'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'Niko guides you through the park, as he says, "So I know this guy that can completely fix your reputation, but when I spoke to him, he was asking for a lot of money to do it, so I figured, if we work together then we could make the money to pay him for helping us." You ask, "Who is this friend exactly, and can he really fix my reputation?" Niko responds, "Well, he is kind of...a...Crime lord, but don''t worry. As long as we pay up then we have nothing to fear. He can get anything he wants. This guy is fearsome, but always true to his word."' 
+	*nl
+	'You ask, "But how much does he want exactly?" Niko replies, "Uh don''t worry about that. I will handle that when the time comes. Just know that it is a lot!" You shake your head, "How the hell will we be able to pay "A lot" to this man?"'
+
+	act 'Listen to Niko''s reply':	
+		cls
+		minut += 10
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"I figured out a great way to make money fast, just bear with me." You sigh then say, "Alright what do I need to do exactly?" Niko replies, "Just follow me." Niko leads you through the park then behind the cinema. When you both arrive then you see two men looking at you with a lustful gaze while rubbing on their crotches. Niko stops you for a few seconds then says, "Listen <<$pcs_firstname>>, Those guys over there are going to help us by giving us money, but they kind of, need you to do something first." You look back at Niko with a frown, "Do I have to have sex with them?" Niko wraps his arm around your neck, "You only need to suck them off. That''s all."' 
+		*nl
+		'You lower your head, as you reply, "I don''t want to please anyone but you Niko." Niko rubs your cheek, as he replies, "You will be pleasing me by doing this. The money you earn will go toward restoring your reputation. After you''re done then you and I could head back to my place, for some "quality time," Doesn''t that sound good?"'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/shady.jpg"></center>'	
+
+		act 'Okay':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile3.jpg"></center>'
+			'You give Niko a forced smile as you reply, "Okay, I''ll do it for you." Niko gives you a warm smile as he responds, "That''s my girl, so beautiful, loving, daring, and smart." You both continue walking toward the two men. As you both arrive, one of the men says, "She looks good." He then reaches out to touch you, but his hand is pushed away by Niko. "You need to pay up before you start touching." The guy chuckles, "Of course, of course. Where is my head?" He then nods to the other man, who reaches into his pocket then gives Niko some ruble which Niko counts before nodding to the men then taking a step back, signaling the men to use you.' 
+			*nl
+			'The men begin fondling your breasts, as they kiss your neck. <font color=#FF00FF>This feels so wrong, but Niko needs me to do this. He is counting on me. I must not let him down. I wont let you down Niko.</font> One of the men takes off your shirt then throws it to the ground. Niko immediately picks it up. One of the men begins pushing you to your knees.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/shady.jpg"></center>'			
+
+			act 'Drop to your knees':	
+				cls
+				minut -= 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters\pavlovsk\school\boy\fedor\fedorev2\Home\3way/foreplay2.gif"></center>'
+				'You drop down to your knees in front of them then one of the men shoves his penis into your mouth, as the other pulls out then begins stroking his. You close your eyes, and pretend that you are sucking Niko''s dick. Enjoying the warmth of it on your tongue, the occasional throbs as it leaks pre-cum into your mouth. The other man begins pulling at your hair which tells you that he wants his dick sucked too, You obediently switch dicks, and begin sucking the second man vigorously. After a few seconds, one of the men begins groaning, as he fills your mouth with his cum which you quickly spit out, not knowing if this guy has any STD''s or not.' 
+				*nl
+				'The second man soon groans too then begins covering your hair in his cum. Once both men are done, they look down to you then say, "Wow you are really good, girl." Niko approaches you then says, "Great job Princess, I am very proud of you." One of the guys asks, "Can we have her again sometime?" Niko grins as he replies, "Sure you can, just call me when you have the money ready, and I''ll do the rest." The two guys high five, as they walk away.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/pc/body/cum/cumhair/cumhair1.jpg"></center>'
+				gs 'cum_call', 'mouth'
+				gs 'cum_call', 'hair'
+				gs 'arousal', 'bj', 5				
+				gs 'arousal', 'bj', 5
+				gs 'arousal', 'end'
+				gs'stat'	
+							
+				act 'Continue':	
+					cls
+					pav_sex += 10
+					pav_prostitute += 20
+					gs 'fame'
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/walk1.jpg"></center>'
+					'Niko rubs the back of your head. "Let''s get you back to my place, for your reward." You quickly feel your heart warm up. <font color=#FF00FF>My reward? He is going to reward me? What could it be? I really want to know.</font> You then reply, "Okay, Let''s go." Niko rubs your neck as he responds, "So eager, aren''t we? Good." He then chuckles, as he begins walking you toward his house.'
+
+					act 'Follow Niko':gt 'NikoEv2', 'Home Date'
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Home Date':
+	cls
+	minut += 10
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/home/bedroom/relaxing1.jpg"></center>'
+	'You arrive at Niko''s house, and Niko guides you inside then brings you his room where he lies down on the bed, for a few seconds before patting the bed, signaling you to join him. You lay down on the bed next to him. Niko rubs on your hips, as he says, "You are such a perfect girl. Do you know that?" You give him a very pleased smile. "Well, the perfect boyfriend deserves no less." You feel a little nervous, not knowing how he will respond, but he quickly does. "Aww, you''re so sweet <<$pcs_nickname>>. How would you like to have some fun?" You eagerly reply, "I would love too." Niko chuckles, as he responds, "Good then get washed up, and we will have some fun." You get up, nod then quickly run to the bathroom to wash up.'
+
+	act 'Wash up':gt 'NikoDates', 'Quick Wash'
+end
+
+if $ARGS[0] =  'Reward':
+	cls
+	gs 'boyStat', 'A190'
+	if pav_sex < 230:pav_sex = 250 
+	gs 'fame'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/niko/bedroom.jpg"></center>'
+	'As soon as you enter the bedroom, you look around, but don''t see Niko. <font color=#FF00FF>Where did Niko go...</font> Niko grabs you from behind then begins passionately kissing, and licking your neck. You tilt your head back, and give in to Niko''s passionate embrace. Niko begins walking you toward the bed while removing your top. You help Niko undress you, as you both inch closer to the bed. After you are fully undressed then Niko lifts you up then drops you onto the bed. Niko immediately pounces on top of you then begins passionately kissing you, as he rubs his penis against your vagina.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss3.gif"></center>'
+	gs 'arousal', 'kiss', 5
+	gs'stat'	
+							
+	act 'Spread your legs for Niko':	
+		cls
+		gs 'clothing', 'strip'
+		minut += 10
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag.gif"></center>'
+		'You spread your legs and Niko immediately rams his penis inside of you, causing a jolt of pleasure. You scream out as Niko begins pumping you firmly for a few seconds before wrapping his hand around your neck lightly, "Who''s your man?" You reply, "You are my man, Nikolai." He grins then asks, "Who do you belong too?" You reply, "Only you, Nikolai." He then replies, "Fuck yeah! Who''s my bitch?" You reply, "I''m your bitch Niko and I will always be your bitch!" Niko starts pumping you even faster, as he gets more excited. You tilt your head back, enjoying Niko''s hard cock; ramming inside you, His strong arms wrapped around you, His dominance as he rams his dick roughly into your vagina.'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/vag2.gif"></center>'
+		gs 'arousal', 'vaginal', 5
+		gs'stat'	
+							
+		act 'Continue':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/cum/throat.gif"></center>'
+			'Niko continues quickly thrusting his dick further inside of you until he suddenly pulls out of you then says, "<<$pcs_firstname>> open your mouth!" You obediently open your mouth, as Niko climbs on top of your chest then shoves his dick down your throat before groaning, filling you throat with his warm seed. Niko is having such a powerful orgasm that he doesn''t even notice that you are choking on his dick. <font color=#FF00FF>I''m chocking. Should I pull away? No! Niko is so happy right now. I must let him finish. I just want you to be happy Niko.</font> You endure the chocking, as your eyes tear up.' 
+			*nl
+			'You do your best to hold back from gagging, not wanting to interrupt Niko''s orgasm. After Niko is finished, he catches his breath then says, "<<$pcs_nickname>> you are simply divine." You take a few seconds to catch you breath before leaning forward to kiss Niko.'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'			
+			gs 'cum_call', 'mouth', $boy
+			gs 'arousal', 'vaginal', 5
+			gs 'arousal', 'end'
+			gs'stat'	
+							
+			act 'Kiss Niko':	
+				cls
+				gs'stat'
+				'<center><b><h4><font color="red"><<"Yurik Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/avatars/threaten1.jpg"></center>'	
+				'You lean forward to kiss Niko then the door suddenly slams open, as Yurik storms into the room. He grabs you by your hair then pulls you toward the door. Niko jumps out of the bed then shouts, "Yurik what the fuck? I told you that I would repay you as soon as..." Yurik cuts him off, "Shut it boy! I know better than to trust you. I''m taking my prize now, but don''t worry, I will return her when I''m done." Yurik continues pulling you through the hallway, as Niko follows closely behind while constantly trying to get Yurik to back down. "Come on Yurik...Just calm down man." Yurik replies, "I am calm." You then reach a bedroom with a partially open door. Yurik tosses you inside then pushes Niko back before closing the door in his face.'
+				'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'				
+				
+				act 'Continue':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><b><h4><font color="red"><<"Yurik Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/intrude/yurik1.jpg"></center>'
+					'You fall to the ground then look back up at Yurik in fear. You can feel your whole body trembling. <font color=#FF00FF>What is he going to do to me. i''m not strong enough to resist him. He is so strong. What''s going to happen to me now?</font> Yurik wraps his hand around your neck, "Listen bitch, You will do whatever I say, when I say it. Do you understand?" You meekly nod, and he says, "Good, you know your place." Yurik lifts you up then drops you on the bed with your head at the foot of the bed then he quickly romoves his pants causing his 19 centimeter penis to spring out. <font color=#FF00FF>Ohh wow. his dick is so big. There is no way that will fit inside me.</font> Yurik approaches your face, as you lay still, in complete shock.'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/deek/deek.jpg"></center>'
+
+					act 'See what Yurik does':	
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/throat/bed1.gif"></center>'
+						'Yurik rams his dick into your mouth, forcing it down your throat. The force of his massive penis entering your throat is too much for you to take. You gag helplessly then begin pleading with Yurik. "Please sir, your dick is too big. It wont fit." Yurik grunts before responding, "It will fit just, keep your mouth open, and shut up." Yurik re-aligns his penis with your mouth then shoves it back in. You do your best to relax your throat, knowing that you have no choice, but to let Yurik have his way with you.' 
+						*nl
+						'You can feel Yurik''s hand rubbing on your sensitive parts. You close your eyes, trying to think of anything but the pain you feel, as Yurik roughly fucks your throat. You then open your eyes, and try looking around the room, but your vision is all blurry from the tears streaming from your eyes, so you close them again, waiting for this torment to be over.'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/throat/bed2.gif"></center>'
+						gs 'arousal', 'bj', 5
+						gs'stat'	
+							
+						act 'Continue':	
+							cls
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/cum/throat1.gif"></center>'
+							'Yurik suddenly grabs firmly onto the back of your head then shoves his penis, as far down your throat as he can while groaning loudly. You can feel a surge of cum shooting down your throat which you have no choice but to swallow. Yurik pulls off of you, as you continue swallow the last of his cum. Yurik begins dressing himself then walks up to you; with tears streaming down your face, and says, "Whenever I am around, you will do whatever I say. Do you understand, girl?" You nod meekly, terrified of what Yurik could do to you. Yurik responds, "Good, i will be seeing you around, and don''t try to avoid me, or that will make me ANGRY." Yurik then gets dressed before grabbing you up by your hair then pulling to toward the door where he opens it up before tossing you into Niko''s arms then closing the door.'
+							gs 'cum_call', 'mouth', $boy
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'end'
+							gs'stat'	
+							
+							act 'Continue':	
+								cls	
+								cumspclnt = 1
+								gs 'cum_cleanup'								
+								gs'stat'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+								'You begin coughing erratically, as Niko holds you in his arms, "<<$pcs_firstname>> please tell me that you are ok." Niko begins rubbing on your back gently. You continue coughing for almost a full minute, as Niko wipes away your tears. "I''m so sorry <<$pcs_firstname>>. My brother is such a brutish oaf. I will find a way to protect you from him, I promise." You finally finish coughing then return Niko''s hug, and begin crying in his arms, <font color=#FF00FF>He was so rough with me. I couldn''t stop him. He might do that again to me. Please no. Never again. Please.</font> Niko leads you toward the bathroom where he carefully, splashes some water on your face. He then washes your face before leading you back to his room.'
+								*nl
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/VolkovHome/rooms/bathroom.jpg"></center>'
+								
+								act 'Enter Niko''s room':	
+									cls
+									minut += 10
+									gs'stat'
+									'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer3.jpg"></center>'
+									'As you enter the room, Niko lays you down then climbs in next to you. Niko begins running his fingers through your hair while staring into your eyes. You feel incredibly lightheaded, as your nerves have really drained you of any focused thought. You begin closing your eyes then feel your energy slowly fade away...'
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/home/bedroom/laying.jpg"></center>'
+									
+									act 'Sleep':gt 'NikoDreams', 'Friends'
+								end
+							end
+						end
+					end	
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Niko Wake':
+	cls
+	pcs_sleep += 20
+	NikoVolkovQW = 10
+	NikoEv = 12
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer2.jpg"></center>'
+	'You open your eyes, and see Niko with a concerned look on his face, he has his hand on your shoulder, shaking you. "<<$pcs_firstname>> are you alright? You looked like you were having an intense dream." You quickly look around the room then take several deep breaths, <font color=#FF00FF>It was a dream. It was only a dream. Oh my. I can''t keep doing this. Why does this keep happening to me? Why me?</font> Niko gives you a kiss on the forehead. "I''m so worried about you. Are you alright?" You nod slowly before saying, "I''m...I''m fine. I just had a nightmare, that''s all."' 
+	*nl
+	'Niko continues kissing your forehead before responding, "I will do everything in my power to protect you. Just stay strong. Okay <<$pcs_firstname>>?" You nod your head again before saying, "Thank you Niko. I always feel safe in your arms." Niko smiles as he wraps his arms around you.'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'	
+
+	act 'Relax':	
+		cls
+		minut += 15
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/home/bedroom/relaxing1.jpg"></center>'
+		'After relaxing for a few minutes, You get up then stretch your body before saying, "I should head home. It is getting late." Niko places his hand on your shoulder. "Will you be alright on your own?" You reply, "Of course. I''ll see you tomorrow." You lean forward and kiss Niko on the cheek before getting up, getting dressed then leaving Niko''s house.'		
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'		
+
+		act 'Walk onto the street':gs 'clothing', 'wear_last_worn' & gt 'pavResidential'
+	end
+end
+
+if $ARGS[0] =  'Lunch Chat':
+	cls
+	if pav_sex < 230:pav_sex = 250 
+	gs 'fame'
+	NikoDate_Day = daystart
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+	'You walk into the cafeteria then feel a hand grab yours. You quickly turn to see Niko with a warm smile on his face, "I hope you''re feeling better today." You nod then Niko says, "I have another way for us to make some money, Are you ready?"'
+
+	act 'Sure':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'		
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+		'"Great let''s get going." Niko takes your hand then walks you away from the cafeteria, toward the locker room. The thought of entering the locker room again, causes your heart to start pounding. You arrive at the locker room then reluctantly enter, when Niko guides you in.'		
+
+		act 'Enter locker room':	
+			cls
+			gs 'boyStat', 'A155'
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="maroon"><<"Lavrenti Romanov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/40.jpg"></center>'
+			'As soon, as you enter the locker room, you see Lavrenti Romanov waiting, for you. Niko says, "Here she is." Lavrenti responds, "I heard some things about you <<$pcs_nickname>>. Are they true?" You lower your head then ask, "What have you heard?" Lavrenti replies, "I heard that you are Niko''s whore, and that you do anything Niko tells you too. At least that is what Niko said." You look to Niko, who has a wide smile on his face. Niko nods to you, "No need to be shy <<$pcs_nickname>>, tell him." You lower your head again then say, "Yes it''s true." Niko responds, "What''s true?" with a confident smile on his face.' 
+			*nl
+			'You reply, "I am Niko''s whore." Lavrenti smiles, as he responds, "Good, well should we get started?" In your heart, you know what he wants, but you ask Niko anyway, "What do I need to do?" Niko replies, "Just suck his dick. It should be easy, for you." You know that you''ve come too far to go back now, so you approach Lavrenti then drop to your knees in front of him, as he unbuttons his pants."'
+
+			act 'Suck Lavrenti''s dick':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/blowjob1.gif"></center>'
+				'You wrap your lips around Lavrenti''s dick then begin licking, and sucking it firmly, doing your best to pretend that you are sucking Niko''s dick. You begin focusing on the softness, and warmth of his Lavrenti''s dick in your mouth. You use your tongue to feel out the shape of his penis, brushing against your tongue, enjoying the occasional moan he lets out. <font color=#FF00FF>I must continue pleasing him. He need me to please him. He needs me.</font> You can feel yourself blushing as you continue sucking his dick more rapidly. You can tell by Lavrenti''s squirming that he is close to cumming.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/blowjob3.gif"></center>'
+				gs 'arousal', 'bj', 5
+				gs'stat'	
+							
+				act 'Make Lavrenti cum':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum1.11.gif"></center>'
+					'<font color=#FF00FF>Now is my chance. The moment he and I have been waiting for. The time that he cums, for me. Cum for me, Lavrenti. Cum for me.</font> You quicken your pace then feel his penis throbbing in your mouth as he begins filling your mouth with his seed. You let Lavrenti''s cum fills your mouth, as you push it around with your tongue, enjoying the warmth, and texture of his cum, as it slides down your chin. Lavrenti catches his breath before looking down to you, "Wow <<$pcs_firstname>>, Niko wasn''t lying when he said that you were the best at that. I have to have you again sometime."' 
+					*nl
+					'Niko responds, "If you have the cash then I have the girl for you. Speaking of cash..." Niko extends his hand. Lavrenti nods then says, "<<$pcs_nickname>> was worth every ruble." He then hands Niko some money then buttons his pant, and rubs your cheek before leaving the locker room.'
+					'<center><b><h4><font color="maroon"><<"Lavrenti Romanov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/40.jpg"></center>'
+					gs 'cum_call', 'mouth', $boy
+					gs 'arousal', 'bj', 5
+					gs 'arousal', 'end'
+					gs'stat'	
+							
+					act 'Continue':	
+						cls
+						pav_sex += 5
+						gs 'fame'
+						gs 'boyStat', 'A189'
+						gs'stat'
+						'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/charmer1.jpg"></center>'	
+						'You look up to Niko, who counts the money before saying, "You were outstanding <<$pcs_firstname>>. We will have the money we need in no time." Niko then kisses you on your forehead before saying, "Do you think that you can give me a quickie before we head back?" You eagerly nod, as you say, "Of course Niko, I''m always happy to please you." You quickly begin unbuttoning his pants then wrap your lips around his dick, licking, and sucking, as best you can, only wishing to please Niko.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Home/bedroom/sex/bj4.gif"></center>'
+						gs 'arousal', 'bj', 5
+						gs'stat'	
+							
+						act 'Suck Niko''s dick':	
+							cls
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Home/bedroom/sex/bj5.gif"></center>'		
+							'You can feel your heart all aflutter, as you continue sucking Niko''s dick. <font color=#FF00FF>Nikolai you are the only one I want to please. The only one love. Please realize that everything I do, I do for you. Please let me be the only one to please you. I will never fail you.</font> You can feel tears running down your cheeks, as you lose yourself in the moment. Niko suddenly begins groaning, as he fills your mouth with his warm seed which you try your best to swallow every drop of, wanting any part of Niko to stay inside you.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow8.gif"></center>'
+							gs 'cum_call', 'mouth', $boy
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'end'
+							gs'stat'	
+							
+							act 'Finish swallowing Niko''s cum':	
+								cls
+								NikoEv = 14
+								minut += 5
+								gs'stat'
+								'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'	
+								'Niko looks down to you then says, "Oh <<$pcs_firstname>>, you are the most perfect being that could ever exist." Your cheeks are burning red, as you reply, "Thank you Niko, I love you with all my heart, and will always be yours. Forever." Niko leans forward then gives you a long kiss on your forehead before saying, "I am so lucky to have you. Now are you ready to head back?" You happily nod. Niko helps you up to your feet then takes you hand, and walks you out of the locker room, toward the cafeteria.'
+								
+								act 'Go to the cafeteria':gt 'gschool_lunch', 'lunch'
+							end	
+						end	
+					end	
+				end		
+			end
+		end	
+	end
+	
+	act 'I can''t right now':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+		'"I''m sorry to hear that. I will try to continue finding ways, for us to earn money. I might have something, for you tomorrow." You nod then say, "Thank you for all your help. I will talk to you tomorrow." You then give Niko a kiss on the cheek then walk away.'
+
+		act 'Go to the cafeteria':gt 'gschool_lunch', 'lunch'
+	end			
+end
+
+if $ARGS[0] =  'Sonia Talk':
+	cls
+	gs'stat'
+	'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+	*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+	'As you are leaving the cafeteria, you suddenly hear someone say, "I saw what you did in the locker room."'
+
+	act 'Turn around':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color=#FF00FF><<"Sonia Ivanko">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/soniahome/soniasmile.jpg"></center>'
+		'You turn around to see Sonia Ivanko with a very pleased smile on her face. Sonia says, "I saw how much you were enjoying yourself back there." You lower your head, feeling ashamed. Sonia giggles as she says, "No need to be embarrassed. You are just getting closer to accepting your role. It took me 2 weeks to accept what I am." You tilt your head sideways, as you ask, "My role?" Sonia answers, "You are Niko''s whore of course, and don''t worry, that isn''t a bad thing, despite what some people may have you believe. When you accept your role then you will finally find peace of mind, and begin enjoying your new life." You take a few seconds to ponder what Sonia said.'		
+
+		act 'Ponder':	
+			cls
+			NikoEv = 15
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+			*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+			'<font color=#FF00FF>So I am Niko''s whore, but what does that mean for me? Maybe it is my job to keep Niko happy. I want that. I can use my body to please him, and get satisfaction in the process. I don''t need to care what others think of me. I only need to care about what Niko thinks. I understand now. Ohh Niko, I am your whore, and I always will be...I feel so liberated. I don''t need to care about what anyone other than Niko thinks of me. I only need to follow his lead.</font>' 
+			*nl
+			'Sonia''s smile grows even wider, "Judging by that peaceful smile, I assume that you have accepted your role. I am so proud of you. Please your man, and he will please you." Sonia gives you a kiss on the cheek then walks away, leaving you to think further.'
+			'<center><b><h4><font color=#FF00FF><<"Sonia Ivanko">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/soniahome/soniasmile.jpg"></center>'			
+			
+			act 'Continue toward the hallway':gt 'gschool_lunch', 'break'
+		end	
+	end	
+end
+
+if $ARGS[0] =  'Lunch Chat 2':
+	cls
+	if pav_sex < 230:pav_sex = 250 
+	gs 'fame'
+	NikoDate_Day = daystart
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As you enter the cafeteria Niko grabs your hand then says, "Hey <<$pcs_nickname>>, are you ready to make some more money today? We are making good progress on the money we need."'
+
+	act 'Sure':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+		'Niko leans forward, and gives you a soft kiss before saying, "You''re always making me so proud of you." You give Niko a warm smile, causing him to give you another more passionate kiss. <font color=#FF00FF>His lips are so soft, and his kiss, so passionate. He really does love me. Oh Niko, keep kissing me. Please.</font> You surrender yourself to Niko''s firm passionate kiss, for what feels like a full minute. Niko then slowly pulls away then gently grabs your hand then leads you toward the locker room.'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss3.gif"></center>'
+
+		act 'Enter locker room':	
+			cls
+			gs 'boyStat', 'A155'
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="maroon"><<"Lavrenti Romanov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/40.jpg"></center>'
+			'As you enter the locker room you see Lavrenti waiting for you. You immediately know what he wants, and you turn to Niko then ask, "Do you want me to suck his dick again?" But you say it with a smile. Niko looks at you with a surprised, but pleased look on his face, "You really seem to be getting into this, good, but no he want to fuck you this time. Don''t worry, he will pay a lot more this time. so take off your clothes." You obediently nod then remove your clothes. Lavrenti watches you undress while removing his pants then stroking his penis.' 
+			*nl
+			'After fully undressing, you walk up to Lavrenti then ask him, "How do you want me?" He points to the wall then says, "Face against the wall." You do as he says then feel his penis rubbing against your vagina, and you quickly brace yourself against the wall, as his penis rams inside of your vagina.'
+
+			act 'Let Lavrenti fuck you':
+				cls
+				gs 'clothing', 'strip'
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/mens/sex/3doggy.gif"></center>'
+				'You feel a jolt of pleasure, causing you to moan loudly, as Lavrenti continues fucking you. Lavrenti occasionally reach around, and squeezes your breast firmly, before giving your nipples an occasional pinch. After a few minutes of fucking, Lavrenti begin moaning loudly as his breath stops. <font color=#FF00FF>Oh shit! Is he about to cum inside me? What do I do? I''ll get pregnant.</font>'
+				gs 'arousal', 'vaginal', 5
+				gs'stat'	
+				
+				act 'Please don''t':
+					cls
+					gs'stat'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/4.jpg"></center>'
+					'Niko suddenly lunges forward then pulls Lavrenti off of you, as Lavrenti begins shooting his load all over your ass. Lavrenti spends a few seconds stroking his penis, trying to milk himself before Niko shouts, "What the fuck were you doing? Getting <<$pcs_firstname>> pregnant, wasn''t part of the deal!" Lavrenti quickly catches his breath before replying, "I''m sorry man. I got so lost in the moment. <<$pcs_firstname>> is fucking hot." Niko sneers at him. "I know she''s hot, but you told me earlier that you knew what you were doing, and this shit is unacceptable!"' 
+					*nl
+					'Lavrenti backs off. "Whoa take it easy, I''ll pay double the amount we agreed on, okay?" Niko calms himself as he replies, "Alright fine, let''s just not do this again, alright?" Niko wraps his arm around Lavrenti''s neck then they both begin laughing it off. Lavrenti gives Niko the money he owes him then puts his pants back on before leaving the restroom.'
+					'<center><b><h4><font color="maroon"><<"Lavrenti Romanov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/40.jpg"></center>'
+					gs 'cum_call', 'butt', $boy
+					gs 'arousal', 'vaginal', 5
+					gs'stat'	
+							
+					act 'Continue':	
+						cls
+						pav_sex += 5
+						gs 'fame'
+						gs 'boyStat', 'A189'
+						minut -= 10
+						gs'stat'
+						'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+						'After Lavrenti leaves, Niko walks up to you then gives you a passionate kiss before saying, "You did great today. We made some good money today." You reply, "Thank you for protecting me back there Niko. I always feel so safe with you." Niko begins rubbing his hands over your body as he replies, "I will always keep my girl safe. No one will hurt you while I''m around. How about we have a little fun?" You let out a moan as Niko begins rubbing your clitoris. You look Niko in the eyes then say, "I''m always ready to please you."' 
+						*nl
+						'Niko quickly pulls down his pants then pushes you against the wall where he rams his penis inside of your vagina, evoking a loud moan from you. Niko begins ramming his penis inside of your pussy, causing a gradual build of please to fill your body.'
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/Movies/Restroom/Men/scene6.jpg"></center>'
+						gs 'arousal', 'foreplay', 5
+						gs 'arousal', 'kiss', 5
+						gs 'arousal', 'vaginal', 5
+						gs'stat'	
+							
+						act 'Vaginal':	
+							cls
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape4.gif"></center>'
+							'Niko suddenly grabs your head with both hands then brings your face to his, as he asks, "<<$pcs_firstname>> who do you belong too?" Knowing what Niko wants you to say, you happily reply, "I am yours, Nikolai. I will always belong to you." Niko has a confident grin on his face, as he says, "And what''s your role?" You reply, "To please you whenever you want, and fuck anyone you desire." Niko nods his head in approval, as he begins greatly increasing his pace. You can feel your body getting so hot when you think about how sexy it is to be dominated by Niko. Niko''s breathing increases, signifying to you that he is close to cumming.'
+							gs 'arousal', 'vaginal', 5
+							gs'stat'	
+							
+							act 'Make Niko cum':	
+								cls
+								NikoEv = 16
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/anal.gif"></center>'
+								'Feeling so turned on, and blinded by the pleasure you scream out, "Cum inside me Niko! Please cum inside me!" Niko thrust one more time before shaking his head, and saying, "No!" Niko then pulls out of you and begins cumming on your ass, adding to Lavrenti''s cum on your ass. Niko catches his breath before saying, "You were amazing <<$pcs_firstname>>. So fucking hot." You give Niko a soft kiss before replying, "I''m always happy to please you Niko." Niko gives you a very pleased smile, as he responds, "I really made the right choice in choosing you. That''s for sure. I have some plans for making big money, and I would like you to meet me <font color=#FF00FF>after school</font> where we can discuss it further. Alright I should really head back now." Niko begins buttoning up his pants before leaving the room.'
+								*nl
+								'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+								gs 'cum_call', 'butt', $boy
+								gs 'arousal', 'vaginal', 5
+								gs 'arousal', 'end'
+								gs'stat'	
+							
+								act 'Return to the cafeteria':gs 'clothing', 'wear_last_worn' & gt 'gschool_lunch', 'lunch'
+							end	
+						end	
+					end	
+				end
+			end
+		end	
+	end
+	
+	act 'I can''t right now':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad1.jpg"></center>'
+		'"I''m sorry to hear that. I will try to continue finding ways, for us to earn money. I might have something, for you tomorrow." You nod then say, "Thank you for all your help. I will talk to you tomorrow." You then give Niko a kiss on the cheek then walk away.'
+
+		act 'Enter the cafeteria':gt 'gschool_lunch', 'lunch'
+	end					
+end
+
+if $ARGS[0] =  'Julia Talk':
+	cls
+	NikoEv = 17
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color=#00eaff><<"Julia Milov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/love/sad1.jpg"></center>'
+	'As you are leaving the cafeteria, you bump into Julia Milov, she quickly says, "Oh <<$pcs_firstname>>. How are you doing? I''ve been really worried about you. I asked my mother about how to stop repeated nightmares, and she gave me 2 dissolvable tablets to give you. They are designed to help ease..." You place your hand on Julia''s shoulder then say, "You don''t need to worry about me. I don''t get the nightmares anymore. I found the source of my nightmares, and faced it head on." Julia''s eyes light up,' 
+	*nl
+	'"Really? That''s great! I was really worried that it would only get worst. Please let me know, if they come back." You rub her arm gently, as you reply, "I will. Thank you Julia. You are very sweet." Julia blushes, as she says, "I''m...just happy to help." She then waves, as she walk away while looking back at you.'
+	'<center><b><h4><font color=#00eaff><<"Julia Milov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/julia/love/smile1.jpg"></center>'
+	
+	act 'Continue toward the hallway':gt 'gschool_lunch', 'break'
+end
+
+if $ARGS[0] =  'Events':
+	if dimafilm = 1 and DimaRudeBlock = 0 and NikoVsDimka = 0:
+		gt 'NikoEv', 'Dimka'
+	elseif NikoVolkovQW = 10 and NikoEv = 17:
+		gt 'NikoEv2', 'Diner 1'
+	elseif NikoVolkovQW = 10 and NikoEv = 18:
+		gt 'NikoEv2', 'Reward 2'
+	elseif NikoVolkovQW = 10 and NikoEv = 19:
+		gt 'NikoEv2', 'Diner 2'	
+	elseif NikoVolkovQW = 10 and NikoEv = 20 or NikoSlut > 0:
+		gt 'NikoEv2', 'Diner Slut'	
+	end	
+end	
+
+if $ARGS[0] =  'Diner 1':
+	cls
+	if pav_sex < 230:pav_sex = 250
+	gs 'fame'	
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile3.jpg"></center>'
+	'Niko notices you approach then gives you a warm smile, "Hello <<$pcs_firstname>>, I have been making many preparations, and I believe that we are ready to go big league with this business, so we have a very busy afternoon ahead of us. Are you ready to start really making money? I will also be giving you a cut of the profits because I wont have my girl going home empty handed after working so hard."'
+
+	act 'I''m ready':	
+		cls
+		minut += 15
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/walk1.jpg"></center>'
+		'Niko wraps his arm around your waist then guides you through the residential district, toward the highway. You both spend a few minutes, chatting about various topics on the way there. When you arrive at the highway, Niko leads you toward a diner with many trucks, and motorcycles parked outside. You both enter the diner, and see a bunch of truckers, and bikers; eating lunch.' 
+		*nl
+		'Niko approaches one of the bikers sitting in the corner, and says to the biker, "Riding a bike all day must be tough work, I bet you could use some relief, right about now." The biker stares at Niko with a very angry look on his face. "You''re cruising for a bruising kid." Niko looks puzzled. "So you aren''t interested?"'
+		*nl		
+		'the biker responds, "Of course I''m not interested because I''m not a fucking faggot!" Niko pauses for a second then bursts into laughter. "Oh  no. i didn''t mean....I meant my girl here, will take care of you...for a price of course." The biker chuckles for a few seconds before responding. "I see now. I thought you were hitting on me, kid. You''re lucky you weren''t, but let me take a look at her."'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/npc/1.jpg"></center>'
+		
+		act 'Let the biker examine you':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/npc/1.jpg"></center>'
+			'You step forward then wait to see what the biker will do. The biker begins looking you up and down then asks Niko, "Can I touch her a bit? I just want to make sure that she isn''t hiding anything down there." The biker points toward your vagina. Niko chuckles, "Fine, make it quick." The biker begins rubbing on your vagina, for a few seconds before saying, "I''m interested. How much?" Niko responds, "2000 <b>₽</b>" the biker scratches his beard, as he replies, "She better be real good, for that price."' 
+			*nl
+			'Niko replies, "She certainly is." the biker responds, "So you say, but what guarantee do I have that you are telling the truth? She could be a breathing blow up doll, for all I know." Niko responds, "How about this, For this time only, you can use her now then pay me afterward? Doesn''t that sound fair?" The biker nods, "You have yourself a deal. Come on girl, we''re doing this in the bathroom." The man grabs you by your arm then leads you to the restroom, where he takes off his pants then points to his dick, as he says, "Alright girl, get to work."'
+			
+			act 'Suck his dick':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/1/bj1.jpg"></center>'
+				'You walk in front of him before dropping to your knees then wrapping your lips around his dick. You begin licking, and sucking his dick, doing your best to please him. The man begins moaning loudly. <font color=#FF00FF>This man is enjoying this so much. It must have been a long time, if ever, that this man has received a woman''s touch. I may even be his first. I must do my best to make this his best day ever. He will remember me forever.</font> You increase the pace while seeing him fidgeting. After a few more seconds, the man says, "Oh fuck girrrrrl!" The man then begins squirming, as he sprays his load into your mouth, you look up at the biker, and see an adoring look on his face, as he looks down at you.' 
+				*nl
+				'You give him a friendly smile, as the cum leaks from your mouth. The biker says, "You are an amazing girl. You were definitely worth every ruble." You give the tip of the mans penis a kiss before he buttons his pants then gives you a wink before leaving the restroom. You wait for him to leave before spitting out the cum into the sink then shortly follow him out of the restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/1/bjcum1.jpg"></center>'
+				gs 'cum_call', 'face'
+				gs 'arousal', 'bj', 5
+				gs 'arousal', 'end'
+				gs'stat'	
+							
+				act 'Leave the restroom':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/npc/1.jpg"></center>'
+					'You see the biker shake hands with Niko then give him the money. Niko counts the money then gives the biker an approving nod before the biker takes his seat again. Niko turns to you, and says, "Good job <<$pcs_nickname>>. We are making some good progre..." A nearby trucker begins examining your face before shouting out, "Is that what I think it is? Hey guys look at this girl. She is walking around with cum leaking off of my face!" You freeze in place. <font color=#FF00FF>Oh shit! I forgot to wash up. How did I forget that? I''m walking around with cum leaking off my chin. How could I forget?</font> the truckers, and bikers in the room surround you then begin talking to each other.'
+					*nl
+					'<center><img <<$set_imgh>> src="images/pc/body/cum/cumface/blonde/15.jpg"></center>'
+					
+					act 'Listen to them':	
+						cls
+						exhibition_exp += 2
+						minut += 5
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/pc/body/cum/cumface/blonde/15.jpg"></center>'
+						'Biker1: Wow she walks around like that?'
+						'Biker2: Well she is obviously a slut looking for customers.'
+						'Trucker1: A slut huh? I wouldn''t mind trying out her services.'
+						'Biker3: I wonder how much she''s chargin''?'
+						*nl
+						'Niko chuckles, as he replies, "She is my girl, and it will be 2000 <b>₽</b>, per customer." All of the truckers, and bikers begin lining up in front of Niko giving him money, before approaching you. <font color=#FF00FF>Am I about to have sex with all these men? How can I satisfy that many men? I don''t know if I can even handle that.</font> The men begin undressing you, as they roughly finger your holes. You close your eyes, as one of the men pushes you down on your knees, as another shoves his dick into your mouth.'
+						
+						act 'Suck their dicks':	
+							cls
+							gs 'clothing', 'strip'
+							exhibition_exp += 2
+							minut -= 10
+							gs'stat'
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/1.jpg"></center>'
+							'You begin obediently sucking the man''s dick, knowing that it is too late to go back now. You close your eyes and try to focus on how warm the man''s dick is in your mouth when the man suddenly groans, and pulls out of your mouth then covers your face in his cum. Another man quickly takes his place, as the man behind you grabs your head then pulls it toward his dick which you immediately wrap your lips around, sucking eagerly, know that the sooner they cum, the sooner you can leave. The men begin talking to each other.'
+							*nl
+							'Trucker1: This girl is smokin'' hot. I hope she comes around here more often.'
+							'Waiter: Oh she can cum around here as much, as she wants.'
+							'The guys begin laughing as the man who''s dick you are sucking groans, giving you barely enough time to pull his penis out of your mouth where it covers your face with his warm cum. You feel the man''s cum dripping down your face, as another biker approaches you then takes a close look at you before saying, "I''m not sticking my dick in her cum covered mouth." He then lifts you up, and places you down on a nearby stool.'
+							*nl
+							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/2.jpg"></center>'
+							gs 'cum_call', 'face'
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'bj', 5
+							gs 'arousal', 'bj', 5
+							gs'stat'							
+							gs 'arousal', 'end'
+							gs'stat'	
+								
+							act 'Vaginal':	
+								cls
+								exhibition_exp += 2
+								minut += 5
+								gs'stat'
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/3.jpg"></center>'
+								'The men begin holding your legs open, as another lines his penis with your vagina. You suddenly feel the man shove his penis inside of your vagina, causing a jolt of pleasure to fill your body, and evoking a loud moan from you.'
+								'Biker1: This whore really likes her pussy fucked.'
+								'Trucker: I bet she has been waiting to get fucked all day.'
+								*nl
+								if sexcontra >= 3 or protect >= 2:
+									'You close your eyes, and only focus on the pleasure building up inside you. The man fucking you, suddenly groans, and you can feel his warm seed filling the condom inside you. The man continues thrusting, trying to milk himself dry inside of you. Another trucker approaches you then says "Looks like that hole is all used up. I guess I will have to take this one." The man rubs his dick against your anus.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum61.jpg"></center>'
+								else	
+									'You close your eyes, and only focus on the pleasure building up inside you. The man fucking you, suddenly groans, and you can feel his warm seed filling your pussy. The man continues thrusting inside you, trying to milk himself dry inside of you. Another trucker approaches you then says "Looks like that hole is all used up. I guess I will have to take this one." The man rubs his dick against your anus.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum5.gif"></center>'
+								end	
+								gs 'cum_call'
+								gs 'arousal', 'vaginal', 5
+								gs 'arousal', 'end'
+								gs'stat'								
+							
+								act 'Anal':	
+									cls
+									exhibition_exp += 2
+									minut -= 5
+									gs'stat'
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/4.jpg"></center>'
+									'The man suddenly shoves his dick into your ass, causing a surge of pain to fill your ass. You scream out in pain, as Niko shouts, "Hey take it easy! She is not a fucking blow up doll!" The man nods then gives your ass a few seconds to adjust to his dick before casually fucking it. <font color=#FF00FF>That man was so rough, but Niko...My Niko protected me like he said he would.</font> As the man continues fucking your ass, another man grabs your head then turns it to face a third man''s dick which you immediately wrap your lips around before licking, and sucking it eagerly. The pain in your ass fades, as pleasure takes it''s place. You close your eyes, and submit to the pleasure when another man approaches you.'
+									*nl
+									'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/5.jpg"></center>'
+									gs 'arousal', 'bj', 5
+									gs 'arousal', 'anal', 5
+									gs'stat'									
+								
+									act 'Both holes':	
+										cls
+										exhibition_exp += 2
+										minut -= 5
+										gs'stat'
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/6.jpg"></center>'
+										if sexcontra >= 3 or protect >= 2:
+											'The man shoves his dick into your vagina at the same time that the man fucking your ass cums, filling your the condom with his warm seed. Shortly after the man leaves, another takes his place, fucking your ass, so now you have both of your holes being fucked simultaneously. You moan loudly, fully submitting to the pleasure of the men''s big hard dicks, fucking both of your holes. As you are moaning another man shoves his dick in your mouth, almost gagging you.'
+										else
+											'The man shoves his dick into your vagina at the same time that the man fucking your ass cums, filling your ass with his warm seed. Shortly after the man leaves, another takes his place, fucking your ass, so now you have both of your holes being fucked simultaneously. You moan loudly, fully submitting to the pleasure of the men''s big hard dicks, fucking both of your holes. As you are moaning another man shoves his dick in your mouth, almost gagging you.'
+										end	
+										*nl
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/7.jpg"></center>'
+										gs 'cum_call', 'anus'
+										gs 'arousal', 'bj', 5
+										gs 'arousal', 'anal', 5
+										gs 'arousal', 'vaginal', 5
+										gs 'arousal', 'end'
+										gs 'stat'
+										
+										act 'Suck his dick':	
+											cls
+											pav_sex += 30
+											pav_prostitute += 60											
+											exhibition_exp += 2
+											gs 'fame'
+											NikoEv = 18
+											minut -= 5
+											gs'stat'
+											'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/gang/7.jpg"></center>'
+											if sexcontra >= 3 or protect >= 2:
+												'Completely entranced in the pleasure, you firmly suck on the man''s dick, wanting only to give the men the same pleasure that they are giving you. The men start breathing heavily, for a few seconds before groaning almost simultaneously, filling their condoms at the same time. You keep your eyes closed while only focusing on the condom simultaneously filling up inside you. The men milk their cocks, for a few seconds before sitting back in their seats.' 
+												*nl
+												'You look around to see who is next when you notice that everyone is sitting down, chatting with each other, as if nothing had happened. Niko helps you onto your feet then says, "You did amazing today! I am so proud of you. Get washed up then I will take you home, but don''t worry. I will give you a nice reward tomorrow." You meekly nod, as Niko walks you to the bathroom.'
+											else
+												'Completely entranced in the pleasure, you firmly suck on the man''s dick, wanting only to give the men the same pleasure that they are giving you. The men start breathing heavily, for a few seconds before groaning almost simultaneously, filling your body from all sides with the big strong bikers and truckers cum. You keep your eyes closed while only focusing on their warm cum filling your entire body. The men milk their cocks inside you, for a few seconds before sitting back in their seats.' 
+												*nl
+												'You look around to see who is next when you notice that everyone is sitting down, chatting with each other, as if nothing had happened. Niko helps you onto your feet then says, "You did amazing today! I am so proud of you. Get washed up then I will take you home, but don''t worry. I will give you a nice reward tomorrow." You meekly nod, as Niko walks you to the bathroom.'
+											end	
+											*nl
+											'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/gang/cum/cum2.jpg"></center>'
+											gs 'cum_call', 'face'
+											gs 'arousal', 'bj', 5
+											gs 'cum_call', 'anus'
+											gs 'arousal', 'anal', 5
+											gs 'cum_call'
+											gs 'arousal', 'vaginal', 5
+											gs 'arousal', 'end'
+											gs'stat'											
+								
+											act 'Wash up in the restroom':gs 'clothing', 'wear_last_worn' & gt 'NikoEv2', 'Diner Washup'
+										end
+									end
+								end	
+							end	
+						end	
+					end	
+				end	
+			end
+		end	
+	end
+	
+	act 'I can''t go right now':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"That sounds great, but I really need to be somewhere very soon." Niko shrugs, as he replies "Oh well. I guess it could wait, for another day. Visit me here when you are ready." You wave at Niko, and he returns the wave, as you walk away.'
+		
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'Diner Washup':
+	cls	
+	minut += 10
+	pcs_hairbsh = 0
+	pcs_makeup = 1	
+	cumspclnt = 1
+	gs 'cum_cleanup'
+	if pcs_sweat < 30:
+		pcs_sweat = 15 + rand(0,4)
+	else
+		pcs_sweat -= 10 + rand(0,4)
+	end		
+	gs'stat'
+	'<center><h4><font color="blue">Bathroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
+	'You grab a few paper towels then approach the sink to clean yourself, as thoroughly, as possible while taking a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed, as you finish up, and walk away from the sink.'
+	
+	act 'Dry off':gt 'NikoEv2', 'Diner Exit'
+end	
+
+if $ARGS[0] =  'Diner Exit':
+	cls
+	minut += 15
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/payment.jpg"></center>'
+	'You walk out of the diner to find Niko waiting for you. "You did great today <<$pcs_nickname>>. I am so proud of you. Here is your share of the profits." Niko hands you 2400 <b>₽</b> You look up to Niko then say, "I thought that you would give me half. There were at least six men in there." Niko places his hand on your shoulder with a sympathetic look on his face. "I wanted to split it half way, but it would take us too long to pay up on that dept. You don''t want your reputation to remain this way, do you?" You lower your head, as you reply. "I don''t..I''m sorry. I was just being greedy."' 
+	*nl
+	'Niko wraps his arm around your neck then replies, "No need to apologize. I will always look after you. I love you <<$pcs_firstname>>." You look up to him with a wide smile then kiss him passionately for a minute. Niko then takes you home while chatting with you the whole way there.'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss2.gif"></center>'
+	
+	act 'Enter apartment':gt 'korrPar'
+end
+
+if $ARGS[0] =  'Reward 2':
+	cls
+	gs 'boyStat', 'A189'
+	if pav_sex < 230:pav_sex = 250 
+	gs 'fame'
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/kiss.jpg"></center>'
+	'As you approach Niko, he throws his cigarette to the ground then wraps his arm around your lower back, and pulls you toward him before giving you a very passionate kiss. You eagerly begin massaging his tongue with your, in a long passionate kiss that lasts for a full minute before Niko slowly pulls away then says, "I''ve been thinking about you all day, and am ready to reward you for all your hard work." Niko then begins leading you to his house.'
+
+	act 'Niko''s house':	
+		cls
+		minut += 10
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss3.gif"></center>'
+		'As soon, as you enter Niko''s house he pulls you toward him then gives you another passionate kiss, as he begins undressing you. <font color=#FF00FF>Oh his kisses are so passionate. He wants me so bad. I want him too. Please take me Nikolai. Take me!</font> Niko finishes undressing you then begins removing his clothes, as you help him undress. Niko pulls you to the bedroom then pushes you onto the bed.'		
+
+		act 'Lay back':	
+			cls
+			gs 'clothing', 'strip'
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cuni.gif"></center>'		
+			'Niko spreads your legs then begin licking your vagina gently, but firmly. You lay back, enjoying Niko''s soft tongue on your clitoris. You look down to Niko then say, "Your tongue is so soft. Please keep doing that." Niko gives you a wink as he continues gently but firmly, licking on your clitoris, causing the pleasure inside of you to build up quickly. After a few minutes, you feel the pleasure building up to it''s climax when your body suddenly erupts into pleasure, causing your muscles to tighten up, as you spasm, unable to focus on anything, but the pleasure filling you. You let out a scream, as you reach the end of your climax. You take a few seconds to catch your breath before looking up to Niko with a loving smile on his face.'
+			$orgasm_or = 'yes'
+			gs 'arousal', 'cuni', 5
+			gs'stat'	
+										
+			act 'Suck Niko''s dick':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/lick1.gif"></center>'
+				'You raise to your knees, and crawl up to Niko then lightly grip the shaft of his penis then lick up the shaft to the top where you gently kiss the tip of Niko''s penis while staring into his eyes to let him know how much he mean to you. Niko places his hand on your face, "You are so beautiful <<$pcs_firstname>>, the perfect girl." You can feel your heart beating faster, as Niko''s loving words warm your rapidly beating heart.' 
+				'You begin sucking on Niko''s dick. <font color=#FF00FF>Oh Niko you are so perfect. I only want to please you. To see you happy. To give you the bliss that you give me. I love you Nikolai.</font> Niko tilts his head back, as he lets out a light moan before looking down to you then saying, "<<$pcs_nickname>> come here." He beckons you to come closer.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/bj.gif"></center>'
+				gs 'arousal', 'bj', 5
+				gs'stat'	
+										
+				act 'Ride Niko':	
+					cls
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss2.gif"></center>'
+					'You crawl up to Niko''s face then give him a passionate kiss, as you grab onto his penis, and guide it inside of your vagina. You begin thrusting yourself on top of Niko''s dick, pushing it deeper inside you. Niko suddenly grabs onto your back then kisses you more firmly while pushing himself deeper inside you. After a few seconds, Niko ends the kiss to catch his breath, and you take this time to look him in the eyes, as you say, "I love you Nikolai. I love you with all my heart, and every fiber of my being."' 
+					*nl
+					'Niko has a guilty look on his face, as he says, "I love you too <<$pcs_firstname>>. You a very precious to me." You continue staring into Niko''s eyes, as he continues thrusting his penis inside of you. Niko''s grunts, as he says, "I have to pull out now."'
+					*nl
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/home/cowgirlkiss.gif"></center>'
+					gs 'arousal', 'vaginal', 5
+					gs'stat'	
+										
+					act 'Suck the cum out of Niko''s dick':	
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow8.gif"></center>'
+						'You quickly pull off of Niko then wrap your lips around his dick, and begin sucking. Niko tilts his head back then begins cumming in your mouth, as you do your best to suck every drop out of Niko''s dick. Niko''s warm seed fills your mouth, as you continue swallowing, and sucking his dick dry. After Niko is fully spent then he gently grabs your face then brings it to his, giving you a gentle kiss on the lips before saying, "I am so lucky to have such a beautiful and obedient girl like you." You reply, "I feel so lucky to have you in my life too, Nikolai." Niko rubs on your forehead then gets up, and heads to the bathroom to get washed up.'
+						gs 'cum_call', 'mouth', $boy 
+						gs 'arousal', 'bj', 5
+						gs 'arousal', 'end'
+						gs'stat'	
+										
+						act 'Get dressed':gs 'clothing', 'wear_last_worn' & gt 'VolkovHome', 'Niko Bedroom'
+					end
+				end
+			end	
+		end	
+	end
+end
+
+if $ARGS[0] =  'Yurik BJ':
+	cls
+	gs 'boyStat', 'A190'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="blue"><<"Yurik Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/home/livingroom.jpg"></center>'
+	'As you reach the bottom of the stairs, you suddenly hear "Hey girl." You turn to see Yurik sitting in the living room in front of the TV. He motions you to come toward him, so you comply, and Yurik says, "Suck my dick." Yurik then points to his crotch. You meekly nod your head, knowing what could happen if you dare to disobey him. You walk up in front of him then unbutton his pants, pulling out his gaint penis then wrapping your lips around it.'
+	
+	act 'Suck Yurik''s dick':
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/bj/bj1.gif"></center>'	
+		'You begin sucking Yurik''s massive dick, trying your best to fit, as much of it in your mouth, as you can. Yurik continues watching the TV, as if you weren''t even there. <font color=#FF00FF>Am I not doing a good enough job. Why isn''t he enjoying this? I must try harder.</font> You begin licking his penis rapidly, trying to get a response from him. You pull his dick out of your mouth, and begin licking the tip of it which causes him to grunt, and look down to you.'
+		gs 'arousal', 'bj', 5
+		gs'stat'	
+						
+		act 'Continue':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/abuse/slap1.gif"></center>'	
+			'Yurik suddenly give you a firm, but not very powerful slap, as he says, "Hey don''t go fucking around down there. I told you to suck, not play with my dick, so get back to sucking." You meekly nod then continue sucking his dick. After a few seconds, Yurik looks down to you, and says, "You don''t need to worry girl. You''re doing good." You suddenly feel a lot more confident, knowing that he actually does enjoy what you are doing for him. After a few seconds, you can hear Yurik breathing loudly then he begins rubbing on your head.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/sex/bj/bj1.gif"></center>'	
+			gs 'arousal', 'bj', 5
+			gs'stat'	
+						
+			act 'Make Yurik cum':
+				cls
+				minut += 5
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/sex/bj2.gif"></center>'	
+				'You quicken your pace then suddenly Yurik groans, as he begins pumping your mouth full of his warm cum which you do your best to swallow every drop of. After Yurik is spent, he says to you, "I''m done girl. You can go back to Niko now." You get up then start walking away when you hear Yurik say, "And good job girl." You walk back up the stairs with a smile on your face.'
+				gs 'cum_call', 'mouth', $boy 
+				gs 'arousal', 'bj', 5
+				gs 'arousal', 'end'
+				gs'stat'	
+						
+				act 'Head back upstairs':
+					cls
+					minut += 15
+					NikoEv = 19
+					gs'stat'
+					'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile1.jpg"></center>'
+					'As you reach the top of the stairs, you see Niko walk out of the bathroom. Niko gives you a smile, as he says, "Are you ready to head home. I''m ready to walk you home whenever you are ready." You return the smile, as you nod. Niko then takes your hand then walks you out of the house, toward your apartment. When you reach your apartment Niko says,  "I had a wonderful time with you today. It is fun to sometimes relax, and enjoy each other''s company isn''t it?" You nod happily, as you reply, "I always enjoy being with you." Niko chuckles before responding, "You are just too sweet, anyway have a good night." Niko leans forward then gives you a kiss on the cheek before turning around, and walking away.'
+					
+					act 'Enter apartment':gt 'KorrPar'	
+				end	
+			end	
+		end	
+	end	
+end
+
+if $ARGS[0] =  'Diner 2':
+	cls
+	if pav_sex < 230:pav_sex = 250 
+	gs 'fame'
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As soon as Niko notices you, he tosses his cigarette aside then says, "Hey <<$pcs_nickname>>, are you ready to make some money?"'
+
+	act 'Sure':	
+		cls
+		minut += 15
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/walk1.jpg"></center>'
+		'Niko says, "Excellent, today we a going back to the diner to make a lot of money. We are making great progress, and I would like us to keep it up." You give Niko a nervous smile then he places his hands on your cheeks. "Don''t worry <<$pcs_nickname>>, I will make sure that the customer only go one, or two at a time. No more group activities, unless you are cool with it." You give Niko a grateful nod, as he takes your hand then leads you toward the diner while you both chat about various topic on the way.'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/exterior1.jpg"></center>'
+
+		act 'Enter diner':	
+			cls
+			NikoDiner = rand(2,3)
+			NikoSlut = 2
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/patrons.jpg"></center>'
+			'As soon as you both enter the diner, all of the patrons turn to you then start happily greeting you.'
+			'Biker1: "Hey girl, glad to see you back."'
+			'Trucker1: "You''re lookin'' good girl."'
+			'Trucker2: "I wish my wife looked as good, as you."'
+			'Trucker3: "Is that the girl you were talking about? The slu...." another guy shoves him in the ribs before whispering, "Watch what you say. We don''t want her to leave."'
+			*nl
+			'You can feel your cheeks growing red, as you respond to all of the attention. "Thank you all for welcoming me back. I''m...glad to be back." Niko then nods, and says, "I agree. It is good to be back. If anyone will like to spend some time with my girl here then let me know what you want, and I will set it up." Niko guides you to the corner of the room then sits down with you, as a few men line up nearby, one of them asks you. "What is your name girl?"'
+
+			act 'Give them your real name':	
+				cls
+				$NikoSlutName = $pcs_firstname
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+				*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+				'You tell them, "My name is <<$pcs_firstname>>. It''s nice to meet you." The man says, "<<$pcs_firstname>> is a very cute name, it really suits you." You give the men a friendly smile, as one of them approaches Niko.'
+				
+				act 'Continue':gt 'NikoSlut', 'Customer 1'
+			end	
+				
+			act 'Choose name':	
+				cls
+				$NikoSlutName = input ("What should the patrons call you?")
+				if $NikoSlutName = '':$NikoSlutName = 'Violet'
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color=#ff00cc><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
+				*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
+				'You tell them, "My name is <<$NikoSlutName>>. It''s nice to meet you." The man says, "<<$NikoSlutName>> huh? That is is a pretty name." You give the men a friendly smile, as one of them approaches Niko.'
+
+				act 'Continue':gt 'NikoSlut', 'Customer 1'
+			end
+		end	
+	end
+	
+	act 'I can''t go right now':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"That sounds great, but I really need to be somewhere very soon." Niko shrugs, as he replies "Oh well. I guess it could wait for another day. Visit me here when you are ready." You wave at Niko, and he returns the wave, as you walk away.'
+		
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end
+end
+
+if $ARGS[0] =  'Diner Exit 2':
+	cls
+	VKLenaBully = 1
+	if NikoSlut < 3:money += NikoProfit * 400
+	NikoSlut = 1
+	NikoEv = 20
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss1.gif"></center>'
+	'As you and Niko leave the diner Niko grabs onto your hand then spins you around before giving you a passionate kiss. You close your eyes and enjoy the caress of Niko''s tongue massaging yours. Niko slowly pulls away then says, "You have been doing an outstanding job. I am so proud of you. If we continue doing this everyday then we will have the money to fix your reputation in no time. Speaking of money, here is your share of the profits." Niko hands you your cut of the profits before wrapping his arm around your neck then begins walking you home while chatting with you about some of his music groups. As you both pass by the park you can''t help but feel like you, and Niko are not alone. You glance over your shoulder, and notice that two people following you...'
+
+	act 'Take a closer look':
+		cls
+		NikoProfit = 0
+		minut += 10
+		gs'stat'
+		'<center><b><h4><font color=#E600FB><<"Lera Tsarev & Lena Kotov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/bully/park/1.jpg"></center>'
+		'You look back and recognize the ones following you, as Lena Kotov, and Lera Tsarev. They simply stare at you while occasionally whispering to each other. They don''t seem to care that you notice them, and occasionally give you lude gestures while continuing to follow you home. You try to ignore them, as you continue your conversation with Niko. Once you arrive at your apartment, Niko grabs onto your shoulder then flips you around before giving you a very passionate kiss. Afterward Niko whispers in your ear, "I love you <<$pcs_firstname>>. Never forget it." You can feel your face growing flushed, as you reply, "I love you too Nikolai. I love you with all my heart." You then give him another passionate kiss before backing into your apartment.'	
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/endkiss.gif"></center>'
+		
+		act 'Enter apartment':gt 'korrPar'
+	end	
+end
+
+if $ARGS[0] =  'Diner Slut':
+	cls
+	if YurikRep = 0 and pav_sex < 230:pav_sex = 250 & gs 'fame'
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+	'As soon as Niko notices you, he tosses his cigarette aside then says, "Hey <<$pcs_nickname>>, are you ready to make some money?"'
+	
+	act 'Sure':
+		cls
+		NikoDiner = rand(2,3)
+		NikoSlut = 2
+		minut += 5
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/park/walk1.jpg"></center>'		
+		'Niko says, "You''re always making me so proud. Let''s get going." Niko then takes your hand, and leads you toward the diner while you both chat about various topic on the way.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/diner/exterior1.jpg"></center>'
+
+		act 'Walk to Diner':
+			cls
+			alko += 1
+			NikoDiner = rand(2,3)
+			NikoSlut = 2
+			minut += 10
+			gs'stat'
+			'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/drink.jpg"></center>'
+			'You both arrive at the diner, and Niko takes a seat then offers you one. Niko orders a few drinks, as you both make yourself comfortable. You and Niko spend the next few minutes chatting while you wait for customers to arrive.'
+			
+			act 'Wait for customers':gt 'NikoSlut', 'Customers'
+		end	
+	end
+
+	act 'I can''t go right now':	
+		cls
+		minut += 5
+		gs'stat'
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/avatars/<<week>>.jpg"></center>'
+		'"That sounds great, but I really need to be somewhere very soon." Niko shrugs, as he replies "Well you got to do, what you got to do. Feel free to visit me here when you feel ready to make some cash." You wave at Niko, and he returns the wave, as you walk away.'
+		
+		act 'Walk away':gt 'gschool_grounds', 'main'
+	end	
+end	
+
+--- NikoEv2 ---------------------------------
+

+ 734 - 0
locations/NikoPayback

@@ -0,0 +1,734 @@
+# NikoPayback
+
+if $ARGS[0] = 'Payback':
+	cls
+	NikoPayback_Day = daystart
+	NikoPayback = 2
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/grab.jpg"></center>'
+	'As you are walking toward the hallway, you feel hands covering your mouth then you feel your ribs being struck, causing you to recoil in pain, as you are dragged into the nearby bathroom.'
+
+	act 'Continue':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/men/scene.jpg"></center>'
+		if NikoVolkovQW = -1:
+			'As soon as you reach the bathroom, you feel your shirt being pulled up, as someone whispers in your ear, "You think that you can just dump me after all I''ve done for you? Well you are so fucking wrong! You will be my bitch, whether you like it or not." You recognize Niko''s voice, as he continues stripping you.'	
+		else
+			'As soon as you reach the bathroom, you feel your shirt being pulled up, as someone whispers in your ear, "You have been running your fucking mouth, for far too long, and now I have a few other uses for it. You will now be my bitch, whether you like it or not." You recognize Niko''s voice, as he continues stripping you.'
+		end		
+		*nl
+		'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+
+		act 'Plead':	
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+			if NikoVolkovQW = -1:
+				'"Please stop Niko, I''m so sorry for breaking up with you. I was just really upset, and didn''t give you a chance. Please forgive me." Niko scuffs then replies, "Don''t give me that bullshit! you don''t give a shit about me, but you will pay me back. From now on you will either pay me 200 <b>₽</b> everyday, or I will be using your body, as payment. Do you understand bitch?"'
+			else	
+				'"Please stop Niko, I''m so sorry for insulting you. I don''t know what came over me. and never gave you a chance. Please forgive me." Niko scuffs then replies, "Don''t give me that bullshit! your not fucking sorry, but you will be. From now on you will either pay me 200 <b>₽</b> everyday, or I will be using your body, as payment. Do you understand bitch?"'
+			end	
+
+			act 'I understand':	
+				cls
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+				'Niko nods, "Good, that''s what I like to hear, so what''s it gonna be today? Money, or that pretty mouth of yours?"'
+				
+				if money >= 200:
+					act 'Money (200 <b>₽</b>)':	
+						cls
+						money -= 200
+						minut += 5
+						gs'stat'
+						'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+						'You hand Niko 200 <b>₽</b>, and Niko counts it before giving you a approving nod, "Excellent, See you tomorrow <<$pcs_nickname>>, and don''t try to avoid me, or things will end badly, for you." Niko puts the money in his pocket then walks away. You take a minute to get dressed then try to regain your composure before leaving the restroom.'
+
+						act 'Go to class':gt 'gschool_lunch', 'break'
+					end
+				end
+				
+				act 'Sex (Blowjob)':	
+					cls
+					minut += 5
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/bj1.gif"></center>'
+					'You lower your head, as you slowly drop to your knees in front of Niko, he gives you a confident grin, as he begins unbuttoning his pants. You soon feel Niko''s penis rubbing against your lips, so you take a deep breath then wrap your lips around it, sucking it intently trying to make Niko cum, as quicly, as possible. Niko leans back while griping your head with one hand.'
+
+					act 'Make Niko cum':	
+						cls
+						gs'stat'
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/bj2.gif"></center>'
+						'You increase your pace as you look up at Niko, noticing how much he is enjoying your performance. You stare him in the eyes, as you hear him begin groaning. You suddenly feel Niko''s warm seed filling your mouth, one squirt at a time. You look up to Niko with his cum slowly leaking out of your mouth, Niko then looks down to you, and says, "What are you waiting for? Swallow my cum bitch!" You give Niko a meek nod then begin swallowing his cum, and after you finish, Niko pulls your head to the ground and says, "You missed a few drops, Lick it off the floor!" not wanting to anger Niko further, you obediently begin licking the last drops of cum off the floor. "Now that''s better, I''ll see you tomorrow. Remember what I said, and don''t ever try to avoid me."'	
+						*nl
+						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/facial1.gif"></center>'
+						
+						act 'Stand up':gt 'FedorMisc', 'Restroom'
+					end	
+				end				
+			end
+		end	
+	end
+end
+
+if $ARGS[0] =  'Payback 2':
+	cls
+	NikoPayback_Day = daystart
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+	'You walk out of the cafeteria, and see Niko standing in the hallway on his phone.'
+	
+	act 'Approach Niko':	
+		cls
+		npc_rel['A189'] += rand(1,5)
+		gs'stat'
+		'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+		'You approach Niko, and a confident grin covers his face, as he says, "You showed up? Good. How will you be paying today?"'		
+
+		if money >= 200:
+			act 'Money (200 <b>₽</b>)':	
+				cls
+				NikoPayed = daystart
+				money -= 200
+				minut += 5
+				gs'stat'
+				'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+				'"I have your money right here." You extend your hand, giving Niko (200 <b>₽</b>). Niko quickly counts it then gives you an approving nod, "it''s all here. Good, you''re all payed up for today, you can get going now."'
+
+				act 'Walk away':gt 'gschool_lunch', 'break'
+			end
+		end	
+		
+		act 'Sex':	
+			cls
+			NikoPayed = daystart
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile'+rand(2,3)+'.jpg"></center>'
+			'You downcast your eyes, as you reply, "You can use my body, as payment." Niko''s eyes light up, "I was hoping you''d say that. Let''s not waste time." Niko grabs your ass firmly while leading you to the less used restroom.'
+			
+			act 'Head to the restroom with Niko':gt 'NikoPayback', 'Payback 3'
+		end
+	end	
+	
+	act 'Try to avoid Niko':
+		VK = rand(1,3)
+		if VK = 1:
+			cls
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/gschool_hall01.jpg"></center>'
+			'You lower your head then quickly walk past Niko, hoping that he wont notice you, and to your relief, he doesn''t seem to notice. You let out a sigh of relief before heading to the hallway,'
+
+			act 'Continue':gt 'gschool_lunch', 'break'
+		else
+			cls
+			npc_rel['A189'] -= 5
+			minut += 5
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/grab.jpg"></center>'
+			'You lower your head then quickly walk past Niko, hoping that he wont notice you. After a few steps, you suddenly feel Niko''s hand on your throat, choking you firmly, as he whispers in your ear, "You wouldn''t be trying to avoid me, would you?" You meekly shake your head, trying to speak, but unable breath freely within Niko''s steel grip, Niko then pulls you into the restroom.'
+
+			act 'Continue':gt 'NikoPayback', 'Payback 4'			
+		end	
+	end
+end
+
+if $ARGS[0] =  'Payback 3':
+	cls
+	NikoPayback_Sex = daystart
+	gs 'boyStat', 'A189'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+	'After you enter the restroom, Niko smacks your ass then says, "Since you came here without any fuzz, I will let you choose how I fuck you today, so what will it be?"'
+			
+	act 'Blowjob':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/bj1.gif"></center>'
+		'You drop down to your knees then begin unbuttoning Niko''s pants. Niko looks down at you with a confident grin, as you finish pulling down his pants. Niko rubs his dick against your lips, signaling you to suck on it. You wrap your lips around Niko''s dick then begin licking and sucking it firmly, not wanting to anger him. Niko then looks down at you and says, "Good girl. Keep it up." You continue sucking Niko''s dick at a moderate pace, not wanting to overdo it.'
+		gs 'arousal', 'bj', 5, 'sub'					
+		gs 'stat'	
+									
+		act 'Continue sucking':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/bj2.gif"></center>'
+			'After a few more seconds, Niko begins moaning, as he runs his fingers through your hair before grabbing your head with both hands, and pushes his penis down your throat, as he begin spraying his warm seed down your throat. You try your best not to gag, as Niko continues to pump his warm cum down your throat while you swallow every drop of it. After Niko finishes, he looks down to you then says, "You are really good at that. I will see you again soon. Niko buttons his pants then walks out of the restroom."'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow8.gif"></center>'			
+			gs 'cum_call', 'face', $boy
+			gs 'arousal', 'bj', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'	
+		
+			if NikoDiscoPay = 1:
+				act 'Finish':NikoDiscoPay = 0 & gt 'gdkin'
+			else				
+				act 'Finish':gt 'gschool_lunch', 'break'
+			end	
+		end
+	end
+	
+	if pcs_vag = 0:
+		act 'Vaginal [<font color=#FF00FF>Lose Virginity</font>]':
+			cls
+			gs'stat'
+			'You downcast your eyes as you tell Niko. "I''m a virgin but I don''t want to be one anymore." Niko recoils in shock before responding, "Wow you are? I guess I can help you with that. Thanks for offering." Niko then gently guides you toward the sink then undresses you from the waist down before unbuttoning his pants, and pressing his dick against you vagina. Niko whispers in your ear, "I will take this slow for you ok?" You gratefully nod as Niko slowly pushes his penis inside of your vagina, causing your hymen to stretch for his dick, and after a few seconds, you feel your hymen give. You can feel a slight pain in your vagina, as your hymen breaks, and is soon increase slightly when Niko thrusts his hips, pushing his penis deeper inside you, and fucking you at a moderate rate.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/virgin.gif"></center>'
+			gs 'arousal', 'vaginal', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'	
+			
+			act 'Continue':
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/voyvag.gif"></center>'
+				'After a minute, all the pain fades and is replaced by pleasure. You try you best to give in to the pleasure. <font color=#FF00FF>Ohh this feel so good. I never thought that I would lose my virginity like this but I feel great. Niko may be an asshole but his dick feels so good inside me.</font> Niko begins fucking you harder before quickly pulling out of you then groaning, as he begin milking his penis over your ass. Squirt by squirt, Niko''s cum covers your asscheeks. Niko takes a few seconds to catch his breath before saying, "You were great <<$pcs_firstname>>, I can''t wait to fuck you again." Niko then buttons his pants before leaving the restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'			
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5, 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'	
+				
+				if NikoDiscoPay = 1:
+					act 'Finish':NikoDiscoPay = 0 & gt 'gdkin'
+				else				
+					act 'Finish':gt 'gschool_lunch', 'break'
+				end
+			end
+		end
+	else
+		act 'Vaginal':	
+			cls
+			gs'stat'
+			'You grab onto Niko''s hand then place it between your legs, as you say, "I want you to fuck my pussy." Niko''s eyes light up as he replies, "Good girl. That was just what I wanted to hear." Niko then begin undressing you before spinning you around then pulling you toward him. You can feel Niko penis pressed against your vagina then suddenly feel it enter you, causing a jolt of pleasure to fill your vagina. Niko lightly grips your neck as he pushes you down on his rock hard cock, filling your vagina almost completely with his dick. You close your eyes, and give in to the pleasure filling you, as Niko continues to fuck your pussy.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/vaginal1.gif"></center>'
+			gs 'arousal', 'vaginal', 5, 'sub'
+			gs 'stat'
+				
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/vaginal2.gif"></center>'
+				'Niko suddenly grabs onto your stomach and leg, lifting you up in the air, as he continues pushing you onto his hard penis. <font color=#FF00FF>Wow Niko is so strong, and his dick feels so amazing inside me. He may be an asshole, but he really knows how to fuck a girl.</font> You start moaning out loud, as Niko whispers in your ear. "You are really liking it, aren''t you <<$pcs_firstname>>." You turn to Niko then nod, and that seems to excite Niko, resulting in him greatly increasing his pace. Niko continues fucking you until he suddenly pulls out of you then begin rubbing his penis in between your thighs, milking his dick on the ground in front of you. After Niko catches his breath, he turns to you and says, "You are a great fuck <<$pcs_nickname>>. I''ll see you again soon." Niko buttons his pants before walking out of the restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/thighs.gif"></center>'			
+				gs 'cum_call', 'legs', $boy
+				gs 'arousal', 'vaginal', 5, 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				if NikoDiscoPay = 1:
+					act 'Finish':NikoDiscoPay = 0 & gt 'gdkin'
+				else				
+					act 'Finish':gt 'gschool_lunch', 'break'
+				end	
+			end
+		end
+	end	
+	
+	act 'Ride him':
+		cls
+		gs'stat'
+		'You approach Niko then place your hand on his crotch, as you say, "I want to ride your cock, so why don''t you make yourself comfortable?" Niko''s eyes light up as he replies, "You really are a naughty little minx, aren''t you?" Niko then unbuttons his pants then sits on top of a nearby toilet. You quickly undress, before approaching Niko''s hard penis before aliening it with your vagina then pushing Niko''s dick inside you. Niko begins lightly moaning as you begin riding his hard cock. You begin moaning with NIko, feeling only his hard penis, pushing it''s way deeper inside you.'
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/ride.gif"></center>'
+		gs 'arousal', 'vaginal', 5, 'sub'
+		gs 'stat'
+				
+		act 'Continue':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/trainstation/sex/bimbo.boy1,7.gif"></center>'
+			'You begin riding his hard cock while closing your eyes, and focusing on the pleasure building up inside of you. Niko begins spanking your ass while saying to you, "You really seem to be getting the hang of this <<$pcs_nickname>>. Good girl." Niko begins breathing heavier for a few seconds before his breath stops, as Niko pushes you forward then pulls out of you, covering your ass with his seed. You let out a needed moan, as Niko seed covers your lower back. Niko finishes milking himself on your ass when he says, "You are getting better. Well you are all payed up for today. See you next time." Niko then smacks your ass before buttoning his pants then leaving the restroom.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum3.gif"></center>'		
+			gs 'cum_call', 'butt', $boy
+			gs 'arousal', 'vaginal', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+				
+			if NikoDiscoPay = 1:
+				act 'Finish':NikoDiscoPay = 0 & gt 'gdkin'
+			else				
+				act 'Finish':gt 'gschool_lunch', 'break'
+			end	
+		end
+	end		
+	
+	act 'Anal':	
+		cls
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/voyanal.gif"></center>'
+		'You lean forward then whisper in Niko''s ear, "I want you to fuck my ass." Niko''s eyes light up, as he replies, "I always knew that you were a wild girl. Let''s do this." He then gives your ass a firm smack, as he begins wetting his hand in the sink then lubing up his dick. You pulls down your pants then bend over, getting yourself ready for Niko. You close your eyes, and focus on Niko''s dick firmly pushing its way inside of your ass, evoking moans from you and Niko both.'
+		gs 'arousal', 'anal', 5, 'sub'
+		gs 'stat'
+			
+		act 'Continue':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/anal1.gif"></center>'
+			'Niko begins thrusting his dick deeper in your ass, as you lift your leg up, placing it on the nearby toilet seat, givng Niko better access. <font color=#FF00FF>Niko may be a fucking asshole, but he really does know how to fuck a girl...What are you saying <<$pcs_firstname>>? i can''t let myself enjoy this too much.</font> You continue staring into Niko''s eyes when they suddenly squint. Niko groans as he begins pumping your ass with his warm seed.' 
+			*nl
+			'You can feel his penis throbbing inside of you, filling you with a pleasant warmth. Niko catches his breath before saying, "You did good today. Keep it up." Niko smacks your ass before buttoning his pants then leaving the restroom.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal1.gif"></center>'		
+			gs 'cum_call', 'anus', $boy
+			gs 'arousal', 'anal', 5, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			if NikoDiscoPay = 1:
+				act 'Finish':NikoDiscoPay = 0 & gt 'gdkin'
+			else				
+				act 'Finish':gt 'gschool_lunch', 'break'
+			end	
+		end
+	end	
+end
+
+if $ARGS[0] =  'Payback 4':
+	cls
+	NikoPayback_Sex = daystart
+	VK = rand(1,6)
+	gs 'boyStat', 'A189'
+	gs 'clothing', 'strip'
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/avatars/<<week>>.jpg"></center>'
+	'Niko roughly pushes you into the restroom then says, "Where were you heading off to, in such a hurry?" You take a second to think of an excuse when Niko quickly approaches you then says, "You were trying to fucking avoid me, you stupid bitch!" Niko slaps you then begins removing your clothes.'
+	if VK = 1:
+		'After you are fully undressed, Niko says, "It''s time for you to put that mouth of yours to good use. Suck my fucking dick bitch!" Niko pulls down his pants then presses the tip of his penis against your lips.'
+	elseif VK = 2:
+		'After you are fully undressed, Niko says, "Today you will be my little pee slut, understand?" You lower your head, and nod, as Niko pulls down his pants then says, "Open your mouth and say ahh."'
+	elseif VK = 3 and pcs_vag = 0 or VK = 4 and pcs_vag = 0:
+		'After you are fully undressed, Niko says, "I''m gonna fuck your pussy today, so spread those legs!" You quickly reply, "But I can''t...I''m...I''m a virgin." Niko''s eyes light up. "Really? Today really is my lucky day. I get to fuck a virgin, and take your innocence from you at the same time." You recoil in shock. "Please no! Why would you want take that from me?" Niko replies, "Because it will make you sad, that''s why. Now get over to the sink then spread those fucking legs of yours, or I will!"'
+	elseif VK = 3:
+		'After you are fully undressed, Niko says, "I''m gonna fuck your pussy today, so spread those legs!"'		
+	elseif VK = 4:
+		'After you are fully undressed, Niko says, "You will be riding my dick today, so get over here." You meekly nod as you approach him. Niko unbuttons his pants then grabs you then turns you around before wrapping his hand around your neck, pulling you onto his dick.'
+	elseif VK = 5:
+		'After you are fully undressed, Niko says, "I want to fuck your ass, so spread those cheeks of yours." You meekly nod before bending over and spreading your cheeks, as NIko approaches you while unbuttoning his pants.'
+	elseif VK = 6:
+		'After you are fully undressed, Niko says, "I''m fucking your ass, now get over here bitch!" Niko grabs you by your hair then pulls you toward the urinal then shoves your head in it, as he unbuttons his pants.'	
+	end	
+
+	if VK = 1:
+		act 'Blowjob':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/kuh/help/event/gif/bj3.gif"></center>'
+			'You wrap your lips around Niko'' penis then begin sucking it firmly. Niko looks down to you then spits on your face before saying, "You are my fucking bitch! Don''t you ever forget that." You continue sucking his dick while trying to ignore Niko, as he occasionally spits in your face.'		
+			gs 'arousal', 'bj', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue sucking':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/kuh/help/event/gif/bj6.gif"></center>'
+				'Niko grabs the back of your head then begins fucking your throat. You try to relax your throut as NIko continues fucking it. Niko says to you, "Remember <<$pcs_firstname>> this is your place. You are my fucking bitch and nothing more." You are too focused on not gagging to respond. After a few more seconds, Niko groans, filling your throat with his warm seed which you swallow as much of it as you can, knowing that you have no choice. Niko then buttons his pants and walks out of the restroom, without saying another word.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/yurikev/cum/throat6.gif"></center>'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'bj', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end	
+		
+	elseif VK = 2:		
+		act 'Open your mouth':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/piss1.gif"></center>'
+			'You open your mouth and close your eyes, waiting for Niko to start. A few seconds later you feel warm liquid spraying in your face, filling your mouth, and getting in your nose. Niko shouts, "SWALLOW IT ALL BITCH!" You try your best not to gag, as you attempt to swallow all of him bitter tasting urine. You can''t keep your self from gagging as Niko continues shooting his urine down your throat. Niko suddenly rubs his penis against your lips before shoving it into your mouth.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/piss2.gif"></center>'			
+
+			act 'Suck Niko''s dick':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/kuh/help/event/gif/bj1.gif"></center>'
+				'You know exactly what he want, and begin sucking Niko''s dick, trying your best to get him off as quickly as possible, knowing that the sooner he finishes, the sooner you can wash up and leave. You lick and suck Niko''s dick while trying your best to ignore the rotten taste in your mouth and the mildly burning of Niko''s urine on your face. Niko looks down to you then says, "There you go <<$pcs_firstname>>. Keep behaving like this, and we will get along just fine." He then tilts his head back and begins moaning. Niko suddenly grabs the back of your head, and begin filling your throat with his warm cum, as you try your best to swallow every drop of it. After Niko finishes, he turn to you and says, "You are learning, Good keep it up." Niko then buttons his pants before leaving the restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/swallow3.gif"></center>'
+				gs 'cum_call', 'mouth', $boy
+				gs 'arousal', 'bj', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end	
+		
+	elseif VK = 3 and pcs_vag = 0 or VK = 4 and pcs_vag = 0:
+		act 'Do as Niko says':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/voyvag.gif"></center>'
+			'You slowly approach the sink then spread your legs, as Niko approaches behind you. <font color=#FF00FF>Is this really happening? Am I about to lose my virginity to this bastard? How could I let this happen? Why?</font> You can feel tears streaming down your face, as Niko drops his pants then rubs his penis against your vagina before forcing it inside, causing a powerful jolt of pain to fill your vagina. Niko waste no time, and begin thrusting his penis inside you very roughly, as he whispers in your ear, "Oops there goes your virginity. How does it feel to be a real woman?" You lower your head in silence while trying to focus on anything, but the pain.'		
+			gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue':	
+				cls
+				if pcs_vag = 0:pcs_vag += 1
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/virgin.gif"></center>'
+				'Niko quickly increases the pace of his thrusts, fucking you harder, as you close your eyes, waiting for it to be over. Niko''s breathing hastens before stopping, as he pulls out of you then begins spraying his warm seed over your ass. You wait for Niko to finish milking his penis on your ass before asking, "May I please go now?" Niko catches his breath before replying, "Yeah sure. You''re all payed up for today." You quickly grab a few paper towels then clean the blood off of your legs before grabbing your clothes, and getting dressed. After you are fully dressed, you quickly run out of the boys restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end	
+		
+	elseif VK = 3:
+		act 'Vaginal':
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/vaginal1.gif"></center>'
+			'You slowly approach the sink then spread your legs, as Niko approaches behind you. You can feel Niko''s penis pressing against your vagina before he shoves it inside, evoking a moan from you, feeling his dick rapidly entering you. Niko whispers in your ear, "You like it when I shove my dick inside you, don''t you <<$pcs_nickname>>?"'
+			gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/vaginal2.gif"></center>'
+				'You turn to Niko, as he points toward the mirror and says, "Look in that mirror. Do you know what you see? A filthy whore, getting what she deserves. Get used to that sight." You do as he says, as you feel, and see tears running down your cheeks. Watching you in tears must have pushed Niko to the edge, as he pulls out of you then begins covering your back with his warm seed. After Niko milks his penis on your back, he says, "Remember your place <<$pcs_firstname>>, and never try to avoid me again." He then buttons his pants before leaving the restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/cum5.gif"></center>'
+				gs 'cum_call', 'butt', $boy
+				gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end
+		
+	elseif VK = 4:		
+		act 'Vaginal':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/vaginal1.gif"></center>'
+			'You can feel Niko penis pushing it''s way inside of your vagina, causing a jolt of pleasure to fill you. Niko continues fucking you as he leans forward, and whispers in your ear. "Who do you belong to bitch?" Knowing better than to anger Niko, you reluctantly reply, "I belong to you Niko." Niko chuckles as he responds, "Yes you do, and never forget it." Niko wraps one of his arms around your stomach, and the other on your leg then lifts you up.'
+			gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/vaginal2.gif"></center>'
+				'Niko continues fucking you as he keeps you off the ground. You can''t help but feel somewhat impressed at his strength, as he holds you up. You can hear Niko whispering in your ear. "How are you liking your fucking?" You look back at him then nod which seems to turn him on ,as he begins breathing faster. Niko''s breath suddenly stops as he pulls his dick out of you then begins rubbing his dick between your legs, milking his penis on the floor in front of you. After Niko finishes, you turn to him then ask, "Are you satisfied Niko? May I leave now?" Niko gives your ass a firm smack as he replies, "You can go now, but never forget that you belong to me." You quickly pick up your clothes then get dressed before leaving the boys restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/cum/thighs.gif"></center>'
+				gs 'arousal', 'vaginal', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end
+		
+	elseif VK = 5:		
+		act 'Anal':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/bathroom/voyanal.gif"></center>'
+			'You feel Niko''s penis pressing against your anus then feel him suddenly force it inside you, evoking a groan of pain to escape you. Niko wastes no time, as he begins fucking your ass roughly. You let out a few groans of pain, as Niko continues fucking your ass before leaning forward then whispering in your ear. "How does it feel to know that you belong to me?" You look back at him in silence, not knowing what he wants you to say. Niko grins as he smacks your ass firmly.'
+			gs 'arousal', 'anal', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/anal1.gif"></center>'
+				'Knowing that the faster Niko cums, the quicker this torment will be over, turn to face Niko then stare into his eyes. Niko begins struggling to hold back from cumming then begins groaning, filling up your ass with his warm seed. You focus on the throbbing of his hard penis in your ass, filling you with his warm cum. After Niko finishes, he pulls out of you, causing a stream of cum to leak out of your ass, and onto the floor. Niko then says, "You did good <<$pcs_nickname>>. I''ll see you tomorrow." You then gather your clothes, and get dressed before leaving the boys restroom.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/shared/sex/cum/analcreampie/cumanal1.gif"></center>'
+				gs 'cum_call', 'anus', $boy
+				gs 'arousal', 'anal', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end
+		
+	elseif VK = 6:		
+		act 'Anal':	
+			cls
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/anal2.gif"></center>'
+			'You look back at Niko, as he pushes his penis inside you, causing a sharp pain to fill your ass, evoking a groan from you, as you hold onto the bottom of the urinal. You can only feel the pain building up in your ass, as Niko continues roughly fucking you. Niko leans forward and grabs onto your hair, as he says, "You really shouldn''t have tried to avoid me bitch. This could have been quick and painless, but you had to piss me off." <font color=#FF00FF>He''s right. I shouldn''t have tried to avoid him. Why am I so stupid?</font>'
+			gs 'arousal', 'anal', 5, 'rough', 'sub'
+			gs 'stat'
+			
+			act 'Continue':	
+				cls
+				gs'stat'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/payback/rough/anal3.gif"></center>'
+				'Niko suddenly lifts you up by your hair then pulls you toward one of the stalls before shoving your head into the toilet. You hold your breath as the water covers your face, hoping that Niko lets you out to breath soon. <font color=#FF00FF>I need to breath. Please Niko, let me go.</font> Niko pulls you out of the toilet for a few seconds to catch your breath before shoving you back in. All you can think about is not drowning, even as your anus is growing sore from Niko hard penis ramming inside. After a few more seconds, Niko suddenly pulls you out of the toilet, as he begins groaning, filling your ass with his warm seed.' 
+				*nl
+				'Niko continues thrusting his penis inside you, milking it completely. After Niko finishes, he says, "Now hopefully you''ve learned your lesson, and wont try to avoid me again." You turn to him then meekly nod, as he buttons his pants then leaves the restroom while you remain to catch your breath.'
+				*nl
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/leonid/sex/cumanal1.gif"></center>'
+				gs 'cum_call', 'anus', $boy
+				gs 'arousal', 'anal', 5, 'rough', 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+			
+				act 'Finish':gs 'clothing', 'wear_last_worn' & gt 'FedorMisc', 'Restroom'
+			end
+		end	
+	end
+end	
+
+if $ARGS[0] = 'Fedor Help':
+	cls
+	if fedorKozlovQW < -10:
+		FyodorVsNiko = 1
+	else
+		FedorVsNiko = 1
+	end	
+	minut += 5
+	gs'stat'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console1.jpg"></center>'
+	'You move toward Fedor then wrap your arms around him as you say, "Fyodor I...I need your help." Fedor gently rubs your back, as he responds, "Please <<$pcs_firstname>>, tell me what''s wrong." You can feel tears streaming down your face, as you reply, "Nikolai Volkov has been bullying me at lunch everyday. Please make him stop." Fedor clenches his fist, "That little gopnik shit! I will make him pay. Don''t worry <<$pcs_nickname>> the next time he tries I will bash his face in!"'
+	
+	act 'Thank Fedor':
+		cls
+		minut += 5
+		gs'stat'	
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console2.jpg"></center>'		
+		'You quickly look up to Fedor then give him a passionate kiss before saying, "Thank you Fyodor, I always feel so safe with you." Fedor wipes your tears as he responds, "You will always be safe with me, and I will make sure that gopnik punk finds out the hard way what happens when someone fucks with you." You then reply, "Thank you Fyodor." before hearing the school bell. Fedor says, "Well it''s time for class. Don''t forget that i will always keep you safe." You give Fedor a loving smile before walking toward your next class.'
+	
+		act 'Go to class':gt 'gschool_lessons', 'afternoon'
+	end
+end
+
+if $ARGS[0] = 'Fedor Help 2':
+	cls
+	FedorVsNiko = 2
+	NikoPayback = 3
+	NikoFightDay = daystart
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+	'You approach Niko, and a confident grin covers his face, as he says, "You showed up? Good. How will you be paying today?" You reply, "I...I want you to leave me alone." Niko chuckles as he replies, "Well that''s not up to you now is it? For wasting my time, you will be paying me in both, money and pleasure. Now let''s get moving." Niko grabs your hand then begins pulling you into the restroom...'
+	
+	act 'Continue':	
+		cls
+		minut += 1
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'After turning the corner, Niko suddenly recoils back, as Fedor''s fist makes contact, causing Niko to drop to the ground, holding his face. Fedor shouts, "HOW DARE YOU TOUCH <<$pcs_firstname>>! I WILL SHOW YOU WHAT HAPPENS WITH SHITHEADS LIKE YOU." Fedor begins punching Niko as he tries to block the blows. Suddenly Fedor gets tackled.'		
+
+		act 'Turn to Fedor':	
+			cls
+			minut += 1
+			gs'stat'
+			'<center><b><h4><font color="red"><<"Lavrenti Romanov">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/40.jpg"></center>'
+			'You turn to see Lavrenti Romanov trying to hold Fedor down while Niko holds his face in pain, still unable to recover. Lavrenti punches Fedor before Fedor returns the blow, knocking Lavrenti off of him before Niko finally recovers then kicks Fedor in the face, knocking him to the ground then Lavrenti grabs onto Fedor''s arms then holds him down while Niko begins kicking him in the ribs. You grab Niko by his shirt then pull him away before he slaps you across the face. Niko winds up to kick Fedor again when someone''s fist rams into his face.'
+
+			act 'See who it was':	
+				cls
+				minut += 1
+				gs'stat'
+				'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/3.jpg"></center>'
+				'You turn to see Ivan Prokhorov standing over Niko. Ivan immediately rushes toward Lavrenti, grabbing him by his arms then lifting him up before slamming him onto the ground. "Teaming up on my friend, and his girl? Not on my watch." Ivan then helps Fedor up before lifting up his foot then driving it into Lavrenti''s face. Fedor takes a second to recover before immediately climbing on Niko then repeatedly punching him. After a few punches, Ivan pulls Fedor off then says, "Come on man, it''s done."'
+				
+				act 'Place your hand on Fedor''s shoulder':
+					cls
+					minut += 1
+					gs'stat'
+					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console1.jpg"></center>'
+					'Fedor takes a few seconds to catch his breath before asking you, "Are you alright <<$pcs_firstname>>? You took quite a hit there." You quickly hug Fedor, as you reply, "I''m great, thanks to you two." Ivan replies, "It was nothing special. I just wont let punks like them, hurt my friends." Fedor wraps his arms around you then says, "This is the last time that punk will ever hurt you. You are safe." You return the hug then hear the class bell, signaling the beginning of class. Fedor takes your hand then leads you toward you next class. While Ivan stays behind to "Chat" with Niko and Lavrenti.'
+
+					act 'Return to the hallway':gt 'gschool_lessons', 'afternoon'
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] = 'Fyodor Help':
+	cls
+	FyodorVsNiko = 2
+	NikoPayback = 3
+	NikoFightDay = daystart
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'
+	'You approach Niko, and a confident grin covers his face, as he says, "You showed up? Good. How will you be paying today?" You reply, "I...I want you to leave me alone." Niko chuckles as he replies, "Well that''s not up to you now is it? For wasting my time, you will be paying me in both, money and pleasure. Now let''s get moving." Niko grabs your hand then begins pulling you into the restroom...'
+	
+	act 'Continue':	
+		cls
+		minut += 2
+		gs'stat'
+		'<center><b><h4><font color="blue"><<"Fyodor [Fedor] Kozlov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/5.jpg"></center>'
+		'As you reach the restroom, Niko tosses you to the ground then approaches you when suddenly, Fedor quickly walks into the room, and punches Niko in his face, knocking him to the ground before climbing on him, and punching him repeatedly. After a few punches Niko says, "Whoa chill out man, <<$pcs_firstname>> and I were just playing a game. Do you see? She is laughing right now." Fedor turns to you just as Niko winds up his fist, ramming it into Fedor''s face before quickly pushing Fedor off of him then running to the door. <font color=#FF00FF>Niko''s running away?...No! I''m finished with this shit!</font> You quickly grab Niko''s shirt turning him to you before scratching him in his face then pushing him onto the ground, giving Fedor enough time to recover then climb on top of Niko again, punching him in the face.'	
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/down.jpg"></center>'
+
+		act 'Enjoy the show':	
+			cls
+			minut += 2
+			gs'stat'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedormisc/console2.jpg"></center>'
+			'You watch in satisfaction at Niko getting what he deserves, for a few seconds before Fedor finally calms down then climbs off of Niko then walks up to you, and wraps his arms around you before asking, "Are you alright? He didn''t hurt you did he?" You reply, "No but I did enjoy you hurting him." Fedor chuckles, "Anyone who messes with you, wil share the same treatment.." You lean forward then give Fedor a passionate kiss which lasts for almost a full minute. After the kiss, Fedor says, "You should get back to recess before you miss it. I will have a chat with NIko. Go on, enjoy your recess." You give Fedor a kiss on the cheek before walking out of the restroom.'
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/kiss2.gif"></center>'
+			
+			act 'Return to the hallway':gt 'gschool_lunch', 'break'
+		end	
+	end
+end
+
+if $ARGS[0] = 'Ivan Help':
+	cls
+	IvanVsNiko = 1
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/sad1.jpg"></center>'
+	'You walk up to Ivan then downcast your eyes before saying, "Ivan I need your help...I..." Ivan''s face saddens, as he wraps his arms around you. "What''s wrong <<$pcs_firstname>>? You can tell me."'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/hug1.jpg"></center>'	
+	
+	act 'Tell Ivan':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/angry1.jpg"></center>'
+		'You try to collect your thoughts before saying, "Ever since I broke up with Niko, he has been raping me at lunchtime and I..." Ivan agrily slams one of the lockers, as he says, "That slimy little shit! This will not continue <<$pcs_firstname>>, I will put an end to it. You don''t need to worry. I will end this." You wrap your arms around Ivan then say, "Thank you so much. I didn''t know what to do." Ivan replies, "That kind of shit is unacceptable. You will be safe again, I promise you that." You give Ivan a soft kiss on the cheek then walk away while he angrily begins cracking his knuckles.'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/hug1.jpg"></center>'	
+	
+		act 'Return to the hallway':gt 'gschool_lessons', 'afternoon'
+	end
+end
+
+if $ARGS[0] = 'Ivan Help 2':
+	cls
+	IvanVsNiko = 2
+	NikoPayback = 3
+	gs'stat'
+	'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/smile2.jpg"></center>'	
+	'You approach Niko, and a confident grin covers his face, as he says, "You showed up? Goo..." Niko quickly pauses when he notices Ivan approaching. Ivan drives his fist into Niko''s stomach then says, "I hear that you have been giving <<$pcs_firstname>> a hard time. Allow me to return the favor." Ivan then begins chocking Niko, as Niko tries to squirm out of Ivan steel grasp. After a few seconds, Ivan releases Niko, causing Niko to drop to the ground. Ivan stands over Niko and says, "That was a warning. Give <<$pcs_firstname>> a hard time again, and I wont hold back."'
+	'<center><b><h4><font color="green"><<"Ivan Prokhorov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/3.jpg"></center>'
+	
+	act 'Continue':
+		cls
+		minut += 2
+		gs'stat'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/ivan/hug1.jpg"></center>'
+		'Niko quickly nods, obviously frightened of Ivan. Ivan then gives you a hug as he says, "You''ll be fine now. If he bothers you again then let me know, and I will set him straight." You gratefully nod, as Ivan turns around then walks away. You turn around to leave when you notice Vitek walking up to Niko then lightly places his foot on his back, as he says, "I always told you that your big mouth would get you into trouble." Vitek then steps off of Niko then laughs, as he walks away.'		
+		'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+
+		act 'Go to class':gt 'gschool_lunch', 'break'
+	end
+end	
+
+if $ARGS[0] = 'Vitek Help':
+	cls
+	VitekVsNiko = 1
+	NikoPayback = 3
+	NikoFightDay = daystart
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+	'You say to Vitek, "Um Viktor I need..." Dan unintentionally cuts you off, "Oh yeah, have you guys seen that big breasted bitch handing out freebies by..." Vitek says, "Hold that thought. <<$pcs_nickname>> we''re having guy talk right now, you and I can chat later." You try add, "But I really need..." Vasily suddenly intentionally falls to the ground then says, "You need to cheer up, you look so glum. Here, I will tell you a joke rated everyone..." Dan adds, "You mean rated immature, right?" The guys begin laughing, as you get more agitated at them ignoring you.'
+	
+	act 'Scream out':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+		'You suddenly scream, "NIKO RAPED ME!!!" The guys freeze in place before Vitek says, "He did what?" Niko suddenly stands up then begins sprinting toward the door when Vasily shoulder tackles him into the wall, knocking slamming him against it. Lavrenti tries to help Niko when Dan stands in front of him, blocking him from interfering. Vitek suddenly lunges forward then drives his foot into Niko''s face, slamming his head against the wall before shouting, "YOU FUCKING WORTHLESS SACK OF SHIT!!! HOW DARE YOU TOUCH MY GIRL!!!"'	
+		'<center><b><h4><font color=#E400FF><<"Nikolai [Niko] Volkov">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev2/bruised1.jpg"></center>'
+		
+		act 'Continue watching':
+			cls
+			minut += 5
+			gs'stat'
+			'<center><b><h4><font color="maroon"><<"Vasily [Shulga] Shulgin">></font></h4></b></center>'
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/11.jpg"></center>'
+			'Vitek continuously kicks Niko in the ribs, as Vasily joins him while saying, "We''ll show you what happens to those who fuck with <<$pcs_firstname>>." After a few minutes, Vitek takes a few seconds to catch his breath before approaching you, wrapping his arms around you, and saying, "I''m sorry that I didn''t listen to you, but don''t worry, I will make this sack of shit pay for touching you. You shouldn''t stick around for this. Go on, and I''ll see you later." You lean forward, and give Vitek a passionate kiss before saying, "Thank you Viktor. I always feel so safe with you." Vitek gives you ass a light smack before responding, "You know it <<$pcs_nickname>>. Now get going, I have some business to finish here." You happily nod before leaving the restroom.'	
+			*nl
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/kiss3.gif"></center>'
+
+			act 'Continue toward the hallway':gt 'gschool_lessons', 'afternoon'
+		end	
+	end
+end
+
+if $ARGS[0] = 'Vitek Help 2':
+	cls
+	VitekVsNiko = 1
+	NikoPayback = 3
+	NikoFightDay = daystart
+	minut += 5
+	gs'stat'
+	'<center><b><h4><font color="red"><<"Viktor [Vitek] Kotov">></font></h4></b></center>'
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/9.jpg"></center>'
+	'You approach Vitek and he says, "Hey <<$pcs_nickname>>, want a drink?" You reply, "I need to ask for your help, Niko has been raping me at lunch and..." Vitek''s eyes widen as he says, "He did what?" You remain quite, as you feel tears dripping down your cheek. Vitek tosses his bottle to the ground, causing a loud shatter which draws everyone in the discos attention. Vitek angrily walks over the broken glass, as he approaches Niko. Niko suddenly asks, "Whoa what''s going on?" Vitek replies, "You have been fucking with my girl?"'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/sad2.jpg"></center>'
+	
+	act 'Continue':	
+		cls
+		gs'stat'
+		'<center><b><h4><font color="maroon"><<"Vasily [Shulga] Shulgin">></font></h4></b></center>'
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/head/11.jpg"></center>'
+		'Niko immediately tries to run away when Vasily drives his fist into Niko''s face before saying, "You don''t fuck with <<$pcs_nickname>> without dealing with us." You can feel your heart warming up, as you realize how safe you are with Vitek, and Vasily around. Niko continuously tries to crawl away, but is grabbed by Vitek, who lifts him up then slams him onto the ground before climbing on top of him then repeatedly punching him in the face. Vasily approaches you then says, "You are safe now <<$pcs_firstname>>. We will make sure that Niko never touches you again."' 
+		*nl
+		'You give Vasily a hug as you respond, "Thank you all so much for your help. You''re the best." Vasily gives you a pat on the back before saying, "You don''t need to thank us. It''s a mans job to keep girls safe. Here have a drink on me." Vasily hands you a bottle of beer then turns back around to join Vitek, and Dan in beating Niko.'		
+		*nl
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/fight/down.jpg"></center>'
+	
+		act 'Have a drink then walk away':alko += 1 & gt 'gdkin'
+		
+		act 'Walk away':gt 'gdkin'
+	end
+end
+
+--- NikoPayback ---------------------------------
+

Some files were not shown because too many files changed in this diff