ソースを参照

Initializarion of the repo, I fixed the most differences and adapted the code to the version of the Girl Life 0.8.5, I also added the file autofight, which was removed from the main game.

rachels 2 年 前
コミット
e153749516
41 ファイル変更27715 行追加0 行削除
  1. 23 0
      .gitignore
  2. 102 0
      Make_iWhore_life_mod.bat
  3. 302 0
      locations/mod_iwhore.qsrc
  4. 672 0
      locations/mod_iwhore_autofight.qsrc
  5. 1692 0
      locations/mod_iwhore_begin.qsrc
  6. 910 0
      locations/mod_iwhore_dhighway.qsrc
  7. 1733 0
      locations/mod_iwhore_dincollect.qsrc
  8. 634 0
      locations/mod_iwhore_fountain.qsrc
  9. 874 0
      locations/mod_iwhore_hardlife.qsrc
  10. 289 0
      locations/mod_iwhore_highway.qsrc
  11. 264 0
      locations/mod_iwhore_innapodz.qsrc
  12. 1205 0
      locations/mod_iwhore_innapt.qsrc
  13. 1357 0
      locations/mod_iwhore_jenna.qsrc
  14. 1665 0
      locations/mod_iwhore_limbus.qsrc
  15. 1285 0
      locations/mod_iwhore_limbus1.qsrc
  16. 1319 0
      locations/mod_iwhore_limbusbattle.qsrc
  17. 20 0
      locations/mod_iwhore_limbusdraw.qsrc
  18. 1139 0
      locations/mod_iwhore_mainstreet.qsrc
  19. 988 0
      locations/mod_iwhore_mainstreetw.qsrc
  20. 1909 0
      locations/mod_iwhore_methbang.qsrc
  21. 814 0
      locations/mod_iwhore_methman.qsrc
  22. 886 0
      locations/mod_iwhore_nhighway.qsrc
  23. 38 0
      locations/mod_iwhore_notes.qsrc
  24. 901 0
      locations/mod_iwhore_park.qsrc
  25. 859 0
      locations/mod_iwhore_parkw.qsrc
  26. 1448 0
      locations/mod_iwhore_pbath.qsrc
  27. 350 0
      locations/mod_iwhore_pbathw.qsrc
  28. 11 0
      locations/mod_iwhore_readme.qsrc
  29. 832 0
      locations/mod_iwhore_realstat.qsrc
  30. 798 0
      locations/mod_iwhore_realtime.qsrc
  31. 2016 0
      locations/mod_iwhore_recovery.qsrc
  32. 31 0
      locations/mod_iwhore_setup.qsrc
  33. 71 0
      locations/mod_iwhore_therapy.qsrc
  34. 36 0
      mod_iwhore.qproj
  35. 31 0
      tools/check_consistency.py
  36. 36 0
      tools/check_images.py
  37. 39 0
      tools/check_imageso.py
  38. BIN
      tools/txt2gam.exe
  39. 44 0
      tools/txtmerge.py
  40. 46 0
      tools/txtsplit.py
  41. 46 0
      tools/txtsplit3.py

+ 23 - 0
.gitignore

@@ -0,0 +1,23 @@
+images/
+sound/
+music/
+.*
+*.qsp
+*.sav
+*.ini
+*.txt
+qgen.cfg
+qspgui.cfg
+avatar.*
+*.jpg
+*.jpeg
+*.rar
+*.zip
+*.png
+images.zip
+
+# don't ignore this file
+!.gitignore
+
+# do NOT ignore editorconfig
+!.editorconfig

+ 102 - 0
Make_iWhore_life_mod.bat

@@ -0,0 +1,102 @@
+@ECHO off
+
+:: Set those lines to fit your setup. 
+:: This is where mod_iwhore.qsp will be copied. If you don't want to move it just comment (::) the line below.
+:: set CP_TO=..\GL_ECV
+
+:: This is the program used to open the QSPFILE. If you comment this line windows will launch the default app for the ".qsp" extension.
+set QSPGUI=QSP\Player-video\qspgui.exe
+set QGEN=QSP\QGen5\QGen.exe
+
+:: The file that will be generated or open
+set QSPFILE=iwhore.qsp
+
+::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
+
+:menu
+cls
+echo.
+echo :: QSP Compiler and Launcher
+echo.
+
+if defined QGEN (
+	if not exist "%QGEN%" ( 
+		echo QGEN     : [ERROR] - %QGEN%  not found. Using DEFAULT application.
+		set QGEN=
+	) else ( echo QGEN     : [OK] - "%QGEN%")
+) else echo QGEN     : [NOT DEFINED] - Using DEFAULT application.
+
+if defined QSPGUI (
+	if not exist "%QSPGUI%" ( 
+		echo QSP EXEC : [ERROR] - %QSPGUI% not found.
+		set QSPGUI=
+	) else ( echo QSP EXEC : [OK] - "%QSPGUI%")
+) else ( echo QSP EXEC : [NOT DEFINED] - Using Windows DEFAULT.)
+
+if defined QSPFILE (
+	if not exist "%QSPFILE%" ( 
+		echo QSP FILE : [WARNING] - %QSPFILE% not found.
+	) else ( echo QSP FILE : [OK] - "%QSPFILE%")
+) else ( echo QSP FILE : [NOT DEFINED] - ERROR: CAN'T CONTINUE.)
+
+if defined CP_TO (
+	if not exist "%CP_TO%" (
+		echo COPY     : [ERROR] - Destination "%CP_TO%" not found. Copy DISABLED.
+		set CP_TO=
+	) else ( echo COPY     : [OK] - "%CP_TO%")
+) else (  echo COPY     : [DISABLED] )
+
+echo.
+
+if defined NOT_FOUND (
+	echo ERROR: Option '%action%' wasn't recognized. Is it lowercase? 
+	set NOT_FOUND=
+)
+
+echo.
+echo ACTIONS: (B)uild  (R)un  (F)ull  (Q)Gen  (E)xit
+echo.
+set /p action=Choose an action:
+
+if defined QSPFILE (
+	if %action% == b goto build
+	if %action% == r goto run
+	if %action% == f goto build
+	if %action% == q goto qgen
+)
+
+if %action% == e goto exit
+
+set NOT_FOUND=1
+goto menu
+
+:build
+echo.
+echo Building ...
+
+@ECHO ON
+python tools\txtmerge.py mod_iwhore.qproj locations mod_iwhore.txt
+tools\txt2gam.exe mod_iwhore.txt %QSPFILE% > nul
+@ECHO OFF
+
+echo.
+if defined CP_TO ( echo Copying %QSPFILE% to "%CP_TO%" ... & copy %QSPFILE% %CP_TO% > nul )
+
+echo.
+echo Done.
+pause
+if %action% == f ( goto run ) else ( goto menu )
+
+:qgen
+echo.
+echo Running ...
+if defined CP_TO ( start %QGEN% %CP_TO%\%QSPFILE% ) else ( start %QGEN% %QSPFILE% )
+goto exit
+
+:run
+echo.
+echo Running ...
+
+if defined CP_TO ( start %QSPGUI% %CP_TO%\%QSPFILE% ) else ( start %QSPGUI% %QSPFILE% )
+
+:exit

+ 302 - 0
locations/mod_iwhore.qsrc

@@ -0,0 +1,302 @@
+# mod_iwhore
+!input mod entry point here. this will be checked on every location, please keep it clean and brief to avoid game lag
+
+!pav_residential BEGIN
+if $curloc = 'pav_residential' and fame['pav_slut'] > 200 and hour > 6 and hour < 18 and rand(1, 10) < 6 and new_whore < 1 and new_whore_day ! daystart:
+	'A guy approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way in life." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+
+	act 'approach': gt 'mod_iwhore_begin', 'easymoney'
+	act 'Decline':gt 'pav_residential'
+end
+
+if $curloc = 'pav_residential' and fame['pav_slut'] > 200 and hour > 6 and hour < 18 and rand(1, 10) < 6 and new_whore >= 1 and new_whore =< 4 and new_whore_day ! daystart:
+	'A guy approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way in life." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+
+	act 'approach': gt 'mod_iwhore_begin', 'habits'
+	act 'Decline':gt 'pav_residential'
+end
+
+if $curloc = 'pav_residential' and fame['pav_slut'] > 200 and hour > 6 and hour < 18 and rand(1, 10) < 6 and new_whore = 5 and new_whore_day ! daystart:
+	'As you walk in the street a car approaches you; a man through the car windows call for your attention. "Hey sexy, you look like a girl that knows her way in life." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go some quiet place and have some fun?"'
+
+	act 'approach': gt 'mod_iwhore_begin', 'hookup'
+	act 'Decline':gt 'pav_residential'
+end
+
+!HIGHWAY 
+if $curloc = 'road' and nroad = 20 and fame['pav_slut'] > 200 and new_whore >= 7 and PCloStyle = 4 and gennadij_mem ! 1:
+!	if inna_varvara_pimp >= 13: gs 'mod_iwhore_dincollect', 'whore_check_pro'
+	act 'Go to work': gt 'mod_iwhore_highway', 'start'
+end
+
+!pav_residential
+
+if $curloc = 'pav_residential' and fame['pav_slut'] > 200 and new_whore >= 45 and gennadij_mem ! 1:
+	killvar 'ms_temp'
+	killvar 'ms_ender'
+	killvar 'gfy_rand'
+	gs 'mod_iwhore_dincollect' , 'hooking'
+	
+	if hour > 6 and hour < 18:
+		if hooked_walk =< 2:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hookedcar''">guy in a car</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		elseif hooked_walk >= 3 and hooked_walk =< 5:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hooked''">guy</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		else
+			act 'Catch some attention': gt 'mod_iwhore_mainstreet', 'mshooker'
+		end
+	elseif hour < 6 or hour >= 18:
+		if hooked_walk =< 3:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hookedcar''">guy in a car</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		elseif hooked_walk >= 3 and hooked_walk =< 7:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hooked''">guy</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		else
+!			act 'Catch some attention': gt 'mod_iwhore_mainstreet', 'mshooker'
+			act 'Catch some attention': 
+				if meth_man >= 1 and rapewhore_count = 5 and rand (0,10) >= 3 and hour >= 18 and hour =< 20 and new_gh_whore >= 2:
+					gt 'mod_iwhore_jenna', 'skip_it'
+!					gt 'mod_iwhore_jenna', 'beast'
+				else
+					gt 'mod_iwhore_mainstreet', 'mshooker'
+				end
+			end
+		end
+	else
+		''
+	end
+end
+
+if $curloc = 'pav_residential' and gennadij_hunter = 1 and gennadij_day < daystart:
+	if rand(1,100) < 15: gt 'mod_iwhore_jenna', 'stabbed'
+end
+
+
+if $curloc = 'pav_residential' and fame['pav_slut'] > 200 and new_whore >= 45 and gennadij_mem = 1 and inna_varvara_pimp < 1 and pcs_was_trauma < 1 and pcs_awake_trauma < 1:
+	
+	if hour >= 18 and hour < 23:
+		act 'Catch some attention':gt 'mod_iwhore_jenna', 'vivid'
+	else
+		''
+	end
+end
+
+
+!POD_EZD!!!!!!!!!!!!!!!SCHOOLGIRL
+if $curloc = 'pod_ezd' and $ARGS[0] = 'etaj_2' and home_owned[2] = 1 and gennadij_mem = 1 and inna_varvara_pimp = 1:
+	gt 'mod_iwhore_begin', 'inna'
+end
+
+!ETOEXHIB!!!!!!!!!!!!!!!TGSTART
+if $curloc = 'etoexhib' and $ARGS[0] = 'pos51' and home_owned[1] > 0 and gennadij_mem = 1 and inna_varvara_pimp = 1:
+	gt 'mod_iwhore_begin', 'inna'
+end
+
+if $curloc = 'pav_residential' and gennadij_prey = 1 and gennadij_day < daystart and inna_varvara_pimp = 5:
+	if hour >= 10 and hour < 18: inna_varvara_pimp = 6 & gt 'mod_iwhore_begin', 'message'
+end
+!pav_complexb
+if $curloc = 'pav_complex' and $ARGS[0] = 'start':
+	act 'Nearby complex':gt 'mod_iwhore_innapodz', 'etaj_1'
+	'Your complex is not the only <a href="exec:minut += 3 & gt ''mod_iwhore_innapodz'', ''etaj_1''">one</a>.'
+
+end
+
+!pav_complexb2!!!!!!INNAPT
+!if $curloc = 'pav_complexb2' and $ARGS[0] = 'etaj_5' and inna_varvara_pimp >= 2:
+!	if inna_varvara_pimp > 10:
+!		act 'Inna''s apartment':gt 'mod_iwhore_innapt', 'start'
+!	elseif inna_varvara_pimp = 4:
+!		act 'Slip the signed photo':gt 'mod_iwhore_begin', 'slipped'
+!	elseif inna_varvara_pimp = 5 or inna_varvara_pimp = 6:
+!		act '...':gt 'mod_iwhore_begin', 'slipped'
+!	elseif inna_varvara_pimp = 8 or inna_varvara_pimp = 9:
+!		act '...':gt 'mod_iwhore_begin', 'slipped'
+!	elseif inna_varvara_pimp = 10:
+!		gt 'mod_iwhore_begin', 'pimp'
+!	else
+!		act 'Look for the woman':gt 'mod_iwhore_begin', 'start'
+!	end
+!end
+
+
+!pav_commercial
+
+if $curloc = 'pav_commercial' and fame['pav_slut'] > 200 and new_whore >= 45 and gennadij_mem ! 1:
+	killvar 'ms_temp'
+	killvar 'ms_ender'
+	killvar 'gfy_rand'
+	gs 'mod_iwhore_dincollect' , 'hooking'
+	if hour > 6 and hour < 18:
+		if hooked_walk =< 2:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hookedcar''">guy in a car</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		elseif hooked_walk >= 3 and hooked_walk =< 5:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hooked''">guy</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		else
+			act 'Catch some attention': gt 'mod_iwhore_mainstreet', 'mshooker'
+		end
+	elseif hour < 6 or hour >= 18:
+		if hooked_walk =< 3:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hookedcar''">guy in a car</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		elseif hooked_walk >= 3 and hooked_walk =< 7:
+			'A <a href="exec:minut += 1 & gt ''mod_iwhore_mainstreet'', ''hooked''">guy</a> approaches you, a hungry look in his eyes. "Hey sexy, you look like a girl that knows her way around a cock." He laughs and licks his lips while looking you over. "I got some money, and if you have some time, how about we go someplace quiet and have some fun?"'
+		else
+			act 'Catch some attention': gt 'mod_iwhore_mainstreet', 'mshooker'
+		end
+	else
+		
+	end
+	
+end
+
+if $curloc = 'pav_commercial' and gennadij_hunter = 1 and gennadij_day < daystart:
+	if rand(1,100) < 15: gt 'mod_iwhore_jenna', 'stabbed'
+end
+!PARK
+if $curloc = 'pav_park' and fame['pav_slut'] > 200 and new_whore >= 45 and gennadij_mem ! 1:
+	killvar 'hook_park'
+	act 'Catch some attention': gt 'mod_iwhore_park', 'parkhooker'
+end
+
+if $curloc = 'pav_park' and inna_varvara_pimp = 7:
+	
+	act 'Look behind the bench': gt 'mod_iwhore_begin', 'message'
+end
+
+!HERESTARTTHEENTRY!UPDATE3!
+!if $curloc = 'pav_park':
+if $curloc = 'pav_park' and $ARGS[0] = 'start':
+!RussMeyerTribute!
+	if meth_man = 1 and (hour < 6 or hour >= 18) and gennadij_mem ! 1 and Krestovoz_pimp_protection ! 1 and mosol =< 40:
+		'Far from people eyes, in the deep of the park, there''s a <a href="exec:minut += 1 & gt ''mod_iwhore_methman'', ''running_meth''">fountain</a> where people can rest and drink some water.'
+	else
+		'Far from people eyes, in the deep of the park, there''s a <a href="exec:minut += 1 & gt ''mod_iwhore_fountain'', ''start''">fountain</a> where people can rest and drink some water.'
+	end
+end
+
+if $curloc = 'pav_park' and $ARGS[0] = 'start' and new_whore >= 30 and  meth_man < 1 and $clothingworntype = 'exercise' and $shoeworntype = 'trainers' and daybeplacer_pav_park = daystart and (hour < 6 or hour >= 18) and gennadij_mem ! 1:
+	gt 'mod_iwhore_methman', 'running_meth'
+end
+
+
+!BATH
+if $curloc = 'pav_residential':
+	'You can see the <a href="exec:minut += 1 & gt ''mod_iwhore_pbath'', ''start''">public restrooms</a>, they are not fee free... .'
+end
+!THERAPIST!
+if $curloc = 'therapist' and $args[0] = '':
+
+	if pcs_was_trauma > 0:
+		act 'Deal with losing the baby':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/room.jpg"></center>'
+			$therapy = 'loss'
+			'"I would like some help dealing with my beatings and losing my child."'
+			'"I think the best way to do that would be hypnotherapy."'
+			act 'Regular therapy':
+				cls
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/therapy1.jpg"></center>'
+				minut += 60
+				pcs_was_trauma -= 1
+				gs 'stat'
+				
+				'You talk about your traumatic issues, and Dr. Pavlov makes some suggestions, and asks some pointed questions. Although he makes you uncomfortable, it somehow makes you feel better about yourself.'
+				if pcs_was_trauma = 0:
+					'You were able to give the events a place in your life and you are finally ready to move on.'
+				end
+				'"Please, visit me again if you have any further problems, I will be glad to help!" Says Dr. Pavlov, as he escort you out of his door.'
+				act 'Leave':gt $loc
+			end
+			act 'Hypnotherapy':gt 'mod_iwhore_therapy', 'hypno'
+		end
+	end
+	if pcs_awake_trauma > 0:
+		act 'Deal with your awakening':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/room.jpg"></center>'
+			$therapy = 'trauma'
+			'"I would like some help dealing with my beatings and awakening."'
+			'"I think the best way to do that would be hypnotherapy."'
+			act 'Regular therapy':
+				cls
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/therapy1.jpg"></center>'
+				minut += 60
+				pcs_awake_trauma -= 1
+				gs 'stat'
+				
+				'You talk about your traumatic issues, and Dr. Pavlov makes some suggestions, and asks some pointed questions. Although he makes you uncomfortable, it somehow makes you feel better about yourself.'
+				if pcs_awake_trauma = 0:
+					'You were able to give the events a place in your life and you are finally ready to move on.'
+				end
+				'"Please, visit me again if you have any further problems, I will be glad to help!" Says Dr. Pavlov, as he escort you out of his door.'
+				act 'Leave':gt $loc
+			end
+			act 'Hypnotherapy':gt 'mod_iwhore_therapy', 'hypno'
+		end
+	end
+end
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!HOOKING RAND!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!	
+!	if PCloStyle = 4:
+!	d'approached'	hooked_walk = rand(0,50)--->[d 0,5]	(51)	ratio = 6/51 ---> 0,117
+!	d'work'			hooked_walk = 	  (5,50)--->[d 0,9]	(45)	ratio =	10/45---> 0,222
+!	n'approached'	hooked_walk = rand(0,50)--->[n 0,7] (51)  	ratio = 8/51 ---> 0,156 
+!	n'work'			hooked_walk = 	  (7,50)--->[n 0,12](43) 	ratio = 13/43 ---> 0,302	
+!	else
+!	d'approached'	hooked_walk = rand(0,70)--->[d 0,5]	(71)	ratio = 6/71 ---> 0,084
+!	d'work'			hooked_walk =     (5,70)--->[d 0,9]	(65)	ratio = 10/65---> 0,153
+!	n'approached'	hooked_walk = rand(0,70)--->[n 0,7]	(71) 	ratio = 8/71 ---> 0,112
+!	n'work'			hooked_walk =     (4,70)--->[n 0,12](58)  	ratio = 13/58---> 0,224	
+!	end
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+
+
+
+
+!entry point 1: if player is on bed, create a new link to make her sleepy
+!if $curloc = 'bed2' and $args[0] = '':
+!	if pcs_sleep > 80:
+!		'[mod]... But You can make yourself <a href="exec:pcs_sleep=0&gt $curloc">sleepy!</a>'
+!	else
+!		'[mod]... And you are already sleepy.'
+!	end
+!end
+
+
+!entry point 2: goto school directly from room
+!Note that location name are case sensetive. you can use lcase() or ucase() to prevent bug
+!if lcase($curloc) = 'bedrpar' or ucase($curloc) = 'KORRPAR':
+!		act '[mod]<font color = green><b>Go to school</b></font>': minut += 1 & gt 'gschool_grounds', 'main'
+!end
+
+
+!entry point 3: replace exit room act in apartment
+
+!if $curloc = 'bedrPar':
+!	delact 'Exit the room'
+!	act 'Exit the room':
+!		msg 'Now mod isample will send you to school directly'
+!		minut += 1 & gt 'gschool_grounds', 'main'
+!	end
+!end
+
+!entry point 4: access in-mod location
+!if $curloc = 'pav_residential':
+!	act '[mod]Chase the rabbit':
+!		gt 'mod_isample_pav_residential'
+!	end
+!end
+
+!if $curloc = 'city_residential':
+!	act '[mod]Jump into rabit hole':
+!		*clr & cla
+!		'[mod]Suddenly, everything blank out'
+!		gs 'mod_isample_street'
+!	end
+!end
+--- mod_iwhore ---------------------------------

+ 672 - 0
locations/mod_iwhore_autofight.qsrc

@@ -0,0 +1,672 @@
+# mod_iwhore_autofight
+if Formula = 0:Formula = 3
+
+$iwm_endurdin = {
+	Ken = (musle[a] / 100) * Kus / 100
+
+	if ken <= 0:ken = 1
+
+	Kene = (musle[i] / 100) * Kuse / 100
+
+	if kene <= 0:kene = 1
+
+	KoefUder = rand(iwm_Uder * 20 / 100, iwm_Uder)
+	KoefUderE = rand(iwm_Udere * 20 / 100, iwm_Udere)
+	KoefBros = rand(iwm_Brosok * 20 / 100, iwm_Brosok)
+	KoefBrosE = rand(iwm_BrosokE * 20 / 100, iwm_BrosokE)
+	KoefProt = rand(iwm_Zash * 20 / 100, iwm_Zash)
+	KoefProtE = rand(iwm_Zashe * 20 / 100, iwm_Zashe)
+}
+
+$iwm_uderdin = {
+	Kus = 5
+	Kuse = 10
+	dynamic $iwm_endurdin
+	endur -= ken
+	endurE -= kene
+	Aktiv = (iwm_strenW / 2) + iwm_agilW + rand(0, iwm_lustW) + KoefUder
+	Aktiv = Aktiv * endur / endurMax
+	Passiv = (((iwm_strenWE + (iwm_agilWE / 2)) * koefE) / 100) + rand (0, iwm_lustWE) + KoefProtE
+	Passiv = Passiv * endurE / endurMaxE
+}
+
+$iwm_uderdinE = {
+	Kus = 10
+	Kuse = 5
+	dynamic $iwm_endurdin
+	endur -= ken
+	endurE -= kene
+	Aktiv = (iwm_strenWE / 2) + iwm_agilWE + rand(0, iwm_lustWE) + KoefUdere
+	Aktiv = Aktiv * endurE / endurMaxE
+	Passiv = (((iwm_strenW + (iwm_agilW / 2)) * koef) / 100) + rand(0, iwm_lustW) + KoefProt
+	Passiv = Passiv * endur / endurMaxE
+}
+
+$iwm_brosdin = {
+	Kus = 10
+	Kuse = 10
+	dynamic $iwm_endurdin
+	endur -= ken
+	endurE -= kene
+	Aktiv = iwm_strenW + (iwm_agilW / 2) + rand(0, iwm_lustW) + KoefBros
+	Aktiv = Aktiv * endur / endurMax
+	Passiv = (((iwm_strenWE / 2) + iwm_agilWE) * koefE / 100) + rand(0, iwm_lustWE) + KoefProtE
+	Passiv = Passiv * endurE / endurMaxE
+}
+
+$iwm_$brosdinE = {
+	Kus = 10
+	Kuse = 10
+	dynamic $iwm_endurdin
+	endur -= ken
+	endurE -= kene
+	Aktiv = iwm_strenWE + (iwm_agilWE / 2) + rand(0, iwm_lustWE) + KoefBrosE
+	Aktiv = Aktiv * endurE / endurMaxE
+	Passiv = (((iwm_strenW / 2) + iwm_agilW) * koef / 100) + rand(0, iwm_lustW) + KoefProt
+	Passiv = Passiv * endur / endurMax
+
+}
+
+iwm_point = 0
+iwm_pointE = 0
+$iwm_nameE = $nikname[i]
+$iwm_nameA = $nikname[a]
+iwm_strenW = musle[a] / 10
+iwm_strenWE = musle[i] / 10
+iwm_agilW = flex[a] / 10
+iwm_agilWE = flex[i] / 10
+iwm_lustMax = wipo[a]
+iwm_lustMaxE = wipo[i]
+iwm_lustW = iwm_lustMax
+iwm_lustWE = iwm_lustMaxE
+iwm_Brosok = Bteh[a] / 10
+iwm_BrosokE = Bteh[i] / 10
+iwm_Uder = Uteh[a] / 10
+iwm_Udere = Uteh[i] / 10
+iwm_Zash = Zteh[a] / 10
+iwm_Zashe = Zteh[i] / 10
+resultFight = 0
+endurMax = stamina[a] / 10
+endurMaxE = stamina[i] / 10
+endur = endurMax
+endurE = endurMaxE
+croonce = 0
+round = 1
+rMin = 8
+stoper = 0
+Ku = 0
+Kb = 0
+Kz = 0
+KuE =0
+KbE= 0
+KzE = 0
+if iwm_strenW > iwm_strenWE:
+	iwm_point += 1
+	iwm_lustW += 1
+	crouch = 1
+elseif iwm_strenW < iwm_strenWE:
+	iwm_pointE += 1
+	iwm_lustWE += 1
+	crouch = 0
+elseif iwm_strenW = iwm_strenWE:
+		varrand = rand(0, 1)
+
+		if varrand = 0:crouch = 1
+		if varrand=1:crouch=0
+end
+:markFightCrouch
+stoper = 0
+
+if crouch = 1:
+	enrand = rand(0, 1)
+	arand = rand(0, 1)
+
+	if arand = 0:
+		endur -= 2
+
+		if enrand = 0:
+			iwm_pointE += 1
+			jump 'markfight'
+		elseif enrand = 1:
+			iwm_point += 2
+			endurE -= 1
+			jump 'markfight1'
+		end
+	elseif arand = 1:
+		endur -= 1
+
+		if enrand = 0:
+			iwm_point += 1
+			jump 'markfight2'
+		elseif enrand = 1:
+			iwm_pointE += 1
+			endurE -= 1
+			jump 'markfight3'
+		end
+	end
+else
+	enrand = rand(0, 1)
+	arand = rand(0, 1)
+
+	if arand = 0:
+		if enrand = 0:
+			iwm_point += 1
+			endurE -= 2
+			jump 'markfightE'
+		elseif enrand = 1:
+			iwm_pointE += 1
+			endurE -= 1
+			jump 'markfightE1'
+		end
+	elseif arand = 1:
+		endur -= 1
+
+		if enrand = 0:
+			iwm_pointE += 2
+			endurE -= 2
+			jump 'markfightE2'
+		elseif enrand = 1:
+			iwm_point += 1
+			endurE -= 1
+			jump 'markfightE3'
+		end
+	end
+end
+
+:markfight
+koef = 100
+koefE = 90
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		arand = rand(0, 1)
+
+		if arand = 0:
+			dynamic $iwm_uderdin
+
+			if Aktiv > Passiv:
+				iwm_point += 1
+				Ku += 1
+				stoper = 0
+				jump 'markfight2'
+			elseif Aktiv < Passiv:
+				iwm_pointE += 1
+				KzE += 1
+				stoper = 0
+				jump 'markfight3'
+			elseif Aktiv = Passiv:
+				jump 'markfight'
+			end
+		elseif arand = 1:
+			dynamic $iwm_brosdin
+
+			if Aktiv > Passiv:
+				iwm_point += 2
+				iwm_lustW += 1
+				Kb += 1
+				stoper = 0
+				jump 'markfight1'
+			elseif Aktiv < Passiv:
+				iwm_pointE += 1
+				KzE += 1
+				stoper = 0
+				jump 'markfight3'
+			elseif Aktiv = Passiv:
+				jump 'markfight'
+			end
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_pointE += 1
+	jump 'markRoundStop'
+end
+
+:markfight1
+koef = 100
+koefE = 85
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		dynamic $iwm_uderdin
+
+		if Aktiv > Passiv:
+			iwm_point += 1
+			Ku += 1
+			stoper = 0
+			jump 'markfight2'
+		elseif Aktiv < Passiv:
+			iwm_pointE += 1
+			KzE += 1
+			stoper = 0
+			jump 'markfight3'
+		elseif Aktiv = Passiv:
+			jump 'markfight1'
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_pointE += 1
+	jump 'markRoundStop'
+end
+
+:markfight2
+koef = 100
+koefE = 80
+lustE -= 1
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		dynamic $iwm_uderdin
+		endurE -= 2
+
+		if Aktiv >= Passiv:
+			iwm_point += 1
+			iwm_lustWE -= 1
+			Ku += 1
+			jump 'markfight2'
+		elseif Aktiv < Passiv:
+			iwm_pointE += 1
+			KzE += 1
+			stoper = 0
+			jump 'markfight3'
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_point += 3
+	jump 'markRoundStop'
+end
+
+:markfight3
+koef = 100
+koefE = 100
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		arand = rand(0, 1)
+
+		if arand = 0:
+			dynamic $iwm_uderdin
+
+			if Aktiv > Passiv:
+				iwm_point += 1
+				Ku += 1
+				stoper = 0
+				jump 'markfight2'
+			elseif Aktiv <= Passiv:
+				iwm_pointE += 1
+				KzE += 1
+				jump 'markRoundStop'
+			end
+		elseif arand = 1:
+			dynamic $iwm_brosdin
+
+			if Aktiv > Passiv:
+				iwm_point += 2
+				iwm_lustW += 1
+				Kb += 1
+				stoper = 0
+				jump 'markfight1'
+			elseif Aktiv <= Passiv:
+				iwm_pointE += 1
+				KzE += 1
+				jump 'markRoundStop'
+			end
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_pointE += 1
+	jump 'markRoundStop'
+end
+
+:markfightE
+koef = 90
+koefE = 100
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		deystrand = rand(0, 1)
+
+		if deystrand = 0:
+			dynamic $iwm_uderdinE
+
+			if Aktiv > Passiv:
+				iwm_pointE += 1
+				KuE += 1
+				stoper = 0
+				jump 'markfightE1'
+			elseif Aktiv < Passiv:
+				iwm_point += 1
+				Kz += 1
+				stoper = 0
+				jump 'markfightE3'
+			elseif Aktiv = Passiv:
+				jump 'markfightE'
+			end
+		elseif deystrand = 1:
+			dynamic $iwm_$brosdinE
+
+			if Aktiv > Passiv:
+				iwm_pointE += 2
+				iwm_lustWE += 1
+				KbE += 1
+				stoper = 0
+				jump 'markfightE2'
+			elseif Aktiv < Passiv:
+				iwm_point += 1
+				Kz += 1
+				stoper = 0
+				jump 'markfightE3'
+			elseif Aktiv = Passiv:
+				jump 'markfightE'
+			end
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_point += 1
+	jump 'markRoundStop'
+end
+
+:markfightE1
+koef = 80
+koefE = 100
+lust -= 1
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		dynamic $iwm_uderdinE
+		endur -= 2
+
+		if Aktiv >= Passiv:
+			iwm_pointE += 1
+			iwm_lustW -= 1
+			KuE += 1
+			jump 'markfightE1'
+		elseif Aktiv < Passiv:
+			iwm_point += 1
+			Kz += 1
+			stoper = 0
+			jump 'markfightE3'
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_pointE += 3
+	jump 'markRoundStop'
+end
+
+:markfightE2
+koef = 85
+koefE = 100
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		dynamic $iwm_uderdinE
+
+		if Aktiv > Passiv:
+			iwm_pointE += 1
+			KuE += 1
+			stoper = 0
+			jump 'markfightE1'
+		elseif Aktiv < Passiv:
+			iwm_point += 1
+			Kz += 1
+			stoper = 0
+			jump 'markfightE3'
+		elseif Aktiv = Passiv:
+			jump 'markfightE2'
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_point += 1
+	jump 'markRoundStop'
+end
+
+:markfightE3
+koef = 100
+koefE = 100
+rMin -= 1
+stoper += 1
+
+if endur <= 0 or iwm_lustW <= 0:jump 'markSubLoss'
+if endurE <= 0 or iwm_lustWE <= 0:jump 'markSubWin'
+
+if stoper < 3:
+	if rMin > 0:
+		deystrand = rand(0 ,1)
+
+		if deystrand = 0:
+			dynamic $iwm_uderdinE
+
+			if Aktiv > Passiv:
+				iwm_pointE += 1
+				KuE += 1
+				stoper = 0
+				jump 'markfightE1'
+			elseif Aktiv <= Passiv:
+				iwm_point += 1
+				Kz += 1
+				jump 'markRoundStop'
+			end
+		elseif deystrand = 1:
+			dynamic $iwm_$brosdinE
+
+			if Aktiv > Passiv:
+				iwm_pointE += 2
+				iwm_lustWE += 1
+				KbE += 1
+				stoper = 0
+				jump 'markfightE2'
+			elseif Aktiv <= Passiv:
+				iwm_point += 1
+				Kz += 1
+				jump 'markRoundStop'
+			end
+		end
+	else
+		jump 'markRoundEnd'
+	end
+elseif stoper >= 3:
+	iwm_point += 1
+	jump 'markRoundStop'
+end
+
+:markRoundStop
+stoper = 0
+
+if crouch = 1 and croonce = 0:crouch = 0 & croonce = 1
+if crouch = 0 and croonce = 0:crouch = 1 & croonce = 1
+
+croonce = 0
+jump 'markFightCrouch'
+
+:markSubWin
+resultFight = 0
+jump 'markEndFight'
+
+:markSubLoss
+resultFight = 4
+jump ' markEndFight'
+
+:markRoundEnd
+round += 1
+rMin = 8
+stoper = 0
+
+if round = Formula + 1:
+	if iwm_point > iwm_pointE:
+		resultFight = 1
+	elseif iwm_point < iwm_pointE:
+		resultFight=3
+	elseif iwm_point = iwm_pointE:
+		resultFight=2
+	end
+
+	jump 'markEndFight'
+elseif round < Formula + 1:
+	endur += iwm_lustW * 25 / 100
+	endurE += iwm_lustWE *25 / 100
+
+	if crouch = 1 and croonce = 0:crouch = 0 & croonce = 1
+	if crouch = 0 and croonce = 0:crouch = 1 & croonce = 1
+
+	croonce = 0
+	jump 'markFightCrouch'
+end
+
+:markEndFight
+if NoView = 0:'<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>>'
+if NoView = 0:'<<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>>'
+if NoView = 0:'<<iwm_point>> points <<$iwm_nameA>> <<Ku>> Activism in the attacks retention, <<Kb>> Activism in the attacks throws, <<Kz>> successful defenses.'
+if NoView = 0:'<<iwm_pointE>> points <<$iwm_nameE>> <<KuE>> Activism in the attacks retention, <<KbE>> Activism in the attacks throws,  <<KzE>> successful defenses.'
+
+if resultFight = 0:
+	wipo[a] += 2
+	wipo[i] -= 1
+	rating[a] += 2
+	rating[i] -= 5
+	strand = rand(0, 2)
+
+	if strand = 0:musle[a] += 10
+	if strand = 1:flex[a] += 10
+	if strand = 2:stamina[a] += 10
+
+	tehrand = rand(0, 2)
+
+	if tehrand = 0:Bteh[a] += 10
+	if tehrand = 1:Uteh[a] += 10
+	if tehrand = 2:Zteh[a] += 10
+	if NoView = 0:'<b><<$iwm_nameA>> won surrender</b>'
+
+	$spisok[a] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=green>wins by submission</font>'
+	$spisok[i] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=red>defeat surrender</font>'
+	win[a] += 1
+	SubWin[a] += 1
+	loss[i] += 1
+	SubLoss[i] += 1
+elseif resultFight = 1:
+	wipo[a] += 1
+	rating[a] += 1
+	rating[i] -= 3
+	strand = rand(0, 2)
+
+	if strand = 0:musle[a] += 10
+	if strand = 1:flex[a] += 10
+	if strand = 2:stamina[a] += 10
+
+	tehrand = rand(0, 2)
+
+	if tehrand = 0:Bteh[a] += 10
+	if tehrand = 1:Uteh[a] += 10
+	if tehrand = 2:Zteh[a] += 10
+	if NoView = 0:'<b><<$iwm_nameA>> won</b>'
+
+	$spisok[a] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=green>victory</font>'
+	$spisok[i] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=red>defeat</font>'
+	win[a] += 1
+	loss[i] += 1
+elseif resultFight = 2:
+	rating[a] -= 1
+	rating[i] -= 1
+
+	if NoView = 0:'<b>The result of the fight a draw</b>'
+
+	$spisok[a] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=black>draw</font>'
+	$spisok[i] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=black>draw</font>'
+	draw[a] += 1
+	draw[i] += 1
+elseif resultFight = 3:
+	wipo[i] += 1
+	rating[a] -= 3
+	rating[i] += 1
+	strand = rand(0, 2)
+
+	if strand = 0:musle[i] += 10
+	if strand = 1:flex[i] += 10
+	if strand = 2:stamina[i] += 10
+
+	tehrand = rand(0, 2)
+
+	if tehrand = 0:Bteh[i] += 10
+	if tehrand = 1:Uteh[i] += 10
+	if tehrand = 2:Zteh[i] += 10
+	if NoView = 0:'<b><<$iwm_nameE>> won</b>'
+
+	$spisok[a] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=red>defeat</font>'
+	$spisok[i] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=green>victory</font>'
+	win[i] += 1
+	loss[a] += 1
+elseif resultFight = 4:
+	wipo[i] += 2
+	wipo[a] -= 1
+	rating[a] -= 5
+	rating[i] += 2
+	strand = rand(0, 2)
+
+	if strand = 0:musle[i] += 10
+	if strand = 1:flex[i] += 10
+	if strand = 2:stamina[i] += 10
+
+	tehrand = rand(0, 2)
+
+	if tehrand = 0:Bteh[i] += 10
+	if tehrand = 1:Uteh[i] += 10
+	if tehrand = 2:Zteh[i] += 10
+	if NoView = 0:'<b><<$iwm_nameE>> won surrender</b>'
+
+	$spisok[a] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=red>defeat surrender</font>'
+	$spisok[i] += '<<$iwm_nameA>> <<win[a]>>-<<loss[a]>>-<<draw[a]>> <<SubWin[a]>>/<<SubLoss[a]>> vs <<$iwm_nameE>> <<win[i]>>-<<loss[i]>>-<<draw[i]>> <<SubWin[i]>>/<<SubLoss[i]>> <font color=green>wins by submission</font>'
+	win[i] += 1
+	SubWin[i] += 1
+	loss[a] += 1
+	SubLoss[a] += 1
+end
+
+--- mod_iwhore_autofight ---------------------------------
+

+ 1692 - 0
locations/mod_iwhore_begin.qsrc

@@ -0,0 +1,1692 @@
+# mod_iwhore_begin
+!    gt 'mod_iwhore_begin','pimp'
+if $ARGS[0] = 'easymoney':
+	cla
+	*clr
+	cls
+	gs 'stat'
+	gs 'npcgeneratec', 0, 'Client in Pavlovsk', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals1.jpg"></center>'
+	'"What''s on your mind man?"<br>"Pretty simple baby..." He pull out some cash swinging it around the air..."...see money it''s not a problem for me, and i''d like to share some. But everything has its price...a favour for a favour. Simple isn''t it? Here''s the offer, you show me see your tits...and you will earn some money."'
+
+	act 'Agree':
+		cla
+		*clr
+		minut += 2
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+		'"My condition...we''ll go on a secluded place, and you will give me the money before."<br>"What a smart girl...lead the way." You both walk toward a secluded spot far away from unwanted eyes.'
+		act 'Money first!':
+			cla
+			*clr
+			minut += 2
+			money += 50
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+			'"...That was the condition..." He pass you 50 rubles from his money roll..."...now you have to respect our agreement."'
+			act 'Show your precious':
+				cla
+				*clr
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/3showpt7.jpg"></center>'
+				'You look around some times to see no one notice your show..."Not bad." You are a little emabarassed from the show you are putting on, but something deep is tingling inside you, and money are always useful afterall. "...I''ve got another offer..." The man bring you again on the reality..."...You can earn more movey if you agree to blow me right now."'
+				act '...You want a blowjob...here?...':
+					cla
+					*clr
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+					'"You cover your tits thinking at his proposal...again the man swing around some pretty money..."There''s nothing to be worried, your tits give me an hard on, and there''s no one around. It''s your fault afterall...hehehe. Here take these, i think i can trust you..."'
+					act '...take the money...and...':
+						cla
+						*clr
+						money += 150
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+						'...'
+						act 'Kneel':
+							cla
+							*clr
+							slutty += 1
+							guy += 1
+							pav_sex += rand(0,1)
+							gs 'fame', 'pav', 'prostitute', rand(3,9)
+							new_whore += 1
+							new_whore_day = daystart
+							$orgasm_or = 'no'
+							gs 'arousal', 'foreplay', 2, 'prostitution'
+							gs 'arousal', 'end'
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj2.jpg"></center>'
+							'You are too much attracted from money to say no, and who knows what could have happened if you run away with money without service him. You look around one last time to be secure no one is strolling around and finally kneel in front of the man. As you unzip his pants he free all his mankind...the man gently push your head to start the work "That way...we''ll be fast...". Once your head is "in place" he free you from the grip and you start to service him...'
+							act 'Work the shaft':
+								cla
+								*clr
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/bj/vbj2.mp4"></video></center>'
+								'...You don''t dare to look him in the eyes, your only thought is to be as fastest as you can. Not much time passed that you can feel he''s going to finish...."...Uuuuh...get ready bitch..." . His words left you offended, but they are true: you served him for money...'
+								act 'swallow':
+									cla
+									*clr
+									spafinloc = 12
+									gs 'cum_manage'
+									gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+									gs 'arousal', 'end'
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj1.mp4"></video></center>'
+									'...You don''t want to be dirty and swallow his load; he seems to appreciate that... . "Uuuuh...good girl..." '
+									act 'Straighten your clothes and walk away':
+										cla
+										*clr
+										money += 50
+										gs 'stat'
+										if $pantyworntype = 'none' and analplugin = 1:
+											gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+											gs 'arousal', 'end'
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdealplug0.mp4"></video></center>'
+											'Squatting in front of him let your skirt rise too much, you have to adjust your clothes... . "Hell baby, if i know it from the start i could have asked for something else..." You realize he''s staring at your butt plugged; you wonder if there is a real difference if you offer something else . "Take this is a bonus for your work...you should consider your opportunities." The man let another 50 fall on the ground and walk away. You turn back to take them, and reflect on his words...'
+										else
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdeal1.mp4"></video></center>'
+											'Squatting in front of him let your skirt rise too much, you have to adjust your clothes. You don''t have much word to say, and wonder if there is a real difference if you offer something else . "Take this is a bonus for your work...you should consider your opportunities." The man let another 50 fall on the ground and walk away. You turn back to take them, and reflect on his words...'
+										end
+										act 'Go away': gt 'pav_residential'
+									end
+								end
+								act 'Put your face away':
+									cla
+									*clr
+									spafinloc = 11
+									gs 'cum_manage'
+									gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+									gs 'arousal', 'end'
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/facial0.mp4.mp4"></video></center>'
+									'..."...Do not dare to put away from your face bitch....uuuuh...."...and you didn''t disappoint him. This is a big load and drop that fall on your tongue make you to instintively catch them...there was no real difference with swallow it, and now your face is covered in cum... '
+									act 'Straighten your clothes and walk away':
+										cla
+										*clr
+										gs 'stat'
+										if $pantyworntype = 'none' and analplugin = 1:
+											gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+											gs 'arousal', 'end'
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdealplug0.mp4"></video></center>'
+											'Squatting in front of him let your skirt rise too much, you have to adjust your clothes. "Hell baby, if i know it from the start i could have asked for something else..." You realize he''s staring at your butt plugged; you wonder if there is a real difference if you offer something else . "You should consider your opportunities." The man walk away; ashamed and aroused, and with your face covered in cum you follow his example and reflect on his words...'
+										else
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdeal1.mp4"></video></center>'
+											'Squatting in front of him let your skirt rise too much, you have to adjust your clothes. You don''t have much word to say, and wonder if there is a real difference if you offer something else . "You should consider your opportunities." The man walk away; ashamed and aroused, and with your face covered in cum you follow his example and reflect on his words...'
+
+										end
+										act 'Go away': gt 'pav_residential'
+									end
+								end
+							end
+						end
+						act 'Run':
+							cla
+							*clr
+							gs 'stat'
+							'<center><video autoplay loop src="images/locations/shared/postoffice/punch.mp4"></video></center>'	
+							'You were too much focused on looking for people that didn''t realize that the man was pushing your shoe latch with his feet; as you turn to run away you can do nothing but fall... . The man jump on you and start to puch your face; the event didn''t let you defend yourself..."Always the same... . You will learn!" You lose your consciousness; the man continue to punch you... . Fortunately he has no other intentions and let you leave. As you wake up you notice your purse..."..."... . The man took all your money... . You can do nothing but reflect on your action. The police it''s not an option: what could you say in any case? You try to forget the accident: for sure you will not try something so stupid again.'
+							minut += 180
+							money = 0
+							gs 'pain', 8, 'tummy', 'hit'
+							gs 'stat'
+							
+							act 'Recover':gt 'pav_residential'
+						end
+
+					end
+					act 'No way!':gt 'pav_residential'
+				end
+				
+			end
+		end
+	end
+	act 'run away':gt 'pav_residential'
+end
+
+if $ARGS[0] = 'habits':
+	cla
+	*clr
+	cls
+	gs 'stat'
+	gs 'npcgeneratec', 0, 'Client in Pavlovsk', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals1.jpg"></center>'
+	'"What''s on your mind man?"<br>"Pretty simple baby..." He pull out some cash swinging it around the air..."...see money it''s not a problem for me, and i''d like to share some. But everything has its price...a favour for a favour. Simple isn''t it? Here''s the offer, you show me see your tits...and you will earn some money."'
+
+	
+	act 'Agree':
+		cla
+		*clr
+		minut += 2
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+		'"My condition...we''ll go on a secluded place, and you will give me the money before."<br>"What a smart girl...lead the way." You both walk toward a secluded spot far away from unwanted eyes.'
+		act 'Money first!':
+			cla
+			*clr
+			minut += 2
+			money += 50
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+			'"...That was the condition..." He pass you 50 rubles from his money roll..."...Your turn."'
+			act 'Show your precious':
+				cla
+				*clr
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/3showmt3.jpg"></center>'
+				'You look around some times to see no one notice your show..."Not bad." You are a little emabarassed from the show you are putting on, but something deep is tingling inside you, and money are always useful afterall. "I''ve got something else for you if you blow me right now." The man count the money and pass you 150 rubles...'
+				act 'I want 200!':
+					cla
+					*clr
+					money += 150
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/3showmt3.jpg"></center>'
+					if new_whore < 3:
+						'The man pass you other 50 rubles..."Fine, that''s only because you seems new to this. Take your money and start..."'
+						money += 50
+					else	
+						'"Nonsense, that''s not the prize. Take your money and start or go away."'
+					end	
+					
+					act 'Kneel':
+						cla
+						*clr
+						slutty += 1
+						guy += 1
+						pav_sex += rand(0,1)
+						gs 'fame', 'pav', 'prostitute', rand(3,9)
+						new_whore += 1
+						new_whore_day = daystart
+						$orgasm_or = 'no'
+						gs 'arousal', 'foreplay', 2, 'prostitution'
+						gs 'arousal', 'end'
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj7.jpg"></center>'
+						'You are too much attracted from money to say no... You look around one last time to be secure no one is strolling around and finally kneel in front of the man. As you unzip his pants he free all his mankind...the man gently push your head to start the work "That way...we''ll be fast...". Once your head is "in place" he free you from the grip and you start to service him...'
+						act 'Work the shaft':
+							cla
+							*clr
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/bj/vbj4.mp4"></video></center>'
+							'...You don''t dare to look him in the eyes, your only thought is to be as fastest as you can. Not much time passed that you can feel he''s going to finish...."...Uuuuh...get ready bitch..." . His words left you offended, but they are true: you served him for money...'
+							act 'swallow':
+								cla
+								*clr
+								spafinloc = 12
+								gs 'cum_manage'
+								gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+								gs 'arousal', 'end'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj1.mp4"></video></center>'
+								'...You don''t want to be dirty and swallow his load; he seems to appreciate that... . "Uuuuh...good girl..." '
+								act 'Straighten your clothes and walk away':
+									cla
+									*clr
+									money += 15
+									gs 'stat'
+									if $pantyworntype = 'none' and analplugin = 1:
+										gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+										gs 'arousal', 'end'
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdealplug0.mp4"></video></center>'
+										'You have to adjust your clothes. "Hell baby, if i know it from the start i could have asked for something else..." You realize he''s staring at your butt plugged; you wonder if there is a real difference if you offer something else . "Take this is a bonus for your work...you should consider your opportunities." The man let another 15 fall on the ground and walk away. You turn back to take them, and reflect on his words...'
+									else
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdeal1.mp4"></video></center>'
+										'You have to adjust your clothes. You don''t have much word to say, and wonder if there is a real difference if you offer something else . "Take this is a bonus for your work...you should consider your opportunities." The man let another 15 fall on the ground and walk away. You turn back to take them, and reflect on his words...'
+									end
+									act 'Go away': gt 'pav_residential'
+								end
+							end
+							act 'Put your face away':
+								cla
+								*clr
+								spafinloc = 11
+								gs 'cum_manage'
+								gs 'arousal', 'bj', 10, 'prostitution', 'unknown' 
+								gs 'arousal', 'end'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/facial0.mp4"></video></center>'
+								'..."...Do not dare to put away from your face bitch....uuuuh...."...and you didn''t disappoint him. This is a big load and drop that fall on your tongue make you to instintively catch them...there was no real difference with swallow it, and now your face is covered in cum... '
+								act 'Straighten your clothes and walk away':
+									cla
+									*clr
+									gs 'stat'
+									if $pantyworntype = 'none' and analplugin = 1:
+										gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+										gs 'arousal', 'end'
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdealplug0.mp4"></video></center>'
+										'You have to adjust your clothes. "Hell baby, if i know it from the start i could have asked for something else..." You realize he''s staring at your butt plugged; you wonder if there is a real difference if you offer something else . "You should consider your opportunities." The man walk away; ashamed and aroused, and with your face covered in cum you follow his example and reflect on his words...'
+									else
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdeal1.mp4"></video></center>'
+										'You have to adjust your clothes. You don''t have much word to say, and wonder if there is a real difference if you offer something else . "You should consider your opportunities." The man walk away; ashamed and aroused, and with your face covered in cum you follow his example and reflect on his words...'
+
+									end
+									act 'Go away': gt 'pav_residential'
+								end
+							end
+						end
+
+					end
+					act 'No way!':
+						cla
+						*clr
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals0.jpg"></center>'
+						'You turn back the money to the man... ."Fine, go away then. You won''t find better occasions..." The man walk away; you don''t have something better to do than follow his example.'
+						money -= 150
+						act 'Leave':gt 'pav_residential'
+					end
+				end
+				
+			end
+			act 'run away':gt 'pav_residential'
+		end
+	end
+	act 'run away':gt 'pav_residential'
+end
+
+if $ARGS[0] = 'hookup':
+	cla
+	*clr
+	cls
+	gs 'stat'
+	gs 'npcgeneratec', 0, 'Client in Pavlovsk', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/propmsc1.jpg"></center>'
+	'"What''s on your mind man?"<br>"Why don''t we go for a ride? See money it''s not a problem for me, and i''d like to share some... ." The man says swinging a lot of cash in front of you...'
+	
+	act 'Discuss':
+		cla
+		*clr
+		minut += 2
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/propmsc1.jpg"></center>'
+		'"My condition...we''ll go on a secluded place, and you will give me the money before."<br>"You are new to that? Let''s settle this way, i''ll give you half right now...the rest at the end. That''s the right way baby if you want to make big money."'
+		act 'Approach the door':
+			cla
+			*clr
+			minut += 2
+			money += 300
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/enter.jpg"></center>'
+			'You make to enter and pick the money..."Uh? You told me you give me half...that''s more than the whole amount... ." "Don''t be silly. I have to fuck, Paula has a broken legs and my wife...is uglyer than...than...shit! Don''t make me think to my wife! There''s nothing uglyer than her!"<br>"You want to fuck...me?"<br>"There''s a bonus of 50 rubles too... don''t you see? I want to fuck the brain out of you once you blow me well... . Is that to much difficult for you? 600 rubles and no tax...what else do you want ... a puppy? Move your butt, i don''t have the whole day: do you want your money or not?"'
+			act 'Jump in the car':
+				cla
+				*clr
+				gs 'stat'
+				killvar 'new_whore_day'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/begin.mp4"></video></center>'
+				'..."Mmmm...not bad."<br>"Hey! We are not arrived!"<br>"Where''s the problem, i paid for the half i can do what i want with your pussy and mouth... . You''ll see the rest at the end." The man is right that''s the agreement: during the whole trip he doesn''t stop to caress your legs. Despite selling your body this is a turning on; the man seems to understand you are not regretting entirely his advances and sometimes rup your pussy...but he has little time before arrive to destination. Finally the trip ends and the man turn off the car; no one is on sight this is a good place. "Free your puppy. I want to seem them, and start masturbating."<br>"That''s not in the request..."<br>"It''s not a request it''s an advice; i have an hard on from a week and i''ll need to fuck urgently: do you want me to fuck you dry?"'
+				act 'Prepare yor pussy':
+					cla
+					*clr
+					slutty += 1
+					guy += 1
+					pav_sex += rand(0,1)
+					gs 'fame', 'pav', 'prostitute', rand(3,9)
+					gs 'arousal', 'masturbate', 1, 'prostitution', 'unknown'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow0.mp4"></video></center>'
+					'"Fine..." You go on the backseat and start to touch yourself. The man caressig you for the whole trip was arousing someway and you to feel pleasure from masturbating in front of him right now...<br>"Let me check..."'
+	
+					act 'I''m ready':
+						cla
+						*clr
+						gs 'arousal', 'vaginal_finger', 1, 'prostitution', 'unknown'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow1.mp4"></video></center>'
+						'You unzip his pants and free all his mankind...the man gently push his finger inside your intimate...."Good girl..., it seems we are both having pleasure hehehe. Go down, it''s time to lube my friend..."'
+						
+						act 'Lube the cock':
+							cla
+							*clr
+							gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow2.mp4"></video></center>'
+							'You squat in front of the man and take his shaft into your mouth..."Enough! Turn around bitch."'
+							
+							act 'That''s why you are here....':
+								cla
+								*clr
+								new_whore += 1
+								gs 'arousal', 'vaginal', 5, 'prostitution', 'unknown'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow3.mp4"></video></center>'
+								'He put a condom on his dick and immediately start to screw your pussy as today is the last day on the earth..."...Uuuuh Paula...did you miss me?..."... "???"  ....it seems he has someone else in his mind; but that doesn''t bother you, you are here for money...and maybe to cool down some of the plasure it''s burning inside you."...Bitch!...You like it don''t you?"'
+								act 'GO DADDY GO!':
+									cla
+									*clr
+									slutty += 1
+									gs 'arousal', 'vaginal', 5, 'prostitution', 'unknown'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow4.mp4"></video></center>'
+									'"Yes daddy! Pound me hard!" You thought it''s a good idea, and maybe he''ll finish soon..."Ahhhh Paula....move, i''ll give you your luch..."'									
+									act 'Kneel':
+										cla
+										*clr
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow5.mp4"></video></center>'
+										'You squat in front of the man who pull out his condom and take his shaft in your mouth again. You work hard to make him cum...."uuuhh....hahhhh...take it bitch!"'
+										act '...':
+											cla
+											*clr
+											spafinloc = 12
+											gs 'cum_manage'
+											gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+											gs 'arousal', 'end'
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow6.mp4"></video></center>'
+											'The man release his hot spunk straight into your mouth..."Ahhhh Paula...always eager... . You are the best whore in town." You don''t know the limits between the excitment of the situation that being threated like a whore is giving you and the humiliation you are feeling, but one thing is sure in all this mess: money.'
+											act 'Money. Now.':
+												cla
+												*clr
+												money += 350
+												gs 'stat'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+												'You constantly keep the sight on the man... . "Good job whore, you almost make me forgetting Paula''s mouth. Here take a bonus for your effort." The man pass you the rest and 50 bonus rubles. '
+												act 'Go away': gt 'mod_iwhore_pbath', 'start'
+											end
+										end
+									end
+								end
+								act '...':
+									cla
+									*clr
+									gs 'arousal', 'vaginal', 15, 'prostitution', 'unknown'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow4.mp4"></video></center>'
+									'You don''t know what to do and let him continue..."Ahhhh bitch....move, i''ll give you your luch..."'									
+									act 'Kneel':
+										cla
+										*clr
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow5.mp4"></video></center>'
+										'You squat in front of the man who pull out his condom and take his shaft in your mouth again. You work hard to make him cum...."uuuhh....hahhhh...take it bitch!"'
+										act '...':
+											cla
+											*clr
+											spafinloc = 12
+											gs 'cum_manage'
+											gs 'arousal', 'bj', 5, 'prostitution', 'unknown', 'sub', 'humiliation'
+											gs 'arousal', 'end'
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/stories/1clientshow6.mp4"></video></center>'
+											'The man release his hot spunk straight into your mouth..."That''s it...you won''t need to eat for today." After those degrading session your thought is all focused on money.'
+											act 'Money. Now.':
+												cla
+												*clr
+												money += 300
+												gs 'stat'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+												'You constantly keep the sight on the man... . "You could be good if you improve your effort. Do not act like a rotten wood chop, and you could be able to earn something more"<br>"Hey!"<br>"Well...what do you expect? You have to be pleasant with your clients; it''s an advice, i don''t know if Paula will recover soon, and i could benefit again of you. If you want to make more money you have to be good." That said the man left you alone; you can''t do nothing else than follow his example.'
+												act 'Go away': gt 'mod_iwhore_pbath', 'start'
+											end
+										end
+									end
+								end
+								
+							end
+						end
+					end
+				end
+				
+			end
+			act 'Turn back the money':
+				cla
+				*clr
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/dealc3.jpg"></center>'
+				'You turn back the money to the man... ."Fine, go away then. You won''t find better occasions..." The man walk away; you don''t have something better to do than follow his example.'
+				money -= 300
+				act 'Leave':gt 'pav_residential'
+			end
+		end
+	end
+	act 'No away!':gt 'pav_residential'
+end	
+
+!!!!!!!!!!PIMPING!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'inna':
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	inna_varvara_pimp = 2
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst.jpg"></center>'
+	if home_owned[2] = 1 or home_owned[1] > 0:
+		'Woman: "Not so fast, young lady."<br>You were walking through the stairs as always, when a woman you never seen stop you from going further... .'	
+	else
+		'Woman: "Not so fast, young lady."<br>You were almost exit from the building that a woman you never saw stop you from going further... .'	
+	end
+	act '"Go away. I don''t know you, and i have to pass."':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst.jpg"></center>'		
+		'Woman: "Alchool...uh? A little help, but it will not be enough... . Don''t worry, i''ll not steal too much of your time. Say: have you ever seen this?"'	
+		'You made a step to pass the woman, when she throw <a href="exec: gs ''mod_iwhore_begin'', ''evidence'' & view''mod/iwhore/images/characters/pavlovsk/resident/tartan.jpg''">something</a> near you...'
+
+		act '"I said go away, let me pass."':
+			*clr & cla
+			minut += 3
+			if home_owned[2] = 1 or home_owned[1] > 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst1.jpg"></center>'
+				'Woman: "As you wish <<$pcs_lastname>>; if you change your mind pay a visit to me. I live in Pavlovsk fifth floor of the eastern apartment complex. You shouldn''t have problems to find me... . Ask about "Inna"."'	
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirsta1.jpg"></center>'
+				'Woman: "As you wish <<$pcs_lastname>>; if you change your mind pay a visit to me. I live in Pavlovsk fifth floor of the eastern apartment complex. Ask about "Inna"."'	
+			end
+			act 'Go away':gt $loc, $loc_arg
+			act '"Wait who are you? How do you know me?"':
+				*clr & cla
+				gs 'stat'
+				minut += 3
+				if home_owned[2] = 1 or home_owned[1] > 0:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst1.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirsta1.jpg"></center>'
+				end
+				'Inna: "I just told you, but that''s not a place to speak. Pay a visit, i could have something better than cheap alchool... ."'	
+				act 'Go away':gt $loc, $loc_arg
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'evidence':
+	'You pick what the woman throw next to you... . You saw that before...'
+	act '"T-this..."':
+		*clr & cla
+		gs 'stat'
+		minut += 5
+		inna_varvara_pimp = 3
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt1.jpg"></center>'
+		'In that moment the words of Dr. Bogomolov return to your mind: "...she may know something... . Something about the reason you ended up here....'
+		act '"Who are you? Answer me!"':
+			*clr & cla
+			minut += 5
+			if home_owned[2] = 1 or home_owned[1] > 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst1.jpg"></center>'
+				'Woman: "All but not an enemy <<$pcs_lastname>>; why don''t you pay a visit to me? I live in Pavlovsk fifth floor of the eastern apartment complex. You shouldn''t have problems to find me... . Ask about "Inna"."'	
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirsta1.jpg"></center>'
+				'Woman: "All but not an enemy <<$pcs_lastname>>; why don''t you pay a visit to me? I live in Pavlovsk fifth floor of the eastern apartment complex. Ask about "Inna"."'	
+			end
+			act '"How do you know me? Are you a police officer?"':
+				*clr & cla
+				gs 'stat'
+				minut += 2
+				if home_owned[2] = 1 or home_owned[1] > 0:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirst2.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innafirsta2.jpg"></center>'
+				end
+				'Inna: "Umpffhh! No offence is taken...this time. I just told you. Pay a visit, i could have something better than cheap alchool... ."'	
+				act '"Wait!"':
+					*clr & cla
+					gs 'stat'
+					minut += 3
+					if home_owned[2] = 1: 
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj2.jpg"></center>'
+					elseif home_owned[1] > 0:
+						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj4.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/abandoned.jpg"></center>'
+					end
+					'...But the woman has no intention to wait. She turn and walk away leaving you frozen in place. You could decide to visit her and know something more about what happened to you...or not.'	
+					act 'Go away':gt $loc, $loc_arg
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'start':
+
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+	'You walk up to the front door ...you could find the answer you are looking for...or worst...'
+	act 'Ring the doorbell':
+		*clr & cla
+		minut += 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/lookup.jpg"></center>'
+		'The door open...'
+		act '"..."':
+			*clr & cla
+			minut += 1
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gavriildoor.jpg"></center>'
+			'Man: "..."<br>A big black guy stand at the door; he neither can pass the door without lowering himself...the sight of this man is scaring. He''s silent and neither blink his eyes...you wonder if you are having an allucination...<br>"I-i...i''m sorry, i must have ringed at the wrong door..."<br>Man: "You must be <<$pcs_firstname>> <<$pcs_lastname>>. I''ve heard about you..."<br>"..." You neither shakle or nod... <br>Man: "...Vik should be in her room; please enter, i will announce you."<br>Despite a good russian, you understand almost immediately he''s not native... . His manner are polite, and that''s reassuring...still you wonder if this is the right place. <br>Man: "You know her simply as Inna; I''m Gabriel, Gavriil in your language. You are welcome in this house..."<br>The man move from the door allowing you to pass...'
+			act 'Enter':
+				*clr & cla
+				minut += 4
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/living.jpg"></center>'
+				'Gavriil: "Please, have a seat... ."You quickly look at the house while you walked in; it seems bigger than the standard house of the complex you are habit...and restyled. While you wonder how''s that possible the man come back...<br>Gavriil: "She''s coming; i''ll left you alone, you have a lot to talk. See you soon miss <<$pcs_lastname>>"<br>"...G-goodbye..."'
+				if inna_varvara_pimp = 2:
+					act 'Sit':
+						*clr & cla
+						minut += 5
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+						'As soon as the door slam the woman enter the room...<br>Inna: "Good evening <<$pcs_firstname>>" and again she throw <a href="exec: gs ''mod_iwhore_begin'', ''evidence1'' & view''mod/iwhore/images/characters/pavlovsk/resident/tartan.jpg''">something</a> near you... . '
+						'Inna: "I''m pretty sure you don''t want to lose your time...guess what? Neither I. Look at <a href="exec: gs ''mod_iwhore_begin'', ''evidence1'' & view''mod/iwhore/images/characters/pavlovsk/resident/tartan.jpg''">this</a> . Only after you will take a look we will continue our conversation...anyway feel free to ask for something to drink if you are thirsty... ."'
+!						act 'Go away':gt 'pav_complexb2', 'etaj_5'
+					end
+				elseif inna_varvara_pimp = 3:
+					act 'Sit':
+						*clr & cla
+						minut += 5
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+						'As soon as the door slam the woman enter the room...<br>Inna: "Good evening <<$pcs_firstname>>". She throw next to you the same <a href="exec: gs ''mod_iwhore_innapt'', ''evidence1'' & view''mod/iwhore/images/characters/pavlovsk/resident/tartan.jpg''">rag</a> of the last time... . '
+						'Inna: "I''d like to talk to you about that...but i understand if you don''t want... . Anyway feel free to ask for something to drink if you are thirsty... ."'
+						act '"I have nothing to say... . There''s nothing to talk."':gt 'mod_iwhore_begin', 'evidence1'
+					end
+				else
+				
+				end
+			end
+		end
+	end
+	act 'Move away from the door': minut += 1 & gt 'mod_iwhore_innapodz', 'etaj_5'
+
+end
+
+if $ARGS[0] = 'evidence1':
+	if inna_varvara_pimp = 2:
+		minut += 5
+		'You pick what the woman throw next to you... . You saw that before...'
+		act '"T-this..."':
+			*clr & cla
+			gs 'stat'
+			inna_varvara_pimp = 3
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt1.jpg"></center>'
+			'In that moment the words of Dr. Bogomolov return to your mind: "...she may know something... . Something about the reason you ended up here....'
+			act '"Who really are you? Answer me!"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+				'Woman: "All but not an enemy <<$pcs_firstname>>; you saw him...isn''t it?"'	
+				act '"Are you a police officer? I have nothing to say..."':
+					*clr & cla
+					gs 'stat'
+					minut += 5
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+					'Inna: "Umpffhh! No offence is taken...this time. I just told you. I understand if you don''t want to talk... ."'	
+					act '"There''s nothing to talk."':gt 'mod_iwhore_begin', 'evidence1'
+				end
+			end
+		end
+	elseif inna_varvara_pimp = 3:
+		*clr & cla
+		gs 'stat'
+		minut += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+		'Inna: "Nothing... ."<br>"N-o-t-h-i-n-g. Are you deaf?"<br>Inna: "...That''s a strange way to define an awakening from 7 days of deep coma...i have to sign it somewhere."'	
+		act '"What do you want from me?"':
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+			'Inna: "Nothing. But maybe you are willing to help yourself... . What Ignatiy and Dr Smirnitskaya have done could not be enough..."'	
+			act '...':
+				*clr & cla
+				minut += 3
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+				'Inna: "..."<br>"You are the one who have to explain me things!"<br>Inna: "I''ll try to do better than try to explain you things... . I''ll try to placate yourself... . Being self destructive it''s the worst things but to do that i need your cooperation... ."'	
+				act '"There''s nothing you can do... ."':
+					*clr & cla
+					minut += 2
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+					'Inna: "Maybe, or maybe not. Wait here... ."'	
+					act 'Wait':gt 'mod_iwhore_begin', 'gift'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'gift':
+
+	*clr & cla
+	minut += 2
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/badasses.jpg"></center>'
+	'Inna: "Have a look...i need a name... ."'
+	wait 6000
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/pc/newfear.jpg"></center>'
+	'Inna: "...Start with these: It will help you now... ."'
+	wait 6000
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/start.jpg"></center>'
+	'Inna: "...and you''ll feel less disgusted when you''ll throw up... . When you''ll finish to feel tastes...here are the bottles... ."'
+	act 'Drink':
+		*clr & cla
+		minut += 25
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/allin.jpg"></center>'
+		'Soon the tastes became a distand feeling: you pick the bottle and start to drink directly from it. <br>..."...I don''t feel very well..."...<br>Inna: "...Ummmh...not bad not bad. Almost a step beyond light weight... . Throw where you prefer...it''s not my turn... ."'
+		act '...':
+			*clr & cla
+			minut += 5
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/throwup.jpg"></center>'
+			'Doc: "...Uh?...What are those noise?...Inna!..."<br>"..."<br>Inna: "Well? It''s not my turn...i do not care... ."<br>"..."<br>Doc: "...INNA!"<br>Inna: "Ok ok...here is the bucket..."<br>Doc: "...Unbelievable... . Owhh...i hate puke..."<br>Inna: "...Come on...it''s not all this problem... . See...she throw almost everything in the bucket at the end... . Now shoo!...let her rest."'
+			act 'You faint from the alchool':
+				*clr & cla
+				hour += 4
+				minut += 15
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/restart.jpg"></center>'
+				'You wake up after some hours; you still are wasted, but that''s not enough...<br>"..."<br>Inna: "...It was time... ."<br>"...Give me an hand...i cannot reach it..."<br>Inna: "I''ll give you an hands...but in another way...hopefully. I need a name: i have to be sure."<br>"..."'
+				act '"...I...know...nothing..."':
+					*clr & cla
+					minut += 5
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/wasted.jpg"></center>'
+					'Inna: "...Come on...you cannot fool me. Your was not a normal reaction. I must have hit the right spot: it''s one of them. But i need a name to claim my win...and i have to hear it from you."<br>"...I made a mistake coming here...i need to go."<br>Inna: "You''ll make the biggest mistake of your life if you''ll pass that door without letting me know who was the beast who almost killed you..."<br>"..."<br>Inna: "...and you know that now he''s walking free in Pavlovsk."<br>"..."<br>Inna: "The door is open if you want to go away... . But think well: are you ready to turn any corner of the city not knowing if you''ll be alive till the next?"'
+					act '"Why do you want to help me? Why did you helped me?..."':
+						*clr & cla
+						minut += 5
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+						'Inna: "Because there are things in that city that cannot happen without me being aware of it."<br>"...Y-you are the one who gave me a first aid...why?"<br>Inna: "..."<br>"...Why? You are not telling me everything..."<br>Inna: "...We''ll speak again...that''s for sure. If i have to make by myself i''ll spend more time...you could make things easier for me, and that''s all. On the other side i cannot grant you protection from that man for more than another week... . To watch over you 24/24 hours could not seems but it''s expensive...and if i''m right you need a 24/24 hours protection. When he will find you are alive, assuming he''s actually not aware of it, it will start to look for you. It costed me to keep the return to your daily life a secret; but now you wonder free...and you are clearly visible to the most, and my resources are not endless... . They have to work... . I prefer to cut the problems from the root; what about you?"'
+						act '"...Y-you ...what?... "':
+							*clr & cla
+							minut += 5
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+							'Inna: "Don''t worry, that won''t be necessary... . I don''t work that way, i won''t kill him. No: he will simply stop to commit something i don''t allow."<br>"...You are a fool if you think that will be enough: what do you want to do? Do you think he will stop if you ask him gently?"<br>Inna: "I got my ways. Unfortunately i need his name to speed up things... . To go against those people all together it''s time and money consuming. All of them have a weakness...and you have to know how to deal with that."<br>"..."<br>Inna: "...Listen <<$pcs_nickname>>...can i call you <<$pcs_nickname>>?"<br>"..."<br>Inna: "...Let''s settle this way: you can tell me the name of the bastard right now or within a week. It will be enought for you to slip the photo with the face of the bastard signed if you don''t want to pass... . I''ll understand that it comes from you; when everything will be done i''ll look for you...and you will know the output."<br>"..."<br>"<<$pcs_nickname>>... I know it''s a big thing you struggle with...but there''s not many time. When he raped you he used a condom, and with throwing you in the sewer he deleted all the proof that could have been used against him except this rag...and you. To be honest i don''t even think police will go forward with the investigation, but i have to deal with one thing at the time and believe me: I''ll deal with this in one way or another, with or without your help; while you have only two ways left: trust me or go living on the mountain."'
+							act '"What do you want in return?"':
+								*clr & cla
+								minut += 5
+								gs 'stat'
+								inna_varvara_pimp = 4
+								gennadij_day = daystart + 7
+								gennadij_hunter = 1
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innagift.jpg"></center>'
+								'Inna: "Nothing. Consider it a gift for the price you paid."<br>"...It''s hard for me to think you agree to help me, if you will ever be able, without wanting nothing in return..." <br>Inna: "...I told you we''ll speak again, and also i told you that this matter is the first on the list; and i''ll repeat myself: this is totally free and you could avoid me to spend time money and energy on the bastard. As you can see i have a little return...but you have to pay nothing...you just paid. And that''s my gift." <br>"..." <br>Inna: "What matter is that you can still decide what to do...you are on time to take your life back and to take your decision by your own without being the puppet of the fear. Make your choice, now that you can."'
+								act 'You take the photo and a pen: you made your decision.':
+									*clr & cla
+									minut += 2
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/badasses1.jpg"></center>'
+									'You sign the face of the man...and the angry overwelmed you... Inna stop your hand gently.<br>Inna: "I see. Is there the chance you made a mistake?"<br>You shackle your head before starting to cry, thinking if you have not made a bad mistake. <br>Inna: "You took the right choice <<$pcs_nickname>>."'
+									act '"...H-he will catch me..."':
+										*clr & cla
+										minut += 2
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="images/pc/tears1.jpg"></center>'
+										'Inna: "No, not anymore. MIESZKO!"'
+										wait 5000
+										*clr & cla
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/mec0.jpg"></center>'
+										'A man enter the room, he gave you an hanky and turn to Inna...<br>Mechislav: "..."<br>Inna: "I''ve got a name. Go."<br>Mechislav: "I''m on my way."<br>The man turns to you, he lower his head as to say goodbye and exit from the door.'
+										act '...':
+											*clr & cla
+											minut += 5
+											killvar 'gennadij_day'
+											killvar 'gennadij_hunter'
+											gennadij_day = daystart + 3
+											gennadij_prey = 1
+											gs 'stat'
+											inna_varvara_pimp = 5
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innagift.jpg"></center>'
+											'Inna: "You made your part <<$pcs_nickname>>; now let me make mine."<br>"..." <br>Inna: "I''d like to let you rest here but till this matter is not settled i cannot receive guest. Let me lead you to the exit." <br>"I..." <br>Inna: "Do not worry...go and do your stuff; you won''t need to look behind every corner from now on. When time will come, you will know it."<br>The woman lead you to the exit as is she''s in rush... and soon you find yourself out from the house...alone.'
+											act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+										end
+									end
+								end
+								act '"I have to think about it..."':
+									*clr & cla
+									minut += 5
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innagift.jpg"></center>'
+									'Inna: "In that case let me lead you to the exit <<$pcs_nickname>>."<br>The woman lead you to the exit as is she''s in rush...<br>"..." <br>Inna: "I''m sorry but without your help things will be more difficult and time consuming. Remember: you will be safe for a week from now on...after that i cannot guarantee nothing to you. I''ll keep searching but i cannot have an end term." <br>"I..." <br>The woman assure you take the photo with you...you don''t want them...but she insist. You don''t put much resistance on...you can always throw them away...<br>Inna: "Now...go and do your stuff, but please: consider to let me know within a week... . I can afford to spend money doing my research, but you... . It''s not money what he will look for from you...and you know that."<br>Soon you find yourself out from the house, alone and with the photo Inna gave you...with the bastard. You wonder if you made the right choice...'
+									act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'slipped':
+	if inna_varvara_pimp = 4:
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		inna_varvara_pimp = 5
+!		killvar 'gennadij_mem'
+		killvar 'gennadij_day'
+		killvar 'gennadij_hunter'
+		gennadij_day = daystart + 3
+		gennadij_prey = 1
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+		'Woman voice: "...MIESZKO!"<br>You hear Inna''s voice...she called for someone...and then nothing.'
+		act '"...???..."':gt 'mod_iwhore_begin', 'slipped'
+		act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+	elseif inna_varvara_pimp = 5:
+		*clr & cla
+		minut += 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+		'Nothing... . It''s completely silent, no one answer.'
+		act 'Ring the bell':gt 'mod_iwhore_begin', 'slipped'
+		act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+	elseif inna_varvara_pimp = 6:
+		*clr & cla
+		minut += 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+		'...'
+		act 'Ring the bell':gt 'mod_iwhore_begin', 'slipped'
+		act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+	elseif inna_varvara_pimp = 8:
+		*clr & cla
+		minut += 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+		'...'
+		act 'Ring the bell':
+			*clr & cla
+			minut += 2
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/mec0.jpg"></center>'
+			'The door open...."I-inna...? No... . H-hi..."<br>Mechislav: "Hi <<$pcs_firstname>>."<br>"Do i know you?"<br>Mechislav: "We did''t had the chance to present. I''m Mechislav, you can call me Mieszko. It''s a pleasure to meet you...without tears this time."<br>"You were here last time...now i remember...well you know my name... . Is Inna in there? I think...i received a message from her...but i''m not totally sure."<br>Mechislav: "No, she''s not. But the message you received was from her. As the matter of fact i was waiting for you... ."<br>"Do you know where is she?"<br>Mechislav: "Yes i know. As the matter of fact that''s why i did not invite you to enter...we are going out."<br>"What? Wait...i know how those things end..." <br>Mechislav: "Uh?"<br>"You won''t kill me!"<br>Mechislav: "Are you serious?"<br>"I told you! I''m not a fool! You want to bring me somewhere blindfolded and kill me. That''s not going to happen!"<br>Mechislav: "I''m sorry to disappoint you, but that''s not how we work. But if you insist to be blindfolded...uhmmm...i should have some bend somewhere; but i warn you...i''ll not play any kind of roleplay...i''m working."<br>"Wait...YOU are serious..."<br>Mechislav: "I''m. Follow me."'
+			act 'Follow the man':
+				*clr & cla
+				minut += 5
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/jump0.jpg"></center>'
+				'You walk the stairs tiil the street...<br>"Oh..."<br>Mechislav: "Do you like speed?"<br>"..."<br>Mechislav: "...Well...because we are in a little late..."<br>Mechislav: "...Come on, we are late. Inna doesn''t like to wait; you are safe with me, just put the helmet and hold on me, the wind could freeze you a little stay attached to my chest."'
+				act 'Jump on the bike':
+					*clr & cla
+					minut += 5
+					gs 'stat'
+					if $pantyworntype ! 'none':
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/passagep.mp4"></video></center>'
+						'Mechislav: "Do you have cold <<$pcs_firstname>>?"<br>"...A little..."<br>Mechislav: "Speak loud. You are behind, i cannot hear you."<br>"...NO! DON''T WORRY!"<br>Mechislav: "Good... ." The man push deeper on the gas table, you have to tight your grip...standing perfectly behind him cover your front and the wind doesn''t affect you...on the front at least...'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/passage.mp4"></video></center>'
+						'"...It seems people allow us to pass..."<br>Mechislav: "Speak loud. You are behind, i cannot hear you."<br>"...IT SEEMS PEOPLE ALLOW US TO PASS!"<br>Mechislav: "That''s why it''s a good idea to bring female passengers... ." <br>"...Uh?..."'
+					end
+					act 'Arrival':
+						*clr & cla
+						hour += 1
+						minut += 5
+						gs 'stat'
+						$loc = 'down'
+						$loc_arg = ''
+						inna_varvara_pimp = 9
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
+						'Mechislav: "Arrived."<br>"But that''s the police station...you are police officers then, i saw right."'
+						'<br>Mechislav: "Umphhhh! It''s better if you don''t let <a href="exec: gs ''mod_iwhore_begin'', ''delivered'' & view''mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innapolicerec.jpg''">Inna</a> wait too long... . Go and speak to her."'
+						act 'Go away':gt $loc, $loc_arg
+					end
+				end
+			end
+		end
+		act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+	elseif inna_varvara_pimp = 9:
+		*clr & cla
+		minut += 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+		'...'
+		act 'Ring the bell':
+			*clr & cla
+			minut += 5
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/mec0.jpg"></center>'
+			'Mechislav: "What the...?"<br>"Ehmmm...."<br>Mechislav: "Hey! You didn''t spoke to Inna!"<br>"...Well..."<br>Mechislav: "Umpffh! Move or she will beat us... ."<br>"..."<br>Mechislav: "Move!"'
+			act 'Follow the man':
+				*clr & cla
+				minut += 5
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/jump0.jpg"></center>'
+				'You walk the stairs tiil the street...<br>"..."<br>Mechislav: "For the sake! Move! I care of my butt!"<br>"..."'
+				act 'Jump on the bike':
+					*clr & cla
+					minut += 5
+					gs 'stat'
+					if $pantyworntype ! 'none':
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/passagep.mp4"></video></center>'
+						'"Can you lower a little?..."<br>Mechislav: "..."<br>The man doesn''t mind and push deeper with the gas'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/passage.mp4"></video></center>'
+						'"Can you lower a little?..."<br>Mechislav: "..."<br>The man doesn''t mind and push deeper with the gas'
+					end
+					act 'Arrival':
+						*clr & cla
+						hour += 1
+						minut += 5
+						gs 'stat'
+						$loc = 'down'
+						$loc_arg = ''
+						inna_varvara_pimp = 9
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
+						'Mechislav: "Go and speak to <a href="exec: gs ''mod_iwhore_begin'', ''delivered'' & view''mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innapolicerec.jpg''">her</a>....now! "'
+						act 'Go away':gt $loc, $loc_arg
+					end
+				end
+			end
+		end
+		act 'Go away':gt 'mod_iwhore_innapodz', 'etaj_5'
+	else
+		''
+	end
+end
+
+if $ARGS[0] = 'message':
+	if inna_varvara_pimp = 6:
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/shared/postoffice/smallboy.jpg"></center>'
+		'"Miss miss!"<br>"..."<br>"Can you change my money? They won''t sell me candy otherwise..."<br>"...Oh! Little boy...how much are we talking about?"<br>The boy slipped out a 500 rubles paper...<br>"...Wow! Isn''t that too much for a little young man?"<br>"Mr "Blini" said it''s for my work..."<br>"Uh? Mr "Blini"? Is Mr Blini your dad?"<br>"No...it''s Mr "Blini"... . I work for him."<br>"Oh! And what kind of work do you do?"<br>"I had to tell you to go to the bench in the park and look behind it... . Hey! I''ve done it! Can you change my money now? They said they don''t have the remnants..."<br>Your heart start to beat faster...it could be a good or a bad thing...'
+		act '"..."':
+			*clr & cla
+			minut += 1
+			gs 'stat'
+			inna_varvara_pimp = 7
+			'<center><img <<$set_imgh>> src="images/locations/shared/postoffice/smallboy.jpg"></center>'
+			'"Miss miss...please..."<br>"..."'
+			if money > 20:
+				act '"H-here...i don''t have change...take that..."':
+					*clr & cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="images/locations/shared/postoffice/smallboy.jpg"></center>'
+					'...<br>"Thanks! You and Mr Blini made me happy!"'
+					act '"..."': gt $loc, $loc_arg
+				end
+			end
+			act '"...N-no...i''m sorry..."':
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="images/locations/shared/postoffice/smallboy.jpg"></center>'
+				'"...Ownnn..."<br>...'
+				act '"...i-i...have to go..."': gt $loc, $loc_arg
+			end
+		end
+	elseif inna_varvara_pimp = 7:
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		inna_varvara_pimp = 8
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/pinned.jpg"></center>'
+		'A knife hold in place a piece of paper...it has a big lipstick marks on it... .'
+		act 'Take the message':
+			*clr & cla
+			minut += 1
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/pinned.jpg"></center>'
+			'As you move the knife <a href="exec: view''mod/iwhore/images/characters/pavlovsk/resident/gift.jpg''">something</a> falls...'
+			act 'Read the message':
+				*clr & cla
+				minut += 1
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/pinned.jpg"></center>'
+				'"Done."<br>There''s only one word written... .'
+				act '...': gt $loc, $loc_arg
+			end
+		end
+	else
+		''
+	end
+end
+
+if $ARGS[0] = 'delivered':
+	gs 'stat'
+	minut += 1
+	'Inna: "Girl...did you come with your own feet? How much time do you need?"<br>"...What are you? A sergent...or maybe a captain?...It''s clear now..."<br>Inna: "What the...? Cut your tongue young lady. It''s a beautiful day...why do you want to ruin it? Did i offended you? Because i don''t think so..."<br>"Uhmmm...hi Inna..."<br>Inna: "Umfhhh...much better..."<br>"Why did you make me come here then?"<br>Inna: "Follow me."'
+	act 'Follow Inna':
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/holdingarea.jpg"></center>'
+		'Inna: "Here put this... ." Inna lend you a mask and she assure you put it on; she did the same. It''s opened in the eyes, you will not be blinfolded.<br>"What''s that for?"<br>Inna: "Let''s say that those are the scissors to open your gift... . Cell number 3, and whatever happens do not speak. Go and look... ."'
+		act '...':
+			*clr & cla
+			minut += 3
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/b2.jpg"></center>'	
+			'"...I..."<br>Inna: "..."<br>Before it''s too late Inna put an hand on your mouth and shut you... . Then she throw something on the floor to catch the man attention...'
+			act '...':
+				*clr & cla
+				minut += 4
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/gift.jpg"></center>'
+				'The blood froze in your vein as the man rise his head...<br>Man: "Two sluts to suck my cock? Come here free me if you need a real man..."<br>Inna: "..."<br>Man: "...What the fuck do you want bitches? I told you i know nothing...it''s all a mistake."Inna approach your ear and without letting him hear she spoke to you.<br>Inna: "...Of course you cannot bring him at home. Time to go, i''m thirsty and there''s only water there."<br>Man: "...What the fuck are you whispering slut? FREE ME OR I''LL BROKE YOUR FACE!!! DID YOU HEAR ME?"<br>As the man said nothing Inna catch something from her purse and throw it to the man... . It''s a chewing bone for dog...<br>Man: "...What the...? COME HERE!!! I''LL KILL YOU WITH MY OWN HANDS!!!!"<br>You look at Inna...it seems she''s smirking under her mask. Is this really end? It doesn''t seems real to you... . You can think nothing for the first time for a long time, even the man''s scream cannot touch you... . You wonder for a moment to unmask and show your face to the man and yell at him that''s what he earned...with a lot of other unspeakable things; but Inna grasp your hand, and she lead you out.'
+				act '...':
+					*clr & cla
+					minut += 5
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/holdingarea.jpg"></center>'
+					'Inna: "I wasn''t joking i''m thirsty...uff...and the mask worstend it... move move. " <br>"...Inna..."<br>Inna: "...Move little lady...do you want me to die of thirst?...It''s on me this time."'
+					act '...':
+						*clr & cla
+						minut += 5
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="images/locations/shared/date/cafewaitress.jpg"></center>'
+						'You both go to a bar near the police station... . You didn''t had the chanche to talk; you ar starting to larn that it could be difficult to speak to Inna... .<br>Inna: "Vodka: two bottles." <br>"...Inna..."<br>Inna: "Do you want vodka too? Ok.... Four bottles..."<br>"What?...wait...just a glass....it will be enough..."<br>Inna: "As you wish... . Two bottles of vodka and a glass of the same poison."<br>"..."<br>Inna: "Why do you care?...Mieszko will give you a passage if you want..."<br>"...Inna...I just...."<br>Inna: "...Oh! Arrived..."Inna drunk th first bottle as if it was water...<br>"..."<br>Inna: "Sorry my dear, but i really needed it... . Now we can talk... ."<br>"...I want to thank you...."<br>Inna: "Nope...not right now... . We can talk about settle things up."<br>"...I guess...you want something in exchange... . How did you make... I mean... how were you able to let him end in jail?"<br>Inna: "Uh? I told you that''s a gift...you don''t have to pay. We have to speak about work...we''ll have the chance to speak again about the shit that happend to you."'
+						act '..."Work...?"...':
+							*clr & cla
+							minut += 5
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innarghil.jpg"></center>'
+							'Inna turn on a thing that is on the table and start to smoke from that...it seems you can smoke here...<br>Inna: "Is that a new word in your dictionary? You know "work"...it''s that thing that people do to live...to have money and buy food, coke cats...and stuff..."<br>"I don''t buy cats and coke usually...but well...i mean...i know what is work..."<br>Inna: "Why don''t we speak about it at my apartment? Come visit me.....uhmmm...i don''t have an usual routine: let''s settle this way. If i will be at home ...well...i''ll be there... . Pretty simple isn''t it? Oh!....<<$pcs_nickname>>...do you drink your glass or not?"'
+							act '"Well..."':
+								*clr & cla
+								minut += 2
+								gs 'stat'
+								inna_varvara_pimp = 10
+								'<center><img <<$set_imgh>> src="images/locations/shared/date/cafewaitress.jpg"></center>'
+								'Inna: "Too late. ...See you sweety!...I got business in the city...i''ll offer you something else another time. Mieszko will wait for you five minutes if you want a passage... . You know where i live. "<br>You didn''t noticed Inna finished the second bottle; she take your drink from the table, drunk it and flee away ...leaving you alone. You got more question than before that''s for sure, but pleasantly different now that you saw the beast in the cell. Of course you wonder how much time he''s sentenced...but it doesn''t matter right now...you should be able to ask Inna. If she will let you speak...maybe.'
+								act 'Go away':gt $loc, $loc_arg
+!								act 'Go away':gt $loc, $loc_arg to put the bar exit
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+!	act 'Go away':gt $loc, $loc_arg
+end
+
+!$loc = 'down'
+!$loc_arg = ''
+
+!!!!!!!!!!PIMPED!!!!!!!!!!!!!!!!!
+!    gt 'mod_iwhore_begin','pimp'
+!	PLAY "mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed0.mp4"
+
+!	'You can now look at the <a href="exec:view''mod/iwhore/images/locations/pavlovsk/events/fight/rules.jpg''">rules</a>'
+if $ARGS[0] = 'pimp':
+	*clr & cla
+	minut += 5
+	gs 'stat'
+!	killvar 'gennadij_mem'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair0.jpg"></center>'
+	'Inna: "Girl..."<br>"...Hi Inna..."<br>Inna: "Well? Come in, follow me, you don''t want to talk in the stair...don''t you?"'
+	
+	act '"Ok..."':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+		'Inna: "Have a seat...we need to speak."<br>You sit on the sofa...<br>"I''ve got a lot of question Inna...but you talked about work last time... . It''s rather unexpected..."<br>Inna: "Right to the point...i like it. Well... since we both have no time to lose: why don''t you turn on the video player...everything will be clear sooner that way; i''ll pick some to smoke from my room in the meantime... . Tell me if you need something..."<br>"No thanks...i''m good right now..."<br>Inna left you to watch something on the TV...you wonder what does she want to show you...'
+		
+		act 'Press play':
+			*clr & cla
+			minut += 1
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed0.mp4"></video></center>'
+			'"...??????UH?????....."'
+			act 'Keep watching':
+				*clr & cla
+				minut += 1
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed1.mp4"></video></center>'
+				'You are clearly embarassed but the sight of Inna blowing three guys was an exciting vision...but you decide to not tell her. You wonder if she want you to see her blowing three guys...or if that''s a mistake... '
+				act 'Fast forward...':
+					minut += 1
+					*clr & cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed2.mp4"></video></center>'
+					'It seems to be an an entire private video session of her fucking with these guys dressed like a bride... . Your pussy need attention right now, but it''s not appropriate... . Inna didn''t returned yet, and the guys in the video keep pounding her exchanging turn; she doesn''t left her grip on their cocks... . '
+					act 'Fast forward...':
+						*clr & cla
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed3.mp4"></video></center>'
+						'You move forward the video a...."Oh!"... Inna and the guys move to the bedroom, she mount on one guy...and invites another one...'
+						wait 9000
+						*clr & cla
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed4.mp4"></video></center>'
+						'"......"...The guy she''s riding spread her ass, she keep sucking while the free one doesn''t lose time....'
+						wait 8000
+						*clr & cla
+						minut += 2
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed5.mp4"></video></center>'
+						'...It''s an hard pounding... . You understand Inna is not a regular woman...but that''s beyond your expectations; maybe she''s some kind of exhibitionist and she wanted to show that to your self... '
+						act 'Fast forward...':
+							*clr & cla
+							minut += 1
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed6.mp4"></video></center>'
+							'"Uh? Wasn''t she willing? Why she''s gagged now?...She..probably done this against her willing..."'
+							'<br>...While you wonder about the video you just saw...'
+							'<br>Inna is speaking while approaching the living room...<br>...Inna: "...See? That way it should be clear...dont''t worry, i won''t tell anyone... . Not that it would bother me if i was you...i mean...i''am... . Hehehe... . Where the fuck is the lightfire?..."'
+							act '..."CRAP! I have to stop it!"...':
+								*clr & cla
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed6.mp4"></video></center>'
+								'Inna: "Uh?"<br>But you push the wrong button and send the video in a loop...panicked you try to bubble something...<br>"...I swear...it was an accident...i didn''t know..."<br>Inna: "DOC! FUCK!"<br>"..."<br>Inna: "Umphhh! ...Now i have to start from the beginning. I''m sorry <<$pcs_nickname>>...i made you lose some of your time."<br>"..."<br>Inna: "Hope it doesn''t bothered you... . I''ll kick his balls once we''ll finish."'
+								view "mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"
+								act '"...Was...that...i mean...you seemed to be dipleased...do they...?"':
+									*clr & cla
+									minut += 1
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+									'Inna: "Of course they displeased me! Girl...do not believe what they say about wedding. You cannot touch nothing to eat! Go say hello to that and that and that...serve the wine...pick the flowers...throw them....do the photos...go Pushkin walking... . Uhmmpph! They call it party but it worst than work...to not speak about the preparation... ."<br>"...You are kidding me..."<br>Inna: "Uh?"<br>"Do you want me to believe you are married and this was your wedding day?"<br>Inna: "First: i don''t give a fuck. Second: believe what do you want. Third: we are not here to speak about me."<br>"But...you were gagged...and you didn''t seemed to be happy in the end..."<br>Inna: "I told you they displeased me! They wanted to follow their shitty bet about play painting...i told them i was hungry but they didn''t want to listen. Uhmmpph...i had to sccept the gag otherwise i could have missed the few drop of cum i was able to catch... . Shitty bastards... ."'
+									act '"But...and what about your husband...did he agree?"':
+										*clr & cla
+										minut += 1
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wedend.mp4"></video></center>'
+										'Inna: "...Uhmmppff!" <br>Inna took the remote and move the video forward; the men helped Inna to dress again...sometimes she tried to reach the pants of the man who stayed with her but without succed, while the other two went to call the husband and lead him to see the video they just made... . He''s quite disappointed... .<br>Inna: "...I only wanted to show him the true...there should be no secrets withing a couple afterall... ."<br>"...Poor man..."<br>Inna: "...Hey! It wasn''t me who want two marry after two month! I didn''t had the time to explain everything. Still he was handsome and a perfect gentleman...i really had a big crush on him; i couldn''t say no when he asked me to marry him."<br>"..."<br>Inna: "...Ok ok...i should have prepared him before... . He didn''t take it well..."'
+										act '"...Crap! And what did you do after he found that...?"':
+											*clr & cla
+											minut += 1
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed7.mp4"></video></center>'
+											'Inna: "Well..."<br>Inna move forward the video...<br>"..." She''s now blowing another man...<br>Inna: "Well...The cameraman was paid...and i didn''t eat...so..."<br>"...I meant...your husband...what did you do about him..."<br>Inna: "...He flee...there was nothing i was able to do... ."<br>"..."<br>Inna: "...We got divorced withing a week...they said we didn''t spend the first night and so the marry was easy to delete... ."<br>"...I''m sorry..."<br>Inna: "...Do not tell to me...he could have joined. But we are here to talk about you... . Ok let''s restart...shall we?"<br>"..."'
+											act '...':gt 'mod_iwhore_begin', 'pimped'
+										end
+										act '"..."':
+											*clr & cla
+											gs 'stat'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+											'Inna: "But we need to talk about you...and business."'
+											act 'Go away':gt 'mod_iwhore_begin', 'pimped'
+										end
+									end
+									act '"..."':
+										*clr & cla
+										minut += 1
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+										'Inna: "Inna call <<$pcs_nickname>>...Inna call <<$pcs_nickname>>...can you hear me?"<br>"..."<br>Inna: "Can we talk about business now?"'
+										act '"Ok...strange but...ok..."': gt 'mod_iwhore_begin', 'pimped'
+									end
+								end
+								act '"..."':
+									*clr & cla
+									minut += 1
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair0.jpg"></center>'
+									'She took the remote and stop the video...<br>Inna: "Uh? What''s that face?"<br>"..."<br>Inna: "I was agree if you wonder..."<br>"..."<br>Inna: "Uh? What''s then? If you want to touch your kitty you have to wait we finish to talk about business."'
+									act '"WHAT?"':
+										*clr & cla
+										minut += 1
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair0.jpg"></center>'
+										'Inna: "You heared me...i don''t want to repeat myself endlessly..."<br>"Hey! I''m not a dumb..."<br>Inna: "Yes yes...shall we start?"'
+										act '"Uhmppff! What do you want to talk about?"':gt 'mod_iwhore_begin', 'pimped'
+									end
+									act '"..."':
+										*clr & cla
+										minut += 1
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair0.jpg"></center>'
+										'Inna: "Nope. I need you to stay focused...then you can do what you want."<br>"Hey...who told you that...?"<br>Inna: "Yes yes...as you wish. Shall we start? Business can''t wait..."'
+										act '"Ok...ok... ."':gt 'mod_iwhore_begin', 'pimped'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+			act '"INNA!!!!"':
+				*clr & cla
+				minut += 2
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/wedding/wed2.mp4"></video></center>'
+				'Inna rush to the room worried by your call...'
+				'Inna: "Hey...what now...is there a problem?"<br>The video goes on; they guys now start pounding Inna...while she enter the room...<br>Inna: "DOC! FUCK!"<br>"..."<br>Inna: "Umphhh! ...Now i have to restart from the beginning."<br>"..."<br>Inna: "Hope it doesn''t bothered you... . I''ll kick his balls once we''ll finish."'
+				view "mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"
+				act '"What was that? Do you want me to see a porno you shot?"':
+					*clr & cla
+					minut += 1
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+					'Inna: "That''s not a porno...it''s my honeymoon. Ok...ok...i give you that one...it could seems a porno shoot, but it''s not." <br>She took the remote and stop the video; in the meantime she look for another one...<br>"Are you kidding me?"<br>Inna: "First: i don''t give a fuck. Second: believe what do you want. Third: we are not here to speak about me. We are here to talk about business... ."<br>"What? Do you want me to to make a porno?"<br>Inna: "I told you it''s not a porno...it''s my honeymoon. Do not make me repeat. It''s the wrong video."<br>"Uhmmppff...as you wish, i let pass this as true..."<br>Inna: "Oh...for the sake... . Can we pass to talk about business? You could watch it another time so you won''t bother me now..."'
+
+					act '"...As you wish..."':gt 'mod_iwhore_begin', 'pimped'
+				end
+			end
+		end
+	end
+!	act 'Go away':gt $loc, $loc_arg
+end
+
+
+if $ARGS[0] = 'pimped':
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair1.jpg"></center>'
+	'Inna: "Good... . First of all, i don''t want you to be scared, we just do the same work; that means you can talk free. I know that what happened kept you away from working that''s normal; but now i''m here and you are ready so i offer you my services; you won''t have to worry about your safety. "<br>"What are you talking about? Which work did i stopped? I don''t understand you...and what kind of services are you offering me? And what about my safety? Is that linked to the bastard?"<br>Inna: "...Well about the last question...i''m still looking for answer. Anyway i''m offering you my protection."'	
+	act '"Protection? Am i in danger?"':
+		*clr & cla
+		minut += 3
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair1.jpg"></center>'
+		'Inna: "No. Actually not."<br>"..."<br>Inna: "...Because you are not working..."<br>"Uh? And what''s that dangerous work you are talking about?"<br>Inna: "Our work: whoring."'
+		act '"What the fuck!!!"':
+			*clr & cla
+			minut += 2
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/pc/shout.jpg"></center>'
+			'Inna: "...Retract your nails kitty..."<br>"...Hey! You cannot say that i''m a whore! What''s wrong with you?"<br>Inna: "...Cut your tongue young lady, or you''ll pay for your first week..."<br>"...Listen: i''m grateful for what you''ve done, but that doesn''t allow to say that i''m a whore!"<br>Inna: "You should smoke some weed...don''t you know that being angry worsten the skin?"<br>"Umph! ..."<br>Inna: "No?...Anyway did i made a mistake?"<br>"Umph! ..."<br>Inna: "Silly silly silly...silly me . Well ...in that case.... maybe you are the one who can offer help."<br>"Umph! I''ll listen because you helped me...otherwise..."<br>Inna: "You owe me nothing i told you... . But i gladly accept your help... . See...there''s a girl i''m looking for...maybe you know something about her...."<br>Inna move toward the player...'
+			act '...':gt 'mod_iwhore_begin', 'pimped1'
+		end
+		act '"What?"':
+			*clr & cla
+			minut += 2
+			gs 'stat'
+			'<center><video autoplay loop src="images/pc/no.mp4"></video></center>'
+			'Inna: "...Don''t be surprised...i know and you can talk free, i told you..."<br>"...Why on the earth are you saying something like that?"<br>Inna: "Business...what else could it be?"<br>"...Listen: i''m grateful for what you''ve done, but that''s not true..."<br>Inna: "So you are saying i''m a lier..."<br>"That''s a lie..."<br>Inna: "Right...i''m not a lier."<br>"No! I mean...i''m not a whore!"<br>Inna: "No?"<br>"You can bet on it. I''m not."<br>Inna: "Easy money... ."<br>"Hey! I don''t like this game."<br>Inna: "As you wish...maybe i was wrong... ."<br>"That''s what i said"<br>Inna: "Ok...before leaving, maybe you are willing to help me."<br>"..."<br>Inna: "...See...there''s a girl i''m looking for...maybe you know something about her...."<br>Inna move toward the player...'
+			act '...':gt 'mod_iwhore_begin', 'pimped1'
+		end
+	end
+end
+
+if $ARGS[0] = 'pimped1':
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	inna_varvara_pimp += 1
+	whore_beginner_day = daystart + 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/pimped0.mp4"></video></center>'
+	'"..."<br>Inna: "...Wait "her" face will be clear soon..."'
+	act '"...What the...?"':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/pimped1.mp4"></video></center>'
+		'Inna: "...Uhmmm...nice skill..."<br>...''...what the fuck? how did she...?...''...<br>Inna: "...I didn''t know you have a twin sister...but if this is not you there''s no other explanation... . Don''t you want to hug your twin sister? Help me find her...or maybe there''s no need because that girl is you..."'
+		act '"No way! The face is not clear! You cannot say that it''s me!"':
+			*clr & cla
+			minut += 2
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/pimped2.mp4"></video></center>'
+			'Inna: "...Strange...she really seems you..."<br>The video change the angle...<br>...''...shit!...shit!....shit!...''...<br>Inna: "...Well you caught a nice shaft that day...i have to admit... . Oh silly me! If you are that girl on the video...of course..."'
+			act '"It''s not me! There''s no light...it''s not clear!!!"':
+				*clr & cla
+				minut += 2
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/a2.mp4"></video></center>'
+				'Inna: "...Is that enough?"<br>...'
+				act '"Shit!"':
+					*clr & cla
+					minut += 1
+					gs 'stat'
+					'<center><video autoplay loop src="images/pc/eyeroll.mp4"></video></center>'
+					'Inna: "...Yes it is."<br>...'
+					act '"How much do you want to delete the video?"':
+						*clr & cla
+						minut += 1
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjpassion0.mp4"></video></center>'
+						'Inna: "Nothing. About six month and it will be deleted, i''ll keep it for safety reasons."<br>"...What do you want from me then?"<br>Inna: "I told you: nothing. I''m offering you my protection."<br>"..."<br>Inna: "Nothing to say? Neither a little thank you?"'
+						act '"Do you have to leave the video turned on?"':
+							*clr & cla
+							minut += 1
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair1.jpg"></center>'
+							'Inna: "No...unless you want to watch it again."<br>Inna turn off the player...<br>"...What is that "protection" you are offering me?"<br>Inna: "Pretty simple: you can work on the street of Pavlovsk totally free from attack of rapist and robbery. I know you experience that because i was watching over you."<br>"...What does that mean?"<br>Inna: "I look over the new girls who decide to approach the street work; when time will come i offer them my protection...as i''m doing for you now."<br>"...So my time is come and you looked for me..."<br>Inna: "You can say that... ."<br>"...I''m not sure i understood that."<br>Inna: "See <<$pcs_nickname>>...i let girls do the street work for free if they don''t want to pay for my protection, that means that i don''t allow my guys to interfere with a rape or a robber if that happen. Being robbed is most expensive than mine protection...so wise girl know what to do. But they are free if they want...and the same for you."<br>"...You are telling me that you let shitty bastard rape the girls so they come to you? How could you do something like that? What if they find a bastard like who send me in coma? And what about me?"<br>Inna: "..."'
+							act '"You...you..."':
+								*clr & cla
+								minut += 5
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="images/pc/bukli_angry.jpg"></center>'
+								'Inna: "..."<br>"...You ...you...are a monster..."<br>Inna: "..."<br>"...You...you...let him..."<br>Inna: "...That''s not true."<br>"...HOW THE FUCK CAN YOU SAY THAT? "<br>Inna: "...Because i don''t have all the answers i need ...yet. He''s in jail now...but i''m missing something, and i''m sure of it."<br>"...That doesn''t change things...you left him beat me to death...and so the other girl...why should i trust you?"<br>Inna: "...That''s not true; my guys stop things if something goes wrong even with not protected girl. A dead girl means no profit for me..."<br>"...ARE YOU FUCKING KIDDING ME? HE ALMOST KILLED ME! LOOK AT ME! CAN''T YOU SEE ME? CAN''T YOU SEE THAT I COULD NOT BE THERE? LOOK AT ME IN THE EYES IF YOU DARE!"<br>Inna: "..."'
+								view "mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"
+								act '"YOU CANNOT BECAUSE I''M RIGHT! YOU CANNOT BECAUSE YOU ARE A MONSTER!!!"':
+									*clr & cla
+									minut += 5
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+									'Inna: "You are wrong. I can, because I want, but I won''t because You need it."'
+									wait 4000
+									*clr & cla
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"></center>'
+									'"What the fuck are you saying?"<br>Inna: "...Here...these are the record of that day...these are focused on you, every girl has their own...and the same for the not protected ones."<br>Inna show you the record she had; you are on the screen for the whole time...it match what you''ve done that day. You move forward till the hour the man approach you... . You turn a corner on the street; you saw that earlier in that day when you turn that corner tha camera change... . But in that hour the camera goes black... .<br>Inna: "...That''s what i was saying. And the same for all the cameras that record a possible path that lead from that place to the sewer. That day the electric company made some work on the line...they took too much...i would say they took the time they need... the whole time you were in his trap... ."<br>The regitration goes on, you can see the time flowing on the screen...until you see your body crawling in the street...<br>Inna: "...Here Doc warned me and Mieszko... . You know the remnants...i think."<br>"..."<br>The video goes on...you see Inna and Mechislav that bring your body to the bathroom...and few minutes later another man arrive... . Inna stop the video. You don''t know what to say...'
+									act '...':
+										*clr & cla
+										minut += 5
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"></center>'
+										'"..."<br>Inna: "...I was without word too. It never happened... . We watch over new girl only through cameras, otherwise they will be suspicious...and if they found us they won''t join with the right motivation. I can assure you that under protection it won''t happen, because girls are watched from first line too."<br>"..."<br>Inna: "...Listen <<$pcs_nickname>>: Nothing can happen without me being aware of it in Pavlovsk''s streets. What happened to you could have no simple explanations, and that''s something i need to take care of. My offer it''s avaible for you...take your time. Come speak to me when you want to know more about it; i know it could be hard but once you whore yourself you never came back... . You may also know somthing more i didn''t tell you yet...details for the most...but as it''s said: true stay in details.... . And who know?...Maybe you will help me in that matters too. "<br>"I-i..."<br>Inna: "...Go home and think about it, you can sleep in peace with him behind bars."'
+										act '"Yes...i...should go now..."':gt 'mod_iwhore_innapodz', 'etaj_5'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+			act '"Ok...ok...you won. How much do you want to delete the video?"':
+				*clr & cla
+				minut += 1
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/a2.mp4"></video></center>'
+				'Inna: "...Wise girl...because i have the lighted ones to...hehehe..."<br>...'
+				act '"Oh!!! Crap! I''m fucked!"':
+					*clr & cla
+					minut += 1
+					gs 'stat'
+					'<center><video autoplay loop src="images/pc/no.mp4"></video></center>'
+					'Inna: "...Uh? Do you wear a butt plug?..."<br>"Uh?"<br>Inna: "You said you are fucked."<br>"What?"<br>Inna: "Baf...whatever..."'
+					act '"How much do you want to delete the video?"':
+						*clr & cla
+						minut += 1
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjpassion0.mp4"></video></center>'
+						'Inna: "Nothing. About six month and it will be deleted, i''ll keep it for safety reasons."<br>"...What do you want from me then?"<br>Inna: "I told you: nothing. I''m offering you my protection."<br>"..."<br>Inna: "Nothing to say? Neither a little thank you?"'
+						act '"Do you have to leave the video turned on?"':
+							*clr & cla
+							minut += 1
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair1.jpg"></center>'
+							'Inna: "No...unless you want to watch it again."<br>Inna turn off the player...<br>"...What is that "protection" you are offering me?"<br>Inna: "Pretty simple: you can work on the street of Pavlovsk totally free from attack of rapist and robbery. I know you experience that because i was watching over you."<br>"...What does that mean?"<br>Inna: "I look over the new girls who decide to approach the street work; when time will come i offer them my protection...as i''m doing for you now."<br>"...So my time is come and you looked for me..."<br>Inna: "You can say that... ."<br>"...I''m not sure i understood that."<br>Inna: "See <<$pcs_nickname>>...i let girls do the street work for free if they don''t want to pay for my protection; that means that i don''t allow my guys to interfere with a rape or a robber if that happen. Being robbed is most expensive than mine protection...so wise girl know what to do. But they are free if they want...and the same for you."<br>"...You are telling me that you let shitty bastard rape the girls so they come to you? How could you do something like that? What if they find a bastard like who send me in coma? And what about me?"<br>Inna: "..."'
+							act '"You...you..."':
+								*clr & cla
+								minut += 5
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="images/pc/bukli_angry.jpg"></center>'
+								'Inna: "..."<br>"...You ...you...are a monster..."<br>Inna: "..."<br>"...You...you...let him..."<br>Inna: "...That''s not true."<br>"...HOW THE FUCK CAN YOU SAY THAT? "<br>Inna: "...Because i don''t have all the answers i need ...yet. He''s in jail now...but i''m missing something, and i''m sure of it."<br>"...That doesn''t change things...you left him beat me to death...and so the other girl...why should i trust you?"<br>Inna: "...That''s not true; my guys stop things if something goes wrong even with not protected girl. A dead girl means no profit for me..."<br>"...ARE YOU FUCKING KIDDING ME? HE ALMOST KILLED ME! LOOK AT ME! CAN''T YOU SEE ME? CAN''T YOU SEE THAT I COULD NOT BE THERE? LOOK AT ME IN THE EYES IF YOU DARE!"<br>Inna: "..."'
+								view "mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"
+								act '"YOU CANNOT BECAUSE I''M RIGHT! YOU CANNOT BECAUSE YOU ARE A MONSTER!!!"':
+									*clr & cla
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/innaevidence.jpg"></center>'
+									'Inna: "You are wrong. I can, because I want, but I won''t because You need it."'
+									wait 4000
+									*clr & cla
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"></center>'
+									'"What the fuck are you saying?"<br>Inna: "...Here...these are the record of that day...these are focused on you, every girl has their own...and the same for the not protected ones."<br>Inna show you the record she had; you are on the screen for the whole time...it match what you''ve done that day. You move forward till the hour the man approach you... . You turn a corner on the street; you saw that earlier in that day when you turn that corner tha camera change... . But in that hour the camera goes black... .<br>Inna: "...That''s what i was saying. And the same for all the cameras that record a possible path that lead from that place to the sewer. That day the electric company made some work on the line...they took too much...i would say they took the time they need... the whole time you were in his trap... ."<br>The regitration goes on, you can see the time flowing on the screen...until you see your body crawling in the street...<br>Inna: "...Here Doc warned me and Mieszko... . You know the remnants...i think."<br>"..."<br>The video goes on...you see Inna and Mechislav that bring your body to the bathroom...and few minutes later another man arrive... . Inna stop the video. You don''t know what to say...'
+									act '...':
+										minut += 5
+										*clr & cla
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair2.jpg"></center>'
+										'"..."<br>Inna: "...I was without word too. It never happened... . We watch over new girl only through cameras, otherwise they will be suspicious...and if they found us they won''t join with the right motivation. I can assure you that under protection it won''t happen, because girls are watched from first line too."<br>"..."<br>Inna: "...Listen <<$pcs_nickname>>: Nothing can happen without me being aware of it in Pavlovsk''s streets. What happened to you could have no simple explanations, and that''s something i need to take care of. My offer it''s avaible for you...take your time. Come speak to me when you want to know more about it; i know it could be hard but once you whore yourself you never came back... . You may also know something more i didn''t tell you yet...details for the most...but as it''s said: true stay in details.... . And who know?...Maybe you will help me in that matters too. "<br>"I-i..."<br>Inna: "...Go home and think about it, you can sleep in peace with him behind bars."'
+										act '"Yes...i...should go now..."':gt 'mod_iwhore_innapodz', 'etaj_5'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+
+
+if $ARGS[0] = 'pimped2':
+	*clr & cla
+	$loc_arg = 'livingroom'
+	$loc = 'mod_iwhore_innapt'
+	minut += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+	'Inna: "Please...have a seat."<br>You sit on the sofa; last time she shocked with her proposal, you don''t know anymore if you can trust her...because the link with what happened is clear now...at least that what you think. She also failed, according to what she said, protecting you...and that''s resetted all the trust point she gained toward you... . On the other side if you are here it''s because of her...you struggle.<br>Inna: "We didn''t started with the right step..."'
+
+    act '"You can say it loud..."':
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+		'Inna: "...Still you are here."<br>"...I want to know more about what happened: you were not able to protect me...i need to know everything that can be useful."<br>Inna: "...You will, but i''ll explain my condition later"<br>"...And what let you think that i''ll have a use of it? Something may have turned against you, i''m not sure you can protect me...and if someone was able to trick you, who assure me he will not be able to trick you a second time?"<br>Inna: "...There won''t be a second time if you''ll be under my protection: i told you that protected girls are watched from the first line too. That means a physical person that oversight you. Also you are a wise girl...and wise girls don''t like to see their money flee away."<br>"...So you''ll do nothing if someone will beat me to the death?"<br>Inna: "Wrong. I''ll not allow that: i told you that a dead girl means no profit for me. About how they tricked me i took my counteraction, and soon i''ll arrived to the head to cut...with or without your help. Now, wait me here."'
+		act '"Uhmpff!"':gt 'mod_iwhore_begin', 'pimped3'
+	end
+	act '"..."':
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+		'Inna: "...And that''s disappointing; i think that who thought to trick me had just that as a target: to lower my trust toward my girls. It''s easy for you to understand i cannot allow that."<br>"...Who thought to tricked you scored a point..."<br>Inna: "And i scored mine."<br>"..."<br>Inna: "The man who beat you is in jail, and believe me: he''s not a cheap dog. But before speaking about the blind spot you may have, i want something to be clear: first i told you that protected girls are watched from the first line too. That means a physical person that oversight you. Second i took  counteractions to not be tricked a second time."<br>"...But not protected..."<br>Inna: "I told you: a dead girl means no profit for me. Third: soon the thinking head behind this will be under my feet...with or without your help. Now, wait me here."'
+		act '"..."':gt 'mod_iwhore_begin', 'pimped3'
+	end
+end
+
+
+if $ARGS[0] = 'pimped3':
+	*clr & cla
+	minut += 2
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/GennadijValuev.jpg"></center>'
+	'Inna: "Here."<br>"..."<br>Inna brought you a report high a palm of an hand...<br>Inna: "Here''s his story... ."<br>On the top of the report there''s the photo of the man who almost killed you, you can have access to his report, but i''ll summarize the most important things to you.<br>"Are you sure you are not a policewoman?"<br>Inna: "What the...? Listen: if you came up another time with this shit you''ll start to pay from now my service...no worst: you''ll need someone else to protect from me."<br>"Hey! Calm down...it''s not normal for common people to collect such information...do you know that?"<br>Inna: "Do i seem i common person to you?"<br>"..."<br>Inna: "Then cut your tongue and listen. Have you ever wonder why you didn''t have a single bone cracked?"<br>"...Dr Bogomolov...said something about that, but i didn''t pay much attention..."<br>Inna: "He know when to stop before cracking bones."<br>"What do you mean?"<br>Inna: "Turn the page."'
+	act 'Turn':
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+		'"Name: Gennadij Valuev; Missions: Chechnya, Second Intifada, Kosovo, not authorized, not authorized, South Ossetia... .  What the fuck? A soldier?"<br>Inna: "Almost..."<br>"Here''s written not authorized..."<br>Inna: "...But he took part. War was his home; he moved on his own in Afghanistan and Israeli-Lebanese conflicts."<br>"...Grade: polkovnik discharged with disgrace..."<br>Inna: "...An ex soldier..."<br>"Is that because he went on his own?"<br>Inna: "No. They closed an eye on that; despite his grade he never left the battle...and that''s useful in war."<br>"Why was he discharged then?"<br>Inna: "Doping."<br>"What?"<br>Inna: "You may know that most of the olympics sports search through the army...he was one. Sport open the eyes of the world more than the war...being positive at the olympic is a shame to the whole world. I''m dipleased but it''s easier to hide he took part in unwanted war than using doping... ."<br>"Are you kidding me??? Do you think i believe he was throwed because he won while drugged???"<br>Inna: "I didn''t said he won."'
+		view "mod/iwhore/images/locations/pavlovsk/events/beast/grades.jpg"
+
+		act '"What?"':
+			*clr & cla
+			minut += 2
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+			'Inna: "He didn''t won."<br>"Why should he drug himself to lose? That has no sense..."<br>Inna: "He drugged thinking to win....GAVRIIL!!! Come here!"'
+			wait 9000
+			view "mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav0.jpg"
+			'Gavriil: "You called? <<$pcs_nickname>>..."<br>"Hi... Gavriil..."<br>Inna: "Put the video."<br>Gavriil: "One second... . Vik can you open the window...you know i don''t like the smoke."<br>Inna: "Right..."<br>"Uh? What video? Inna! Do not show it to him!"<br>Inna: "We overwatch all the girls videos...but do not worry...it''s not about you."'
+			act '...':
+				*clr & cla
+				minut += 3
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/tko0.mp4"></video></center>'
+				'Gavriil: "Here...round ten"<br>"What?...That''s real..."<br>Inna: "I don''t sell shit girl."<br>Gavriil: "Nope. But she neither clean when it her turn."<br>Inna: "Ufff...again that story..."'
+				act '"What''s that story?"':
+					*clr & cla
+					minut += 3
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/tko1.mp4"></video></center>'
+					'Inna: "What now? Is the maid league against me?"<br>Gavriil: "You know i''m right..."<br>Inna: "Ufff...!!!"<br>"I mean...You Gavriil and...he..."<br>Gavriil: "He lost the match with me."<br>Inna: "But that doesn''t mean he wasn''t a suitable employ for me."<br>Gavriil: "..."<br>"What?...Did he work or you?"<br>Inna: "He worked. But his behaviour was not what i need: he started well...but with time he begin to take money on his own from my girls. I cannot tollerate that...i had to kick him out. As you know it''s not "easy" to deal with him...but i had one chance to cut him out definitively... ."<br>Gavriil: "Me."<br>"I see... . That''s how did you met..."<br>Inna: "Sort of...a little more complicated but it can pass that way. Gavriil was reluctant at the beginning to work with me and move on another country; but then he saw how i work...and now he''s here."<br>Gavriil: "Still she doesn''t clean when it come to her..."<br>Inna: "Again? And what should i tell when you clean i cannot find my stuff? All of you hide my things on purpose!"'
+					act '"You...seems less big Gavriil...i mean...in the video..."':
+						*clr & cla
+						minut += 1
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav1.jpg"></center>'
+						'Gavriil: "You are right. I had to stay within 165 Lb... 80 Kg if you prefer; but...do not remind me...i was starving. It''s really far away from my regular weight."<br>"...Oh...and...how much do you weight...right now?...I''m just curious..."<br>Gavriil: "...260 last time...if i''m correct."<br>"...That''s...a lot of difference..."<br>Gavriil: "...I told you...do not remind me... . I think my stomach was smaller than a ping pong ball that time..."<br>Inna: "Ok Gavriil...you can go now, we didn''t finished to speak..."<br>Gavriil: "Ok Vik...<<$pcs_nickname>>, see you soon..."<br>"Goodbye Gavriil...see you."'
+						act '...':
+							*clr & cla
+							minut += 2
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+							'Inna: "...If there''s a man that can win against Gennadij, that''s Gavriil. That''s why you will be sure under protection."<br>"...It seems... . Inna..."<br>Inna: "..."<br>"...How much time does he sentenced?..."<br>Inna: "...Quite a long time; to be honest more than I expected... . I put some drug on him...that was enough to made him stay in prison for two/four years; but when police searched in his house they found tons of illegal sport substances... . I would say ten/twelve years left... . He didn''t lost his hobby...and there was the accident....he''s fucked up basically."'
+							act '"...I..."':
+								*clr & cla
+								minut += 5
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/years.mp4"></video></center>'
+								'You cry... . The thought of him secluded for ten years is more than you expected; if Inna is right you are safe from him. Inna understand you, and stay silent...<br>Inna: "..."<br>She pass you an hanky wich you use to wipe your tears...'
+								act '"...What...could he wanted from me?..."':
+									*clr & cla
+									minut += 2
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bong0.mp4"></video></center>'
+									'Inna: "...Oh!...There''s a brain in that box called skull then..."<br>"..."<br>You do not reply to Inna''s sarcasm...<br>Inna: "...Well...pretty simple: i don''t know it yet. He is a dog; as every dog he has an owner. I have to find the owner to answer your question. Apparently he has no one, it seems he worked on his own...but that doesn''t means he doesn''t have one. It could be payed for a "one time work", or he could have worked under someone carefully trying to stay hidden... . I need more time, but whoever stay behind that it''s not a dumb. I send his dog in prison, and that''s a clear message. Also I cleared your reputation and the police accepted my payment.."<br>"...You did...what?"<br>Inna: "...Uhmm...right you may not be aware of it. Well i can clear girls reputation; you will be surprised on how many doors money can open...but that''s not the point. The matter is that your clear cost me five times the regular fee...that means only one thing: there''s a thinking head behind the dog."<br>"...But if that''s true...this head deal with the police...and that means...he has the police protection..."<br>Inna: "...You are a bad listener: they accepted the payment. That means that whoever was he/she cannot hold the police on the balls. They were paid...and guess what? They couldn''t say no to another payment: police is out from that now...and that''s another message delivered."'
+									act '"..."':
+										*clr & cla
+										minut += 2
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/affair4.jpg"></center>'
+										'Inna: "Don''t worry the cleaning is free of charge...this time. You will gain it again easily when you will start work again."<br>"...But..."Inna: "...Yes yes...if you will start...as you wish..."<br>"...What else you can say to me that i don''t know?"<br>Inna: "...For example that i hate to wear panties...but not if they are tight in the crotch..."<br>"...What the...? I mean..."<br>Inna: "...That''s pretty much everything i know. I doubt he/she or even they will try that again...anyway i prefer to cut the problems from the root... I''ll deal with that. I said you everything: now we should speak about work."<br>"...I''m not sure..."<br>Inna: "I''ll be quick, you can ask me what you want another time; i''ll explain the basic rules, it will not last long. Then you can decide to do what you want, and you will be aware of the chance you have staying under my protection."<br>"...Ok then...if you must..."<br>Inna: "Deal. First: i must not. YOU should. Second: there are two ways of payment. You can pay a standard amount of money for a week or 30 days; otherwise your pay can be cutted for each client. I took the 25% directly from the client and the remnant it''s your. Same rules: a week or a month. Third: cum as much as you can. This is an advice not a rule..hehehe."<br>"...What? Is that all?..."<br>Inna: "Pretty much...yes. The first week is a try, that means it will start when you will be agree you try that and if you agree just tell me...if not...well.... . Good luck. There are a little more tips i''ll tell you eventually, for the moment this is everything you need to know: money part is the most important...don''t you agree?"<br>"...Well..."<br>Inna: "Good...now shoo....or snoop around if you want... . I don''t know about you but i need a fuck; the house will be open for you feel free to pass...and let me know. See you soon <<$pcs_nickname>>."'
+										act '"...Hey!..."':
+											*clr & cla
+											minut += 5
+											gs 'mod_iwhore_innapt','guardian_route'
+											gs 'mod_iwhore_innapt','guardian_maid'
+											gs 'stat'
+											killvar 'gennadij_mem'
+											inna_varvara_pimp += 1
+											whore_beginner_day = daystart
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/living.jpg"></center>'
+											'Inna didn''t let you the time that she left you in the living room...you wonder about what you can do...'
+											act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'pimped4':
+	inna_varvara_pimp = 13
+	minut += 3
+	if GuardianLoc[hour] = 0:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0a.jpg"></center>'
+		'Inna: "..."<br>"..."<br>Inna: "...Well? Do you want me to speak for you?"'
+		act '"Nice butt..."':gt 'mod_iwhore_begin','pimped5'
+		act '"About last time we talked..."': gt 'mod_iwhore_begin','pimped6'
+	else
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0b.jpg"></center>'
+		'"...Inna..."<br>Inna: "...(snort)..."<br>"Emmhh...Inna..."<br>Inna: "...(snort)..."<br>"Inna!"<br>Inna: "...Yes...lick me..."<br>"What the...?"'
+		act 'Poke her':
+			*clr & cla
+			minut += 2
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+			'Inna: "..uh?..."<br>"Inna...It''s me...<<$pcs_nickname>>..."<br>Inna: "...Oh...it''s you."<br>"..."<br>Inna: "..."<br>"..."<br>Inna: "...Well? Do you want me to speak for you?"'
+			act '"Sorry to wake you up but...hey, nice butt!...by the way..."':gt 'mod_iwhore_begin','pimped5'
+			act '"Sorry to wake you up but...about last time we talked..."': gt 'mod_iwhore_begin','pimped6'
+		end
+	end
+end
+
+if $ARGS[0] = 'pimped5':
+	*clr & cla
+	minut += 1
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+	'Inna: "Never judge before trying."<br>"Tempting..."<br>Inna: "Come back in few hours then...i need to rest."<br>"Are you serious?"<br>Inna: "Uh?"<br>"..."<br>Inna: "Well?...If you stare a little more it will be me who will have your service"'
+	act '"Mine was only a compliment... ."':
+		*clr & cla
+		minut += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+		'Inna: "Then go lick someone else butt, you won''t have a discount."<br>"..."<br>Inna: "Girl..."<br>"What?"<br>Inna: "Are you deaf or what?"<br>"..."<br>Inna: "Well? If you want something you need to talk...i''m not a mind reader."'
+		act '"Ok ok...about last time we talked..."': gt 'mod_iwhore_begin','pimped6'
+		act '"Ok ok... . I''m leaving"':
+			*clr & cla
+			minut += 1
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+			'Inna: "Not so fast young lady. Since you are here i''ll finish to explain something, so next time you won''t bother me with silly question."<br>"Ok if you have to..."<br>Inna: "Good... . Clean your ears because i don''t like to repeat myself."'
+			act '"..."': gt 'mod_iwhore_begin','pimped6'
+		end
+		act '"..."': gt 'mod_iwhore_begin','pimped5a'
+	end
+	act '"..."': gt 'mod_iwhore_begin','pimped5a'
+	act '"Ok ok...about last time we talked..."': gt 'mod_iwhore_begin','pimped6'
+end
+
+if $ARGS[0] = 'pimped5a':
+	*clr & cla
+	minut += 2
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+	'Inna: "Guess what? Being a pimp has its advantage my girls cost me 10 rubles... . Come on strip and start lick my pussy... ."'
+	act '"Hey! That''s not... . I''m leaving."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0c.jpg"></center>'
+		'Inna: "Not so fast young lady. Since you are here i''ll finish to explain something, so next time you won''t bother me with silly question."<br>"Uhmppff!"<br>Inna: "Good... . Clean your ears because i don''t like to repeat myself."'
+		act '"..."': gt 'mod_iwhore_begin','pimped6'
+	end
+	act '"O-ok...but money first..."':
+		*clr & cla
+		money += 10
+		minut += 2
+		inna_varvara_pimp = 14
+		'<center><video autoplay loop src="images/shared/Accessories/computer/webcam/undress1.mp4"></video></center>'
+		'You obediently strip...<br>Inna: "Quite smart isn''t it? Here they are honey... . Now start your service"'
+		act 'Lick Inna''s pussy.':
+			*clr & cla
+			$orgasm_or = 'no'
+			gs 'arousal', 'cuni_give', 3, 'prostitution', 'lesbian' 
+			gs 'arousal', 'end'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/sex/lickpup0.mp4"></video></center>'
+			'Inna: "Right there...good girl. I knew your were good...keep going."<br>You obediently lick Inna''s oozy cunt... . You are doing a great job considering her moan... .<br>Inna: "You said I have a nice butt... change spot slut."'
+			act '...':
+				*clr & cla
+				minut += 2
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+				'You were changing spot when the door suddenly open...<br>Inna: "...That''s it...uh?..."<br>"Crap!"<br>Yana: "I think i''m fucked..."<br>Inna: "Hi Yana...hehehe..."<br>Yana: "...Need help?"<br>Inna: "No thanks sweety, i need a little rest... ."<br>Yana: "...Ok...i''ll watch...at least..."<br>"HEY!"<br>Inna: "Shut up and keep working or you won''t see your money."'
+				act 'Earn your money.':
+					*clr & cla
+					$orgasm_or = 'no'
+					gs 'arousal', 'rimming_give', 3, 'prostitution', 'lesbian', 'exhibitionism', 'humiliation'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/sex/lickaup0.mp4"></video></center>'
+					'Inna: "...Like that...good girl..."<br>Yana: "Nice indeed..."'
+					act 'Keep working':
+						*clr & cla
+						$orgasm_or = 'no'
+						gs 'arousal', 'rimming_give', 3, 'prostitution', 'lesbian', 'exhibitionism', 'humiliation'
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/tricked.jpg"></center>'
+						'Yana: "...So...?"<br>Inna: "...10..."<br>Yana: "Fuck! I''m fucked up!"<br>Inna: "...Yes...hehehe..."<br>"...Uh?..."<br>Inna: "Who told you to stop...stick your tongue in there!"'
+						act 'Stick your tongue':
+							*clr & cla
+							$orgasm_or = 'no'
+							gs 'arousal', 'rimming_give', 4, 'prostitution', 'lesbian'
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/sex/stickaup0.mp4"></video></center>'
+							'Yana: "You cost me a lot...young kitty."<br>Inna: "Nope...you should have know...Ohhhh....theeeeereeee....!!!....."'
+							act '...':
+								*clr & cla
+								gs 'arousal', 'cuni_give', 3, 'prostitution', 'lesbian' 
+								gs 'arousal', 'end'
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="images/shared/sex/lesbian/kuni20.jpg"></center>'
+								'Inna: "Come here... !"<br>Inna stand up and gently put your head on her crotch offering her clitorid to your tongue... . She squiver in a strong orgasm right in your face; it was not a bad experience afterall... .'
+								act '...':
+									*clr & cla
+									minut += 2
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+									'Inna recover herself, and put her panties on; you do the same and dress yourself.<br>Yana: "Crap! And now i''m horny too... . You owe me a fuck Inna."<br>Inna: "You know where i live...hehehe..."<br>Yana: "Glad she''s not a feisty one; ok i''ll let you to the explanations...see you, and ...good work <<$pcs_nickname>>...you impressed me."<br>Few moments later and Yana left the room...<br>"..."<br>Inna: "...Don''t worry, we are like a family...we share almost everything. But not if you are not willing of course...now..."'
+									view "mod/iwhore/images/characters/pavlovsk/resident/yana/tricked.jpg"
+									act '"What does she meant? "':
+										*clr & cla
+										minut += 1
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+										'Inna: "That you are a dumb..."<br>"Hey!"<br>Inna: "But it is...see my dear...i tricked you."<br>"What?"<br>Inna: "Yes... . If you were under my protection that wouldn''t be happened..."<br>"What are you talking about?"<br>Inna: "I don''t have discount and neither the girls...it''s a rule."<br>"You!"<br>Inna: "Well...it''s all your fault. If you didn''t have sold your body to me while not protected...well you could have earned the regular payment."<br>"..."<br>Inna: "Now you know that you will cost me 10 rubles without protection...if you will be willing of course."<br>"Uhmpfff!...And how come that i cost her a lot of money? ?"<br>Inna: "A little bet... . She bet you would have not be tricked by me... . She owe me 5000 rubles now."<br>"I feel...."<br>Inna: "...Shuup!...Like someone who need to know the rules of the game she''s playing...don''t you agree?"'
+										act '"..."': gt 'mod_iwhore_begin','pimped6'
+									end
+								end
+							end
+						end
+					end
+				end
+				act '"No way!"':
+					*clr & cla
+					minut += 2
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+					'You recover youself, and wear your dress...a disappointed Inna put her panties on.<br>Inna: "You owe me a fuck Yana."<br>Yana: "I could say the same...hehehe... . Say <<$pcs_nickname>>: how much did Inna gave you?"<br>"...10 rubles..."<br>Yana: "I''m fucked! You cost me a lot girl..."<br>Inna: "Nope...you should have know..."<br>Yana: "Yes yes...whatever... . Well there''s no show here, i better go earn something. See you later..."<br>"...Uh???..."<br>Yana left the room...<br>Inna: "...Don''t worry, we are like a family...we share almost everything. But not if you are not willing of course...now..."'
+					view "mod/iwhore/images/characters/pavlovsk/resident/yana/tricked.jpg"
+					act '"What does she meant? "':
+						*clr & cla
+						minut += 1
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+						'Inna: "That you are a dumb..."<br>"Hey!"<br>Inna: "But it is...see my dear...i tricked you."<br>"What?"<br>Inna: "Yes... . If you were under my protection that wouldn''t be happened..."<br>"What are you talking about?"<br>Inna: "I don''t have discount and neither the girls...it''s a rule."<br>"You!"<br>Inna: "Well...it''s all your fault. If you didn''t have sold your body to me while not protected...well you could have earned the regular payment."<br>"..."<br>Inna: "Now you know that you will cost me 10 rubles without protection...if you will be willing of course."<br>"Uhmpfff!...And how come that i cost her a lot of money? ?"<br>Inna: "A little bet... . She bet you would have not be tricked by me... . She owe me 5000 rubles now."<br>"I feel...."<br>Inna: "...Shuup!...Like someone who need to know the rules of the game she''s playing...don''t you agree?"'
+						act '"..."': gt 'mod_iwhore_begin','pimped6'
+					end
+				end
+			end
+		end
+	end
+	act '"Ehmmm ... wait! About last time we talked..."': gt 'mod_iwhore_begin','pimped6'
+end
+
+if $ARGS[0] = 'pimped6':
+	*clr & cla
+	minut += 2
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+	if inna_varvara_pimp = 14:
+		'Inna: "Good...let''s start then. As you now know there''s no discount: so put this off from your head, if you think it. I can ask as a regular customer your service and the same for you; the last word is yours of course. Is that clear?"<br>"...Ok..."'
+	else
+		'Inna: "Good...let''s start then. First of all I''m a potential clients, and the same for you; the last word is yours of course. Is that clear?"<br>"...Ok..."<br>Inna: "Good. Then, no discount are allowed: i''ll not cost you less and you won''t see from me less then the regular payment if i''ll ask for your services..."<br>"...Ok..."'
+	end
+	'Inna: "...Even being my wife won''t spare you from the rule: is that clear?"<br>"...Wife?..."<br>Inna: "It''s just a way to say <<$pcs_nickname>>: it''s categorical. Do not ask for discound, cut of the percentage or the standard amount: N-E-V-E-R."<br>"...Clear..."<br>Inna: "Ok: how to settle this. It''s enought for you to speak to any of the members you''ll find in this house; if no one die at least one member should be in at every hour."<br>"...Die?"<br>Inna: "It''s just another way to say <<$pcs_nickname>>..."<br>"...Ah...ok..."<br>Inna: "Uhmmpphh!...Ok... . There will be a memo you can look to know how much time remain to your protection...if you don''t want to pass here to know it just write it on your butt and use a mirror."<br>"..."<br>Inna: "You will be fully protected for the timw you will buy... . I''ll interfere if something really bad happens anyway; it could be hard to believe for you and i understand it, nontheless it''s another mandatory rule. So don''t come to me crying when your purse will be empty, because it won''t happen under my protection, and it means only that you are out from it. So keep an eye on the time you had from time to time, it''s an advice."<br>"..."<br>Inna: "Working clothes: we need to be eye catching and easy to fuck. You know what does it means: consider it your uniform."'
+	act '"Got it..."':
+		*clr & cla
+		minut += 5
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+		'Inna: "The experience you have could affect the chance a client will choose for your services; send the client to extasy and you may have bonus. Every bonus it''s totally your: no percentage on that. Even the reputation could affect your the chance a client could require your service; i told you i offer a clean from protection. If for whatever reason you need to clean your reputation you have to come to me and ask for it, altought it will cost; you can always work to rise it again."<br>"...That''s...ok i guess."<br>Inna: "Cool. Again, i may send you in the future more than one client for service if you are willing. In that case the pay should be quite standard and related to the number of clients you have. "<br>"...Oh!...Well...ok..."<br>Inna: "Police should not interfere under my protection; they could ask for a quick blow anyway from time to time...some of them have no real use of money. If you are under protection and a "clean the shaft service" is required but you are not willing another girl should be avaible: do what you want."<br>"..."<br>Inna: "Do not ask my men to fuck if they are working. They''ll say no anyway."<br>"Ok."<br>Inna: "I cut the 20% from the gloryhole when you let clients enter...if under protection of course."<br>"Uh?...Do you own the gloryhole too?"<br>Inna: "Exactly. Some of the money to enter there are mine too, that''s why it''s only 20%."<br>"...But that means..."<br>Inna: "That a lot of Pavlovsk''s people work for me without being aware of it."'
+		act '"..."':
+			*clr & cla
+			minut += 2
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+			'Inna: "That''s almost everything about the working aspects: try to not get too many sick, i won''t pay for cure."<br>"..."<br>Inna: "The house is open for you: there are no bed avaible, but you can take a nap on the sofa if you need. If you want to sleep...well you can always try to ask to some of the members if they agree to give you some space in the bed: that''s not and hostel anyway and my members need a full rest to work properly: do not forget i won''t allow more than one night in a week for you to sleep."<br>"..."<br>Inna: "If you find something in the fridge...well you were luck in that case... . Probably you could be able to cook...do what you want. You can use the bathroom as you want...oh about that...we are whores no one will be upset if you wonder naked or butt plugged or if you masturbate with your head down. Doors usually have no key so just enter and if someone is fucking don''t scream unless you are asked for. That''s not a brothel, no other clients than who live in this house are allowed; but you can fuck with your boyfriend or girlfriend around: do not bring clients here."'
+			act '"..."': 
+				*clr & cla
+				minut += 2
+				inna_varvara_pimp = 15
+				new_whore = 51
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+				'Inna: "That''s all. ...If something will came up to my mind i''ll let you know. Now: do you have any question?"<br>"...Honestly you filled my head a little...can i ask you later if i forgot something?"<br>Inna: "...Not while i''m sleeping, but feel free. You''ll understand it more easily with work."<br>"..."<br>Inna: "Remember: the first week is free of charge, it will start when you''ll give me or an house member your agreement and the same to renew it; it could happen to see some of us sometimes outside...if you need protection you can ask there too, but remember ask only to the people who live in this house. Do not forget."<br>"..."<br>Inna: "Now before my earned rest: do you want to start now? "<br>...'
+				act 'Yes':
+					*clr & cla
+					minut += 5
+					Krestovoz_pimp_day = daystart + 7
+					inna_varvara_pimp = 16
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+					'Inna: "Ok girl, you can start from now. Shake your butt for me in the streets in the meantime, i''ll shake mine in few hours... . Now if you''ll excuse me... ."<br>"...Oh!...ok...goodbye Inna..."<br>Inna: "...''Night..."'
+					act 'Leave': gt 'mod_iwhore_innapt','hallway'
+				end
+				act 'No':
+					*clr & cla
+					minut += 1
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+					'Inna: "As you wish. You know where to find your safety. Now if you''ll excuse me... ."<br>"...Oh!...ok...goodbye Inna..."<br>Inna: "...''Night..."'
+					act 'Leave': gt 'mod_iwhore_innapt','hallway'
+				end
+				act 'I have to think about it, but thanks.':
+					*clr & cla
+					minut += 1
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+					'Inna: "You know you won''t be paid for thinking, do you?."<br>"..."<br>Inna: "Now if you''ll excuse me... ."<br>"...Oh!...ok...goodbye Inna..."<br>Inna: "...''Night..."'
+					act 'Leave': gt 'mod_iwhore_innapt','hallway'
+				end
+				if money >= 250:
+					act '"I want your bum!"':
+						*clr & cla
+						minut += 2
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+						'Inna: "..."<br>"..."<br>Inna: "...''Night..."<br>"...Well?..."<br>Inna: "...Shooo! ...Come back another day..."<br>"...Uffff!..."<br>Inna: "...And do not slam the door..."'
+						act 'Leave': gt 'mod_iwhore_innapt','hallway'
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'pimped6a':
+	*clr & cla
+	inna_varvara_pimp = 14
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+	'Inna: "..."<br>"..."<br>Inna: "..."<br>"..."<br>Inna: "..."<br>"..."'
+	act '"..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+		'Inna: "..."<br>"..."<br>Inna: "..."<br>"..."<br>Inna: "..."<br>"..."'
+		
+		act '"..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed1.jpg"></center>'
+			'Inna: "..."<br>"..."<br>Inna: "..."<br>"..."<br>Inna: "..."<br>"..."'
+			act '"..."': gt 'mod_iwhore_begin','pimped6'
+		end
+	end
+end
+
+! 80=175  120=265
+!	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/GennadijValuev.jpg"></center>'
+
+!'Gennadij Valuev'
+!'As you move the knife <a href="exec: view''mod/iwhore/images/characters/pavlovsk/resident/gift.jpg''">something</a> falls...'
+
+!	'You can now look at the <a href="exec:view''mod/iwhore/images/locations/pavlovsk/events/fight/rules.jpg''">rules</a>'
+!	'You can now look at the <a href="exec:view''mod/iwhore/images/locations/pavlovsk/events/fight/rules.jpg''">rules</a>'
+
+--- mod_iwhore_begin ---------------------------------

+ 910 - 0
locations/mod_iwhore_dhighway.qsrc

@@ -0,0 +1,910 @@
+# mod_iwhore_dhighway
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!DAY!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+if $ARGS[0] = 'dbj':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me again slut"'
+	else
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me your tits slut"' 
+	end
+	
+	act 'Show your tits':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/4showct'+rand(0,10)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/bj'+rand(0,10)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_dhighway', 'dbjend'
+		end
+	end
+end
+
+if $ARGS[0] = 'dbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['bj'] += 1
+	if new_whore < 30: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown' 
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+	if dnak_car = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'arousal', 'end'	
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/facial'+rand(0,1)+'.mp4"></video></center>'
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/bj'+rand(0,5)+'.mp4"></video></center>'
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+		end
+		act '...':
+			gs 'mod_iwhore_dincollect', 'whore_check_oral'
+			if rand(0,2) < 2:
+				cla
+				*clr
+				money += 20
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/bj'+rand(0,5)+'.mp4"></video></center>'
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/facial'+rand(0,1)+'.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'dvag':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/3showcp'+rand(0,10)+'.jpg"></center>'
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/vag/vag'+rand(0,13)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_dhighway', 'dvagend'	
+		end
+	end
+end
+
+if $ARGS[0] = 'dvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 30: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/vag/vvag'+rand(0,16)+'.mp4"></video></center>'
+	if nnak_car = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end	
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagout0.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'   
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagin'+rand(0,1)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			gs 'mod_iwhore_dincollect', 'whore_check_vag'
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagout0.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagin'+rand(0,1)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'danal':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/1showca'+rand(0,10)+'.jpg"></center>'
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/anal/anal'+rand(0,10)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily ..."The bitch is ready uh?" Grunting, he shoves his cock up your ass, pushing in balls deep in a single thrust. You hiss in pain, biting your lip nearly hard enough to draw blood as he begins to furiously fuck you without a care for your own pleasure.'
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_dhighway' , 'danalend'
+		end
+	end
+end
+
+if $ARGS[0] = 'danalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 30: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/anal/vanal'+rand(0,16)+'.mp4"></video></center>'
+	if nnak_car = 1:
+		'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt'+rand(0,1)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/anal'+rand(0,1)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt'+rand(0,1)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/anal'+rand(0,1)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'dpropose':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/zcarprop'+rand(0,1)+'.mp4"></video></center>'
+	'The man stay in his car without speaking, you approach the car in a sensual manner. "Sweety, i''ve got all you need; just relax and enjoy me."'
+	minut += 1
+	propose = 1
+	gfy_rand = rand(0,10)
+	act 'Show tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcartit'+rand(0,4)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcartit'+rand(1,4)+'.mp4"></video></center>'
+		end
+		'"I know what you like..."'
+		act 'Deal': 			
+			if gfy_rand < 8: 
+				if pcs_inhib >= 35 and new_whore >= 30:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_dhighway', 'dbj' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_dhighway', 'dhbj' 
+					end	
+				else
+					gt 'mod_iwhore_dhighway', 'dbj'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end  	 
+	end
+	act 'Show pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarpuss'+rand(0,1)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarpuss0.mp4"></video></center>'
+		end
+		'"I know what you like..."'
+		act 'Deal': 
+			if gfy_rand < 8: 
+				if pcs_inhib >= 35 and new_whore >= 30:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_dhighway', 'dvag' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_dhighway', 'dhvag' 
+					end	
+				else
+					gt 'mod_iwhore_dhighway', 'dvag'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end
+	end
+	act 'Show ass':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if analplugin = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/zzshowplug4.jpg"></center>'
+				'"I feel empty...you know?"'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarass'+rand(0,4)+'.mp4"></video></center>'
+				'"I know what you like..."'
+			end		
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarass'+rand(1,4)+'.mp4"></video></center>'
+			'"I know what you like..."'
+		end
+
+		
+		act 'Deal': 
+			if gfy_rand < 8: 
+				if pcs_inhib >= 35 and new_whore >= 30:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_dhighway', 'danal' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_dhighway', 'dhanal' 
+					end	
+				else
+					gt 'mod_iwhore_dhighway', 'danal'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end 
+		
+	end
+	
+end
+
+if $ARGS[0] = 'dhbj':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to blow him. You enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"'
+	else
+		'You agree to blow him. You enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your tits slut"' 
+	end
+	
+	act 'Show your tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/3showst'+rand(0,10)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'arousal', 'foreplay', 2, 'prostitution'
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/bj/bj'+rand(0,7)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			
+			act 'Work the shaft': gt 'mod_iwhore_dhighway', 'dhbjend'
+		end
+	end
+end
+
+if $ARGS[0] = 'dhbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	stat['bj'] += 1
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	if new_whore < 50: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown' 
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/bj/vbj'+rand(0,5)+'.mp4"></video></center>'
+	if dnak_street = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vfacial0.mp4"></video></center>'
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj'+rand(0,1)+'.mp4"></video></center>'
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj'+rand(0,1)+'.mp4"></video></center>'
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vfacial0.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'dhvag':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/2showsp'+rand(0,10)+'.jpg"></center>'
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'arousal', 'foreplay', 2, 'prostitution'
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/vag/vag'+rand(0,20)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			act 'Work the shaft': gt 'mod_iwhore_dhighway', 'dhvagend'	
+		end
+	end
+end
+
+if $ARGS[0] = 'dhvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 50: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/vag/vvag'+rand(0,8)+'.mp4"></video></center>'
+	if dnak_street = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagoutcum0.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'   
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagin'+rand(0,1)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagoutcum0.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagin'+rand(0,1)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'dhanal':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/1showsa'+rand(0,10)+'.jpg"></center>'
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/anal/anal'+rand(0,6)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily ..."The bitch is ready uh?" Grunting, he shoves his cock up your ass, pushing in balls deep in a single thrust. You hiss in pain, biting your lip nearly hard enough to draw blood as he begins to furiously fuck you without a care for your own pleasure.'
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_dhighway' , 'dhanalend'
+		end
+	end
+end
+
+if $ARGS[0] = 'dhanalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 50: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/anal/vanal'+rand(0,1)+'.mp4"></video></center>'
+	if dnak_street = 1:
+		'He decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/butt0.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/anal0.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/butt0.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/anal0.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			end
+		end
+	end			
+end	
+
+if $ARGS[0] = 'dnakcar':
+	cla
+	*clr
+	dnak_car = 1
+	dnakcar_way = rand(0,10)
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	'"Let me see your body slut, i have to decide. And do not dance i''m not here for a show."' 
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/2showcb'+rand(0,10)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision."'		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/bj'+rand(0,10)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			if dnakcar_way = 10:
+				act 'Work the shaft': 
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral' 
+					gt 'mod_iwhore_dhighway', 'dbjend'
+				end
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown' 
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if dnakcar_way =< 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_vag' 
+							gt 'mod_iwhore_dhighway', 'dvagend'
+						elseif dnakcar_way =< 9 and dnakcar_way > 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_anal' 
+							gt 'mod_iwhore_dhighway', 'danalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'dnakstreet':
+	cla
+	*clr
+	dnak_street = 1
+	dnakstreet_way = rand(0,10)
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	'"Get out from the car and strip slut, i have to decide. And do not dance i''m not here for a show."'
+	
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/4showsb'+rand(0,15)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision." '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/bj/bj'+rand(0,7)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			if dnakstreet_way = 10:
+				act 'Work the shaft': 
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral' 
+					gt 'mod_iwhore_dhighway', 'dhbjend'
+				end
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown' 
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/street/bj/vbj'+rand(0,5)+'.mp4"></video></center>'
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if dnakstreet_way =< 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_vag' 
+							gt 'mod_iwhore_dhighway', 'dhvagend'
+						elseif dnakstreet_way =< 9 and dnakstreet_way > 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_anal' 
+							gt 'mod_iwhore_dhighway', 'dhanalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+!wait 725
+
+
+!'+rand(0,6)+'
+!gt 'mod_iwhore_pbath', 'start'
+
+!gt 'pav_park', 'park'
+
+
+!PCloStyle = 4
+--- mod_iwhore_dhighway ---------------------------------

+ 1733 - 0
locations/mod_iwhore_dincollect.qsrc

@@ -0,0 +1,1733 @@
+# mod_iwhore_dincollect
+!!!!!!!!!!!!BATH!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'tampon':
+
+	if sanpad > 0 and (mesec > 0 or (placebopart > 2 and pillcon < 40000)) and isprokp = 0 and isprok = 0 and $pantyworntype ! 'none':
+		act 'Use a sanitary pad (0:05)':
+			cla
+			*clr
+			sanpad -= 1
+			isprokp = 1
+			minut += 5
+			pcs_mood -= 5
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
+			*nl
+			'You use a sanitary pad.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+	if tampon > 0 and (mesec > 0 or (placebopart > 2 and pillcon < 40000)) and isprok = 0 and isprokp = 0:
+		act 'Use a tampon (0:05)':
+			cla
+			*clr
+			tampon -= 1
+			isprok = 1
+			minut += 5
+			pcs_mood -= 5
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
+			*nl
+			'You use a tampon.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'quickwash':
+
+	if spdirty > 0:
+		act 'Quick wash (0:15)':
+			cla
+			*clr
+			
+			cumspclnt = 4
+			gs 'cum_cleanup'
+			if pcs_sweat < 30:
+				pcs_sweat = 15 + rand(0,4)
+			else
+				pcs_sweat -= 10 + rand(0,4)
+			end
+			minut += 15
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash5.jpg"></center>'
+			*nl
+			'You give yourself a catlick, thus removing any traces of cum.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+!	gs 'din_van', 'pblc_pee'
+end
+
+if $ARGS[0] = 'wearpan':
+
+	if $pantyworntype = 'none':
+		act 'Wear panties': gt 'panties', 'view_panty_list', 'bathroom'
+	end
+
+	if $braworntype = 'none':
+		act 'Wear a bra': gt 'bras', 'view_bra_list', 'bathroom'
+	end
+end
+
+if $ARGS[0] = 'bteeth':
+	if pcs_breath ! 1:
+		act 'Brush your teeth (0:05)':
+			cla
+			*clr
+			minut += 5
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_breath = 1
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/brushteeth.jpg"></center>'
+			*nl
+			'You brush your teeth and now they are clean and minty fresh.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'removepan':
+
+	if $pantyworntype ! 'none' and $braworntype ! 'none':
+		act 'Remove underwear':
+			gs 'underwear', 'remove'
+			gt $loc, $loc_arg
+		end
+	end
+
+	if $pantyworntype ! 'none':
+		act 'Remove panties':
+			gs 'panties', 'remove'
+			gt $loc, $loc_arg
+		end
+	end
+
+	if $braworntype ! 'none':
+		act 'Remove bra':
+			gs 'bras', 'remove'
+			gt $loc, $loc_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'showerdin':
+
+	if hypnoAddict = 0:
+		cumspclnt = 1
+	else
+		cumspclnt = 18
+	end
+	gs 'cum_cleanup'
+	pcs_hairbsh = 0
+	pcs_makeup = 1
+	if pcs_sweat > 10: pcs_sweat = 10 + rand(0,4)
+	if false_lashes >= 1:
+		if rand(0,4) <= 2:
+			'You''re careful enough that your false lashes make it through relatively unscathed.'
+		else
+			'Unfortunately, your false lashes don''t make it through the shower.'
+			false_lashes = 0
+			pcs_lashes = pcs_naturallashes
+			gs 'body_shape', 'basebeautycalc', 1
+		end
+	end
+end
+
+if $ARGS[0] = 'enema':
+	if klisma = 1 and (klismaday ! daystart or arrpos('sparrloc', 3) ! -1):
+		act 'Give yourself an enema (0:05)':
+			cla
+			*clr
+			cumspclnt = 7
+			gs 'cum_cleanup'
+			minut += 5
+			klismaday = daystart
+			klismaday1 = 1
+
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
+			*nl
+			'You give yourself an enema, feeling clean down there. Your ass is now ready for anal sex without any awkward surprises.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end &! --- enema ---
+
+if $ARGS[0] = 'toymanage':
+	if analplug = 1 and analplugin = 1:
+		act 'Remove your butt plug (0:05)':
+			cla
+			*clr
+			minut += 5
+			analplugIN = 0
+
+			if pcs_ass < 30:pcs_ass += 1
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			*nl
+			'You squat and tug gently at the butt plug, gasping as you push it out of you. You can''t help but feel a bit empty, now that it''s out.' & !!0.2.6: Removed unneccessary var check
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif analplug = 1 and analplugin = 0 and klismaday = daystart:
+		act 'Insert your butt plug (0:05)':
+			cla
+			*clr
+			minut += 5
+			analplugIN = 1
+
+			if pcs_ass < 10:pcs_ass += 5
+			if pcs_ass >= 10 and pcs_ass < 20:pcs_ass += rand(1, 2)
+			if pcs_ass >= 20 and pcs_ass < 30:pcs_ass += rand(0, 1)
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			*nl
+			if butpluguse > 0:'You squat and gently rub the butt plug against your anus, after lubricating it with a bit of saliva. After a short while, you''ve relaxed enough to be able to push it in. Once it''s in you give it a few gentle tugs, wondering if anyone will catch you wearing it today.'
+			if butpluguse = 0:butpluguse = 1 & '"If I''m not going to use it, then why did I buy it?" you ask yourself. You look at the butt plug for a while, thinking "It is necessary to start developing my ass, so I could have great adventures someday... you could even say huge and thick adventures with crimson heads, uh, now I got carried away..." You''re slightly embarrassed at the thought for a second, but are then overcome by your horny fantasies. Determined to get the plug all the way in, you slowly press it against your asshole after lubricating it with a bit of saliva. It hurts a bit at first, but once the thickest part is in the rest follows rather easily. Patting yourself on your ass once it''s in, you wonder if anyone will notice you''re wearing it today and then immediately feel naughty for even having thought that.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if vibrator = 1 and vibratorIN = 1:
+		act 'Remove the vibrator (0:05)':
+			cla
+			*clr
+			minut += 5
+			vibratorIN = 0
+
+			if pcs_vag < 30:pcs_vag += 1
+
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			*nl
+			'You spread your legs and take the vibrator out of your pussy, letting out a slight moan as you do so. You feel somewhat empty now.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif vibrator = 1 and vibratorIN = 0 and pcs_vag ! 0:
+		act 'Insert the vibrator in your vagina (0:05)':
+			cla
+			*clr
+			minut += 5
+			vibratorIN = 1
+
+			if pcs_vag < 30:pcs_vag += 2
+
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			*nl
+			'You spread your legs and slowly insert the vibrator in your pussy, wondering if anyone will notice you wearing it today.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end &! --- enema ---
+
+if $ARGS[0] = 'basin':
+
+	if cumloc[11] = 1 or cumloc[12] = 1:
+		act 'Clean the sperm from your face (0:10)':
+			cla
+			*clr
+			pcs_makeup = 1
+			cumspclnt = 9
+			gs 'cum_cleanup'
+			cumspclnt = 13
+			gs 'cum_cleanup'
+			if pcs_sweat > 19 : pcs_sweat -= 5
+			minut += 10
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/facesp.jpg"></center>'
+			*nl
+			'You clean your face and get rid of any trace of cum.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if body_write > 0 or face_write > 0:
+		act 'Wash the writings off your body (0:10)':
+			cla
+			*clr
+			body_write = 0
+			face_write = 0
+			minut += 10
+			gs'stat'
+
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash1.jpg"></center>'
+			*nl
+			'You wash off the indecent inscriptions on your body.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if pcs_makeup ! 1:
+		act 'Wash off cosmetics (0:10)':
+			cla
+			pcs_makeup = 1
+			cumspclnt = 9
+			gs 'cum_cleanup'
+			cumspclnt = 11
+			gs 'cum_cleanup'
+			minut += 10
+			*nl
+			'You wash off your makeup.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+	
+	if false_lashes >= 1:
+		act 'Remove false lashes (0:05)':
+			cla
+			'You carefully peel off the glued-on strip, careful to protect your natural lashes.'
+			lashsavechance = rand(0,4)
+			if lashsavechance = 4:
+				'These lashes still look to be in pretty good shape; you could probably use them again.'
+				if pcs_lashes = 4:fakelashesmink += 1
+				if pcs_lashes = 3:fakelashesplain += 1
+			end
+			pcs_lashes = pcs_naturallashes
+			false_lashes = 0
+			minut += 5
+			gs 'body_shape', 'basebeautycalc', 1
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if (cumloc[6] = 1 or cumloc[7] = 1):
+		act 'Clean semen stains from your clothing':
+			*clr & cla
+			cumspclnt = 6
+			gs 'cum_cleanup'
+			minut = minut + 15
+			gs 'stat'
+
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/frotsp.jpg"></center>'
+			'You take fifteen minutes to thoroughly rinse the semen stains out of your clothes. By the time you''re done, all the evidence that remains of them are some quickly drying damp spots.'
+			act 'Finish': gt $loc, $loc_arg
+		end
+	end
+
+	if klisma = 1 and (klismaday ! daystart or arrpos('sparrloc', 3) ! -1):
+		act 'Give yourself an enema (0:05)':
+			*clr & cla
+			pcs_horny += 10
+			cumspclnt = 7
+			gs 'cum_cleanup'
+			minut += 5
+			klismaday = daystart
+			klismaday1= 1
+			'<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
+			'You give yourself an enema, feeling clean down there. Your ass is now ready for anal sex without any awkward surprises.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if analplug = 1 and analplugin = 1:
+		act 'Take out your butt plug (0:05)':
+			*clr & cla
+			minut += 5
+			analplugIN = 0
+			if pcs_ass < 30:pcs_ass += 1
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			'You squat and tug gently at the butt plug, gasping as you push it out of you. You can''t help but feel a bit empty, now that it''s out.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif analplug = 1 and analplugin = 0 and klismaday = daystart:
+		act 'Wear your butt plug (0:05)':
+			*clr & cla
+			minut += 5
+			analplugIN = 1
+			if pcs_ass < 10:pcs_ass = pcs_ass + 5
+			if pcs_ass >= 10 and pcs_ass < 20:pcs_ass += rand(1, 2)
+			if pcs_ass >= 20 and pcs_ass < 30:pcs_ass += rand(0, 1)
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			if butpluguse > 0:'You squat and gently rub the butt plug against your anus, after lubricating it with a bit of saliva. After a short while, you''ve relaxed enough to be able to push it in. Once it''s in you give it a few gentle tugs, wondering if anyone will catch you wearing it today.'
+			if butpluguse = 0:butpluguse = 1 & '"If I''m not going to use it, then why did I buy it?" you ask yourself. You look at the butt plug for a while, thinking "It is necessary to start developing my ass, so I could have great adventures someday... you could even say huge and thick adventures with crimson heads, uh, now I got carried away..." You''re slightly embarrassed at the thought for a second, but are then overcome by your horny fantasies. Determined to get the plug all the way in, you slowly press it against your asshole after lubricating it with a bit of saliva. It hurts a bit at first, but once the thickest part is in the rest follows rather easily. Patting yourself on your ass once it''s in, you wonder if anyone will notice you''re wearing it today and then immediately feel naughty for even having thought that.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+
+	if vibrator = 1 and vibratorIN = 1:
+		act 'Remove the vibrator (0:05)':
+			*clr & cla
+			minut += 5
+			vibratorIN = 0
+			if pcs_vag < 30:pcs_vag += 1
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			'You spread your legs and take the vibrator out of your pussy, letting out a slight moan as you do so. You feel somewhat empty now.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif vibrator = 1 and vibratorIN = 0 and pcs_vag > 0:
+		act 'Insert the vibrator in your vagina (0:05)':
+			*clr & cla
+			minut += 5
+			vibratorIN = 1
+			if pcs_vag < 30:pcs_vag += 2
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			'You spread your legs and slowly insert the vibrator in your pussy, wondering if anyone will notice you wearing it today.'
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'toymanage':
+	if analplug = 1 and analplugin = 1:
+		act 'Remove your butt plug (0:05)':
+			cla
+			*clr
+			minut += 5
+			analplugIN = 0
+
+			if pcs_ass < 30:pcs_ass += 1
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			*nl
+			'You squat and tug gently at the butt plug, gasping as you push it out of you. You can''t help but feel a bit empty, now that it''s out.' & !!0.2.6: Removed unneccessary var check
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif analplug = 1 and analplugin = 0 and klismaday = daystart:
+		act 'Insert your butt plug (0:05)':
+			cla
+			*clr
+			minut += 5
+			analplugIN = 1
+
+			if pcs_ass < 10:pcs_ass += 5
+			if pcs_ass >= 10 and pcs_ass < 20:pcs_ass += rand(1, 2)
+			if pcs_ass >= 20 and pcs_ass < 30:pcs_ass += rand(0, 1)
+
+			'<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
+			*nl
+			if butpluguse > 0:'You squat and gently rub the butt plug against your anus, after lubricating it with a bit of saliva. After a short while, you''ve relaxed enough to be able to push it in. Once it''s in you give it a few gentle tugs, wondering if anyone will catch you wearing it today.'
+			if butpluguse = 0:butpluguse = 1 & '"If I''m not going to use it, then why did I buy it?" you ask yourself. You look at the butt plug for a while, thinking "It is necessary to start developing my ass, so I could have great adventures someday... you could even say huge and thick adventures with crimson heads, uh, now I got carried away..." You''re slightly embarrassed at the thought for a second, but are then overcome by your horny fantasies. Determined to get the plug all the way in, you slowly press it against your asshole after lubricating it with a bit of saliva. It hurts a bit at first, but once the thickest part is in the rest follows rather easily. Patting yourself on your ass once it''s in, you wonder if anyone will notice you''re wearing it today and then immediately feel naughty for even having thought that.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	if vibrator = 1 and vibratorIN = 1:
+		act 'Remove the vibrator (0:05)':
+			cla
+			*clr
+			minut += 5
+			vibratorIN = 0
+
+			if pcs_vag < 30:pcs_vag += 1
+
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			*nl
+			'You spread your legs and take the vibrator out of your pussy, letting out a slight moan as you do so. You feel somewhat empty now.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	elseif vibrator = 1 and vibratorIN = 0 and pcs_vag ! 0:
+		act 'Insert the vibrator in your vagina (0:05)':
+			cla
+			*clr
+			minut += 5
+			vibratorIN = 1
+
+			if pcs_vag < 30:pcs_vag += 2
+
+			'<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
+			*nl
+			'You spread your legs and slowly insert the vibrator in your pussy, wondering if anyone will notice you wearing it today.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'enemaold':
+	!this is the old enema din_van
+	cumspclnt = 7
+	gs 'cum_cleanup'
+	minut += 5
+	klismaday = daystart
+	klismaday1= 1
+	if $ARGS[1]='':
+		*p 'You give yourself an enema, feeling clean down there. Your ass is now ready for anal sex without any awkward surprises.'
+	elseif $ARGS[1]!' ': 
+		*p '<<$ARGS[1]>>'
+	end
+end &! --- enema ---
+
+if $ARGS[0] = 'brit':
+	if shave_menu = 1  and stanok > 1:
+		if pcs_leghair > 3 or (pubestyle = 1 and pcs_pubes > 3) or (pubestyle >= 2 and pubestyle <=7 and pcs_pubes > 11) or (pubestyle = 8 and pcs_pubes > 11) or (pubestyle = 9 and pcs_pubes > 20) or (pubestyle = 10 and pcs_pubes > 26):
+			if pubestyle > 0:
+				act 'Shave yourself (0:15)':
+					*clr & cla
+					minut += 15
+					pcs_leghair = 0
+					if pubestyle = 1 and pcs_pubes > 3:
+						pcs_pubes = 0
+					elseif (pubestyle >= 2 and pubestyle <=7) and pcs_pubes > 11:
+						pcs_pubes = 11
+					elseif pubestyle = 8 and pcs_pubes > 11:
+						pcs_pubes = 16
+					elseif pubestyle = 9 and pcs_pubes > 20:
+						pcs_pubes = 20
+					elseif pubestyle = 10 and pcs_pubes > 26:
+						pcs_pubes = 26
+					end
+					pcs_horny += 5
+					stanok -= 2
+					if obdysh = 1 and rand(0, 5) = 0:gt 'vann', 'brit1'
+					if $loc ='Gadbana':
+						'<center><video src="images/shared/home/bathroom/shave.mp4"></center>'
+					else
+						'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave3.jpg"></center>'
+					end
+					*nl
+					if daystart < 10 and StoryLine = 0 and ntstart = 0:
+						'You can''t shake off the fact that you''re a girl now, so you decide it''d be best to shave your legs. You begin to lather your legs, still marveling at how soft and round they are. Then you take the razor in your hand and begin to shave your legs.'
+						'You feel really awkward, never having done this before as a guy. Luckily, you had more than enough experience with shaving your face and technically this isn''t really all that different. So in the end you get a pretty decent job done.'
+					elseif daystart < 30 and StoryLine = 0 and ntstart = 0:
+						pcs_mood += 10
+						'With a newfound routine you lather up your legs and start shaving, careful not to miss a spot. After washing away the foam you softly glide your hands over your smooth legs, feeling good to know that you don''t need to hide your legs in pants. Maybe you should wear a skirt tomorrow?'
+					elseif pubestyle = 1:
+						'You lather up your legs and crotch and carefully shave them. Once you''re finished you gently glide your hands over your smooth pussy and legs, enjoying the smooth feeling and getting slightly more aroused by the touch.'
+					elseif pubestyle >= 2 and pubestyle <=7:
+						'You lather up your legs and carefully shave them. Once you''re finished gliding your hands over your smooth legs, ensuring you didn''t miss a spot, you spend some time cleaning up the area around your neatly trimed and styled patch of pussy hair as well.'
+					elseif pubestyle = 8:
+						'You lather up your legs and carefully shave them. Once you''re finished gliding your hands over your smooth legs, ensuring you didn''t miss a spot, you spend some time shaving off the stubble around your small patch of hair tidy as well.'
+					elseif pubestyle >= 9:
+						'You lather up your legs and carefully shave them. Once you''re finished gliding your hands over your smooth legs, ensuring you didn''t miss a spot, you spend some time trimming back your small neat bush as well.'
+					elseif pubestyle >= 10:
+						'You lather up your legs and carefully shave them. Once you''re finished gliding your hands over your smooth legs, ensuring you didn''t miss a spot, you spend some time trimming back your  bush as well.'
+					end
+					dynamic $dryOff
+				end
+			end
+		end
+	elseif shave_menu = 2 and stanok > 0:
+		if pcs_pubes > 3:
+			if pubestyle = 1:
+				act 'Shave your pussy (0:10)':
+					*clr & cla
+					minut += 10
+					pcs_pubes = 0
+					pcs_horny += 5
+					stanok -= 1
+					if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave3.jpg"></center>'
+					*nl
+					'You lather your crotch with some soapy water and carefully shave your pubic hair. After shaving you can''t help but run your fingers over your pussy, enjoying the smooth feeling and getting slightly more aroused by the touch.'
+					dynamic $dryOff
+				end
+			elseif (pubestyle >= 2 and pubestyle <= 7) and pcs_pubes > 15:
+				act 'Trim your pussy (0:10)':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave4.jpg"></center>'
+					*nl
+					if pcs_pubes >= 20:
+						'You carefully shave away the hair at the edges of your pussy, trimming it all away until there is only a neatly styled bush left at the top.'
+					else
+						'You carefully shave away the stubble at the edges of your pussy, careful to only trim and maintain the neatly styled bush you have at the top.'
+					end
+					minut += 10
+					pcs_pubes = 11
+					pcs_horny += 5
+					stanok -= 1
+					if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+					dynamic $dryOff
+				end
+			elseif pubestyle = 8 and pcs_pubes > 19:
+				act 'Trim your pubic hair (0:10)':
+					*clr & cla
+					minut += 10
+					pcs_pubes = 19
+					pcs_horny += 5
+					stanok -= 1
+					if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave4.jpg"></center>'
+					*nl
+					'You spend some time trimming back your pubic hair, not shaving it away completely but careful to make it neat and tidy.'
+					dynamic $dryOff
+				end
+			elseif pubestyle = 9 and pcs_pubes >= 25:
+				act 'Trim your bush (0:10)':
+					*clr & cla
+					minut += 10
+					pcs_pubes = 21
+					pcs_horny += 5
+					stanok -= 1
+					if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave4.jpg"></center>'
+					*nl
+					'You spend some time trimming back your light bush of pubic hair, tidying it up and keeping your bikini line nice and clean.'
+					dynamic $dryOff
+				end
+			elseif pubestyle = 10 and pcs_pubes >= 30:
+				act 'Trim back your bush (0:10)':
+					*clr & cla
+					minut += 10
+					pcs_pubes = 26
+					pcs_horny += 5
+					stanok -= 1
+					if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+					'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave4.jpg"></center>'
+					*nl
+					'You spend some time trimming back your thick bush of pubic hair, tidying it up and keeping your bikini line nice and clean.'
+					dynamic $dryOff
+				end
+			end
+		end
+	elseif shave_menu = 3 and stanok > 0:
+		if pcs_leghair > 3:
+			act 'Shave your legs (0:05)':
+				*clr & cla
+				minut += 5
+				pcs_leghair = 0
+				pcs_horny += 5
+				stanok -= 1
+				if obdysh = 1 and rand(0, 5) = 5:gt 'vann', 'brit1'
+				'<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave.jpg"></center>'
+				*nl
+				if daystart < 10 and StoryLine = 0 and ntstart = 0:
+					'You can''t shake off the fact that you''re a girl now, so you decide it''d be best to shave your legs. You begin to lather your legs, still marveling at how soft and round they are. Then you take the razor in your hand and begin to shave your legs.'
+					'You feel really awkward, never having done this before as a guy. Luckily, you had more than enough experience with shaving your face and technically this isn''t really all that different. So in the end you get a pretty decent job done.'
+				elseif daystart < 30 and StoryLine = 0 and ntstart = 0:
+					pcs_mood += 10
+					'With a newfound routine you lather up your legs and start shaving, careful not to miss a spot. After washing away the foam you softly glide your hands over your smooth legs, feeling good to know that you don''t need to hide your legs in pants. Maybe you should wear a skirt tomorrow?'
+				else
+					'You lather your legs up with some soapy water and shave your legs. After a few swift movements, your legs are smooth as silk. The feeling of your smooth legs turns you on a little.'
+				end
+				dynamic $dryOff
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'dryOff':
+	act 'Get out and dry off':
+		mirror_steam = hour & gt $loc, $loc_arg
+	end
+end
+
+if $ARGS[0] = 'pir_title':
+	cla
+	*clr
+	'<center><b>Available piercings - select one by clicking the image</b></center>'
+	*nl
+end
+if $ARGS[0] = 'pirTongue':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+!	gs 'mod_iwhore_dincollect' , 'pirManage'
+	i = 1
+	:looptongue_pir
+		if dyneval('RESULT = PirsA<<i>>_owned') = 1:*p '<a href="exec:pirsA = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/a<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 4:jump 'looptongue_pir'
+end
+if $ARGS[0] = 'pirLip':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:looplip_pir
+		if dyneval('RESULT = PirsB<<i>>_owned') = 1:*p '<a href="exec:pirsB = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/b<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 6:jump 'looplip_pir'
+end
+if $ARGS[0] = 'pirEars':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:loopears_pir
+		if dyneval('RESULT = PirsC<<i>>_owned') = 1:*p '<a href="exec:pirsC = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/c<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 24:jump 'loopears_pir'
+end
+if $ARGS[0] = 'pirNose':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:loopnose_pir
+		if dyneval('RESULT = PirsD<<i>>_owned') = 1:*p '<a href="exec:pirsD = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/d<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 7:jump 'loopnose_pir'
+end
+if $ARGS[0] = 'pirBrow':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:loopbrow_pir
+		if dyneval('RESULT = PirsE<<i>>_owned') = 1:*p '<a href="exec:pirsE = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/e<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 2:jump 'loopbrow_pir'
+end
+if $ARGS[0] = 'pirNips':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:loopnipple_pir
+		if dyneval('RESULT = PirsF<<i>>_owned') = 1:*p '<a href="exec:pirsF = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/f<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 4:jump 'loopnipple_pir'
+end
+if $ARGS[0] = 'pirNavel':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:loopnavel_pir
+		if dyneval('RESULT = PirsN<<i>>_owned') = 1:*p '<a href="exec:pirsN = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/n<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 4:jump 'loopnavel_pir'
+end
+if $ARGS[0] = 'pirPubic':
+	gs 'mod_iwhore_dincollect' , 'pir_title'
+	i = 1
+	:looppubic_pir
+		if dyneval('RESULT = PirsG<<i>>_owned') = 1:*p '<a href="exec:pirsG = <<i>> & pierWearCount += 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''"><img src="images/pc/body/piercings/g<<i>>.jpg" 	height="250" ></a>'
+		i += 1
+	if i <= 7:jump 'looppubic_pir'
+end
+if $ARGS[0] = 'pirManage':
+	cls
+	*nl
+	if pirsA > 0:
+		if pirsA < 10000:
+			'<center><a href="exec:pirsA = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove tongue piercing</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirTongue''">Insert tongue piercing</a>.</center>'
+		end
+		*nl
+	end
+	if pirsB > 0:
+		if pirsB < 10000:
+			'<center><a href="exec:pirsB = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove lip piercing</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirLip''">Insert lip piercing</a>.</center>'
+		end
+		*nl
+	end
+	if pirsC > 0:
+		if pirsC < 10000:
+			'<center><a href="exec:pirsC = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove ear piercings</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirEars''">Insert ear piercings</a>.</center>'
+		end
+		*nl
+	end
+	if pirsD > 0:
+		if pirsD < 10000:
+			'<center><a href="exec:pirsD = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove nose piercing</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirNose''">Insert nose piercing</a>.</center>'
+		end
+		*nl
+	end
+	if pirsE > 0:
+		if pirsE < 10000:
+			'<center><a href="exec:pirsE = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove eyebrow piercing</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirBrow''">Insert eyebrow piercing</a>.</center>'
+		end
+		*nl
+	end
+	if pirsF > 0:
+		if pirsF < 10000:
+			'<center><a href="exec:pirsF = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove nipple piercings</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirNips''">Insert nipple piercings</a>.</center>'
+		end
+		*nl
+	end
+	if pirsN > 0:
+		if pirsN < 10000:
+			'<center><a href="exec:pirsN = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove navel piercing</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirNavel''">Insert navel piercing</a>.</center>'
+		end
+		*nl
+	end
+	if pirsG > 0:
+		if pirsG < 10000:
+			'<center><a href="exec:pirsG = 10000 & pierWearCount -= 1 & gs ''mod_iwhore_dincollect'' , ''pirManage''">Remove pussy piercings</a>.</center>'
+		else
+			'<center><a href="exec:gs ''mod_iwhore_dincollect'' , ''pirPubic''">Insert pussy piercings</a>.</center>'
+		end
+		*nl
+	end
+
+	act'<b>Back</b>':gt $loc, $loc_arg
+end
+
+!!!!!!!!!!!!!!!CLIENT!!!!!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'client':
+	you_blow_him = 0
+	if want_stall ! 0:
+		'The <a href="exec:minut += 1 & gt ''mod_iwhore_pbath'', ''client''">client</a> looks impatiently... ."Come on bitch, it''s not that you are not a whore anymore with the make up...move your ass." He laughs and licks his lips while looking you over.'
+		act 'Serve the man': gt 'mod_iwhore_pbath', 'client'	
+	else
+		''
+	end
+	
+end
+
+!!!!!!!!!!!!!CONDOM/DISEASE!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'venerasiak':
+
+	tipvenerarand = rand(0, 10)
+	if protect = 1:
+		venrand = rand(0, 1000)
+		if venrand = 1000: gs 'mod_iwhore_dincollect' , 'veneradinitog'
+	else
+		venrand = rand(0, 100)
+		if venrand >= 80: gs 'mod_iwhore_dincollect' , 'veneradinitog'
+	end
+
+end
+
+if $ARGS[0] = 'veneradinitog':
+
+	if cheatHealth = 0:
+		if tipvenerarand = 8:
+			!!herpes
+			if rand(1, 100) > 90:
+				if GerpesOnce = 0:
+					GerpesOnce = 1
+					Venera += 1
+					Gerpes += 1
+					GenHerpes = 1
+					
+				end
+			end
+		elseif tipvenerarand = 7:
+			!!syphilis
+			if rand(1, 100) > 95: Venera += 1
+			if SifacOnce = 0:
+				SifacOnce = 1
+				Sifilis += 1
+			end
+		elseif tipvenerarand >= 5 and tipvenerarand < 7:
+			!!gonorrhea/triper
+			if rand(1, 100) > 95: Venera += 1
+			if TriperOnce = 0:
+				TriperOnce = 1
+				Triper += 1
+			end
+		elseif tipvenerarand < 5:
+			!!candidiasis/thrush
+			if rand(1, 100) > 85:
+				if KandidozOnce = 0:
+					KandidozOnce = 1
+					Kandidoz += 1
+				end
+			end
+		end
+	end	
+
+end
+
+if $ARGS[0] = 'venerasiakOral':
+
+	tipvenerarand = rand(0, 10)
+	if protect = 1:
+		venrand = rand(0, 1000)
+		if venrand = 1000: gs 'mod_iwhore_dincollect' , 'veneradinitogOral'
+	else
+		venrand = rand(0, 100)
+		if venrand >= 80: gs 'mod_iwhore_dincollect' , 'veneradinitogOral'
+	end
+end
+
+if $ARGS[0] = 'veneradinitogOral':
+
+	if cheatHealth = 0:
+		if tipvenerarand >= 5 and tipvenerarand < 7:
+			if rand(1, 100) > 95: Venera += 1
+			if TriperOnce = 0:
+				TriperOnce = 1
+				TriperOral += 1
+				if rand (0,100) < 15: TriperOralSigns = 1 
+			end
+		elseif tipvenerarand = 7:
+			if rand(0,1) = 1:
+				!!syphilis
+				if rand(1, 100) > 95: Venera += 1
+				if SifacOnce = 0:
+					SifacOnce = 1
+					Sifilis += 1
+				end
+			end
+		elseif tipvenerarand < 5:
+			!!candidiasis/thrush
+			if rand(1, 100) > 85:
+				if KandidozOnce = 0:
+					KandidozOnce = 1
+					Kandidoz += 1
+				end
+			end
+		elseif tipvenerarand = 8:
+			!!herpes
+			if rand(1, 100) > 90:
+				if GerpesOnce = 0:
+					GerpesOnce = 1
+					Venera += 1
+					Gerpes += 1
+					OrHerpes = 1
+				end
+			end
+		end
+	end
+
+end
+
+!! From dinsex: gs 'dinsex', 'pc_puts_condom'
+if $ARGS[0] = 'prezik':
+	protect = iif(prezik > 0,1,0)
+	vidageday -= 1 &! the people guess that you are a bit more older than you are in fact do you have condoms?
+	if prezik > 0:
+		if rand(1,prezik) <= badprezik: 
+			badprezik -= 1
+			noprotect = 1
+			sexcontra = 7
+			*p 'You take your '+iif(preziktype = 2,'sabotaged ','')+ 'condom and put it on <<$xyr>> <<dick>> centimeter dick.'
+		else
+			sexcontra = 3
+			*p 'You take your condom and put it on <<$xyr>> <<dick>> centimeter dick.'
+			noprotect = 0
+		end
+		prezik -= 1
+		sexcontra = iif(preziktype = 2,7,sexcontra) 
+	else
+		sexcontra = 0
+		!! the hormonal contraception is still taken in account
+	end
+end &! --- pc_puts_condom ---
+
+if $ARGS[0] = 'prezik1':
+	if prezik > 0:
+		if badprezik > 0:
+			if rand(1,prezik) <= badprezik: badprezik -= 1 & noprotect = 1 & protect = 1
+		else
+			noprotect = 0 & protect = 1
+		end
+		prezik -= 1
+	elseif prezik < 0: 
+		prezik = 0
+		noprotect = 1 & protect = 0
+	end
+end
+
+
+
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+!!!!!!!!!!!!!!!!!!SEXMANAGEMENT!!!!!!!!!!!!!!!!!!!!!!!!!
+!! gs 'mod_iwhore_dincollect','wantanal'
+!! gs 'mod_iwhore_dincollect','wantanal', 'lubri'
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+if $ARGS[0] = 'wantanal':
+	$bwa_boy = iif($ARGS[1] = '',$boydesc,$ARGS[1])
+	if analplugin = 1:
+		'<<$bwa_boy>> pulls the plug out of your narrow and tight ass, after playing a little with it.'
+		analplugout = 1
+		gs 'arousal','anal_vibe',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	else
+		''
+		gs 'arousal','foreplay',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	end
+	if $ARGS[2] = 'lubri':
+		lubri +=1
+		pcs_horny += 10
+		'<<$bwa_boy>> takes a tube of lubricant, squeezes a little on <<$xyr>> palm and rubs your anus.'
+		gs 'arousal', 'anal_finger', 1,'lube' 
+	else
+		if lubri = 0:
+			pcs_horny += 5
+			'You have no lube, <<$bwa_boy>> spits on his fingers and using saliva he massages your anus.'
+			gs 'arousal', 'anal_finger', 1 
+		elseif lubri > 0:
+			pcs_horny += 10
+			if rand(0,2) = 0: 
+				'You take a tube of lubricant and hand it to <<$bwa_boy>>, he squeezes a little on his palm and rubs your anus.'
+			elseif rand(0,1) = 0:
+				'You squeeze anal lube on your hand and begin to smear it in your ass. Then you give the guy a tube and <<$xe>> starts lucricating <<$xyr>> cock.'
+			else
+				'You squeeze anal lube on your hand and begin to smear it in your ass. Then you give it to <<$xem>> and <<$xe>> smears it on <<$xyr>> dick'
+			end
+			gs 'arousal', 'anal_finger', 1,'lube' 
+			'Your ass in now ready to be penetrated; hopefully this will be more pleasant.'
+		end
+			'<<$boydesc>> tucks a finger into your anus, then a second one .'
+		if pcs_ass < 10:'When <<$xec>> inserts three fingers into your ass you groan in pain.'
+		if pcs_ass >= 10:'<<$xec>> starts to stretch your anus with three fingers.'
+		'When <<$boydesc>> feel it''s time to start he pulls <<$xyr>> fingers out of your ass. You spread your butt and help his member with your hand to accomodate in the right place easily ..."The bitch is ready uh?" Grunting, he shoves <<$xem>> pushing <<$xyr>> hard cock up your ass, balls deep in a single thrust. '
+		if (agrdif + altdif) >= 20:'You hiss in pain, biting your lip nearly hard enough to draw blood when <<$xyr>> <<dick>> centimeter dick reach the end of your ass. <<$boydesc>> stops for a moment, but he''s not giving your ass the time to adjust to <<$xyr>> cock in it, it''s more about your tightness....'
+		if (agrdif + altdif) <  20:'You moan when <<$xyr>> <<dick>> centimeter dick enters your ass and wait for him to see if he wants to have the peace...'
+	end
+	killvar '$bwa_boy'
+end &! --- boy_wants_anal ---
+
+!! replacement of "dynamic $analsex"
+!! replacement of "dynamic $analsex2"
+!! replacement of "dynamic $analsexrude"
+!! this procedure calls 'cum_call','anus',$boy,1
+!! use gs 'dinSex','boy_wants_anal'[,'lubri'] together with gs 'dinsex','analsex'
+!! use gs 'mod_iwhore_dincollect','boy_wants_anal'[,'lubri'] together with gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+if $ARGS[0] = 'analsex':
+	frost = 0 &! the sex heats
+
+	gs 'arousal','anal',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+
+	if (agrdif + altdif) >= 30:
+		if pcs_makeup > 1:pcs_makeup = 0
+		'You cry and bite your lip when <<dick>> centimeter cock begins to fuck your ass on (! full force !). Your ass feels like it is on fire and all you want is for this torture to be over quickly.'
+	elseif (agrdif + altdif) >= 20 and (agrdif + altdif) < 30:
+		pcs_horny += 10
+		'You start to moan rhythmically in time with <<$xyr>> cock''s movements inside you. You feel like your anus is stretched with each trust but it feel pleasant; when <<$boydesc>> takes a puse to rest you continue on your own... .'
+	end
+	'...'
+end &! --- analsex ---
+
+
+
+!! gs 'mod_iwhore_dincollect', 'after_anal','boy',$boydesc
+if $ARGS[0] = 'afteranal':
+	if analplugout = 1:
+		if $ARGS[1] = 'boy':
+			analplugin = 1
+			pcs_horny += 5
+			gs 'arousal','anal_vibe',1,'prostitution', 'unknown'
+			'<<$ARGS[2]>> takes your butt plug and he puts it back into your anus. He grins: "Continue your training"' 
+		end
+		if $ARGS[1] = 'girl':
+			analplugin = 1
+			pcs_horny += 5
+			gs 'arousal','anal_vibe',1,'prostitution', 'unknown'
+			'<<$ARGS[2]>> takes your butt plug and she puts it back into your anus. She grins: "Continue your training"' 
+		end
+		if $ARGS[1] = 'pc':
+			analplugin = 1
+			pcs_horny += 10
+			gs 'arousal','anal_vibe',1,'prostitution', 'unknown'
+			'You take your butt plug and put it back into your anus. You grin: "I have to keep my butt trained"' 
+		end
+		if $ARGS[1] = 'no_plug':
+			analplugin = 0
+			'You take your butt plug and put it into your purse. Your anus has to rest for a while now.' 
+		end
+		killvar 'analplugout'
+	end
+end &! --- after_anal ---
+
+!! replacement of  "dynamic $sexstart2"
+!! replacement of  "dynamic $sexstart3"
+!! replacement of  "dynamic $sexstart4"
+!! this procedure calls 'arousal','vaginal', so the rest of the parameters for arousal should be 
+!! passed as parameters: call like gs 'dinsex','vaginal_sex',10,'rough','sub'
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+
+
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+
+if $ARGS[0] = 'wantvaginal':
+	$bwa_boy = iif($ARGS[1] = '',$boydesc,$ARGS[1])
+	'<<$boydesc>>'
+	if vibratorIN = 1:
+		',play a little with your vibrator before take it out from your soaking pussy.'
+		vibratorOUT = 1
+		pcs_horny += 15
+		gs 'arousal','vaginal_vibe',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	else
+		'start to wet your pussy knowing that afterall a wet kitten is the best option for both.'
+		pcs_horny += 5
+		gs 'arousal','foreplay',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	end
+	killvar '$bwa_boy'
+	
+end &! --- boy_wants_anal ---
+
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+
+if $ARGS[0] = 'vaginalsex':
+	frost = 0 &! the sex heats
+	if pcs_vag > 0:
+		gs 'arousal','vaginal',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+		$temp_mens = iif(cycle <= 0,' and menstruation blood leaks from your vagina','')
+		if (vgrdif + vltdif) >= 30: 'You groan in pain when <<$boydesc>> penetrates you, tears flowed from your eyes and it feels like someone drove a red hot poker in your vagina. You cry and moan while <<$xyr>> strong <<dick>> centimeter dick fucks your pussy<<$temp_mens>>.'
+		if (vgrdif + vltdif) >= 20 and (vgrdif + vltdif) < 30: 'You bite your lip in pain when <<$boydesc>> enters, it is very painful. You are frowning and moaning in pain while <<$xyr>> strong <<dick>> centimeter dick fucks your pussy<<$temp_mens>>.'
+		if cycle <= 0: $temp_mens = ' even though' + $temp_mens
+		if (vgrdif + vltdif) >= 12 and (vgrdif + vltdif) < 20: 'You winced at the sudden pain when <<$boydesc>> enters, it hurt but gradually it became quite tolerable. You are trying to get aroused while <<$xyr>> <<dick>> centimeter dick fucks your pussy<<$temp_mens>>, but you did not succeed.'
+		if (vgrdif + vltdif) >= 7 and (vgrdif + vltdif) < 12: 'You are startled by the feeling that your pussy is stretching when <<$boydesc>> enters you. It feels good when <<$xyr>> <<dick>> centimeter dick fucks your pussy<<$temp_mens>>.'
+		if (vgrdif + vltdif) >=  2 and (vgrdif + vltdif) < 7: 'You are startled by the feeling that your pussy is stretching as <<$boydesc>> enters you. It feels good when <<$xyr>> strong <<dick>> centimeter dick fucks your pussy. Gradually a pleasant warmth and some pulsations started building up in your stomach. Then the feeling decreased a little and remains like that until the end<<$temp_mens>>.'
+		if (vgrdif + vltdif) >= -3 and (vgrdif + vltdif) < 2: 'You flinched from a pleasant feeling when your pussy is stretched by <<$xyr>> dick. It feels good when <<$xyr>> <<dick>> centimeter dick fucks your pussy<<$temp_mens>>. Gradually a pleasant warmth and some pulsations started building up in your stomach. Then the feeling became unbearable and your entire body is covered with hot waves of orgasm You scream with pleasure.'
+		if (vgrdif + vltdif) <  -3: 'You feel  <<$xyr>> penis entering your pussy. This gives you a nice tingling feeling between your legs , but <<$xyr>> <<dick>> cm dick  is significantly less than what your pussy needs .This is not enough for you. Gradually a pleasant warmth and some pulsations started building up in your stomach. Then the feeling decreased a little and remains like that until the end<<$temp_mens>>.'
+	else
+		$temp_mens = iif(cycle <= 0,' and menstruation blood leaks from your vagina','')
+		pcs_horny = 0
+		pcs_mood -= 15
+		pcs_willpwr -= 15
+		'You were biting your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boydesc>> penetrates you, breaking your hymen. You moan while crying and <<$xyr>> <<dick>> centimeter dick fucks your bloody pussy.'
+		gs 'arousal','vaginal',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	end
+	killvar '$temp_mens'
+end
+
+
+!! gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+!! gs 'mod_iwhore_dincollect', 'aftervaginal','girl'
+!! gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+!! gs 'mod_iwhore_dincollect', 'aftervaginal','no_plug'
+if $ARGS[0] = 'aftervaginal':
+	if vibratorOUT = 1:
+		if $ARGS[1] = 'boy':
+			vibratorIN = 1
+			pcs_horny += 5
+			gs 'arousal','vaginal_vibe',1,'prostitution', 'unknown'
+			'<<$ARGS[2]>> takes your vibrator and he puts it back into your pussy. "Hehehe...let''s put it back."' 
+		end
+		if $ARGS[1] = 'girl':
+			vibratorIN = 1
+			pcs_horny += 5
+			gs 'arousal','vaginal_vibe',1,'prostitution', 'unknown'
+			'<<$ARGS[2]>> takes your vibrator and he puts it back into your pussy. "Hehehe...let''s put it back."' 
+		end
+		if $ARGS[1] = 'pc':
+			vibratorIN = 1
+			pcs_horny += 10
+			gs 'arousal','vaginal_vibe',1,'prostitution', 'unknown'
+			'You take your vibrator and put it back into your pussy. You grin: "I have to discharge the battery."' 
+		end
+		if $ARGS[1] = 'no_plug':
+			vibratorIN = 0
+			'Your vibrator has to recharge.' 
+		end
+		killvar 'vibratorOUT'
+	end
+end &! --- after_anal ---
+
+
+
+!! passed as parameters: call like gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+if $ARGS[0] = 'oralsex':
+	frost = 0 &! the sex heats
+	tperbjran = rand(0, 3)
+	if tperbjran = 0:$tperbj = 'You wraps your <<$liptalk>> around <<$xyr>> <<dick>>cm member.'
+	if tperbjran = 1:$tperbj = 'Your <<$liptalk>> engulf the purple head of <<$xyr>> <<dick>>cm member.'
+	if tperbjran = 2:$tperbj = 'You plant your <<$liptalk>> on the bulbous tip of <<$xyr>> <<dick>>cm cock and greedily slide your mouth down along <<$xyr>> throbbing maleness.'
+	if tperbjran = 3:$tperbj = 'The <<dick>> centimeters dick rests between your <<$liptalk>> then you slightly part them and allow the delicious invador to slide into your mouth.'
+
+	tperbjran = rand(0, 2)
+	if tperbjran = 0:$tperbj2 = 'You give <<$xyr>> face a sultry look while <<$xyr>> cock rests in your mouth then you greedily lean forwards, taking <<$xyr>> tasty penis deeper in your mouth and lustfully start to bob your head back and forth along <<$xyr>> <<dick>>cm tool.'
+	if tperbjran = 1:$tperbj2 = 'You playfully roll your tongue around the engorged boner and start giving one hell of a blowjob, swallowing the whole length down your throat and making lewd slurping noises everytime you hilt.'
+	if tperbjran = 2:$tperbj2 = 'That hard cock between your <<$liptalk>> is definitely yummy! You just can''t hold back and hungrily take the whole length in your mouth until its tip is resting at the entrance of your throat, you grin and relax your muscles to let it in, deepthroating this <<dick>>cm cock like there''s no tomorrow.'
+	'<<$tperbj>> <<$tperbj2>>'
+	gs 'arousal','foreplay',ARGS[1],$ARGS[2],$ARGS[3],$ARGS[4],$ARGS[5],$ARGS[6],$ARGS[7],$ARGS[8]
+	killvar 'tperbjran'
+	killvar '$tperbj2'
+	killvar '$tperbj'
+end
+
+
+
+!! use gs 'dinsex','enema'
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!PEE!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!
+!gs 'din_van', 'pblc_pee'-----gs 'din_van', 'pblc_pee_end'
+
+if $ARGS[0] = 'pblc_pee':
+	act '...':
+		*clr
+		cla
+		'<center><img <<$set_imgh>> src="images/pc/pee/pee-public/' + rand(1,11) + '.jpg"></center>'
+		rand_pee = rand(0,7)
+		if rand_pee = 0:
+			'Settling into the toilet seat you pull out your phone and begin checking for messages and doing other things to occupy the time until the stream slows to a trickle and finally stops.'
+		elseif rand_pee = 1:
+			'While relaxing your bladder and beginning to pee you decide to reflect on your recent interactions with the people in your life. "What do they think of me? Do they talk behind my back?" You continue contemplating until your body signals that the flow has ended.'
+		elseif rand_pee = 2:
+			'You nearly piss yourself as you rush to seat yourself onto the toilet. Unable to hold back the flood anymore, your body releases a seemingly endless stream as you moan quietly in relief, thankful that you made it in time.'
+		elseif rand_pee = 3:
+			'Immediately up entering the restroom, your nostrils are assaulted by the most heinous stench. Knowing that you have no other option, you try to suppress your gags as you sit in a stall and do your business.'
+		elseif rand_pee = 4:
+			*clr
+			'<center><img <<$set_imgh>> src="images/pc/pee/pee-public/Hovercraft' + rand(1,2) + '.jpg"></center>'
+			'You enter the stall and groan in disgust at the sight of the gross facilities. Realizing that you have no choice, you decided to "hovercraft" it. Instead of sitting down on the filthy seat, you hover your ass above the bowl before letting go of the pee you''d been holding, not caring if all of the stream gets into the toilet or elsewhere.'
+		else
+			!!Graffiti trigger text
+			rand_pee = rand(0,21)
+			'As you sit down to relieve your bladder you get distracted reading some of the graffiti on the wall of the stall; there aren''t many but your focus falls on:'
+!			$rand_girl = func('gschool_randperson', 1, '', 1, 1, 1, 1, 1, 0)
+			if rand_pee = 0:
+				'Albina and her Starlettes are a bunch of dirty whores.'
+			elseif rand_pee = 1:
+				'Hi babe, why don''t you call me and try some new experience? Sing it: 00-1027-444-XXX....'
+			elseif rand_pee = 2:
+				'Do not throw condoms in the toilet, help yourself and keep that place clean!'
+			elseif rand_pee = 3:
+				'If you''re on the rag, check the seat when you get up and WIPE IT OFF!!! No one wants a nasty seat!'
+			elseif rand_pee = 4:
+				'If you smell fish, it''s probably your dirty twat! Hahaha!'
+			elseif rand_pee = 5:
+				'Shave your punani, bitches! No one likes digging through a forest, LOL.'
+			elseif rand_pee = 6:
+				'Shaved pussies stink and are prone to infection! Don''t believe the lies!'
+			elseif rand_pee = 7:
+				'Fight the Patriarchy!'
+			elseif rand_pee = 8:
+				'Tampons vs. Pads, cast your vote! Below this text are hash marks indicating various girl''s preference. One person also wrote “Freebleeder for life!” Ewww.'
+			elseif rand_pee = 9:
+				'Use the water when you finished!'
+			elseif rand_pee = 10:
+				'You''re beautiful! Believe that!'
+			elseif rand_pee = 11:
+				'Putin is a chauvinist pig!'
+			elseif rand_pee = 12:
+				'Suck dick! It''s good for you!'
+			elseif rand_pee = 13:
+				'"I''ll pull out, I swear! is the most dangerous lie you can believe." This text is followed by a crude drawing of a pregnant woman.'
+			elseif rand_pee = 14:
+				'Cut back on the perfume, ladies. It smells like a unicorn farted in here.'
+			elseif rand_pee = 15:
+				'<<$pcs_firstname>> <<$pcs_lastname>> is a slut and everyone knows it! "WHAT? Stupid cunt if i find you!..."'
+			elseif rand_pee = 16:
+				'Men are like pantyhose; They either run, cling, or don''t fit right in the crotch!'
+			elseif rand_pee = 17:
+				'Gopnik guys are SO HOT!!!'
+			elseif rand_pee = 18:
+				'I just want to know who was the one who put some panties on the church offer chest... . You are my myth!!!'
+			elseif rand_pee = 19:
+				'Butt sex is the best sex!'
+			elseif rand_pee = 20:
+				'I just wrote on the wall. Take THAT, society!'
+			else
+				'Never quit loving your clit.'
+			end
+		end
+
+!!If PC is on her period and using tampon, then the following options should appear as well as the standard "Finish and wipe" act:
+!!This may require an addition check to see if the PC has a purse since I think they need that to carry tampons with them.
+		if isprok = 1 and tampon > 0:
+			act 'Change tampon':
+				*clr
+				cla
+				'<center><img <<$set_imgh>> src="images/pc/pee/period/tampon/' + rand(1,12) + '.jpg"></center>'
+				'Reaching down and taking the string between your fingers, you slowly pull the used tampon from your vagina. You wrap it in toilet paper to be thrown in the trash bin. Opening your purse, you retrieve a fresh one before unpackaging it and carefully inserting it into you.'
+
+				gs 'din_van', 'pblc_pee_end'
+			end
+		end
+
+!!If PC is on her period and using pad, then the following options should appear as well as the standard "Finish and wipe" act:
+!!This may require an addition check to see if the PC has a purse since I think they need that to carry pads with them.
+		if isprokp = 1 and sanpad > 0:
+			act 'Change pad':
+				*clr
+				cla
+				'<center><img <<$set_imgh>> src="images/pc/pee/period/pad/' + rand(1,6) + '.jpg"></center>'
+				'Checking your pad, you decide it''s time for a new one. You carefully peel it off of your panties before folding it into thirds and setting it aside to be thrown away. Digging in your bag, you pull out a fresh pad, unpackage it, peel off the adhesive strip, and place it into your underwear. Finally, you wrap the wings around the sides of the gusset to make sure it is nice and secure.'
+
+				gs 'din_van', 'pblc_pee_end'
+			end
+		end
+
+		gs 'din_van', 'pblc_pee_end'
+	end
+end
+
+if $ARGS[0] = 'gh_first':
+
+	act '...Shoo!...Pervert!...':
+		*clr
+		cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0.jpg"></center>'
+		gs 'stat'
+		'"...You better watch out!!!...." The man disappear frightened by your yelling leaving you on your business...'
+		act 'Pants up.':
+			*clr
+			cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+			gs 'stat'
+			'"...That''s it...Molesting a lady when she''s on the toilet... UMMPPHH!!!...."'
+			act 'Leave': gt $locM, $locM_arg
+		end
+	end
+	act 'Grab his penis and make a manly voice...':
+		*clr
+		cla
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first1.jpg"></center>'
+		if rand (0,2) >= 1:
+			'"...Nice..."...'
+			act '...':
+				*clr
+				cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0.jpg"></center>'
+				'"AAAAAAAHHHHHHHH!!!!"....you hear the man loud and escaping from your trick.... . You can hear the dor slamming from the other side; you are free to return to your business...."...hehehe...."'
+				act 'Pants up.':
+					*clr
+					cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+					'"...That''s it...Molesting a lady when she''s on the toilet... UMMPPHH!!!...."'
+					act 'Leave': gt $locM, $locM_arg
+				end
+			end
+		else
+			'"...Nice..." ...'
+			act '...':
+				*clr
+				cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first1.jpg"></center>'
+				'Despite your attempt the cock doesn''t disappear, and the man start to feel comfortable..."...Oooohhh keep going...good boy"...'
+				act 'Reveal yourself...: "...Is everything fine?..."':
+					*clr
+					cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0.jpg"></center>'
+					'Earing your real voice the man retract his penis..."Uhh?...What the...who are you? What are you doing in tha man''s bath?..."..."...Hey you are the one in the wrong bath!..."..."What? Do you mean...? ...I-i''m sorry..."..."...Mistakes happens..."...'
+					wait 8000
+					nl
+					'"...M-miss? How many time do you need in the bath?...""...What do you mean?...""...If you are in the right bath i cannot enter..."..."...None of your business..."..."...S-sorry..."...."...Leave me in peace and i''ll be quick..."'
+					act 'Pants up.':
+						*clr
+						cla
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+						'"...what a dumb..."'
+						act 'Leave': gt $locM, $locM_arg
+					end
+				end
+				act '...Stay silent...':
+					*clr
+					cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/ynyn.mp4"></video></center>'
+					'...'
+					act '...taste it...':
+						*clr
+						cla
+						guy += 1
+						gloryhole += 1
+						pcs_throat += 1
+						money += 100
+						if new_gh_whore < 1: new_gh_whore = 1
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/taste.mp4"></video></center>'
+						'"...Good boy...jerk yourself, i want you to feel pleasure too..."'
+						act '...''...''...':
+							*clr
+							cla
+							gs 'arousal', 'bj', 5, 'unknown'
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjpassion3.mp4"></video></center>'
+							'"...Ooohhh such a passion, only man know how to please a man...if only there''s no wall between us....uhhhhh....keep stroking your self, i want you to spurt your jizz on the dirty floor....mmmmm...."...''...i see those last part quite difficult...''..."...Uhhh I can''t hold it anymore...."'
+							act 'swallow':
+								*clr
+								cla
+								gs 'arousal', 'end'
+								swallow += 1
+								spafinloc = 12
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa27.mp4"></video></center>'
+								'....'
+								act 'Pants up.':
+									*clr
+									cla
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+									'You were to dress up when you ear the man speaking from the other side "...We can meet sometime, ''you know?...Are you those famous "Artem?"..." ..."..."... "... You are the silent tipe, don''t you? Ok my little tease, think about it... ." Finally the man leaves...  "Pheww...I guess he doesn''t suspect anything..."'
+									act 'Leave': gt $locM, $locM_arg
+								end
+							end
+							act 'step back':
+								*clr
+								cla
+								gs 'arousal', 'end'
+								spafinloc = 11
+								facial += 1
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial3.mp4"></video></center>'
+								'...'
+								act 'Pants up.':
+									*clr
+									cla
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+									'You were to dress up when you ear the man speaking from the other side "...We can meet sometime, ''you know?...Are you those famous "Artem?"..." ..."..."... "... You are the silent tipe, don''t you? Ok my little tease, think about it... ." Finally the man leaves...  "Pheww...I guess he doesn''t suspect anything..."'
+									act 'Leave': gt $locM, $locM_arg
+								end
+							end
+						end
+					end
+					act 'leave':
+						*clr
+						cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+						'"... UMMPPHH!!!...."'
+						act 'Leave': gt $locM, $locM_arg
+					end
+				end
+			end			
+		end
+	end
+	act '...''...what to do?...''...':
+		*clr
+		cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/ynyn.mp4"></video></center>'
+		'...You wonder...'
+		act '...taste it...':
+			*clr
+			cla
+			guy += 1
+			gloryhole += 1
+			pcs_throat += 1
+			money += 100
+			if new_gh_whore < 1: new_gh_whore = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/taste.mp4"></video></center>'
+			'"...Good girl, keep going...work for the bill..."'
+			act '...':
+				*clr
+				cla
+				gs 'arousal', 'bj', 5, 'unknown'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjpassion3.mp4"></video></center>'
+				'"...That''s it, you are a pro, don''t you?..."'
+				act 'swallow':
+					*clr
+					cla
+					gs 'arousal', 'end'
+					swallow += 1
+					spafinloc = 12
+					gs 'cum_manage'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa27.mp4"></video></center>'
+					'"...Owww...i relly need it... . Drink it all..."'
+					act 'Pants up.':
+						*clr
+						cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+						'"...I guess he''s satisfied, and money are always welcome...does he really think i am a pro?..."'
+						act 'Leave': gt $locM, $locM_arg
+					end
+				end
+				act 'step back':
+					*clr
+					cla
+					gs 'arousal', 'end'
+					spafinloc = 11
+					facial += 1
+					gs 'cum_manage'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial3.mp4"></video></center>'
+					'"...Good girl..."'
+					act 'Pants up.':
+						*clr
+						cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+						'..."...I''d really like to see this art paint, but i think this is outside the rules...isn''t it? Well...to the next... . " With his balls empty the man finally leaves... "...I guess he''s satisfied, and money are always welcome..."'
+						act 'Leave': gt $locM, $locM_arg
+					end
+				end
+			end
+		end
+		act 'leave':
+			*clr
+			cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/end'+rand(0,1)+'.mp4"></video></center>'
+			'"...No way!!!...."'
+			act 'Leave': gt $locM, $locM_arg
+		end
+	end
+!	if new_gh_whore >= 2:
+!		act 'Blow Him': gt 'mod_iwhore_pbath', 'blowjob'
+!		act 'Jerk Him': gt 'mod_iwhore_pbath', 'jerkoff'
+!	end
+end
+
+!!!!!!!!!!!!!!!!!
+!!!MASTURBATION!!
+!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'contmast':
+	
+	*clr & cla
+	pcs_mood += 5
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/mast/mast'+rand(0,5)+'.mp4"></video></center>'
+	if pcs_horny <= 60:
+		'You are starting to feel warm and you insert your finger in your pussy.'
+		gs 'arousal', 'masturbate', 5
+		gs 'stat'
+	else
+		'You are starting to feel warm and you insert your finger in your pussy. You keep fingering your pussy and before long you are breathing heavily and start to moan.'
+		gs 'arousal', 'masturbate', 5
+		gs 'stat'
+	end
+	if pcs_horny >= 90:
+		act 'Climax':
+			cls
+			*clr & cla
+			pcs_mood += 15
+			pcs_willpwr += 15
+			if pcs_inhib < 40:inhib_exp += rand(1,3)
+			gs 'stat'
+			'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/orgasm.mp4"></video></center>'
+			$orgasm_or = 'custom'
+			$orgasm_txt = 'As your pussy gets wet you pulls you panties down and slip your fingers inside of yourself. You start finger fucking yourself, with in a few minutes a powerful orgasm rocks your body. Leaving you gasping and trembling as you recover.'
+			gs 'arousal', 'masturbate', 2
+			gs 'arousal', 'end'
+			gs 'stat'
+			act 'Leave Stall': gt $locM, $locM_arg
+		end
+	else
+		act 'Continue': gt 'mod_iwhore_dincollect', 'contmast'
+	end
+	act 'Stop':
+		*clr & cla
+		gs 'arousal', 'end'
+		gs 'stat'
+		'You decide that you shouldn''t continue and stop yourself from finishing.'
+		act 'Leave Stall':gt $locM, $locM_arg
+	end
+end
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!HOOKING!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'hooking':
+	if PCloStyle = 4:
+		hooked_walk = rand(0,50)
+	else
+		hooked_walk = rand(0,70)
+	end
+end
+!!!!!!!!!!!!!PROTECTION!!!!!!!!!!!!!
+if $ARGS[0] = 'whore_check_pro':
+	if Krestovoz_pimp_day >= daystart:
+		Krestovoz_pimp_protection = 1
+	else
+		killvar 'Krestovoz_pimp_standard'
+		Krestovoz_pimp_protection = 0
+	end
+end
+!!!!!!!!!!!!!PROTECTION!!!!!!!!!!!!!
+if $ARGS[0] = 'whore_check_anal':
+	if Krestovoz_pimp_protection = 1 and Krestovoz_pimp_standard = 1:
+		money += 260
+	else
+		money += 350
+	end
+end
+if $ARGS[0] = 'whore_check_vag':
+	if Krestovoz_pimp_protection = 1 and Krestovoz_pimp_standard = 1:
+		money += 225
+	else
+		money += 300
+	end
+end
+if $ARGS[0] = 'whore_check_oral':
+	if Krestovoz_pimp_protection = 1 and Krestovoz_pimp_standard = 1:
+		money += 190
+	else
+		money += 250
+	end
+end
+if $ARGS[0] = 'whore_check_fastender':
+	if Krestovoz_pimp_protection = 1 and Krestovoz_pimp_standard = 1:
+		money += 160
+	else
+		money += 220
+	end
+end
+
+if $ARGS[0] = 'whore_check_ghole':
+	if Krestovoz_pimp_protection = 1 and Krestovoz_pimp_standard = 1:
+		money += 80
+	else
+		money += 100
+	end
+end
+!			gs 'mod_iwhore_dincollect', 'whore_check_oral'
+!			gs 'mod_iwhore_dincollect', 'whore_check_vag'
+!			gs 'mod_iwhore_dincollect', 'whore_check_anal'
+!			gs 'mod_iwhore_dincollect', 'whore_check_ghole'
+
+if $ARGS[0] = 'renewal':
+
+	if GuardianLoc[hour] = 0:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/renew0.jpg"></center>'
+		if inna_varvara_pimp = 15:
+			'Inna: "This is your first week: totally free from charge... ."'
+		else
+			if money >= 3000:
+				'Inna: "Ok honey what do you prefer a standard renewal or a normal one?"'
+			else
+				'Inna: "Honey you can only make normal choice without money"'
+			end
+		end
+	elseif GuardianLoc[hour] = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/renew0.jpg"></center>'
+		if inna_varvara_pimp = 15:
+			'Mechislav: "I''m aware that''s your first week; don''t worry i know this one is free for you."'
+		else
+			if money >= 3000:
+				'Mechislav: "What do you prefer <<$pcs_nickname>>, a standard renewal or a normal one?"'
+			else
+				'Mechislav: "Normal choice without money..."'
+			end
+		end
+		
+	elseif GuardianLoc[hour] = 2:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav1.jpg"></center>'
+		if inna_varvara_pimp = 15:
+			'Gavriil: "The first week is free <<$pcs_nickname>>; our services are at your disposal."'
+		else
+			if money >= 3000:
+				'Gavriil: "Sure <<$pcs_nickname>>, a standard renewal or a normal one?"'
+			else
+				'Gavriil: "If you forgot your money, you can came back later. Just don''t work without protection... ."'
+			end
+		end
+	elseif GuardianLoc[hour] = 3:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/renew0.jpg"></center>'
+		if inna_varvara_pimp = 15:
+			'Yana: "...<<$pcs_nickname>>..."<br>"...Yana..."<br>Yana: "...Are you excited for your first week?"<br>"...None of your business..."<br>Yana: "...Ok ok...no need to be upset...if you are ready to start your free tryout...just let me know."'
+		else
+			'Yana: "Hi <<$pcs_nickname>>...time to renew isn''t it? You know the rules honey..."'
+		end	
+	elseif GuardianLoc[hour] = 4:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/renew0.jpg"></center>'
+		
+		if inna_varvara_pimp = 15:
+			'Doc: "Uhmmm...Did Inna tricked you? Because you are late to try the first week...ok ok...none of my business. I''ll check Yana''s purse later... . The first week is some kind of...initiation you know? Free of charge... all services for free...a good welcoming isn''t it?"'
+		else
+			if money >= 3000:
+				'Doc: "Take your time to chose <<$pcs_nickname>>... . The main thing is that you are protected."'
+			else
+				'Doc: "You can only make normal choice without money...do not worry, he main thing is that you are protected."'
+			end
+		end
+
+	else
+		''
+	end
+	
+	if inna_varvara_pimp >= 15:
+		if inna_varvara_pimp = 15:
+			new_whore = 51
+			act 'Free week':
+				Krestovoz_pimp_day = daystart + 7
+				gs 'mod_iwhore_dincollect','renewed'
+			end
+		else
+			if money >= 3000:
+				act 'Prepaid week(Pay 3000)':
+					money -= 3000
+					Krestovoz_pimp_day = daystart + 7
+					gs 'mod_iwhore_dincollect','renewed'
+				end
+			end
+			if money >= 12000:
+				act 'Prepaid month(Pay 12000)':
+					money -= 12000
+					Krestovoz_pimp_day = daystart + 30
+					gs 'mod_iwhore_dincollect','renewed'
+				end
+			end
+			act 'Normal week (standard)':
+				Krestovoz_pimp_standard = 1
+				Krestovoz_pimp_day = daystart + 7
+				gs 'mod_iwhore_dincollect','renewed'
+			end
+			act 'Normal month (standard)':
+				Krestovoz_pimp_standard = 1
+				Krestovoz_pimp_day = daystart + 30
+				gs 'mod_iwhore_dincollect','renewed'
+			end
+		end
+		
+	else
+		''
+	end
+
+	act '"..."':gt 'mod_iwhore_innapt','guardian_room'
+
+end
+if $ARGS[0] = 'renewed':
+
+	if GuardianLoc[hour] = 0:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/renew0.jpg"></center>'
+		'Inna: "Signed honey; now go and make some money for your beloved Inna... . And remember to spread open wide your butt when doing anal..."'
+	elseif GuardianLoc[hour] = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/renew1.jpg"></center>'
+		'Mechislav: "All signed <<$pcs_nickname>>...can i help you with something else?"'
+	elseif GuardianLoc[hour] = 2:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav1.jpg"></center>'
+		'"Gavriil: "Ok <<$pcs_nickname>>...everything is in the right place; for any problem you know where i''m."'	
+	elseif GuardianLoc[hour] = 3:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/renew0.jpg"></center>'
+		'Doc: "Perfect <<$pcs_nickname>>...this could seems a little of complicated but we have to had things well recorded."'
+	elseif GuardianLoc[hour] = 4:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/renew1.jpg"></center>'
+		if Krestovoz_pimp_day = daystart + 30:
+			'Yana: "Good baby!...Work hard!"'
+		else
+			'Yana: "Bitch for a week ...uh? Signed honey..."'
+		end
+	else
+		''
+	end
+
+	act '"..."':gt 'mod_iwhore_innapt','guardian_room'
+
+end
+
+
+if $ARGS[0] = 'whore_check_pay':
+
+! 160---->120
+! 180---->135
+! 200---->150
+! 240---->180
+! 250---->187,5
+! 260---->195
+! 300---->225
+! 350---->262,5
+
+! 250---->190
+! 300---->225
+! 350---->260
+end
+
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!HOOKING RAND!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!	
+!	if PCloStyle = 4:
+!	d'approached'	hooked_walk = rand(0,50)--->[d 0,5]	(51)	ratio = 6/51 ---> 0,117
+!	d'work'			hooked_walk = 	  (5,50)--->[d 0,9]	(45)	ratio =	10/45---> 0,222
+!	n'approached'	hooked_walk = rand(0,50)--->[n 0,7] (51)  	ratio = 8/51 ---> 0,156 
+!	n'work'			hooked_walk = 	  (7,50)--->[n 0,12](43) 	ratio = 13/43 ---> 0,302	
+!	else
+!	d'approached'	hooked_walk = rand(0,70)--->[d 0,5]	(71)	ratio = 6/71 ---> 0,084
+!	d'work'			hooked_walk =     (5,70)--->[d 0,9]	(65)	ratio = 10/65---> 0,153
+!	n'approached'	hooked_walk = rand(0,70)--->[n 0,7]	(71) 	ratio = 8/71 ---> 0,112
+!	n'work'			hooked_walk =     (4,70)--->[n 0,12](58)  	ratio = 13/58---> 0,224	
+!	end
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+--- mod_iwhore_dincollect ---------------------------------

+ 634 - 0
locations/mod_iwhore_fountain.qsrc

@@ -0,0 +1,634 @@
+# mod_iwhore_fountain
+
+if $ARGS[0] = 'start':
+	$locM_arg = $ARGS[0]
+	$locM = 'mod_iwhore_fountain'
+	$locM_arg = 'start'
+	$loc_arg = $ARGS[0]
+	$loc = 'mod_iwhore_fountain'
+	$loc_arg = 'start'
+!	$location_type = 'bathroom'	
+	cls	
+	killvar 'meth_fastest'
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	'<center><h4>Park fountain</h4></center>'
+	if month = 12 or month = 1:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/wfountain_day.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/wfountain_night.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/fountain_day.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/fountain_night.jpg"></center>'
+		end
+	end
+
+	gs 'stat'
+	'It''s peaceful and you decide to rest for a little; there''s a little fountain and you take advantage of a stone to sit'
+	if hour = 23 and $clothingworntype = 'exercise' and $shoeworntype = 'trainers' and daybeplacer_pav_park ! daystart:
+		act '"No one on sight, i could go for a run." (1:00)': gt 'mod_iwhore_fountain', 'run_hooker_run'
+	end
+
+	
+	if daybeplacer_pav_park = daystart:
+		if pcs_inhib >= 35 or exhibitionist_lvl > 0:
+			act '..."this should help"...':
+				*clr & cla
+				gs 'arousal', 'exhibitionism', 1
+				gs 'arousal', 10, 'flashlite'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/cooloff1.jpg"></center>'
+				'It''s so peaceful that you could strip naked...'
+				
+				if pcs_mood = 100 and puppies_mood = 1 and hour < 2:
+					act 'That''s what i call a run!':
+						*clr & cla
+						puppies_mood = 0
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/mood100.mp4"></video></center>'
+						'Happy and with your puppy out, you decide that''s time to go away.'
+						act 'Go away': gt 'mod_iwhore_fountain', 'start'
+					end
+				else
+					''
+				end
+				act 'I think it''s late':
+					*clr & cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/cooloff2.jpg"></center>'
+					'Happy and with your puppy out, you decide that''s time to go away.'
+					act 'Go away': gt 'mod_iwhore_fountain', 'start'
+				end
+			end
+		end
+	else
+		if pcs_inhib >= 35 or exhibitionist_lvl > 0:
+			act 'Flash your titties':
+				*clr & cla
+				gs 'arousal', 'exhibitionism', 1
+				gs 'arousal', 10, 'flashlite'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/titpark5.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/titpark3.mp4"></video></center>'
+				end
+				'"I love the fresh air..."'
+				act 'I think it''s late':
+					*clr & cla
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/fountain/leave0.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/titpark2.mp4"></video></center>'
+					end
+					'Happy and with your puppy out, you decide that''s time to go away; once you have the chance you do not forget to stop and flash your tits a little more....'
+					act 'Go away': gt 'mod_iwhore_fountain', 'start'
+				end
+			end		
+		end
+	end
+	
+	act 'Relax a little (00:15)':
+		*clr & cla
+		minut += 15
+		pcs_stam += 5
+		pcs_willpwr += 5
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/cooloff0.jpg"></center>'
+		'"Ummmh...selfie?"'
+		act 'Go away': gt 'mod_iwhore_fountain', 'start'
+	end
+	if month = 12 or month = 1 and pcs_hydra =< 190:
+		act 'Drink water':
+			*clr & cla
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="images/pc/selfies/park/clothed/26.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="images/pc/selfies/park/clothed/14.jpg"></center>'
+			end
+			'"I should look for beverage somewhere else....selfie!"'
+			act 'Go away': gt 'mod_iwhore_fountain', 'start'
+		end
+	else
+		act 'Drink water': 
+			*clr & cla
+			gs 'stat'
+			if $clothingworntype = 'exercise':
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/sday_drink'+rand(0,1)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/snight_drink'+rand(0,1)+'.jpg"></center>'
+				end
+			else	
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/nday_drink'+rand(0,1)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/fountain/nnight_drink'+rand(0,1)+'.jpg"></center>'
+				end
+			end
+			'"That''s it..."'
+			if pcs_hydra =< 99:
+				minut += 2
+				pcs_hydra += 100
+			else
+				minut += 1
+				pcs_hydra = 200
+			end
+			act 'Go away': gt 'mod_iwhore_fountain', 'start'
+		end
+	end
+	
+	if fame['pav_slut'] > 200 and new_whore >= 45:
+!		act 'Stroll around':gt 'mod_iwhore_park', 'jog_hook'
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act 'Stroll around':
+				if meth_man < 1:
+					gt 'mod_iwhore_methman', 'running_meth'
+				else
+					gt 'mod_iwhore_fountain', 'jog_hook'
+				end
+			end
+		else
+			if meth_man >= 1:
+				act 'Catch some attention': 
+					if rand (0,30) =< 2:
+						gt 'mod_iwhore_park', 'hooked'
+						!adjust dressing when avaible
+					elseif rand (0,30) > 28 and meth_man ! 1:
+						gt 'mod_iwhore_methman', 'running_meth'
+					else
+						*clr & cla
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zstrollpark0.mp4"></video></center>'
+						else
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zparkwork0.mp4"></video></center>'
+						end						
+						'You walk around looking for clients; there are a couple of useful spots far away from unwanted eyes.'
+						act 'Return':gt $loc, $loc_arg
+					end
+				end
+			else
+				''
+				act 'Catch some attention': gt 'mod_iwhore_methman', 'loser'
+			end
+		end
+	end
+!	First meth_man encounter lock, if you don''t want to progress the story. 
+!	Access with run and appropriate clothes	during jog or stroll
+!	After the first encounter he will be avaible: adjust clothes when avaible
+	act 'Go away': gt 'pav_park', 'start'
+
+end
+
+!PCloStyle = 4
+if $ARGS[0] = 'run_hooker_run':
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkbeg.jpg"></center>'
+	'You prepare yourself for a nice run in the beautiful park with the background city far away from the noise, pacing yourself so you last for a full hour; you don''t know why, you always found that relaxing...'
+	act 'Burn your fat':	
+		if new_whore >= 20 and meth_man < 1 and rand(0,1) = 0:
+			*clr & cla
+			fat -= rand(0, 3)
+			pcs_sweat += 5
+			daybeplacer_pav_park = daystart
+			gs 'exercise', 'tier1', 30, 'run_exp'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkbeg1.jpg"></center>'
+			'With it being so late, there isn''t anyone supposed to be in the park to see you...'
+			wait 2000
+			*nl
+			'Faster!!!Faster!!!Faster!!!!SlutStop!!!!'
+			wait 3000
+			act 'What the...?':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'Faster!!!Faster!!!Faster!!!'
+				'A man is following you, and he''s pretty quick. It could be an easy money pack...or a bad idea...'	
+				act 'Stop and listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+				act 'He''s fast, but he won''t win me!': 
+					*clr & cla
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+					'Faster!!!Faster!!!Faster!!!'
+					'The man is really fast... . It''s a real challenge to keep the distances...'	
+					act 'Stop and listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+					act 'Never!':
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 60, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+						'"Catch me if you can!"'	
+						act '...': 
+							*clr & cla
+							pcs_sweat += 5
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkrunend.jpg"></center>'
+							'"Wow...i could never expected he could be so fast...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+							act 'Go away': gt 'mod_iwhore_fountain', 'start'
+						end
+					end
+				end
+			end
+		else
+			*clr & cla
+			gs 'exercise', 'tier1', 30, 'run_exp'
+			fat -= rand(0, 2)
+			pcs_sweat += 3
+			daybeplacer_pav_park = daystart
+			puppies_mood = 1
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkbeg1.jpg"></center>'
+			'With it being so late, there isn''t anyone supposed to be in the park to see you...'
+			if pcs_inhib >= 35 or exhibitionist_lvl > 0:
+				act 'Flash your tits':
+					*clr & cla
+					gs 'exercise', 'tier1', 30, 'run_exp'
+					gs 'arousal', 10, 'flashlite'
+					gs 'arousal', 'end'
+					gs 'stat'
+					fat -= rand(0, 2)
+					pcs_sweat += 2
+					daybeplacer_pav_park = daystart
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/flashnight'+rand(0,1)+'.jpg"></center>'
+					'...and your puppies like to stay free...'
+					act 'On your way to home': gt 'pav_park', 'start'
+					act 'Cool off at the fountain': gt 'mod_iwhore_fountain', 'start'
+				end
+			end
+			act 'End your run':
+				*clr & cla
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				fat -= rand(0, 2)
+				pcs_sweat += 2
+				daybeplacer_pav_park = daystart
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkrunend.jpg"></center>'
+				'You feel great after your run. A bit sweaty, but also that you''ve managed to improve your stamina as you even feel a bit slimmer.'
+				act 'On your way to home': gt 'pav_park', 'start'
+				act 'Cool off at the fountain': gt 'mod_iwhore_fountain', 'start'
+			end
+		end
+	end	
+end
+
+if $ARGS[0] = 'jog_hook':	
+	if rand (0,30) =< 28:
+		act '...':
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/jogger_stroll.jpg"></center>'
+			'It could be the late time or the sweat that no one is on sight... .'
+			act 'Go away': gt 'mod_iwhore_fountain', 'start'
+		end
+	else	
+		if pcs_sweat >= 50:
+			act '...':
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/jogger_stroll.jpg"></center>'
+				'The man wrinkles his nose "Have you ever heard about showering?"... . The man is right, better go clean before thinking about oeering your service... .'
+				act 'Go away': gt 'mod_iwhore_fountain', 'start'
+			end
+		elseif pcs_sweat >= 50 and rand (1,100) =< 4:
+			act '...':
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/jogger_stroll.jpg"></center>'
+				'The man wrinkles his nose "Shit girl...you could have a shower at least. But you are a pretty one, why don''t you blow me...and do not remove your clothes...i don''t want to puke."'
+				act 'Lead him': gt 'mod_iwhore_parkw', 'jog_bj'
+			end
+		else
+			act '...':
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+				'"Honey do you want to spend some good time?"..."What''s that? A jog fetish? Meh...it doesn''t mind...you are nice looking. Show me a good place slut..."' 
+				act 'Lead him': gt 'mod_iwhore_parkw', 'jog_slut'
+			end
+		end
+	end
+	act 'No matter what, better go away.': gt 'mod_iwhore_fountain', 'start'
+	
+end
+
+
+if $ARGS[0] = 'running_meth_with_dress_not_ready':
+!	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	if meth_man < 1:
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			'"Slut!!!!"  A man clearly on high stop right next to you, it could be an easy money pack....'
+			act 'Listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meth.mp4"></video></center>'
+				
+				'...or a bad idea... '	
+				act 'Run':
+					*clr & cla
+					fat -= rand(0, 3)
+					pcs_sweat += 10
+					gs 'exercise', 'tier1', 60, 'run_exp'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meths.mp4"></video></center>'
+					'"Catch me if you can!"'
+					wait 2000
+					'"Faster!!!Faster!!!Faster!!! Slut stop!!!"'
+					if rand(0,1) = 0:	
+						act 'Never!':
+							*clr & cla
+							fat -= rand(0, 3)
+							pcs_sweat += 10
+							gs 'exercise', 'tier1', 60, 'run_exp'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+							'"Catch me if you can!"'	
+							act '...': 
+								*clr & cla
+								pcs_sweat += 5
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/parkrunend.jpg"></center>'
+								'"Wow...i could never expected he could be so fast...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+								act 'Go away': gt 'mod_iwhore_fountain', 'start'
+							end
+						end
+					else
+						act 'Never!':
+							*clr & cla
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+							'..."SHIT!"...'	
+							wait 2000
+							act '"Let me go!"': gt 'mod_iwhore_methman', 'meth_man'
+						end
+					end
+				end
+				act '"Ok ok!"...Stop and listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+			end
+		else		
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			'"Slut!!!!"  A man clearly on high stop right next to you, it could be an easy money pack....'
+			act 'Listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meth.mp4"></video></center>'
+				'...or a bad idea... '	
+				act 'Run':
+					*clr & cla
+					fat -= rand(0, 3)
+					pcs_sweat += 10
+					gs 'exercise', 'tier1', 60, 'run_exp'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_methd.mp4"></video></center>'
+					'"Catch me if you can!"'
+					wait 2000
+					'"Faster!!!Faster!!!Faster!!! Slut stop!!!"'	
+					act 'Never!':
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 60, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+						'"Catch me if you....AAAAAHHH!!!!"'
+						wait 2000
+						'"Slut slut!"'
+						act '"Let me go!"': gt 'mod_iwhore_methman', 'meth_man'
+					end
+				end
+				act '"Ok ok!"...Stop and listen the man.': gt 'mod_iwhore_methman', 'meth_man'
+			end
+		end
+		
+	elseif meth_man = 1:
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'"Slut!"'
+!	Clothes adjustmet to write
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act 'Fuck you bastard!':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				if rand (0,1) = 1:
+					act '"Catch me if you can!"': 
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 30, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+						act '...': 
+							*clr & cla
+							pcs_sweat += 5
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/parkrunend.jpg"></center>'
+							'"Wow...i could never expected he could be so fast...(pant pant)... . Supermotherfuckingasshole! Kiss my smack!"'	
+							act 'Go away': gt 'mod_iwhore_fountain', 'start'
+						end
+					end
+				else
+					act '"Catch me if you can!"': 
+						*clr & cla
+						pcs_sweat += 5
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'	
+						act '...': gt 'mod_iwhore_methman', 'meth_man'
+					end
+				end
+			end
+		else	
+			act 'Fuck you bastard!':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				act '"Catch me if you can!"': 
+					*clr & cla
+					pcs_sweat += 5
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+					'"Shit!!! Shit!!! Shit!!!....NOOOOO....." It was not a good idea to challenge the man with your dress...'	
+					act '...': gt 'mod_iwhore_methman', 'meth_man'
+				end
+			end
+		end
+	elseif meth_man = 2 and Krestovoz_pimp_protection = 1:
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'Slut!'
+		act '"I''m curious...let see what he has to say..."': 
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+			'You move toward the man when you notice that the mad woman sit on the bench. "Hi slut."'
+			act '"What do you want?"': gt 'mod_iwhore_methman', 'meth_man'
+		end	
+		act 'RUN!!!':
+			*clr & cla
+			gs 'stat'
+			if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused1.mp4"></video></center>'
+			elseif PCloStyle = 4:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused2.mp4"></video></center>'
+			end
+			if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+				'..."What the fuck?"...The man pass you and point the mid finger to you... . He "won" the run ... . Then as nothing has happened he continue to run...'
+			elseif PCloStyle = 4:
+				'..."AAAHHHH!!!"...You stumble on the ground...and you just fear in anticipation what the man is used to do.... . But he pass you, point the mid finger to you... and then as nothing has happened, he continue to run...'
+			else
+				'..."AAAHHHH!!!"...You stumble on the ground...and you just fear in anticipation what the man is used to do.... . But he pass you, point the mid finger to you... and then as nothing has happened, he continue to run...'
+			end
+			
+			'"..."'
+			act '...':
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused.jpg"></center>'
+				wait 2000
+				'You are at the park exit just above Pavlovsk stucked in your thought about the man... '
+				act '"Am i safe? I need to see clear on that..."': 
+					*clr & cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+					'You walk back where the man was...there''s the woman sitting on a bench. "Hi slut."'
+					act '"What do you want?"': gt 'mod_iwhore_methman', 'meth_man'
+				end
+				act '"No way!"': gt 'mod_iwhore_fountain', 'start'
+			end
+		end
+	elseif meth_man >= 3 and Krestovoz_pimp_protection = 1:
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'"Slut!"'
+		act '"Ok...ok..."': gt 'mod_iwhore_methman', 'meth_man'
+		act '"Nope..."': gt $loc, $loc_arg	
+	elseif meth_man >= 2 and Krestovoz_pimp_protection ! 1:
+		*clr & cla
+		meth_fastest = rand(0,1)
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'"Slut!"'
+!	Clothes adjustmet to write
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act '"Shit!"':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				if rand (0,1) = 1:
+					act '"Catch me if you can!"': 
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 30, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+						act '...': 
+							*clr & cla
+							pcs_sweat += 5
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/parkrunend.jpg"></center>'
+							'"Wow...i could never expected he could be so fast...(pant pant)... . Supermotherfuckingasshole! Kiss my smack!"'	
+							act 'Go away': gt 'mod_iwhore_fountain', 'start'
+						end
+					end
+				else
+					act '"Catch me if you can!"': 
+						*clr & cla
+						pcs_sweat += 5
+						gs 'stat'
+						if meth_man = 2:
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'						
+							'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'							
+							act '...': gt 'mod_iwhore_methman', 'meth_man'
+						else
+							if meth_fastest = 1:
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+								'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'							
+								act '...': gt 'mod_iwhore_methman', 'meth_man'
+							else
+								gs 'pain', 9, 'neck', 'hit'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog0.mp4"></video></center>'
+								'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'							
+								act '...': gt 'mod_iwhore_methman', 'meth_man'
+							end
+						end
+					end
+				end
+			end
+		else	
+			act '"Shit!"':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				act '"Catch me if you can!"': 
+					*clr & cla
+					pcs_sweat += 5
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+					'"Shit!!! Shit!!! Shit!!!....NOOOOO....." It was not a good idea to challenge the man with your dress...'	
+					act '...': gt 'mod_iwhore_methman', 'meth_man'
+				end
+			end
+		end
+		if meth_man >= 4:
+			act 'Ok ok...just...this time ok?': gt 'mod_iwhore_methman', 'meth_man'
+		end
+!		act 'Ok ok...just...this time ok?': gt 'mod_iwhore_park', 'meth_surrender'
+	else	
+		''
+	end
+end
+
+
+if $ARGS[0] = 'basicstrolling':
+	if fame['pav_slut'] > 200 and new_whore >= 45:
+!		act 'Stroll around':gt 'mod_iwhore_park', 'jog_hook'
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act 'Stroll around':
+				if rand (0,30) = 0:
+					gt 'mod_iwhore_methman', 'running_meth'
+				else
+					gt 'mod_iwhore_fountain', 'jog_hook'
+				end
+			end
+		else
+			if meth_man >= 1:
+				act 'Catch some attention': 
+					if rand (0,30) = 0:
+! adjust dressing
+						gt 'mod_iwhore_methman', 'running_meth'
+					else
+						gt 'mod_iwhore_park', 'parkhooker'
+					end
+				end
+			else
+				''
+!				gt 'mod_iwhore_park', 'parkhooker'
+			end
+		end
+	end
+end
+--- mod_iwhore_fountain ---------------------------------

+ 874 - 0
locations/mod_iwhore_hardlife.qsrc

@@ -0,0 +1,874 @@
+# mod_iwhore_hardlife
+!    gt 'mod_iwhore_hardlife', 'bath_rape_male'
+!    gt 'mod_iwhore_hardlife', 'bath_rape_female'
+!    gt 'mod_iwhore_hardlife', 'car_rape'
+!    gt 'mod_iwhore_hardlife', 'car_rape_ender'
+!    gt 'mod_iwhore_hardlife', 'park_rape'
+!    gt 'mod_iwhore_hardlife', 'park_rape_ender'
+!    gt 'mod_iwhore_hardlife', 'street_rape'
+!    gt 'mod_iwhore_hardlife', 'street_rape_ender'
+
+!if exhibitionist_lvl > 0 or pcs_inhib >= 45:
+
+!rapewhore_count += 1
+
+!!!BATH!!!
+if $ARGS[0] = 'bath_rape_male':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/1.jpg"></center>'
+	'As soon as you close the door the man jump on you blocking your way to defend... "Stupid slut!"'
+	act '...you had to succumb your fate...':
+		!Themorethebetter!
+		if rand(0,10) =< 1:
+			cla
+			*clr
+			gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/bj'+rand(0,1)+'.jpg"></center>'
+			'..."Shhh! You care about your life dont''you?"...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 12
+				money = 0
+				want_stall = 0
+!				gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbj'+rand(0,1)+'.mp4"></video></center>'
+				'The man start face fucking you as there''s no tomorrow on sight... .'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend0.jpg"></center>'
+					'Your throath skill help you to not suffocate... . Apparently that''s end here and he''s not looking to something else. You can only look at him "lightening" your purse as he goes away... . "Shit!"'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		elseif rand(0,10) >= 2 and rand(0,10) =< 5:	
+			cla
+			*clr
+			gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/vag'+rand(0,1)+'.jpg"></center>'
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagin'+rand(0,4)+'.mp4"></video></center>'
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+!				gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend1.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...': gt $loc, $loc_arg
+				end
+			end
+		else
+			cla
+			*clr
+			gs 'arousal', 'anal', 20, 'rough', 'rape'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/anal'+rand(0,1)+'.jpg"></center>'
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/anal'+rand(0,4)+'.mp4"></video></center>'
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+!				gs 'mod_iwhore_dincollect', 'afteranalrape','pc' TO WRITE
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend1.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'bath_rape_female':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/1.jpg"></center>'
+	'As soon as you close the door the man jump on you blocking your way to defend... "Stupid slut!"'
+	act '...you had to succumb your fate...':
+		!Themorethebetter!
+		if rand(0,10) =< 1:
+			cla
+			*clr
+			gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/bj'+rand(0,1)+'.jpg"></center>'
+			'..."Shhh! You care about your life dont''you?"...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 12
+				money = 0
+				want_stall = 0
+!				gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbj'+rand(0,1)+'.mp4"></video></center>'
+				'The man start face fucking you as there''s no tomorrow on sight... .'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend0.jpg"></center>'
+					'Your throath skill help you to not suffocate... . Apparently that''s end here and he''s not looking to something else. You can only look at him "lightening" your purse as he goes away... . "Shit!"'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		elseif rand(0,10) >= 2 and rand(0,10) =< 5:	
+			cla
+			*clr
+			gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/vag'+rand(0,1)+'.jpg"></center>'
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagin'+rand(0,4)+'.mp4"></video></center>'
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+!				gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend1.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...': gt $loc, $loc_arg
+				end
+			end
+		else
+			cla
+			*clr
+			gs 'arousal', 'anal', 20, 'rough', 'rape'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/anal'+rand(0,1)+'.jpg"></center>'
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/anal'+rand(0,4)+'.mp4"></video></center>'
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+!				gs 'mod_iwhore_dincollect', 'afteranalrape','pc' TO WRITE
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend1.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end
+end
+
+!!!CAR!!!!
+if $ARGS[0] = 'car_rape':
+	cla
+	*clr
+	rapewhore_count += 1
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end	
+	'You agree to blow him. You enter the car and lead him to a secluded area. "Show me your tits slut"' 
+	act 'Show your tits':
+		cla
+		*clr
+		protect = 0
+		$orgasm_or = 'no'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_car.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_car.jpg"></center>'
+		end	
+		'You made to open your shirt that the man jump on you blocking your way to defend... "Stupid slut!"'
+		act '...you had to succumb your fate...':
+			if rand(0,10) =< 1:
+				cla
+				*clr
+				gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/badbj'+rand(0,1)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/badbj'+rand(0,1)+'.jpg"></center>'
+				end	
+				'..."Shhh! You care about your life dont''you?"...'
+				act '...till his lust his satisfied...': 
+					cla
+					*clr
+					spafinloc = 12
+					money = 0
+	!				gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+					gs 'cum_manage'
+					gs 'arousal', 'end'
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+					end	
+					'The man start face fucking you as there''s no tomorrow on sight... .'
+					act '...recover... .': 
+						cla
+						*clr
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_b.jpg"></center>'
+						end	
+						'Your throath skill help you to not suffocate... . Apparently that''s end here and he''s not looking to something else. You can only look at him "lightening" your purse as he goes away... . "Shit!"'
+						act '...till his lust his satisfied...': gt $loc, $loc_arg
+					end
+				end
+			elseif rand(0,10) >= 2 and rand(0,10) =< 5:	
+				cla
+				*clr
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/badvag'+rand(0,1)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/badvag'+rand(0,1)+'.jpg"></center>'
+				end	
+				'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+				act '...till his lust his satisfied...': 
+					cla
+					*clr
+					spafinloc = 0
+					money = 0
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+					end	
+					'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!				gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+					gs 'mod_iwhore_dincollect' , 'venerasiak'
+					gs 'arousal', 'end'
+					gs 'cum_manage'
+					gs 'stat'
+					act '...recover... .': 
+						cla
+						*clr
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+						end	
+						'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+						act '...till his lust his satisfied...': gt $loc, $loc_arg
+					end
+				end
+			else
+				cla
+				*clr
+				gs 'arousal', 'anal', 20, 'rough', 'rape'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/badanal'+rand(0,1)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/badanal'+rand(0,1)+'.jpg"></center>'
+				end	
+				'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+				
+				act '...till his lust his satisfied...': 
+					cla
+					*clr
+					spafinloc = 3
+					money = 0
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+					end	
+					'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!				gs 'mod_iwhore_dincollect', 'afteranalrape','pc' TO WRITE
+					gs 'arousal', 'end'
+					gs 'cum_manage'
+					gs 'mod_iwhore_dincollect' , 'venerasiak'
+					gs 'stat'
+					act '...recover... .': 
+						cla
+						*clr
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+						end	
+						'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+						act '...till his lust his satisfied...': gt $loc, $loc_arg
+					end
+				end
+			end
+		end
+	end	
+end
+
+if $ARGS[0] = 'car_rape_ender':
+	cla
+	*clr
+	rapewhore_count += 1
+	gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadbj'+rand(0,1)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+	end		
+	'"Who the fuck told you to stop stupid slut!"' 
+	act 'Please...let me go...':
+		cla
+		*clr
+		protect = 0
+		$orgasm_or = 'no'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_car.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_car.jpg"></center>'
+		end	
+		'Soon the man shows his real intention ... "You better be good if you care of your life!"'
+		act '...you had to succumb your fate...':
+			if ms_ender = 21:
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+	!			gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'arousal', 'anal', 20, 'rough', 'rape'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadanal'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			else	
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/car/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/car/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end	
+end
+
+!!!PARK!!!!
+if $ARGS[0] = 'park_rape':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_park.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_park.jpg"></center>'
+	end
+	'You are near to the place you had in mind when suddenly the man reveal his real intention... "Stupid slut!"'		
+	act '...you had to succumb your fate...':
+		if rand(0,10) =< 1:
+			cla
+			*clr
+			gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/badbj'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/badbj'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Shhh! You care about your life dont''you?"...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 12
+				money = 0
+	!			gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'The man start face fucking you as there''s no tomorrow on sight... .'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_b.jpg"></center>'
+					end	
+					'Your throath skill help you to not suffocate... . Apparently that''s end here and he''s not looking to something else. You can only look at him "lightening" your purse as he goes away... . "Shit!"'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		elseif rand(0,10) >= 2 and rand(0,10) =< 5:	
+			cla
+			*clr
+			gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/badvag'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/badvag'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		else
+			cla
+			*clr
+			gs 'arousal', 'anal', 20, 'rough', 'rape'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/badanal'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/badanal'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'afteranalrape','pc' TO WRITE
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'park_rape_ender':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_park.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_park.jpg"></center>'
+	end	
+	'"You better be good if you care of your life!"'
+	act 'Please...i won''t tell anyone...please...':
+		cla
+		*clr
+		gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadbj'+rand(0,1)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+		end		
+		'But the man doesn''t want to hear your reason..."Who the fuck told you to stop stupid slut!"' 
+		act '...you had to succumb your fate...':
+			if ms_temp = 1:
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+	!			gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'arousal', 'anal', 20, 'rough', 'rape'
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadanal'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			else	
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/park/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/park/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end	
+end
+
+!!!STREET!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'street_rape':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_street.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_street.jpg"></center>'
+	end
+	'You are near to the place you had in mind when suddenly the man reveal his real intention... "Stupid slut!"'		
+	act '...you had to succumb your fate...':
+		if rand(0,10) =< 1:
+			cla
+			*clr
+			gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/badbj'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/badbj'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Shhh! You care about your life dont''you?"...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 12
+				money = 0
+	!			gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'The man start face fucking you as there''s no tomorrow on sight... .'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_b.jpg"></center>'
+					end	
+					'Your throath skill help you to not suffocate... . Apparently that''s end here and he''s not looking to something else. You can only look at him "lightening" your purse as he goes away... . "Shit!"'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		elseif rand(0,10) >= 2 and rand(0,10) =< 5:	
+			cla
+			*clr
+			gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/badvag'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/badvag'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		else
+			cla
+			*clr
+			gs 'arousal', 'anal', 20, 'rough', 'rape'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/badanal'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/badanal'+rand(0,1)+'.jpg"></center>'
+			end	
+			'..."Uuugghh Bitch!!! You like it dont''you?"... . "...p-please..."...'
+			act '...till his lust his satisfied...': 
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'afteranalrape','pc' TO WRITE
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'street_rape_ender':
+	cla
+	*clr
+	rapewhore_count += 1
+	protect = 0
+	$orgasm_or = 'no'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/pre_street.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/pre_street.jpg"></center>'
+	end	
+	'"You better be good if you care of your life!"'
+	act 'Please...i won''t tell anyone...please...':
+		cla
+		*clr
+		gs 'arousal', 'bj', 15, 'deepthroath', 'rape'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadbj'+rand(0,1)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadbj'+rand(0,2)+'.mp4"></video></center>'
+		end		
+		'But the man doesn''t want to hear your reason..."Who the fuck told you to stop stupid slut!"' 
+		act '...you had to succumb your fate...':
+			if ms_temp = 1:
+				cla
+				*clr
+				spafinloc = 3
+				money = 0
+	!			gs 'mod_iwhore_dincollect', 'aftermouthrape','pc' TO WRITE
+				gs 'arousal', 'anal', 20, 'rough', 'rape'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadanal'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadanal'+rand(0,2)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+				act '...recover... .': 
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_b.jpg"></center>'
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			else	
+				cla
+				*clr
+				spafinloc = 0
+				money = 0
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/rape/street/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/street/vbadvag'+rand(0,1)+'.mp4"></video></center>'
+				end	
+				'..."Bitch!!! Tell me you like it! Tell me you like it!!!"... . You cannot think anything better than try to not displease the man, and endure your violation hoping it will come to an end soon... . '
+	!			gs 'mod_iwhore_dincollect', 'aftervaginalrape','pc' TO WRITE
+				act '...recover... .': 
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/rape/post_s.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_s.jpg"></center>'
+					end	
+					'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. At the end he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+					act '...till his lust his satisfied...': gt $loc, $loc_arg
+				end
+			end
+		end
+	end	
+end
+--- mod_iwhore_hardlife ---------------------------------

+ 289 - 0
locations/mod_iwhore_highway.qsrc

@@ -0,0 +1,289 @@
+# mod_iwhore_highway
+if $ARGS[0] = 'start':
+
+	gs 'stat'
+	killvar 'hw_temp'
+	killvar 'gfy_rand'
+	protect = 0
+	propose = 0
+	nnak_car = 0
+	nnak_street = 0
+	dnak_car = 0
+	dnak_street = 0
+	minut += 5
+	if month >= 11 or month <= 3:
+		'<center><img <<$set_imgh>> src="images/locations/highway/roadwinter.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="images/locations/highway/road.jpg"></center>'
+	end
+	
+
+	if hour >= 18 or hour =< 6:
+		act 'Stroll around': minut += 5 & gt 'mod_iwhore_highway', 'night'
+	elseif hour < 18 and hour > 6:
+		act 'Stroll around': minut += 5 & gt 'mod_iwhore_highway', 'day'
+	else
+		''
+	end
+	
+end
+
+if $ARGS[0] = 'day':
+	*clr & cla	
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetwork/works'+rand(0,6)+'.jpg"></center>'
+	'It shouldn''t be difficult for you to catch attentions.'
+	if new_whore >= 15:
+		act 'Wait for clients':
+			minut += 5
+			gs 'stat'
+			if rand(0,10) =< 3:
+				cla
+				*clr
+				gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/dealc'+rand(0,9)+'.jpg"></center>'
+				'A car stop next to you... . "What did you have in mind, big boy?"'
+				if new_whore < 50:
+					if new_whore = 20 or new_whore = 30 or new_whore = 40 or new_whore = 44 or new_whore = 48: 
+						hw_temp = 3 
+						new_whore += 1
+					else
+						if pcs_inhib >= 35 and new_whore >= 30:
+							hw_temp = rand(11,80)
+						elseif pcs_inhib >= 40 and new_whore >= 50:
+							hw_temp = rand(11,90)
+						else
+							hw_temp = rand(11,50)
+						end
+					end
+				else
+					if Krestovoz_pimp_protection ! 1:
+						if pcs_inhib >= 35 and new_whore >= 30:
+							hw_temp = rand(0,80)
+						elseif pcs_inhib >= 40 and new_whore >= 50:
+							hw_temp = rand(0,90)
+						else
+							hw_temp = rand(0,50)
+						end
+					else
+						if pcs_inhib >= 35 and new_whore >= 30:
+							hw_temp = rand(11,80)
+						elseif pcs_inhib >= 40 and new_whore >= 50:
+							hw_temp = rand(11,90)
+						else
+							hw_temp = rand(11,50)
+						end
+					end
+				end
+				act 'Let him decide':
+					if hw_temp =< 10: gt 'mod_iwhore_hardlife', 'car_rape'
+					if hw_temp > 10 and hw_temp =< 20: gt 'mod_iwhore_dhighway', 'dbj'
+					if hw_temp > 20 and hw_temp =< 30: gt 'mod_iwhore_dhighway', 'dvag'
+					if hw_temp > 30 and hw_temp =< 40: gt 'mod_iwhore_dhighway', 'danal'
+					if hw_temp > 40 and hw_temp =< 50: gt 'mod_iwhore_dhighway', 'dpropose' 
+					if hw_temp > 50 and hw_temp =< 60: gt 'mod_iwhore_dhighway', 'dhbj'
+					if hw_temp > 60 and hw_temp =< 70: gt 'mod_iwhore_dhighway', 'dhvag'
+					if hw_temp > 70 and hw_temp =< 80: gt 'mod_iwhore_dhighway', 'dhanal'
+					if hw_temp > 80 and hw_temp =< 85: gt 'mod_iwhore_dhighway', 'dnakcar'
+					if hw_temp > 85 and hw_temp =< 90: gt 'mod_iwhore_dhighway', 'dnakstreet'
+				end
+				
+			else
+				'Maybe there are works on the street, no car on sight.'
+				act 'No one on sight': gt 'mod_iwhore_highway', 'start'
+			end
+		end
+	else
+		cla
+		*clr
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/notgoodidea.jpg"></center>'
+		'...Maybe it''s not a good idea... . '
+		act 'Leave...': minut += 2 & gt 'mod_iwhore_highway', 'start'
+	end
+
+	act 'Go away': minut += 5 & gt 'road'
+	
+end
+
+if $ARGS[0] = 'night':
+	*clr & cla	
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetwork/work'+rand(0,7)+'.jpg"></center>'
+	'It shouldn''t be difficult for you to catch attentions.'
+	
+	act 'Wait for clients':
+		minut += 5
+		gs 'stat'
+		if rand(0,10) =< 6:
+			cla
+			*clr
+			gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/cardeal'+rand(0,6)+'.jpg"></center>'
+			'A car stop next to you... . "What did you have in mind, big boy?"'
+			if new_whore < 50:
+				if new_whore = 20 or new_whore = 30 or new_whore = 40 or new_whore = 44 or new_whore = 48: 
+					hw_temp = 3
+					new_whore += 1
+				else
+					if pcs_inhib >= 35 and new_whore >= 30:
+						hw_temp = rand(11,80)
+					elseif pcs_inhib >= 40 and new_whore >= 50:
+						hw_temp = rand(11,90)
+					else
+						hw_temp = rand(11,50)
+					end
+				end
+			else
+				if Krestovoz_pimp_protection ! 1:
+					if pcs_inhib >= 35 and new_whore >= 30:
+						hw_temp = rand(0,80)
+					elseif pcs_inhib >= 40 and new_whore >= 50:
+						hw_temp = rand(0,90)
+					else
+						hw_temp = rand(0,50)
+					end
+				else
+					if pcs_inhib >= 35 and new_whore >= 30:
+						hw_temp = rand(11,80)
+					elseif pcs_inhib >= 40 and new_whore >= 50:
+						hw_temp = rand(11,90)
+					else
+						hw_temp = rand(11,50)
+					end
+				end
+			end
+			act 'Let him decide':
+				if hw_temp =< 10: gt 'mod_iwhore_hardlife', 'car_rape'
+				if hw_temp > 10 and hw_temp =< 20: gt 'mod_iwhore_nhighway', 'nbj'
+				if hw_temp > 20 and hw_temp =< 30: gt 'mod_iwhore_nhighway', 'nvag'
+				if hw_temp > 30 and hw_temp =< 40: gt 'mod_iwhore_nhighway', 'nanal'
+				if hw_temp > 40 and hw_temp =< 50: gt 'mod_iwhore_nhighway', 'propose' 
+				if hw_temp > 50 and hw_temp =< 60: gt 'mod_iwhore_nhighway', 'nhbj'
+				if hw_temp > 60 and hw_temp =< 70: gt 'mod_iwhore_nhighway', 'nhvag'
+				if hw_temp > 70 and hw_temp =< 80: gt 'mod_iwhore_nhighway', 'nhanal'
+				if hw_temp > 80 and hw_temp =< 85: gt 'mod_iwhore_nhighway', 'nnakcar'
+				if hw_temp > 85 and hw_temp =< 90: gt 'mod_iwhore_nhighway', 'nnakstreet'
+			end
+			
+		else
+			'Maybe there are works on the street, no car on sight.'
+			act 'No one on sight': minut += 2 & gt 'mod_iwhore_highway', 'start'
+		end
+	end
+
+	act 'Go away': minut += 5 & gt 'road'
+	
+end
+
+
+if $ARGS[0] = 'gfy':
+	minut += 5
+	gfy_rand = rand(0,10)
+	
+
+	if gfy_rand = 0:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."...'
+		wait 2000
+		'<br>"...Fuck you!"...'
+
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"Mom is calling you!"...'
+
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"I''ve hear that you own the only pletorutupuss in town..."<br>"Uh?"'
+		wait 3000
+		'<br>"...Fuck you!"...'
+
+	elseif gfy_rand = 3:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m lost; do you happen to know the street that lead to Pavlovsk Residential?"<br>"Ummmh...you have to turn right, and go for..."'
+		wait 5000
+		'<br>..."...Fuck you bitch!".'
+
+	elseif gfy_rand = 4:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'"The police! The police! Run bitch run!"...'
+
+	elseif gfy_rand = 5:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"WHORE!....Hahahahaha..."... '	
+
+	elseif gfy_rand = 6:
+		'"Spare our lost souls..."<br>"I won''t work without money, if you are going to ask."<br>"..."'
+		wait 3000
+		'"You are in time to redeem yourself...there was a time when all the mankind..."...<br>"Uh? Go away..."'
+		wait 3000
+		'<br>"...Fuck you! Bitch! You are a fallen demon!"... '	
+
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...let''s put that way..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."'
+		wait 1000
+		'<br>"...Fuck you!"... .'	
+
+	elseif gfy_rand = 8:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"How much do you want?"<br>"200 mouth, 350 pussy, 400 ass honey; 50 bonus without condom and other 20 if you want to fill me daddy."'
+		wait 5000
+		'<br>"Ok, give me 470 then, and i''ll fill your butt."<br>"Go away..."'
+		wait 2000
+		'<br>"...Fuck you!" ....'	
+	elseif gfy_rand = 9:
+		'"Come here bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"Nooooo, it''s not that...more more..."'
+		wait 2000
+		'"...just a moment..."<br>"Uh?"<br>"...Uhhh uhhh...aaahhh..."<br>"Hey what the fuck are you...."... '
+		wait 3000
+		'<br>"...Fuck you! Bitch!"'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'
+		
+	elseif gfy_rand = 10:
+		'"Squeeezzee..."<br>"I won''t work without money, if you are going to ask."<br>"Meeeee...? Youuuu!"<br>"Uh???"'
+		wait 2000
+		'<br>"...I can see ...staaar..."<br>"Thank you honey! I can make you touch the ceiling too."<br>"It''s a big star...full of all the man wishes...do you want to see the star too? It start with a pill..."The man is on "high"..."No honey thanks, now if you leave me..."...'
+		wait 4000
+		'<br>"RUN! IT''S COMING! IT''S BIG! IT WILL KILL US ALL! AAAAAAHHH! RUN!"'	
+
+	else
+		''	
+	end
+	
+	if hour < 18 and hour > 6:
+		wait 1500
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfy.mp4"></video></center>'
+	else
+		wait 1500
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfy.mp4"></video></center>'
+	end
+	
+	
+	if gfy_rand = 9:
+		*nl
+		'The freaky bastard was jerking, and throw his cum on your face; he push the gas on the machine to the max and cover you with dust.'	
+	elseif gfy_rand = 10:
+		*nl
+		'You don''t know if the man was here for some laugh of if he was on a bad trip, anyway he push the gas on the machine to the max and cover you with dust.'	
+	else
+		*nl
+		'The man was here for some laugh, he push the gas on the machine to the max and cover you with dust.'
+	end
+
+	
+	act 'Fuck you!': minut += 2 & gt 'mod_iwhore_highway', 'start'
+end
+--- mod_iwhore_highway ---------------------------------

+ 264 - 0
locations/mod_iwhore_innapodz.qsrc

@@ -0,0 +1,264 @@
+# mod_iwhore_innapodz
+
+!SETTINGS:
+CLOSE ALL
+gs 'themes', 'indoors'
+$loc_arg = ''
+$loc = 'mod_iwhore_innapodz'
+!elevator does not work
+if liftnotwork_day ! daystart: liftnotwork_count = 1
+!Apartment Uncle Misha
+!how much money for sex give boys
+
+!================================================================================================!
+!FLOORS: ---------------------------Entrance to the town-------------------------------------- FLOORS:!
+!================================================================================================!
+!housemates
+
+if $ARGS[0] = 'housemates':
+	menu_off = 1
+	*clr & cla
+	minut +=1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/housemates.jpg"></center>'
+	'Floor 1  - Apartment number 1:... - Apartment number 2:... - Apartment number 3:...'
+	'Floor 2  - Apartment number 4:... - Apartment number 5:... - Apartment number 6:...'
+	'Floor 3  - Apartment number 7:... - Apartment number 8:... - Apartment number 9:...'
+	'Floor 4  - Apartment number 10:... - Apartment number 11:... - Apartment number 12:...'
+	'Floor 5  - Apartment number 13:... - Apartment number 14:... - Apartment number 15:...'
+	
+	act 'Leave': gt 'mod_iwhore_innapodz', 'etaj_1'
+end
+!!locked in Pavlovsk, floor 1
+if $ARGS[0] = 'etaj_1' or $ARGS[0] = '':
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'etaj_1'
+	menu_off = 0
+	CLOSE ALL
+	if sound = 0:PLAY 'sound/podezd.mp3',30
+	gs 'stat'
+	'<center><b><font color = maroon>Ground floor of the apartment building</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/podezd2.jpg"></center>'
+	'<center>A dirty and poorly maintained stairwell, the same as any other in your town.</center>'
+
+	
+	if inna_varvara_pimp >= 2:
+		'There''s a <a href="exec: gs ''mod_iwhore_innapodz'',''housemates''">list</a> of the people who live here on the wall. People names of residents are carefully scratched from the list... . You know no one here.'
+	else
+		'There''s a <a href="exec: gs ''mod_iwhore_innapodz'',''housemates''">list</a> of the people who live here on the wall. People names of residents are carefully scratched from the list... . You know Inna lives on the fifth floor.'
+	end
+	'Someone put up some <a href="exec:gt ''mod_iwhore_innapodz'',''pod_objava''">advertisements</a> on the wall, near the entrance.'
+	act 'Leave the building':gt 'pav_complex', 'start'
+
+	act 'Go up to the second floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_2'
+	act 'Take the elevator': gt 'mod_iwhore_innapodz','lift','etaj_1'
+end
+!floor2
+if $ARGS[0] = 'etaj_2':
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'etaj_2'
+	menu_off = 0
+	gs 'stat'
+	'<center>2nd floor of the apartment building</center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj2.jpg"></center>'
+	'<center>The second floor stairwell is clean and well maintained. It was renovated not long ago, and the inhabitants do their best to keep it clean.</center>'
+
+
+	act 'Go down to the first floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_1'
+	act 'Go up to the third floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_3'
+
+
+
+	act 'Take the elevator': gt 'mod_iwhore_innapodz','lift','etaj_2'
+end
+!floor 3
+if $ARGS[0] = 'etaj_3':
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'etaj_3'
+	menu_off = 0
+	gs 'stat'
+	'<center>3rd floor of the apartment building</center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj3.jpg"></center>'
+	'<center>The third floor stairwell was renovated not long ago, but some hoodlums already sprayed graffiti on the walls.</center>'
+
+
+	act 'Go down to the second floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_2'
+	act 'Go up to the fourth floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_4'
+
+	act 'Take the elevator': gt 'mod_iwhore_innapodz','lift','etaj_3'
+end
+!floor 4
+if $ARGS[0] = 'etaj_4':
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'etaj_4'
+	menu_off = 0
+	gs 'stat'
+	'<center>4th floor of the apartment building</center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj4.jpg"></center>'
+	'<center>A dirty and poorly maintained stairwell. The inhabitants don''t seem to care about how it looks.</center>'
+	''
+
+	act 'Go down to the third floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_3'
+	act 'Go up to the fifth floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_5'
+
+
+	act 'Take the elevator': gt 'mod_iwhore_innapodz','lift','etaj_4'
+end
+!floor 5
+if $ARGS[0] = 'etaj_5':
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'etaj_5'
+	menu_off = 0
+	gs 'stat'
+	'<center>Floor #5</center>'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/etaj5.jpg"></center>'
+	'<center>The fifth floor stairwell looks much like most of the other floors, though it has a final set of stairs at the other end of the hall that go up to the roof.</center>'
+
+	if inna_varvara_pimp >= 2:
+		if inna_varvara_pimp > 10:
+			act 'Inna''s apartment':gt 'mod_iwhore_innapt', 'start'
+		elseif inna_varvara_pimp = 4:
+			act 'Slip the signed photo':gt 'mod_iwhore_begin', 'slipped'
+		elseif inna_varvara_pimp = 5 or inna_varvara_pimp = 6:
+			act '...':gt 'mod_iwhore_begin', 'slipped'
+		elseif inna_varvara_pimp = 8 or inna_varvara_pimp = 9:
+			act '...':gt 'mod_iwhore_begin', 'slipped'
+		elseif inna_varvara_pimp = 10:
+			gt 'mod_iwhore_begin', 'pimp'
+		else
+			act 'Look for the woman':gt 'mod_iwhore_begin', 'start'
+		end
+	end
+
+	act 'Go down to the fourth floor': minut += 1 & gt 'mod_iwhore_innapodz','etaj_4'
+	act 'Go up to the roof': minut += 1 & gt 'mod_iwhore_innapodz', 'roof'
+	act 'Take the elevator': gt 'mod_iwhore_innapodz','lift','etaj_5'
+end
+!!roof
+if $ARGS[0] = 'roof':
+	$loc_arg = 'roof'
+	$menu_loc = 'mod_iwhore_innapodz'
+	$menu_arg = 'roof'
+	menu_off = 0
+	gs 'stat'
+	'<center>Roof</center>'
+	if month >= 11 or month <= 3:
+		!!if hour >= 8 and hour <= 21:
+			!!'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/roof/roofw.jpg"></center>'
+		!!else
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/roof/roofw.jpg"></center>'
+		!!end
+	else
+		if hour >= 8 and hour <= 21:
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/roof/roof.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/roof/roofn.jpg"></center>'
+		end
+	end
+	'<center>The roof is fairly flat, with the roof access door in a raised part in the middle of the roof. Along one of the walls is another door to some type of storage or maintenances access. There is several ventilation stacks on the roof as well.</center>'
+
+	act 'Go down to the fifth floor':
+		if $clothingworntype = 'swimwear' or $clothingworntype = 'nude':
+			msg '<center><font color = red>You need to get dressed first</font></center>'
+			gt 'mod_iwhore_innapodz','roof'
+		else
+			minut += 1
+			gt 'mod_iwhore_innapodz','etaj_5'
+		end
+	end
+	if $clothingworntype = 'swimwear' or $clothingworntype = 'nude':
+		act 'Change back into clothes':
+			minut += 5
+			gs 'underwear', 'wear'
+			gs 'clothing', 'wear_last_worn'
+			gt 'mod_iwhore_innapodz','roof'
+		end
+	end
+	if temper >= 15 and hour >= 8 and hour <= 20:
+		if ARRSIZE('swimwear') > 0 and $clothingworntype ! 'swimwear':
+			act 'Change into a bikini':gt 'changingroom', 'view_swim_list'
+		end
+		if $clothingworntype = 'swimwear':
+			act 'Sunbathe (1:00)':
+				cla
+				*clr
+				minut += 60
+				inhib_exp += rand(1,3)
+				if pcs_sweat < 35: pcs_sweat += 5
+				pcs_mood += 5
+				'<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/zagar1.jpg"></center>'
+
+				if krem = 0:
+					pcs_tan += 1
+					'You lie down to sunbathe.'
+				elseif krem > 0:
+					krem -= 1
+					pcs_tan += 3
+					'You put the sunblock on your body and lied down on the roof to sunbathe.'
+				end
+
+				act 'Get Up':gt 'mod_iwhore_innapodz', 'roof'
+			end
+		end
+	end
+end
+
+!================================================================================================!
+!ELEVATOR: ------------------------------------------------------------------------------------ ELEVATOR:!
+!================================================================================================!
+!the lift
+if $ARGS[0] = 'lift':
+	menu_off = 1
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/elevator.jpg"></center>'
+	'<center>The elevator in the apartment building is quite old. The building supervisor does his best to keep it running, but it breaks down a lot. Someone put up a <a href="exec:gt ''mod_iwhore_innapodz'',''elev_objava''">notification</a> in the elevator.</center>'
+	act 'Push button: floor 1': gt 'mod_iwhore_innapodz','etaj_1'
+	act 'Push button: floor 2': gt 'mod_iwhore_innapodz','etaj_2'
+	act 'Push button: floor 3': gt 'mod_iwhore_innapodz','etaj_3'
+	act 'Push button: floor 4': gt 'mod_iwhore_innapodz','etaj_4'
+	act 'Push button: floor 5': gt 'mod_iwhore_innapodz','etaj_5'
+	pod_lift_ev = RAND(0,100)
+	if pod_lift_ev <=5:
+		*clr & cla
+		minut +=1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/event/elevator'+rand(1,2)+'.jpg"></center>'
+		'When the elevator door opens, you see a naked woman standing in it! She looks at you in panic and is frantically pressing all the elevator buttons. You''re too baffled to do anything until it''s too late. The door is already closed again, and the elevator is moving away from you.'
+		act 'Leave': minut += 1 & gt 'mod_iwhore_innapodz',$ARGS[1]
+	elseif pod_lift_ev <=10 or liftnotwork_count =< 0:
+		*clr & cla
+		minut +=1
+		liftnotwork_day = daystart
+		liftnotwork_count -= 1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/liftnotwork.jpg"></center>'
+		'The building supervisor put a sign on the elevator: "Dear tenants, the elevator is out of order for today. Don''t worry, I should have it working again by tomorrow!"'
+		act 'Leave': minut += 1 & gt 'mod_iwhore_innapodz',$ARGS[1]
+	end
+	killvar 'pod_lift_ev'
+end
+
+!elevator ads
+if $ARGS[0] = 'elev_objava':
+		*clr & cla
+		minut +=1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/elevator_ob'+rand(1,2)+'.jpg"></center>'
+	act 'Continue': gt 'mod_iwhore_innapodz','lift'
+end
+
+!locked ads
+if $ARGS[0] = 'pod_objava':
+		menu_off = 1
+		*clr & cla
+		minut +=1
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/pod_ob'+rand(1,2)+'.jpg"></center>'
+	act 'Continue': gt 'mod_iwhore_innapodz','etaj_1'
+end
+
+
+
+
+--- mod_iwhore_innapodz ---------------------------------

+ 1205 - 0
locations/mod_iwhore_innapt.qsrc

@@ -0,0 +1,1205 @@
+# mod_iwhore_innapt
+
+if $ARGS[0] = 'start':
+	*clr & cla
+	minut += 1
+	gs 'mod_iwhore_innapt','guardian_route'
+	gs 'mod_iwhore_innapt','guardian_maid'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+	'You are in front of the door.'
+	if whore_beginner_day < daystart:
+		act 'Ring the bell':
+			if inna_varvara_pimp = 11:
+				*clr & cla
+				minut += 1
+				GuardianLoc[hour] = 3
+				deriagin_entry = 1
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/doc.jpg"></center>'
+				'Man: "Oh it''s you... . Hi <<$pcs_firstname>>...Inna wait for you"<br>"...Everybody know me here...but i know no one...it''s not comfortable..."<br>Man: "I''m sorry you are right...I''m Deriagin, Deriagin Utkin; you can call me Doc... . I''m happy to see you are good."<br>"...Well...thanks... Now that i think ...i remember to hear speaking about you...and you were probably the man with Inna and Mechislav in the video..."<br>Man: "That''s right...but plaese enter, feel at home."'
+				act 'Enter': gt 'mod_iwhore_innapt','entry'
+				act 'Move away from the door':gt 'mod_iwhore_innapodz', 'etaj_5'
+			elseif inna_varvara_pimp = 12:
+				inna_varvara_pimp = 13
+				if GuardianLoc[hour] ! 0:
+					GuardianLoc[hour] = 4
+					Guardian_cleaner = 0
+					if yana_entry < 1:
+						*clr & cla
+						minut += 1
+						yana_entry = 1
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yana1.jpg"></center>'
+						'A middle aged woman open the door... "I don''t buy nothing."...and quickly slam it right on your face.'
+						act '"...??..."': gt 'mod_iwhore_innapt','start'
+					elseif yana_entry = 1:
+						*clr & cla
+						minut += 1
+						yana_entry = 2
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yana2.jpg"></center>'
+						'Woman: "Hey! Are you deaf?"'
+						act '"...But..."': gt 'mod_iwhore_innapt','start'
+					elseif yana_entry = 2:
+						*clr & cla
+						minut += 1
+						yana_entry = 3
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+						'Woman: "What the ...? Go away before i lose my patience."'
+						act '"Hey! I sell nothing!"': 
+							*clr & cla
+							minut += 2
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+							'Woman: "...Uhmmm..."<br>"Uhhmmm...what?"<br>Woman: "Spin around."<br>"What?"<br>Woman: "I have to check you: spin around."'
+							act 'Spin': 
+								*clr & cla
+								minut += 4
+								'<center><video autoplay loop src="mod/iwhore/images/characters/pavlovsk/resident/yana/spin.mp4"></video></center>'
+								'"Happy?"<br>Woman: "A little more..."<br>"Ufff!"<br>Woman: "..."'
+								wait 9000
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+								'"What the fuck? HEY!!!!"<br>The woman slammed the door while you spinning...you feel a dumb...'
+								act 'Bell tormentor!': 
+									*clr & cla
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+									'"What''s wrong with you? Bring me to Inna immediately!"<br>Woman: "Pfff!...Sorry <<$pcs_nickname>>...i could not resist...Pfff!"<br>"How do you...?"<br>Woman: "...Yes i know you. I''m Yana by the way, Yana Sorokin. Hope you are not mad...really...it was really funny...hehehe."<br>"Uhmmppff!"<br>Woman: "...Come on enter... . Don''t be mad you made my day."<br>"I cannot say it was a pleasure... . Is Inna in there?"<br>Woman: "...Maybe...snoop around."'
+									act 'Enter': gt 'mod_iwhore_innapt','entry'
+								end
+							end
+							act '"Hey! Bring me to Inna! I need to talk her!"':
+								*clr & cla
+								minut += 1
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+								'Woman: "Boring...ok <<$pcs_nickname>>...come in."<br>"Hey! Do i know you?"<br>Woman: "...Not yet, but i know you. I''m Yana, Yana Sorokin. While you are <<$pcs_firstname>> <<$pcs_lastname>>...a party pooper..."<br>"Uhmmppff!"<br>Woman: "...Come on enter...or i''ll shut the door again."<br>"Funny really funny... . Is Inna in there?"<br>Woman: "...Maybe...snoop around."'
+								act 'Enter': gt 'mod_iwhore_innapt','entry'
+							end
+						end
+					else
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+						'"Yana..."<br>Yana: "Hi <<$pcs_nickname>>...enter."<br>"...Is Inna in there?"<br>Yana: "...Maybe...snoop around honey."'
+						act 'Enter': gt 'mod_iwhore_innapt','entry'
+					end
+				else
+					Guardian_cleaner = 4
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/door3.jpg"></center>'
+					'Inna: "..."<br>"Hi..."<br>"...I''ll be in my room... . If you need something you know where to find me."'
+					act 'Enter':gt 'mod_iwhore_innapt','entry'
+				end
+			else
+				minut += 1
+				if inna_varvara_pimp = 13:
+					if GuardianLoc[hour] ! 0:
+						GuardianLoc[hour] = 4
+						Guardian_cleaner = 0
+					else
+						Guardian_cleaner = 4
+					end
+				end
+				if GuardianLoc[hour] = 0:
+					*clr & cla
+					if inna_varvara_pimp = 12:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestooz/door3.jpg"></center>'
+						'Inna: "..."<br>"..."<br>Inna: "...Reach me in my room... ."'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestooz/door'+rand(0,2)+'.jpg"></center>'
+						'Inna: "Hi girl...need something? Enter..."'
+					end
+					
+					act 'Enter': gt 'mod_iwhore_innapt','entry'
+				elseif GuardianLoc[hour] = 1:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/door.jpg"></center>'
+					'Mechislav: "<<$pcs_nickname>>..."'
+					act 'Enter': gt 'mod_iwhore_innapt','entry'
+				elseif GuardianLoc[hour] = 2:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gavriildoor.jpg"></center>'
+					'Gavriil: "This house id open for you."'
+					act 'Enter': gt 'mod_iwhore_innapt','entry'
+				elseif GuardianLoc[hour] = 3:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/doc.jpg"></center>'
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yana2.jpg"></center>'
+					'Doc: "<<$pcs_nickname>>..."'
+					act 'Enter': gt 'mod_iwhore_innapt','entry'
+				elseif GuardianLoc[hour] = 4:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/yanaentry.jpg"></center>'
+					'Yana: "Hi <<$pcs_nickname>>...enter."<br>"Yana..."'
+					act 'Enter': gt 'mod_iwhore_innapt','entry'
+				else
+					*clr & cla
+					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+					'No one answer'
+					act 'Move away from the door':gt 'mod_iwhore_innapodz', 'etaj_5'
+				end
+			end
+		end
+	else
+		act 'Ring the bell':
+			*clr & cla
+			minut += 1
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptdoor.jpg"></center>'
+			'No one answer'
+			act 'Move away from the door':gt 'mod_iwhore_innapodz', 'etaj_5'
+		end
+	end
+	act 'Move away from the door':gt 'mod_iwhore_innapodz', 'etaj_5'
+end
+
+if $ARGS[0] = 'entry':
+	music_loop = 0
+	CLOSE ALL
+	if sound = 0:PLAY 'sound/korr.mp3',30
+	$locM_arg = 'hallway'
+	$locM = 'mod_iwhore_innapt'
+	$loc_arg = 'hallway'
+	$loc = 'mod_iwhore_innapt'
+	$location_type = 'private'
+!	$location_type = 'indoors'		
+	minut += 1
+	killvar '$locclass'
+	*clr & cla
+	gs 'stat'
+	!gs 'rolanapt' , 'rolanroute'
+	'<center><h4><font color="maroon">Entry</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/entry.jpg"></center>'
+	'The entry... . "This dog is scaring... ." You know it''s embalmed but still it''s scaring...'
+	
+	act 'Hallway': gt 'mod_iwhore_innapt','hallway'
+	act 'Living room': gt 'mod_iwhore_innapt', 'livingroom'
+	act 'Leave apartment': gt 'mod_iwhore_innapodz', 'etaj_5'
+end
+
+if $ARGS[0] = 'hallway':
+	music_loop = 0
+	CLOSE ALL
+	if sound = 0:PLAY 'sound/korr.mp3',30
+	$locM_arg = 'hallway'
+	$locM = 'mod_iwhore_innapt'
+	$loc_arg = 'hallway'
+	$loc = 'mod_iwhore_innapt'
+	$location_type = 'private'
+!	$location_type = 'indoors'		
+	minut += 1
+	killvar '$locclass'
+	*clr & cla
+	gs 'stat'
+	!gs 'rolanapt' , 'rolanroute'
+	'<center><h4><font color="maroon">Hallway</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/hallway.jpg"></center>'
+	'The hallway ...'
+
+	act 'Entry': gt 'mod_iwhore_innapt','entry'
+	
+	if inna_varvara_pimp = 12 and GuardianLoc[hour] = 0:
+		act 'Second room on the left': gt 'mod_iwhore_begin', 'pimped4'
+	else
+		act 'Second room on the left': gt 'mod_iwhore_innapt', 'roomin'
+	end
+	act 'First room on the right': gt 'mod_iwhore_innapt', 'roommec'
+	act 'Last door': gt 'mod_iwhore_innapt', 'roomdoc'
+	act 'Second room on the right': gt 'mod_iwhore_innapt', 'roomgav'
+	act 'First room on the left': gt 'mod_iwhore_innapt', 'guestroom'
+	if inna_varvara_pimp >= 20:
+		act 'Door': gt 'mod_iwhore_innapt','surveillance'
+    else
+		act 'Door': gt 'mod_iwhore_innapt','sealedroom'
+    end
+end
+
+if $ARGS[0] = 'roomin':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Inna''s bedroom</font></h4></center>'
+	if month >= 3 and month =< 5:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ibed0.jpg"></center>'
+	elseif month >= 6 and month =< 8:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ibed1.jpg"></center>'
+	elseif month >= 9 and month =< 11:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ibed2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ibed3.jpg"></center>'
+	end
+	if GuardianLoc[hour] = 0:
+		if inna_varvara_pimp = 12:
+			!cla
+			'Inna is here undressing; you wonder if you should ... .<a href="exec:gt ''mod_iwhore_begin'', ''pimped4''">talk</a> to her or  <a href="exec:gt ''mod_iwhore_innapt'', ''hallway''">leave</a>  '
+		elseif inna_varvara_pimp = 13:
+			'A female body is wrapped... . She should be <a href="exec:gt ''mod_iwhore_begin'', ''pimped4''">Inna</a> ... . You wonder if you have to wake up her... .'
+		else
+			'<a href="exec:gt ''mod_iwhore_innapt'', ''guardian_room''">Inna</a> is here... .'
+		end
+	else
+		if inna_varvara_pimp = 13:
+			'A female body is wrapped... . She should be <a href="exec:gt ''mod_iwhore_begin'', ''pimped4''">Inna</a> ... . You wonder if you have to wake up her... .'
+		else
+			'"I guess i know what Inna likes to receive as present...but i doubt she need more..."'
+		end
+	end
+	if Krestovoz_pimp_day < daystart:''
+	act 'Room': gt 'mod_iwhore_innapt','innaguest'
+	act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+end
+
+if $ARGS[0] = 'innaguest':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Inna''s guest room</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ibed.jpg"></center>'
+	'"Well...nothing strange...right?"'
+	act 'Leave the room': gt 'mod_iwhore_innapt','roomin'
+end
+
+if $ARGS[0] = 'roommec':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$locM_arg = 'roommec'
+	$locM = 'mod_iwhore_innapt'
+	$loc_arg = 'roommec'
+	$loc = 'mod_iwhore_innapt'
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Mechislav''s bedroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/mecbed.jpg"></center>'
+	'"Never seen something like that... . I can use a yakuzi!"'
+	
+	if GuardianLoc[hour] = 1:'<a href="exec:gs ''mod_iwhore_innapt'', ''guardian_room''">Mechislav</a> lays on the bed...'
+
+	act 'Mechislav''s bath': gt 'mod_iwhore_innapt','mecbath'
+	act 'Have a bath (0:30)':
+		cla
+		*clr
+		gs 'stat'
+		minut += 30
+		pcs_sweat = 7 + rand(0,4)
+		pcs_mood += 20
+		pcs_skin += 1
+		gs 'mod_iwhore_dincollect' , 'showerdin'
+		if frost > 0:frost = 0
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash4.jpg"></center>'
+		*nl
+		'While the bathtub fills up you get undressed and then dip a toe into the water. It''s just the right temperature so you climb in and let yourself sink into the warm water.'
+		*nl
+		*nl
+
+		if btwarn > 0:
+			if btwarn = 1: $weightwarn = 'losing'
+			if btwarn = 2: $weightwarn = 'gaining'
+			'<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
+			killvar '$weightwarn' & btwarn = 0
+		end
+		if normbuffpick = 1:
+			*nl
+			'<b>You notice that your muscles are starting to show through your skin.</b>'
+			act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
+		end
+		act '"Wash" your pussy':
+			cla
+			*clr
+			minut += 10
+
+			'<center><video src="images/shared/home/bathroom/wash7.mp4"></center>'
+			*nl
+			'You turn on the faucet, lift your legs and scoot your ass over to align your pussy with the jet of warm water. It feels really good and soon a warmth begins to grow in your abdomen.'
+
+			if pcs_inhib < 30:inhib_exp += rand(1,3)
+			pcs_mood += 15
+			pcs_willpwr += 15
+			$orgasm_or = 'yes'
+			gs 'arousal', 'masturbate', 10
+			gs 'arousal', 'end'
+
+			gs 'mod_iwhore_dincollect' , 'dryOff'
+		end
+
+		gs 'mod_iwhore_dincollect' , 'dryOff'
+		gs 'mod_iwhore_dincollect' , 'brit'
+	end
+	act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+	
+end
+
+if $ARGS[0] = 'mecbath':
+	CLOSE ALL
+	$loc_arg = 'mecbath'
+	$loc = 'mod_iwhore_innapt'
+	$locM_arg = 'mecbath'
+	$locM = 'mod_iwhore_innapt'
+	$location_type = 'bathroom'
+	cla & *clr
+	gs 'stat'
+	'<center><b><font color = maroon>Bathroom</font></b></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/mecbath.jpg"></center>'
+	'The bath is small but fully functional.'
+	if stanok > 0:'Your razor will last for <b><<stanok>></b> more shavings. <a href="exec:gs ''din_van'', ''shave_options''">Shave Options</a>'
+
+	!WD: heal chafe
+	if mosolmaz>0:'On a shelf is a tube of ointment for chafing, which will be enough for <b><<mosolmaz>></b> applications.'
+
+	if tampon = 0 and sanpad = 0:
+		'<font color="red">You have no tampons left.</font>'
+	elseif tampon = 1:
+		'<font color="red">You have only <<tampon>> tampon left.</font>'
+	else
+		'You have <<tampon>> tampons.'
+	end
+	if sanpad = 0 and tampon = 0:
+		'<font color="red">You have no pads left.</font>'
+	elseif sanpad = 1:
+		'<font color="red">You have only <<sanpad>> pads left.</font>'
+	else
+		'You have <<sanpad>> pads.'
+	end
+	'<a href="exec:msg ''Your body fat is = (<<salo>>)''">Check weight on the scales</a>'
+
+
+	if painkiller > 0:
+		$pluralS = 's'
+		if painkiller = 1:$pluralS = ''
+		'You have <b><<painkiller>></b> painkiller<<$pluralS>>.'
+		if pain['total'] > 0 and pain['killer'] = 0:
+			act 'Take a painkiller':
+				cla
+				pain['killer'] += 1
+				painkiller -= 1
+				pcs_hydra += 20
+				gs 'stat'
+
+				*nl
+				'You take a painkiller and gulp it down with a glass of water.'
+
+				act 'Finish':gt $loc, $loc_arg
+			end
+		end
+	end
+
+	if bcream_have > 0:
+		'<a href="exec:dynamic $use_bcream & gt $loc, $loc_arg">Apply breast cream.</a> Uses left: <<bcream_have>>.'
+	end
+	
+	if pirsA + pirsB + pirsC + pirsD + pirsE + pirsF + pirsN + pirsG + pirsGL > 0:'<a href="exec:gs ''mod_iwhore_dincollect'' , ''pirManage''">Manage Piercings.</a>'
+
+	if fillimplant = 1 and siliconeBag >= 1:'<a href="exec:cls & siliconeBag -= 1 & silicone += 10 & gt $loc, $loc_arg">Inject silicone into breast implants.</a>'
+	if fillimplant = 1 and silicone >= 20:'<a href="exec:cls & silicone -= 10 & gt $loc, $loc_arg">Drain silicone from breast implants.</a>'
+
+	
+	act 'Exit': gt 'mod_iwhore_innapt','roommec'
+	act 'Take a shower (0:15)':
+		cla
+		*clr
+		minut += 15
+		if shampoo > 0: 
+			shampoo -= 1
+		else
+			'You can use Inna''s shampoo.'
+		end
+		gs 'mod_iwhore_dincollect' , 'showerdin'
+		if frost > 0:frost = 0
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
+		*nl
+		'You undress and turn on the water in the shower. When it hits the right temperature you enter the shower and let the warm water rain down on you. You carefully soap yourself trying not to miss any spots and then rinse off.'
+		*nl
+		if hypnoAddict > 0:'You have no reason to, but you carefully avoid cleaning out your pussy and ass.'
+		if btwarn > 0:
+			if btwarn = 1: $weightwarn = 'losing'
+			if btwarn = 2: $weightwarn = 'gaining'
+			'<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
+			killvar '$weightwarn' & btwarn = 0
+		end
+		if normbuffpick = 1:
+			*nl
+			'<b>You notice that your muscles are starting to show through your skin.</b>'
+			act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
+		end
+
+		if pcs_horny >= 40:
+			act 'Use the shower head on your pussy':
+				
+				*clr & cla
+				'<center><video src="images/shared/home/bathroom/wash2.mp4"></center>'
+				*nl
+				'You place the shower head onto your pussy and a powerful jet of warm water begins to caress you.'
+
+				if pcs_inhib < 30:inhib_exp += rand(1,3)
+				pcs_mood += 15
+				pcs_willpwr += 15
+				$orgasm_or = 'yes'
+				gs 'arousal', 'masturbate', 10
+				gs 'arousal', 'end'
+
+				if hypnoAddict ! 0:
+					'You unconsciously avoid spraying water into your vagina.'
+				else
+					cumspclnt = 8
+					gs 'cum_cleanup'
+				end
+
+				gs 'mod_iwhore_dincollect' , 'dryOff'
+			end
+		end
+		gs 'mod_iwhore_dincollect' , 'dryOff'
+		gs 'mod_iwhore_dincollect' , 'brit'
+	end	
+
+	
+
+
+	gs 'mod_iwhore_dincollect' , 'bteeth'
+	gs 'mod_iwhore_dincollect' , 'tampon'
+	gs 'mod_iwhore_dincollect' , 'enema'
+	gs 'din_van', 'prvt_pee'
+	gs 'mod_iwhore_dincollect' , 'basin'
+	gs 'mod_iwhore_dincollect' , 'brit'
+	gs 'mod_iwhore_dincollect' , 'removepan'
+	gs 'mod_iwhore_dincollect' , 'wearpan'
+
+	if pregtest > 0 and (abortionbirthdate = 0 or daystart - abortionbirthdate > 100):
+		act 'Do a pregnancy test':
+			cla
+			pregtest -= 1
+			gs 'stat'
+			if pregchem > 120:
+				knowpreg = 1
+				thinkpreg = 1
+				'The test shows the two strips: you''re pregnant!'
+			else
+				knowpreg = 0
+				'The test shows one band: you''re not pregnant.'
+			end
+			act 'Finish':gt 'rolanbath', 'start'
+		end
+	end
+
+	if $clothingworntype = 'nude':
+		act 'Wear clothes (0:05)':
+			*clr & cla
+			minut = 5
+			'<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
+			'You get dressed'
+			gs 'clothing', 'wear_last_worn'
+			gs 'stat'
+			act 'Return': gt $loc, $loc_arg
+		end
+	else
+		act 'Remove clothes (0:05)':
+			*clr & cla
+			minut = 5
+			'<center><video autoplay loop src="images/shared/Accessories/computer/webcam/undress1.mp4"></video></center>'
+			'You remove your clothing'
+			gs 'clothing', 'strip'
+			gs 'stat'
+			act 'Return': gt $loc, $loc_arg
+		end
+	end
+	
+	if mosolmaz > 0 and mosol > 0 and mosal_time ! (daystart * 100) + hour:
+		act 'Rub ointment onto your pussy (0:05)':
+			cla
+			mosal_time = (daystart * 100) + hour
+			minut += 5
+			mosolmaz -= 1
+			mosol -= 5
+			'You take a tube of cream and rub it onto your itchy vulva.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+	
+	if pregtest > 0 and (abortionbirthdate = 0 or daystart - abortionbirthdate > 100):
+		act 'Do a pregnancy test (0:05)':
+			cla
+			minut += 5
+			pregtest -= 1
+			gs 'stat'
+			 if pregchem > 120 and bimbolevel < 3 and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				'As you look at the test in your hand, you are?'
+				act 'Horrified':gt 'din_van', 'HorrifiedReact1'
+				act 'Concerned':gt 'din_van', 'ConcernedReact1'
+				act 'Excited':gt 'din_van', 'ExcitedReact1'
+			elseif pregchem > 120 and bimbolevel = 3 and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				'As you look at the test in your hand, you are?'
+				act 'Excited':gt 'din_van', 'ExcitedReact1'
+				act 'Aroused':gt 'din_van', 'ArousedReact1'
+			elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				gt 'din_van', 'WifeReact1'
+			elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid > 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				gt 'din_van', 'WifeReact2'
+			elseif pcs_pregtalk = 1:
+				'The test showed two strips. You are pregnant.'
+			else
+				knowpreg = 0
+				'The test showed one band. Not pregnant.'
+			end
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	!!breast pump is now in the menu, not on the screen
+	if breastpump > 0 and bp_unbox >= 1:
+		act 'Use breast pump':
+			gt 'lact_lib', 'bp_milking'
+		end
+	elseif breastpump > 0 and bp_unbox <= 0:
+		'<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
+	end
+	
+end
+
+if $ARGS[0] = 'roomdoc':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Doc''s bedroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/docbed.jpg"></center>'
+	'That''s a simple bedroom with a working desk.'
+	if GuardianLoc[hour] = 4 and week < 5:
+		'<a href="exec:gs ''mod_iwhore_innapt'', ''guardian_room''">Doc</a> is here...'
+	else
+		''
+	end
+	act 'Office': gt 'mod_iwhore_innapt','docoff'
+	act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+end
+
+if $ARGS[0] = 'docoff':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+!	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Doc''s office</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/docooffice.jpg"></center>'
+	'It''s standard office'
+	if GuardianLoc[hour] = 4 and week > 5:
+		'<a href="exec:gs ''mod_iwhore_innapt'', ''guardian_room''">Doc</a> is doing something with papers...'
+	else
+		''
+	end
+	act 'Room': gt 'mod_iwhore_innapt','roomdoc'
+end
+
+if $ARGS[0] = 'roomgav':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Gavriil''s bedroom</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/gavbed.jpg"></center>'
+	'...'
+	if GuardianLoc[hour] = 2:'<a href="exec:gs ''mod_iwhore_innapt'', ''guardian_room''">Gavriil</a> is reading a book while he''s lifting some weight...'
+
+	act 'Gavriil''s gym': gt 'mod_iwhore_innapt','gavgym'
+	act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+end
+
+if $ARGS[0] = 'gavgym':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Gavriil''s gym</font></h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/gavgym.jpg"></center>'
+	'...'
+	act 'Return Gavriil''s room': gt 'mod_iwhore_innapt','roomgav'
+end
+
+if $ARGS[0] = 'guestroom':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Guest Room</font></h4></center>'
+	if GuardianLoc[hour] = 3:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/yanabedr1.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/yanabedr0.jpg"></center>'
+	end
+!	'This is the guest room. Here stay Yana when she need it.'
+	'That seems a guest room...'
+	if GuardianLoc[hour] = 3:'<a href="exec:gs ''mod_iwhore_innapt'', ''guardian_room''">Yana</a> is here...'
+
+	act 'Room': gt 'mod_iwhore_innapt','storageroom'
+	act 'Leave the room': gt 'mod_iwhore_innapt','hallway'
+end
+
+if $ARGS[0] = 'storageroom':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$location_type = 'private'
+	$locclass = 'bedr'
+	gs 'stat'
+	'<center><h4><font color="maroon">Storage Room</font></h4></center>'
+	if Guardian_cleaner = 0:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/istorageroom.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/storageroom.jpg"></center>'
+	end
+	'This is the Storage room. Right next to Yana''s door.'
+	act 'Leave the room': gt 'mod_iwhore_innapt','guestroom'
+end
+
+if $ARGS[0] = 'livingroom':
+	CLOSE ALL
+
+	*clr & cla
+	$locM_arg = 'livingroom'
+	$locM = 'mod_iwhore_innapt'
+	$loc_arg = 'livingroom'
+	$loc = 'mod_iwhore_innapt'
+	minut += 1
+	$locclass = 'livingr'
+	gs 'stat'
+	'<center><b><font color = maroon>Living Room</font></b></center>'
+	
+	if Guardian_cleaner = 0:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/iliving.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/living.jpg"></center>'
+	end
+	
+	if inna_varvara_pimp = 11:
+		'The living room... . <a href="exec:gt ''mod_iwhore_begin'', ''pimped2''">Inna</a> lays on the sofa...'
+	else
+		'The living room...'
+	end
+
+	act 'Kitchen': gt 'mod_iwhore_innapt', 'kitchen'
+	act 'Bathroom': gt 'mod_iwhore_innapt', 'housebath'
+	act 'Hallway': gt 'mod_iwhore_innapt','hallway'
+end
+
+if $ARGS[0] = 'kitchen':
+	CLOSE ALL
+	cla
+	*clr
+	minut += 1
+	$locclass = 'kitr'
+	gs 'stat'
+    '<center><b><font color = maroon>Kitchen</font></b></center>'
+    if Guardian_cleaner = 0:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/ikitchen.jpg"></center>'
+        '"The kitchen ...is a mess..."'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/kitchen.jpg"></center>'
+        '"A fully functional cleaned kitchen...."'
+	end
+
+!	act 'Look in the fridge': gt 'mod_iwhore_innapt', 'holodil'
+	act 'Leave the room': gt 'mod_iwhore_innapt','entry'
+	act 'Drink water (0:05)':
+		cla
+		minut += 5
+		if water >= 80:
+			'You don''t need any more water.'
+		else
+			water += 80
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_breath = 0
+			'You gladly drink a glass of water.'
+		end
+		act 'Get up from the table':gt 'mod_iwhore_innapt','kitchen'
+	end
+
+end
+
+if $ARGS[0] = 'sealedroom':
+	CLOSE ALL
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	'<center><b><font color = maroon>Sealed room</font></b></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/hallway.jpg"></center>'
+    'This room is closed.'
+
+    act 'Nothing you can do.': gt 'mod_iwhore_innapt','hallway'
+end
+
+
+if $ARGS[0] = 'surveillance':
+	CLOSE ALL
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	'<center><b><font color = maroon>Sealed room</font></b></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/surveillance.jpg"></center>'
+    'A lot of tv screen send video of Pavlovsk''s street...'
+	act 'Leave': gt 'mod_iwhore_innapt','hallway'    
+end
+
+if $ARGS[0] = 'housebath':
+	CLOSE ALL
+	$loc_arg = 'housebath'
+	$loc = 'mod_iwhore_innapt'
+	$locM_arg = 'housebath'
+	$locM = 'mod_iwhore_innapt'
+	$location_type = 'bathroom'
+	cla & *clr
+	gs 'stat'
+
+	'<center><b><font color = maroon>Bathroom</font></b></center>'
+	if Guardian_cleaner = 0:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/bathdildo.jpg"></center>'
+        '"The bath...and...uhmmm...dildos almost everywhere... ."<br>The dildo in the bathtub seems to be recently used... .'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/resident/apartment/aptinna/bath.jpg"></center>'
+        'The bath is stunning.'
+	end
+	if stanok > 0:'Your razor will last for <b><<stanok>></b> more shavings. <a href="exec:gs ''din_van'', ''shave_options''">Shave Options</a>'
+
+	!WD: heal chafe
+	if mosolmaz>0:'On a shelf is a tube of ointment for chafing, which will be enough for <b><<mosolmaz>></b> applications.'
+
+	if tampon = 0 and sanpad = 0:
+		'<font color="red">You have no tampons left.</font>'
+	elseif tampon = 1:
+		'<font color="red">You have only <<tampon>> tampon left.</font>'
+	else
+		'You have <<tampon>> tampons.'
+	end
+	if sanpad = 0 and tampon = 0:
+		'<font color="red">You have no pads left.</font>'
+	elseif sanpad = 1:
+		'<font color="red">You have only <<sanpad>> pads left.</font>'
+	else
+		'You have <<sanpad>> pads.'
+	end
+	'<a href="exec:msg ''Your body fat is = (<<salo>>)''">Check weight on the scales</a>'
+
+
+	if painkiller > 0:
+		$pluralS = 's'
+		if painkiller = 1:$pluralS = ''
+		'You have <b><<painkiller>></b> painkiller<<$pluralS>>.'
+		if pain['total'] > 0 and pain['killer'] = 0:
+			act 'Take a painkiller':
+				cla
+				pain['killer'] += 1
+				painkiller -= 1
+				pcs_hydra += 20
+				gs 'stat'
+
+				*nl
+				'You take a painkiller and gulp it down with a glass of water.'
+
+				act 'Finish':gt $loc, $loc_arg
+			end
+		end
+	end
+
+	if bcream_have > 0:
+		'<a href="exec:dynamic $use_bcream & gt $loc, $loc_arg">Apply breast cream.</a> Uses left: <<bcream_have>>.'
+	end
+	
+	if pirsA + pirsB + pirsC + pirsD + pirsE + pirsF + pirsN + pirsG + pirsGL > 0:'<a href="exec:gs ''mod_iwhore_dincollect'' , ''pirManage''">Manage Piercings.</a>'
+
+	if fillimplant = 1 and siliconeBag >= 1:'<a href="exec:cls & siliconeBag -= 1 & silicone += 10 & gt $loc, $loc_arg">Inject silicone into breast implants.</a>'
+	if fillimplant = 1 and silicone >= 20:'<a href="exec:cls & silicone -= 10 & gt $loc, $loc_arg">Drain silicone from breast implants.</a>'
+
+	
+	act 'Return to the hallway': gt 'mod_iwhore_innapt','hallway'
+	act 'Take a shower (0:15)':
+		cla
+		*clr
+		minut += 15
+		if shampoo > 0: 
+			shampoo -= 1
+		else
+			'You can use Inna''s shampoo.'
+		end
+		gs 'mod_iwhore_dincollect' , 'showerdin'
+		if frost > 0:frost = 0
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
+		*nl
+		'You undress and turn on the water in the shower. When it hits the right temperature you enter the shower and let the warm water rain down on you. You carefully soap yourself trying not to miss any spots and then rinse off.'
+		*nl
+		if hypnoAddict > 0:'You have no reason to, but you carefully avoid cleaning out your pussy and ass.'
+		if btwarn > 0:
+			if btwarn = 1: $weightwarn = 'losing'
+			if btwarn = 2: $weightwarn = 'gaining'
+			'<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
+			killvar '$weightwarn' & btwarn = 0
+		end
+		if normbuffpick = 1:
+			*nl
+			'<b>You notice that your muscles are starting to show through your skin.</b>'
+			act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
+		end
+
+		if pcs_horny >= 40:
+			act 'Use the shower head on your pussy':
+				
+				*clr & cla
+				'<center><video src="images/shared/home/bathroom/wash2.mp4"></center>'
+				*nl
+				'You place the shower head onto your pussy and a powerful jet of warm water begins to caress you.'
+
+				if pcs_inhib < 30:inhib_exp += rand(1,3)
+				pcs_mood += 15
+				pcs_willpwr += 15
+				$orgasm_or = 'yes'
+				gs 'arousal', 'masturbate', 10
+				gs 'arousal', 'end'
+
+				if hypnoAddict ! 0:
+					'You unconsciously avoid spraying water into your vagina.'
+				else
+					cumspclnt = 8
+					gs 'cum_cleanup'
+				end
+
+				gs 'mod_iwhore_dincollect' , 'dryOff'
+			end
+		end
+		gs 'mod_iwhore_dincollect' , 'dryOff'
+		gs 'mod_iwhore_dincollect' , 'brit'
+	end	
+
+	act 'Have a bath (0:30)':
+		cla
+		*clr
+		gs 'stat'
+		minut += 30
+		pcs_sweat = 7 + rand(0,4)
+		pcs_mood += 20
+		pcs_skin += 1
+		gs 'mod_iwhore_dincollect' , 'showerdin'
+		if frost > 0:frost = 0
+		'<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash4.jpg"></center>'
+		*nl
+		'While the bathtub fills up you get undressed and then dip a toe into the water. It''s just the right temperature so you climb in and let yourself sink into the warm water.'
+		*nl
+		*nl
+
+		if btwarn > 0:
+			if btwarn = 1: $weightwarn = 'losing'
+			if btwarn = 2: $weightwarn = 'gaining'
+			'<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
+			killvar '$weightwarn' & btwarn = 0
+		end
+		if normbuffpick = 1:
+			*nl
+			'<b>You notice that your muscles are starting to show through your skin.</b>'
+			act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
+		end
+		act '"Wash" your pussy':
+			cla
+			*clr
+			minut += 10
+
+			'<center><video src="images/shared/home/bathroom/wash7.mp4"></center>'
+			*nl
+			'You turn on the faucet, lift your legs and scoot your ass over to align your pussy with the jet of warm water. It feels really good and soon a warmth begins to grow in your abdomen.'
+
+			if pcs_inhib < 30:inhib_exp += rand(1,3)
+			pcs_mood += 15
+			pcs_willpwr += 15
+			$orgasm_or = 'yes'
+			gs 'arousal', 'masturbate', 10
+			gs 'arousal', 'end'
+
+			gs 'mod_iwhore_dincollect' , 'dryOff'
+		end
+
+		gs 'mod_iwhore_dincollect' , 'dryOff'
+		gs 'mod_iwhore_dincollect' , 'brit'
+	end
+
+
+	gs 'mod_iwhore_dincollect' , 'bteeth'
+	gs 'mod_iwhore_dincollect' , 'tampon'
+	gs 'mod_iwhore_dincollect' , 'enema'
+	gs 'din_van', 'prvt_pee'
+	gs 'mod_iwhore_dincollect' , 'basin'
+	gs 'mod_iwhore_dincollect' , 'brit'
+	gs 'mod_iwhore_dincollect' , 'removepan'
+	gs 'mod_iwhore_dincollect' , 'wearpan'
+
+	if pregtest > 0 and (abortionbirthdate = 0 or daystart - abortionbirthdate > 100):
+		act 'Do a pregnancy test':
+			cla
+			pregtest -= 1
+			gs 'stat'
+			if pregchem > 120:
+				knowpreg = 1
+				thinkpreg = 1
+				'The test shows the two strips: you''re pregnant!'
+			else
+				knowpreg = 0
+				'The test shows one band: you''re not pregnant.'
+			end
+			act 'Finish':gt 'rolanbath', 'start'
+		end
+	end
+
+	if $clothingworntype = 'nude':
+		act 'Wear clothes (0:05)':
+			*clr & cla
+			minut = 5
+			'<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
+			'You get dressed'
+			gs 'clothing', 'wear_last_worn'
+			gs 'stat'
+			act 'Return': gt $loc, $loc_arg
+		end
+	else
+		act 'Remove clothes (0:05)':
+			*clr & cla
+			minut = 5
+			'<center><video autoplay loop src="images/shared/Accessories/computer/webcam/undress1.mp4"></video></center>'
+			'You remove your clothing'
+			gs 'clothing', 'strip'
+			gs 'stat'
+			act 'Return': gt $loc, $loc_arg
+		end
+	end
+	
+	if mosolmaz > 0 and mosol > 0 and mosal_time ! (daystart * 100) + hour:
+		act 'Rub ointment onto your pussy (0:05)':
+			cla
+			mosal_time = (daystart * 100) + hour
+			minut += 5
+			mosolmaz -= 1
+			mosol -= 5
+			'You take a tube of cream and rub it onto your itchy vulva.'
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+	
+	if pregtest > 0 and (abortionbirthdate = 0 or daystart - abortionbirthdate > 100):
+		act 'Do a pregnancy test (0:05)':
+			cla
+			minut += 5
+			pregtest -= 1
+			gs 'stat'
+			 if pregchem > 120 and bimbolevel < 3 and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				'As you look at the test in your hand, you are?'
+				act 'Horrified':gt 'din_van', 'HorrifiedReact1'
+				act 'Concerned':gt 'din_van', 'ConcernedReact1'
+				act 'Excited':gt 'din_van', 'ExcitedReact1'
+			elseif pregchem > 120 and bimbolevel = 3 and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				'As you look at the test in your hand, you are?'
+				act 'Excited':gt 'din_van', 'ExcitedReact1'
+				act 'Aroused':gt 'din_van', 'ArousedReact1'
+			elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid = 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				gt 'din_van', 'WifeReact1'
+			elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid > 0 and pcs_pregtalk = 0:
+				knowpreg = 1
+				thinkpreg = 1
+				gt 'din_van', 'WifeReact2'
+			elseif pcs_pregtalk = 1:
+				'The test showed two strips. You are pregnant.'
+			else
+				knowpreg = 0
+				'The test showed one band. Not pregnant.'
+			end
+
+			act 'Finish':gt $loc, $loc_arg
+		end
+	end
+
+	!!breast pump is now in the menu, not on the screen
+	if breastpump > 0 and bp_unbox >= 1:
+		act 'Use breast pump':
+			gt 'lact_lib', 'bp_milking'
+		end
+	elseif breastpump > 0 and bp_unbox <= 0:
+		'<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
+	end
+	
+end
+
+
+!iif(proseventrand <= 8, 'blow job', iif(proseventrand <= 14, 'sex', 'anal'))
+
+!0inna
+!1mec
+!2gav
+!3yana
+!4doc
+if $ARGS[0] = 'guardian_route':
+	if GuardianLocSet ! DayStart:
+		GuardianLoc[0] = iif(week < 6, 4, 3)
+		GuardianLoc[1] = iif(week < 6, 4, 3)
+		GuardianLoc[2] = iif(week < 6, 4, 3)
+		GuardianLoc[3] = iif(week < 6, 4, 3)
+		GuardianLoc[4] = iif(week < 6, 4, 3)
+		GuardianLoc[5] = iif(week < 6, 4, 3)
+		GuardianLoc[6] = iif(week < 6, 4, 3)
+		
+		GuardianLoc[7] = 0
+		GuardianLoc[8] = 0
+		GuardianLoc[9] = 1
+		GuardianLoc[10] = 1
+		GuardianLoc[11] = 2
+		GuardianLoc[12] = 2
+		if week = 1:Guardian_number = rand(0,3)
+		if week = 2:Guardian_number = rand(0,3)
+		if week = 3:Guardian_number = rand(0,3)
+		if week = 4:Guardian_number = rand(0,3)
+		if week = 5:Guardian_number = rand(0,3)
+		if week = 6:Guardian_number = 3
+		if week = 7:Guardian_number = 3
+
+		GuardianLoc[13] = Guardian_number
+		GuardianLoc[14] = Guardian_number
+		GuardianLoc[15] = Guardian_number
+		GuardianLoc[16] = Guardian_number
+		GuardianLoc[17] = Guardian_number
+		GuardianLoc[18] = Guardian_number
+		
+		GuardianLoc[19] = iif(week < 6, 4, 3)	
+		GuardianLoc[20] = iif(week < 6, 4, 3)
+		GuardianLoc[21] = iif(week < 6, 4, 3)
+		GuardianLoc[22] = iif(week < 6, 4, 3)
+		GuardianLoc[23] = iif(week < 6, 4, 3)
+		GuardianLocSet = DayStart
+	end
+end
+
+if $ARGS[0] = 'guardian_maid':
+	if GuardianCleanSet < DayStart:
+		if week = 1:Guardian_cleaner = rand(0,3)
+		if week = 2:Guardian_cleaner = rand(0,3)
+		if week = 3:Guardian_cleaner = rand(0,3)
+		if week = 4:Guardian_cleaner = rand(0,3)
+		if week = 5:Guardian_cleaner = rand(0,3)
+		if week = 6:Guardian_cleaner = rand(0,4)
+		if week = 7:Guardian_cleaner = rand(0,4)
+		GuardianCleanSet = DayStart + 7
+	end
+end
+
+if $ARGS[0] = 'guardian_room':
+!	if Krestovoz_pimp_day < daystart:'You can ask to <a href="exec:gt ''mod_iwhore_begin'', ''guardian_room''">Inna</a> the protection... .'
+	if GuardianLoc[hour] = 0:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0b.jpg"></center>'
+		'Inna: "..."'
+		act 'Chat':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/Krestovoz/bed0b.jpg"></center>'
+			'Inna: "Uh? What now?"'
+			act '"Ok ok message received... sorry to bother you."':gt 'mod_iwhore_innapt','guardian_room'
+		end
+		act '"Nothing, sorry to bother you."': gt 'mod_iwhore_innapt','roomin'
+	elseif GuardianLoc[hour] = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/renew0.jpg"></center>'
+		'"Hi Mechislav..."<br>Mechislav: "Hi <<$pcs_nickname>>"'
+		act 'Chat':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/mieszko/door.jpg"></center>'
+			'You have a little chat with Mechislav.'
+			act 'Leave':gt 'mod_iwhore_innapt','guardian_room'
+		end
+		act '"Nothing, sorry to bother you."': gt 'mod_iwhore_innapt','roommec'
+	elseif GuardianLoc[hour] = 2:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav0.jpg"></center>'
+		'"Hi Gavriil...do i bother you?"<br>Gavriil: "Hi <<$pcs_nickname>>...don''t worry...my ears are free."'
+		act 'Chat':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/gavriil/gav2.jpg"></center>'
+			'You have a little chat with Gavriil'
+			act 'Leave':gt 'mod_iwhore_innapt','guardian_room'
+		end
+		act '"Nothing, sorry to bother you."': gt 'mod_iwhore_innapt','roomgav'
+	elseif GuardianLoc[hour] = 3:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/renew1.jpg"></center>'
+		'"...Yana..."<br>Yana: "...<<$pcs_nickname>>..."'
+		act 'Chat':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/yana/renew1.jpg"></center>'
+			'You have a little chat with Yana'
+			act 'Leave':gt 'mod_iwhore_innapt','guardian_room'
+		end
+		act '"Nothing, sorry to bother you."': gt 'mod_iwhore_innapt','guestroom'	
+	elseif GuardianLoc[hour] = 4:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/doc.jpg"></center>'
+		'"Hi ...uhmmm...Doc?..."<br>Doc: "Uh? Oh! Hi <<$pcs_nickname>>..."'
+		act 'Chat':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/characters/pavlovsk/resident/doc/doc.jpg"></center>'
+			'You have a little chat with Deriagin.'
+			act 'Leave':gt 'mod_iwhore_innapt','guardian_room'
+		end
+		act '"Nothing, sorry to bother you."': gt 'mod_iwhore_innapt','roomdoc'
+	else
+	
+		''
+	end
+	if inna_varvara_pimp >= 15 and (Krestovoz_pimp_protection ! 1 or Krestovoz_pimp_day < daystart):
+!	if inna_varvara_pimp >= 15 and Krestovoz_pimp_protection ! 1:
+		if inna_varvara_pimp = 15:
+			act 'Ask about the tryout week.': gs 'mod_iwhore_dincollect','renewal'
+		else
+			if Krestovoz_pimp_day < daystart:
+				act 'Ask for a renewal': gs 'mod_iwhore_dincollect','renewal'
+			end
+		end
+	else
+		''
+	end
+	
+	
+end
+
+if $ARGS[0] = 'renewal':
+
+end
+!    gs 'mod_iwhore_innapt','guardian_route'
+--- mod_iwhore_innapt ---------------------------------

+ 1357 - 0
locations/mod_iwhore_jenna.qsrc

@@ -0,0 +1,1357 @@
+# mod_iwhore_jenna
+!gt 'mod_iwhore_jenna', 'beast'
+!gt 'mod_iwhore_jenna', 'calltolife'
+
+if $ARGS[0] = 'skip_it':
+	*clr & cla
+	minut += 2	
+	gs 'stat'	
+	'<b><font size= 6><font color=red>"WARNING"</font></font></b>'
+	*nl & *nl & *nl & *nl 
+	'Dear player, this is made to allow you to skip the main update of the mod... anyway this is not the only things updated... . You have different reason to do that: you played it before, or simply you want to go whoring in peace. Anyway i give you another reason: consider this work a really early stage work; bugs could be present of course, but also i''ve worked on things that could make a mess of your save game. Make a save here; if something goes wrong you can always return and skip this part...anyway you should be safe from play it to see what happens and once played it, if something goes wrong, you can return to that save and play smooth. <br>I should warn you about something else anyway: some content can be strong... . Also it''s highly suggested to use headphones and to play with the following scheme: <br>put your "additional description" to the left side of the screen (the status bar); <br>object panel to the top right and <br>action panel to the bottom right. <br>Close the preview windows if you have it open (do not close it from the main toolbar of your quest soft player...just click the "x" to close it; if it''s locked in the toolbar go to: the toolbar of your QSP ----setting---->show/hide--->and click caption). You can always return to your favourite game settings. The mod, in this branch, it''s designed to be played that way...you can try as you wish anyway it''s not a must. That''s said you have to take care of some customization if you don''t want play this branch right now and continue as usual (at least for the most...)...or...you can play it. '
+	act 'Yes thanks, let me skip it. (...And costomization.)':
+		*clr & cla
+		rapewhore_count += 5
+		gs 'stat'
+		'Here we start, few questions and you have done. If you find someone on your road and you are late...do you stop to talk or not? (I''m not asking about whoring...and no...i''m not referring to your periods...)'
+		act 'Yes':
+			*clr & cla
+			iskra_war = 1
+			gs 'stat'
+			'Do you return what is lent to you?'
+			act 'Yes':
+				*clr & cla
+				iskra_war = 2
+				gs 'stat'
+				'....'
+				act '...': gt 'mod_iwhore_jenna', 'skip_it1'
+			end
+			act 'No':
+				*clr & cla
+				gs 'stat'
+				'...'
+				act '...': gt 'mod_iwhore_jenna', 'skip_it1'
+			end
+		end
+		act 'No':
+			*clr & cla
+			gs 'stat'
+			'...'
+			act '...': gt 'mod_iwhore_jenna', 'skip_it1'
+		end
+	end
+	act 'No thanks, let me play the game and face the consequences of my actions.':
+		*clr & cla
+		gs 'stat'
+		'Good luck.'
+		act '...': gt 'mod_iwhore_jenna', 'beast'
+	end
+end
+
+if $ARGS[0] = 'skip_it1':
+	*clr & cla
+	minut += 2	
+	gs 'stat'	
+	if preg = 1:
+		*clr & cla
+		gs 'stat'
+		'Do you have care of your own child?'
+		act 'Yes':
+			*clr & cla
+			gs 'stat'
+			gs 'mod_iwhore_therapy', 'anticheater'
+			'Short background summary: you passed a difficult time... . Dr. Pavlov in Pavlovsk should be able to help you... .<br><br><br><br><br>Now you are ready to return to the main game as nothing happened...maybe... . Have a nice play.'
+			act '...': gt $loc, $loc_arg	
+		end
+		act 'No':
+			*clr & cla
+			was_awhore_son = 1
+			gs 'stat'
+			gs 'mod_iwhore_therapy', 'anticheater'
+			'Short background summary: you passed a difficult time... . Dr. Pavlov in Pavlovsk should be able to help you... .<br><br><br><br><br>Now you are ready to return to the main game as nothing happened...maybe... . Have a nice play.'
+			act '...': gt $loc, $loc_arg	
+		end
+	else
+		*clr & cla
+		gs 'stat'
+		gs 'mod_iwhore_therapy', 'anticheater'
+		'Short background summary: you passed a difficult time... . Dr. Pavlov in Pavlovsk should be able to help you... .<br><br><br><br><br>Now you are ready to return to the main game as nothing happened...maybe... . Have a nice play.'
+		act '...': gt $loc, $loc_arg	
+	end
+end
+
+if $ARGS[0] = 'beast':
+	*clr & cla
+	minut += 2
+	rapewhore_count += 5
+	gs 'stat'	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/Jenna.jpg"></center>'
+	'A man approach next to you..."You!" '
+	act '..."Uh? What do you want?"....':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast0.mp4"></video></center>'
+		'"Give me all your money. Move."'
+		act '..."Are you crazy?"':
+			cls
+			*clr & cla
+			minut += 2
+			music_loop = 0 & close all
+			pcs_sleep = pcs_sleep - pcs_sleep / 3
+			pcs_stam = pcs_stam - pcs_stam / 3
+			pcs_willpwr = pcs_willpwr - pcs_willpwr / 2
+			gs 'pain', 9, 'head', 'hit'
+			gs 'pain', 9, 'neck', 'hit'
+			gs 'pain', 9, 'ears', 'hit'
+			gs 'pain', 9, 'eyebrows', 'hit'
+			gs 'pain', 9, 'eyes', 'hit'
+			gs 'pain', 9, 'mouth', 'hit'
+			pcs_teeth = 1
+			gs 'mod_iwhore_realstat' , 'day'
+			cls
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass0.mp4"></video></center>'
+			gs 'mod_iwhore_realstat' , 'status'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast1.mp4"></video></center>'
+			'Beast. There are no other words to describe the beast. Without letting you the chance to defend yourself the man give you a series of punch you were not able to block...you fall...and you were not able to move...'
+			act '...':
+				cls
+				*clr & cla
+				minut += 2
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast2.mp4"></video></center>'
+				'A woman seing the scene try to interfere <br>"What the fuck are you doing?"<br>"What the fuck do you want? Mind your business...she is good...see?" <br>The beast rise your unconscious body...you were not able to stand on your feet...'
+				act '...':
+					*clr & cla
+					minut += 2
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast3.mp4"></video></center>'
+					'...."Are you insane you almost killed her!!!"<br>"Do you want some too? "'
+					act '...':
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast4.mp4"></video></center>'
+						'...."That''s it i''m going to call the police!!!"<br>"Come here bitch! Do not dare....!" <br>The woman try to go away to seek for help...'
+						act '...':
+							*clr & cla
+							minut += 5
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast5.mp4"></video></center>'
+							'....But the man was faster than her and took away the phone from her. <br>"Go fuck yourself slut, you are lucky i''m on my business..."'
+							act '...':
+								*clr & cla
+								minut += 5
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/beast6.mp4"></video></center>'
+								'...."Move!"...you are shocked, and not able to react anymore.... . The man drag you by force in his car...'
+								act 'In the meantime....': gt 'mod_iwhore_jenna', 'help'
+							end
+						end
+					end
+				end
+			end
+		end	
+	end
+end
+
+if $ARGS[0] = 'help':
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass0.mp4"></video></center>'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings0.mp4"></video></center>'
+	'...A woman is spending a good time with a man in the public restroom...."That''s it honey...fill my mouth...i didn''t eat today..."....'
+	act 'She receive an incoming call...':
+		cls
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings1.mp4"></video></center>'
+		'"Yes we are together...at the first round yes"<br>.....<br>"...Where is she?"<br>....<br>"What the fuck means "They have electric line problem...."...."<br>....<br>"I won''t listen any reason, go and kick them in the balls if any...and call me when you find her..."'
+		act '...':
+			*clr & cla
+			minut += 5
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings2.mp4"></video></center>'
+			'...."Ummmm...viagru should have take effect...come here big boy we don''t have much time..."....'
+			act '<<$pcs_nickname>>''s destiny': gt 'mod_iwhore_jenna', 'hell1'
+		end	
+	end
+end
+
+if $ARGS[0] = 'hell1':
+	
+	cls
+	*clr & cla
+	minut += 2
+	jenna_hellcome = 1
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass1.mp4"></video></center>'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/1.mp4"></video></center>'
+	'...."What the fuck...are you still moving?"'
+	act '...':
+		pcs_sleep = pcs_sleep - pcs_sleep / 3
+		pcs_stam = pcs_stam - pcs_stam / 3
+		pcs_willpwr = 1
+		gs 'pain', 9, 'head', 'hit'
+		gs 'pain', 9, 'neck', 'hit'
+		gs 'pain', 9, 'ears', 'hit'
+		gs 'pain', 9, 'eyebrows', 'hit'
+		gs 'pain', 9, 'eyes', 'hit'
+		gs 'pain', 9, 'mouth', 'hit'
+		pcs_teeth = 2
+		gs 'mod_iwhore_realstat' , 'day'
+		cls
+		*clr & cla
+		minut += 5
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass2.mp4"></video></center>'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/2.mp4"></video></center>'
+		'With the remaing strengh you try to resist the man...but he was on a different idea...a bad one. He punch you non stop...you don''t have too much...you have to escape; but every puch he give you is a step toward the hell... '
+		act '...':
+			pcs_sleep = pcs_sleep - pcs_sleep / 3
+			pcs_stam = pcs_stam - pcs_stam / 3
+			gs 'pain', 9, 'neck', 'hit'
+			gs 'pain', 9, 'neck', 'twist'
+			gs 'pain', 9, 'armL', 'hit'
+			gs 'pain', 9, 'armR', 'hit'
+			gs 'pain', 9, 'hands', 'hit'
+			gs 'pain', 9, 'shoulders', 'hit'
+			gs 'pain', 9, 'back', 'hit'
+			gs 'mod_iwhore_realstat' , 'day'
+			cls
+			*clr & cla
+			minut += 5
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass1.mp4"></video></center>'
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/3.mp4"></video></center>'
+			'...."Fuck you! When i said give me your money you have to move! Is that clear?" <br>Not satisfied with the beating the man wrap your neck. You tried...yes you tried to escape...but there''s not enough strengh in you weak arms...'
+			act '...':
+				cls
+				*clr & cla
+				minut += 5
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/4.mp4"></video></center>'
+				'....At the end you lose your consciouness and the man rape your unconscious body. You are like in a deep sleep...even the pain cannot call you back from what''s happening...'
+				act 'In the mean time, at the public bathroom....':gt 'mod_iwhore_jenna', 'hunt'
+			end
+		end	
+	end
+end
+
+if $ARGS[0] = 'hunt':
+	gs 'pain', 9, 'head', 'hit'
+	gs 'pain', 9, 'mouth', 'hit'
+	gs 'pain', 9, 'chest', 'hit'
+	gs 'pain', 9, 'ribs', 'hit'
+	gs 'pain', 9, 'armL', 'hit'
+	gs 'pain', 9, 'armR', 'hit'
+	gs 'pain', 9, 'handL', 'hit'
+	gs 'pain', 9, 'handR', 'hit'
+	gs 'pain', 9, 'shoulders', 'hit'
+	gs 'pain', 9, 'back', 'hit'
+	gs 'pain', 9, 'tummy', 'hit'
+	gs 'pain', 9, 'fingers', 'hit'
+	gs 'pain', 9, 'armL', 'hit'
+	gs 'pain', 9, 'armR', 'hit'
+	gs 'pain', 9, 'legL', 'kick'
+	gs 'pain', 9, 'legR', 'kick'
+	gs 'pain', 9, 'hands', 'hit'
+	gs 'pain', 9, 'shoulders', 'hit'
+	gs 'mod_iwhore_realstat' , 'day'
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass2a.mp4"></video></center>'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	gs 'outdoors', 'main'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings3.mp4"></video></center>'
+	'Woman:...."...Good work Doc, you made well to bring him with you...i think they were not honest at the end... ."<br> (...blow job sounds...) <br>Woman:"...Now go and look for her...see ya...yes Doc ...i miss you too..." <br>(...blow job sounds...) <br>Woman: "What do you think about this?..."<br>Man: "...it''s kind of strange...don''t you think?"<br>Woman:"...You may be right..."'
+	act '...':
+		*clr & cla
+		minut += 5
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings4.mp4"></video></center>'
+		'...."...What the fuck does it means: "I cannot see her on the screen?"....Look better...she cannot be vanished...."'
+		act '...': gt 'mod_iwhore_jenna', 'meat'
+	end
+end
+
+if $ARGS[0] = 'meat':
+	
+	pcs_horny = 0
+	pcs_sleep = pcs_sleep - pcs_sleep / 3
+	pcs_stam = pcs_stam - pcs_stam / 3
+	gs 'pain', 9, 'chest', 'kick'
+	gs 'pain', 9, 'ribs', 'kick'
+	gs 'pain', 9, 'armL', 'kick'
+	gs 'pain', 9, 'armR', 'kick'
+	gs 'pain', 9, 'hands', 'kick'
+	gs 'pain', 9, 'shoulders', 'kick'
+	gs 'pain', 9, 'back', 'kick'
+	gs 'pain', 9, 'tummy', 'kick'
+	gs 'pain', 9, 'fingers', 'kick'
+	gs 'pain', 9, 'armL', 'kick'
+	gs 'pain', 9, 'armR', 'kick'
+	gs 'pain', 9, 'hands', 'kick'
+	gs 'pain', 9, 'legL', 'kick'
+	gs 'pain', 9, 'legR', 'kick'
+	gs 'pain', 9, 'shoulders', 'kick'
+	gs 'pain', 9, 'back', 'kick'
+	gs 'pain', 9, 'feet', 'kick'
+	gs 'pain', 9, 'toes', 'kick'
+	gs 'mod_iwhore_realstat' , 'day'
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass1.mp4"></video></center>'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/5.mp4"></video></center>'
+	'...."Fuck! They always have to be stucked in the backseat..."'
+	act '...':
+		gs 'pain', 9, 'head', 'hit'
+		gs 'pain', 9, 'neck', 'hit'
+		gs 'pain', 9, 'ears', 'hit'
+		gs 'pain', 9, 'eyebrows', 'hit'
+		gs 'pain', 9, 'eyes', 'hit'
+		gs 'pain', 9, 'mouth', 'hit'
+		gs 'pain', 9, 'legL', 'kick'
+		gs 'pain', 9, 'legR', 'kick'
+		pcs_teeth = 3
+		gs 'mod_iwhore_realstat' , 'day'
+		cls
+		*clr & cla
+		minut += 5
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass2.mp4"></video></center>'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/6.mp4"></video></center>'
+		'...."Bitch! Who the fuck do you think you are..."...'
+		act '...':
+			pcs_sleep = 4
+			pcs_stam = 4
+			gs 'pain', 9, 'head', 'break'
+			gs 'pain', 9, 'neck', 'break'
+			gs 'pain', 9, 'ears', 'break'
+			gs 'pain', 9, 'eyebrows', 'break'
+			gs 'pain', 9, 'mouth', 'break'
+			gs 'pain', 9, 'chest', 'break'
+			gs 'pain', 9, 'ribs', 'break'
+			gs 'pain', 9, 'armL', 'break'
+			gs 'pain', 9, 'armR', 'break'
+			gs 'pain', 9, 'hands', 'break'
+			gs 'pain', 9, 'shoulders', 'break'
+			gs 'pain', 9, 'back', 'break'
+			gs 'pain', 9, 'tummy', 'break'
+			gs 'pain', 9, 'fingers', 'break'
+			gs 'pain', 9, 'armL', 'break'
+			gs 'pain', 9, 'armR', 'break'
+			gs 'pain', 9, 'hands', 'break'
+			gs 'pain', 9, 'shoulders', 'break'
+			gs 'pain', 9, 'legL', 'break'
+			gs 'pain', 9, 'legR', 'break'
+			gs 'pain', 9, 'feet', 'break'
+			gs 'pain', 9, 'toes', 'break'
+			gs 'pain', 9, 'head', 'tear'
+			gs 'pain', 9, 'neck', 'tear'
+			gs 'pain', 9, 'ears', 'tear'
+			gs 'pain', 9, 'eyebrows', 'tear'
+			gs 'pain', 9, 'mouth', 'tear'
+			gs 'pain', 9, 'chest', 'tear'
+			gs 'pain', 9, 'ribs', 'tear'
+			gs 'pain', 9, 'armL', 'tear'
+			gs 'pain', 9, 'armR', 'tear'
+			gs 'pain', 9, 'hands', 'tear'
+			gs 'pain', 9, 'shoulders', 'tear'
+			gs 'pain', 9, 'back', 'tear'
+			gs 'pain', 9, 'tummy', 'tear'
+			gs 'pain', 9, 'fingers', 'tear'
+			gs 'pain', 9, 'armL', 'tear'
+			gs 'pain', 9, 'armR', 'tear'
+			gs 'pain', 9, 'hands', 'tear'
+			gs 'pain', 9, 'legL', 'tear'
+			gs 'pain', 9, 'legR', 'tear'
+			gs 'pain', 9, 'shoulders', 'tear'
+			gs 'pain', 9, 'feet', 'tear'
+			gs 'pain', 9, 'toes', 'tear'
+			gs 'mod_iwhore_realstat' , 'day'
+			cls
+			*clr & cla
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass1.mp4"></video></center>'
+			gs 'mod_iwhore_realstat' , 'status'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/7.mp4"></video></center>'
+			' The man drag you in the sewer ...  "Perfect!...the water will clean the proof... . Stupid cunt...you could have earned more money..." '
+			wait 9000
+			cls
+			*clr & cla
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/glass3.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'
+			'...and throw you, lefting your body ... "Rest well...the time you have... . Hahahaha!!!! .... "....'
+			wait 11000
+			cls
+			pain['killer'] = 0
+			minut += 15
+			money = 0
+			if MagikDostup = 0:
+				pcs_mana = 1
+			end
+			gs 'mod_iwhore_jenna' , 'painall'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/breathless.jpg"></center>'
+			'...to rotten.'
+			act '"H...-h..."':gt 'mod_iwhore_jenna', 'Angels'
+			act 'Rest': over = 14 & gt 'mod_iwhore_jenna', 'Daemons'
+		end	
+	end
+end
+
+if $ARGS[0] = 'Angels':
+	cls
+	*clr & cla
+	minut += 5
+	pcs_sleep = 2
+	pcs_stam = 2
+	gs 'outdoors', 'main'
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight0.mp4"></video></center>'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings4.mp4"></video></center>'
+	'...."...I hope you know where she is, i''m losing my patience..."<br>...<br>"...I don''t give a fuck!...Send him..."<br>...<br>"Wait what? What the fuck just it means "I see something moving..."..."...'
+	act '...somewhere...':
+		cls
+		*clr & cla
+		minut += 5
+		pcs_sleep = 1
+		pcs_stam = 1
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight1.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/body.jpg"></center>'
+		'...Every move you made the blood spills on the ground ....It was the last breath in your body that lead you to move... . You just crawl till the street before fall into the deepness of the sewer...and now you lay with the blood that continue to flow away.... '
+		act '...':
+			cls
+			*clr & cla
+			minut += 2
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight2.mp4"></video></center>'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings5.mp4"></video></center>'
+			'"...Is she?"<br>...<br>"WHAT THE FUCK DID YOU JUST SAID?"<br>...<br>"...Pass to the lab and bring here everything..."<br>....<br>"I DON''T GIVE A SHIT! NOW!"'
+			act '...':
+				*clr & cla
+				minut += 5
+				fcolor = rgb(255, 255, 255)
+				bcolor = rgb(0, 0, 0)
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/night_search0.jpg"></center>'
+				'....Man: "Can i know where are we going?"<br>Woman: "We are looking for her...i''ve got a bad feeling..."<br>Man: "Wait!"<br>Woman: "Did you found something?"<br>Man: "Blood...and here''s a shoe. We are near..."'
+				act '...':
+					cls
+					*clr & cla
+					minut += 3
+					PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight3.mp4"></video></center>'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help0.jpg"></center>'
+					'...."Shit! It''s her... . Bring her to the bath...we need water..."'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help1.jpg"></center>'
+						'...."...Immediately."...'
+						act '...':
+							*clr & cla
+							minut += 5
+							gs 'outdoors', 'main'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help2.jpg"></center>'
+							'The man cautionally pose your body on the floor....<br>Man: "Do you think is she alive?"<br>Woman "She''s spilling blood...that means her heart is still beating...but..."'
+							act '...': gt 'mod_iwhore_jenna', 'blood'
+						end	
+					end	
+				end	
+			end	
+		end
+	end
+end
+
+if $ARGS[0] = 'blood':
+	cls
+	*clr & cla
+	gs 'outdoors', 'main'
+	minut += 2
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight3.mp4"></video></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help3.jpg"></center>'
+	'....Woman: "...Shit! It''s getting little and little..."<br>Man: "..."<br>Woman: "...Press here and here...WHERE THE FUCK IS DOC!!!!!"'
+	act '...':
+		cls
+		*clr & cla
+		minut += 2
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight4.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4.jpg"></center>'
+		'A third person enter the bath...<br>Doc: "I made as fast as i was able...."<br>Woman"Give me the XTC3"<br>Doc: "But we didn''t tested it yet..."<br>Woman: "Do you see any other option? GIVE IT TO ME!" <br>The woman, who seems to know what is she doing, catch a vein of your arm and start injecting in your body some fluid...'
+		wait 7000
+		*clr & cla
+		minut += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4a.jpg"></center>'
+		'.......Woman: "...Doc! Clean her a little i cannot see other wounds!"<br>Doc: "...I-i ...yes madam...."'
+		wait 7000
+		StrongNarkota += 85
+		SNarkTimes += 1
+		drugUser = 1		
+		pcs_health += 1
+		pcs_willpwr += 1
+		pcs_mood = 1
+		nark += 30
+		narkday = daystart
+		gs 'mod_iwhore_realstat' , 'day'
+		cls
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight5.mp4"></video></center>'
+		gs 'mod_iwhore_realstat' , 'status'
+		gs 'outdoors', 'main'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/help4a.mp4"></video></center>'
+		'Woman...."...Are you with us? Come on <<$pcs_firstname>>...Come on..."....<br><br>...'
+		wait 8000
+		cls
+		*clr & cla
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight6.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help5.jpg"></center>'
+		'Woman: "..."<br><br>"...Is the breakfast ready mom? Blue monkeys bring us their wooden plates...can i touch them?..."'
+		act '...':
+			cls
+			*clr & cla
+			minut += 2
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight6.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4b.jpg"></center>'
+			'Man: "Blue monkey? Is she speaking about us?<br>Doc: "...It shouldn''t give her allucinations..."<br>Man: "...she spoke about blue monkeys..."<br>Woman: "..."<br>Doc: "...That means..."'
+			wait 9000
+			cls
+			*clr & cla
+			minut += 2
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight6.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4c.jpg"></center>'
+			'Woman: "NOT NOW!... Continue pressing!"<br>Man: "...If i press more than this i''ll break her leg..."'
+			wait 9000
+			cls
+			minut += 2
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight7.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4c.jpg"></center>'
+			'Woman: "...Doc! Press here!"<br>Doc: "...I-i...i''m going to puke..."<br>Woman: "...NOT NOW! EAT IT!"<br>Doc: "..."'
+			nl
+			'<br><br>..."...I don''t want to go to school today....I-i don''t feel very well...."...'
+			act '...': gt 'mod_iwhore_jenna', 'Destiny'
+		end
+	end
+end
+
+if $ARGS[0] = 'Destiny':
+	cls
+	*clr & cla
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	minut += 2
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight8.mp4"></video></center>'
+	if preg ! 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help6a.jpg"></center>'
+		'Woman: "Shit! The coke is wrong balanced with the eroin...that could help but she''s losing too much blood, no matter what...who called the ambulance?"<br>Man:"Me..."<br>Doc:" D-do your best...ok?"<br>Woman:"...I will."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help7.jpg"></center>'
+			'....Woman: "That was the last bandage..."<br>Doc: "...They are near, i can hear them..."<br>"Good...we couldn''t do much more...Mieszko, where''s the bike?"<br>Mechislav:"Outside"<br>Woman:"Let me clean a little..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help8.jpg"></center>'
+				'....Woman: "Let''s go...Doc: go take the van and reach me at St Petersbourgh"...<br>Doc: "I''m on my way..."'
+				act '...': gt 'mod_iwhore_jenna', 'Godsend'
+			end
+		end
+	else
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/lost0.mp4"></video></center>'
+		'....<br>Doc: "Shit! I hate blood..."<br>Woman: "What? ....Shit! Shit! Shit!!!...and she''s losing consciousness again  The coke is wrong balanced with the eroin...that could help but...."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help6d.jpg"></center>'
+			'Woman: "Shit! She''s losing too much blood, no matter what...who called the ambulance?"<br>Man:"Me..."<br>Doc:" D-do your best...ok?"<br>Woman:"...I will."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help7.jpg"></center>'
+				'....Woman: "That was the last bandage..."<br>Doc: "...They are near, i can hear them..."<br>Woman: "Good...we couldn''t do much more...Mieszko, where''s the bike?"<br>Mechislav: "Outside"<br>Woman: "Let me clean a little..."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help8.jpg"></center>'
+					'....Woman: "Let''s go...Doc: go take the van and reach me at St Petersbourgh"...<br>Doc: "I''m on my way..."'
+					act '...': gt 'mod_iwhore_jenna', 'Godsend'
+				end	
+			end
+		end
+	end	
+end
+
+!gt 'mod_iwhore_jenna', 'Daemons'
+
+!bogomolov
+!ignatiy
+!GAVRIIL
+! Mieszko  Mechislav RAFAIL SEMYON
+if $ARGS[0] = 'Godsend':
+	cls
+	*clr & cla
+	jenna_hellcome = 0
+	StrongNarkota = 0
+	pcs_health = 1
+	pcs_health = 1
+	pcs_stam = 1
+	pcs_willpwr = 1
+	pcs_mood = 1
+	nark = 0
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/hope0.mp4"></video></center>'
+	'....Woman: "...I''m sorry we didn''t had the time to take the second helmet..."...<br>Mechislav: "I cannot hear you!"....<br>Woman: "...I''M SORRY WE DIDN''T HAD THE TIME FOR THE SECOND HELMET!!!...<br>Mechislav: "It''s not a problem...despite who''s stand behind us i don''t have a distraction..."<br>Woman: "Uh?...I see..."'
+	act '...':
+		*clr & cla
+		gs 'outdoors', 'main'
+		minut += 20
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/hope0.jpg"></center>'
+		'The couple catch and stop doctor who has a fast walk... . Woman: "Doctor! Doctor!"<br>Nurse: "Shooo! Dr Bogolomov cannot receive you now!"<br>Woman: "...Go fuck yourself! DOCTOR!!!!"<br>Dr. Ignatiy Bogomolov: "What''s there? I''m in a hurry, i cannot stop to talk."<br>Woman: "A girl should be near to arrive...she''s in bad conditions..."<br>Dr. Ignatiy Bogomolov "Exactly. That''s why i cannot stop, i have to prepare... . How do you know that anyway?"<br>Woman: "We called for her...I-i tried to stop the blood...but..."<br>Dr. Ignatiy Bogomolov: "So you are the ones who helped her. Listen, she''s critical. She lost too much blood, and there are several injuries according the report...now if you will excuse me..."<br>Woman: "There should be something we could do..."<br>Dr. Ignatiy Bogomolov: "I''m afraid not; unless you are a group I subgroup D0 blood donor...you can do nothing...and even in that case..." <br>...<br>..."...We''ll do our best Miss... ."<br>...<br>Woman: "I''m. Take what you need..."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/hope2.jpg"></center>'
+			'....Dr. Ignatiy Bogomolov: "That''s ...rather unexpected...come with me please, we don''t have much time..." <br>The couple follow the doctor who lead them to have a blood sample...<br>Dr. Ignatiy Bogomolov: "...I D0, is the most rare group...we need to be sure...and we need to check for sickness too. If you are really an I D0, you should consider to be a regular donor...."<br>Woman: "I''m...but i''m not totally sure my blood will be good for every situations...that one could be exceptional..."<br>Dr. Ignatiy Bogomolov: "Non sense. Anyway....machine will give us the results in a sec..."'
+			act '...':
+				*clr & cla
+				minut += 5
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/hope1.jpg"></center>'
+				'Dr. Ignatiy Bogomolov: "That''s ...impossible..."<br>Woman: "...I told you...but she need some..."<br>Dr. Ignatiy Bogomolov: "The group is right...and you are free from sickness...but there are too much high levels of cocaine, heroin, thc...among with traces of phencyclidine fentanyl methylphenidate psilocybin flunitrazepam pentobarbital..."<br>Woman:"...Mescaline ketamine..." <br>The doctor turn the page....Dr. Ignatiy Bogomolov: "Dimethyltryptamine  scopolamine LSD ... traces are not harmful but cocaine and heroine... . Unfortunately we have no use of that. They are too much...they are ...eight times what a man can tolerate...  How do you stand on your feet? "<br>Woman: "...What if you have another clean blood of the same type....can you mix them to lower the drugs level? You could avoid to use your drugs and use what''s in the blood instead..."<br>Dr. Ignatiy Bogomolov: "Theorically it could work...there''s a little problem...we don''t have another clean ID0..."<br>Woman: "...Nikolay..."<br>Mechislav: "As you wish." The man lift his skirt and offer his arms to the doctor...<br>Dr. Ignatiy Bogomolov: "Are you kidding me?"<br>Mechislav: "Please Doctor...you don''t have too much time..."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/hope3.jpg"></center>'
+					'Dr. Ignatiy Bogomolov: "If that''s a joke...you are making me losing time...and that''s something i cannot tollerate, a girl''s life is on my hands..."<br>Woman: "We are not. I know everything about my employer...even if they wear pink panties. And you need that blood...SHE need it!" <br>The doctor think for a moment...<br>Dr. Ignatiy Bogomolov: "...I don''t know why are you made this for her...are you both related? Arrghh...there''s no time for that....it seems you just helped her before..."<br>... and take the blood sample.'
+					act '...':
+						*clr & cla
+						minut += 5
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/hope1.jpg"></center>'
+						if preg = 1:
+							if pregtime > 130:
+								'....Dr. Ignatiy Bogomolov: "Hey! Impossible! You...you...both..."<br>Woman: "...I told you. And he''s clean...about the viagru...."<br>Dr. Ignatiy Bogomolov: "I wonder why an healthy man use it but there''s no time for that...Viagru is not a problem for her, and it''s not if used just one time for child...honestly this is a minor thing, the child risk id due to the beating..."<br>Woman: "...Just...just...do your best Doctor...."<br>Dr. Ignatiy Bogomolov: "I need to go now, the nurse will take the blood we need...we are all in the hands of God"'
+							else 
+								'....Dr. Ignatiy Bogomolov: "Hey! Impossible! You...you...both..."<br>Woman: "...I told you. And he''s clean...about the viagru...."<br>Dr. Ignatiy Bogomolov: "I wonder why an healthy man use it but there''s no time for that...Viagru is not a problem for her, and it''s not if used just one time for child...honestly this is a minor thing, the child risk id due to the beating..."<br>Woman: "...A-a...a child?...."<br>Dr. Ignatiy Bogomolov: "Yes from the report it seems she is expecting a baby..."<br>Woman: "What the fuck are you waiting!!!! MOVE MOVE!!!!"<br>Mechislav: "Please calm down..."<br>Woman: "...I''m sorry...just...do your best Doctor...."<br>Dr. Ignatiy Bogomolov:"I need to go now, the nurse will take the blood we need...we are all in the hands of God"'
+							end
+						else
+							'....Dr. Ignatiy Bogomolov: "Hey! Impossible! You...you...both..."<br>Woman: "...I told you. And he''s clean...about the viagru...."<br>Dr. Ignatiy Bogomolov: "I wonder why an healthy man use it but there''s no time for that...Viagru is not a problem for her...what worry me is the conditions.  I need to go now, the nurse will take the blood we need...we are all in the hands of God."<br>Woman: " And mine. Do not fail doctor, you won''t have a second chance."<br>Mechislav: "...Calm down..."<br>Woman:"..."<br>Dr. Ignatiy Bogomolov: "I-i...i will not..."'
+						end	
+						if StoryLine = 0:
+							act '<<$pcs_nickname>>''s destiny':
+								fcolor = rgb(255, 255, 255)
+								bcolor = rgb(0, 0, 0)
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/mother.jpg"></center>'
+								'...''...mother...''...'
+								act '...''...father...''...':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/father.jpg"></center>'
+									'...''...father...''...'
+									act '...': gt 'mod_iwhore_jenna', 'Angels1'
+								end	
+							end
+						else	
+							act '<<$pcs_nickname>>''s destiny':
+								*clr & cla
+								fcolor = rgb(255, 255, 255)
+								bcolor = rgb(0, 0, 0)
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/mother.jpg"></center>'
+								'...''...mother...''...'
+								act '...':
+									*clr & cla
+									if father_quest > 3:
+										'<center><img <<$set_imgh>> src="images/characters/city/mikhail/terminal/trfatherqw_14.jpg"></center>'
+										'...''...father...''...'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/father.jpg"></center>'
+										'...''...father...''...'
+									end
+									act '...':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/anya/progulka.jpg"></center>'
+										'...''...sister...''...'
+										act '...':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/kolka/brother.jpg"></center>'
+											'...''...brother...''...'
+											act '...': gt 'mod_iwhore_jenna', 'Angels1'
+										end	
+									end	
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+
+if $ARGS[0] = 'Angels1':
+	cls
+	*clr & cla
+	minut += 10
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/fight8.mp4"></video></center>'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/hope3.mp4"></video></center>'
+	'.......''...i''m sorry...''......'
+	act '...':
+		cls
+		*clr & cla
+		gs 'outdoors', 'main'
+		minut += 5
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/firstaid.jpg"></center>'
+		'...."Oxigen!" <br>..."Done!"<br>..."Morphin!"<br>..."We got instructions from Dr. Bogomolov to not use it! It''s just mixed in the blood..." <br>..."What the fuck?..." <br>..."That''s it, we are surprised too...it must be a new tecnique..."<br>..."Shit! But he''s the boss...Pressure!"<br>..."70-45."<br>...."SHIT! I hope you know what are you doing Ignatiy...Beating!"...  <br>"...35..."...."SHIT!...".....<br>"...26..."...."SHIT!SHIT!SHIT! START THE POUCH!..."'
+		act '...':
+			cls
+			*clr & cla
+			minut += 2
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm35.mp4"></video></center>'
+			if preg = 1 and pregtime > 130:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/lost1.jpg"></center>'
+				'...."Move move move! The operating room is ready: MOVE!!!!"'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/transfer.jpg"></center>'
+				'...."Move move move! The operating room is ready: MOVE!!!!"'
+			end
+			
+			act 'Hospital hallway':
+				cls
+				*clr & cla
+				minut += 2
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/help0.jpg"></center>'
+				'....Woman: "We really are in God''s hands now..."<br>Mechislav:"Yes...we are..."'
+				act '...':
+					cls
+					*clr & cla
+					hour += 8
+					PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm35.mp4"></video></center>'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/surgery.jpg"></center>'
+					'....Ignatiy Bogomolov: "Externals." <br>Staff: "Someone closed most of them."<br>Ignatiy Bogomolov: "Internals"<br>Staff: "No relevant sign. High risk."<br>Ignatiy Bogomolov: "Third pouch."<br>Staff: "Infusion started."'
+					wait 7000
+					nl
+					'<br>Ignatiy Bogomolov: "Other."<br>Staff: "Water in the lungs...she breath it somewhere...and it''s not clean..."<br>Ignatiy Bogomolov: "Drain it! Double antibiotics and double Cortef!"<br>Staff: "Yes sir!"...'
+					wait 7000
+					cls
+					*clr & cla
+					PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/surgery.jpg"></center>'
+					'<br>Ignatiy Bogomolov: "Head."<br>Staff: "A peripheral emorragy is pressing the whole brain..."<br>Ignatiy Bogomolov: "Drill."<br>Staff: "Here...."<br>Ignatiy Bogomolov:...''...Who made you that?...''... '
+					wait 7000
+					if MagikDostup = 0:
+						pcs_mana = 0
+					end
+					act '<<$pcs_nickname>>''s...life...': gt 'mod_iwhore_jenna', 'calltolife'
+				end
+			end
+		end
+	end
+end
+!gt 'mod_iwhore_jenna', 'calltolife'
+if $ARGS[0] = 'calltolife':
+	cls
+	*clr & cla
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source1.jpg"></center>'
+	'...''...It''s like...floating...but...''...'
+	act '...':
+		cls
+		*clr & cla
+		PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start1.jpg"></center>'
+		'....''...i''m going down...''...'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start2.jpg"></center>'
+			'....''...or...up...I...i...i don''t know....why am i here?...why...why...who am...i... . ...You want me to go there...what''s there? Who are you?...I ...feel...nothing...''....'
+			wait 9000 
+			cls
+			minut += 5
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm15.mp4"></video></center>'
+			nl
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start2.jpg"></center>'
+			'<br>Ignatiy Bogomolov: "Pressure and beating."<br>Staff: "I-it keeps lowering...50/35...15"<br>Ignatiy Bogomolov: "START THE FOURTH!!!"<br>Staff: "I-infusion started...sir..."<br>Ignatiy Bogomolov:...''...''... '
+			wait 11000 
+			gt 'mod_iwhore_limbusbattle', 'deck0'
+		end
+	end
+end
+
+if $ARGS[0] = 'calltolife1':
+	cls
+	minut += 2
+!	SHOWSTAT 1
+	SHOWOBJS 1
+	KILLOBJ
+	pcs_horny = 0
+	pcs_mood = 1
+	if flame = 3:
+		ADDOBJ	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'		
+	elseif flame = 2:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	elseif flame = 1:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	else
+		''	
+	end
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm0a.mp4"></video></center>'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/calltolife0.mp4"></video></center>'
+	'<br>Ignatiy Bogomolov: "!!!!!!!NOW!!!!!!!"'
+	'....Staff: "Clear!"' 
+	'...'
+	'....Staff: "Free!"'
+	wait 9000
+	if flame < 1:
+		gt 'mod_iwhore_jenna', 'flowers'
+	else
+		gt 'mod_iwhore_limbus', 'day1'
+	end
+end
+
+if $ARGS[0] = 'painall':
+	pain['head'] = 99
+	pain['hair'] = 99
+	pain['ears'] = 99
+	pain['eyebrows'] = 99
+	pain['eyes'] = 99
+	pain['cheeks'] = 99
+	pain['nose'] = 99
+	pain['mouth'] = 99
+	pain['lips'] = 99 
+	pain['throat'] = 99 
+	pain['neck'] = 99 
+	pain['back'] = 99 
+	pain['hips'] = 99
+	pain['thighs'] = 99
+	pain['legL'] = 99
+	pain['legR'] = 99
+	pain['feet'] = 99
+	pain['toes'] = 99
+	pain['shoulders'] = 99
+	pain['armL'] = 99
+	pain['armR'] = 99
+	pain['hands'] = 99
+	pain['fingers'] = 99
+	pain['chest'] = 99
+	pain['ribs'] = 99
+	pain['tummy'] = 99
+	pain['pubic'] = 99
+
+end
+
+if $ARGS[0] = 'vivid':
+	minut += 1
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/vivid0.jpg"></center>'
+	'"Good evening lady, how much..."'
+	wait 5000
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/Jenna.jpg"></center>'	
+	'"...time do i need to reach the church? I''m new to Pavlovsk..."'
+	wait 5000
+	*clr & cla
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_methd.mp4"></video></center>'
+	'"...Noooooooooooooooooooooooooooooooooooooooo..."'
+	wait 2500
+	*clr & cla
+	minut += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/vivid1.jpg"></center>'
+	'"No?...Do you mean it''s nea...? Hey!...Strange girl...i hope i don''t have to walk for hours...maybe she''s a scum... . Youth...those days..."'	
+	act '...':
+		*clr & cla
+		minut += 5
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+		'You run as fast as you can till your lungs are near to explode...knowing that it will never left you alone; but it''s the only thingsyou can do. You reach an abandoned building... . Rats, animals and trash are everywhere...; the smell of piss and shit fill the air... . You don''t mind it.'
+		act '...':
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+			'"...Damned...damned...damned..."'
+			wait 5000
+			*clr & cla
+			minut += 5
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware1.mp4"></video></center>'
+			'"...He will never let me...i cannot..."'
+			wait 5000
+			'"...There''s only one thing to do..."'
+			act '...':
+				*clr & cla
+				minut += 10
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/vivid2.mp4"></video></center>'
+				'"...I have to kill my memory..."'
+				act '...':
+					*clr & cla
+					minut += 30
+					gs 'stat'
+					alko += 9
+					inna_varvara_pimp = 1
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/vivid3.mp4"></video></center>'
+					'...But a bottle of vodka is not enough to kill what''s written in blood. You neither remember if you paid for it at the cashier... . ...But that man...you''ll never forgive him...'
+					wait 9000
+					'You scream to the ceiling all the pain you have inside... . No one answer... . With your last strengh, you decide to go away before collapsing... . Maybe you need only some other time...maybe.'
+					act 'Go away': 
+						if home_owned[2] = 1 or home_owned[1] > 0:
+							gt $loc, $loc_arg
+						else
+							gt 'mod_iwhore_begin', 'inna'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+!!!!!!!!!!!!!!!FIVE ENDINGS!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'flowers':
+	
+	cls
+	SHOWSTAT 1
+	SHOWOBJS 1
+	KILLOBJ
+	
+	if flame = 3:
+		ADDOBJ	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'		
+	elseif flame = 2:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	elseif flame = 1:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	else
+		''	
+	end
+	*clr & cla
+	minut += 1
+	if MagikDostup = 0:
+		pcs_mana = 0
+	end
+	pcs_health = 0
+	pcs_sleep = 0
+	pcs_stam = 0
+	pcs_willpwr = 0
+	pcs_energy = 0
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fall.jpg"></center>'	
+	'..."...AHHHHHHHHH!!!!!!!..."....'
+	over = 15
+	wait 5000
+	gt 'mod_iwhore_jenna', 'Daemons'
+end
+
+if $ARGS[0] = 'endless':
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/zend.jpg"></center>'	
+	'..."......"...'	
+	act 'Touch the picture.':
+		*clr & cla
+		over = 16
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endlessa.jpg"></center>'
+		'"Hey...!"'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endlessb.jpg"></center>'
+			'"Why?"'	
+			act '...': gt 'mod_iwhore_jenna', 'Daemons'
+		end
+	end
+end
+
+if $ARGS[0] = 'stabbed':
+	
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/Jenna.jpg"></center>'	
+	'"Look who''s there... ."'
+	wait 6000
+	*clr & cla
+	gs 'stat'
+	over = 17
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/GennadijValuev.jpg"></center>'	
+	'"...Hope you like it, because i love it."<br>You feel it enter in your stomach...back and forth...endlessly.'
+	wait 9000
+	*clr & cla
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/awake.jpg"></center>'	
+	'...'
+	wait 5000
+	gt 'mod_iwhore_jenna', 'end'
+end
+
+if $ARGS[0] = 'lost':
+	cls
+	*clr & cla
+	KILLOBJ
+	minut += rand(1,5)
+	pain['killer'] = 1
+	over = 18
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/intro0.jpg"></center>'	
+	'...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/lost0.jpg"></center>'
+	'....'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/lost1.jpg"></center>'
+	'...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/judged.jpg"></center>'
+	
+	'...''...i should return to sleep...''...'
+	act 'Sleep':gt 'mod_iwhore_jenna', 'end'
+
+end
+
+if $ARGS[0] = 'Daemons':
+	*clr & cla
+	KILLOBJ
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	if over = 14:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/dbody.jpg"></center>'
+		'....'
+		act '...':
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings4.mp4"></video></center>'
+			'...."...I hope you know where she is, i''m losing my patience..."<br>...<br>"...I don''t give a fuck!...Send him..."<br>...'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/help/wings5.mp4"></video></center>'
+				'...."...What the fuck does it means: "Nothing."....Did you send him?....Do not call me till you find her."<br>Woman: "Dress. We are moving."'
+				'....'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/night_escape.jpg"></center>'
+					'....'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/dfound1.jpg"></center>'
+						'Man: "Stop! ...here''s a shoe...and blood..."<br>Woman: "I need more than a shoe... . I need her. Look better, she cannot be vanished."'
+						act '...':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/dfound0.jpg"></center>'
+							'Man: "There''s nothing around here..."<br>Woman: "...Keep looking...we need to find her..."'
+							act '...':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/night_escape.jpg"></center>'
+								'...'
+								act '...': gt 'mod_iwhore_jenna', 'end'
+							end	
+						end	
+					end	
+				end	
+			end
+		end
+	elseif over = 15:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/eye.jpg"></center>'
+		'....'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3a.jpg"></center>'
+			'"She''s almost ready."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c6.jpg"></center>'
+				'"My work is done."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'
+					'"After Her I no longer serve."'
+					act '...': gt 'mod_iwhore_jenna', 'end'
+				end	
+			end
+		end
+	elseif over = 16:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/a0.jpg"></center>'
+		'...."N-no...wait... . It''s not fair! I''ve almost finished it...why?"...'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/zbegin.jpg"></center>'
+			'...."...Please...not again..."...'
+			act '...': gt 'mod_iwhore_jenna', 'end'
+		end
+	else
+		''
+	end
+end
+
+if $ARGS[0] = 'end':
+	KILLOBJ
+	if over = 14:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/sunriserestart.jpg"></center>'
+		'Woman: "We need to came back and restart from the beginning."<br>Man: "..."<br>Woman: "Move."<br>Man: "I''m right behind you... ."'
+		if StoryLine = 0:
+			act '<<$pcs_nickname>>''s destiny':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews0.jpg"></center>'
+				'Man: "Wait...maybe there''s something."<br>Woman: "It couldn''t be worst..."....Anchorman: "...and here finish our special: "How to survive a nuclear attack?"... . Remember: always try to be into another place. Now we pass to the weather for today."<br>Man: "It seems not..."<br>Unaware anchorman: "...yes baby. Suck my balls now... ."<br>Woman: "We have to find her...at any price."<br>Anchorman: "...What the fuck does it mean i''m "on air"!...And you: keep sucking: who told you to stop!"<br>Man: "We are losing time here..."<br>Anchorman: "...GIVE THEM THE LINE THEN! WHAT THE FUCK ARE YOU WAITING! FIRED YOU ARE ALL FIRED!!!"<br>...'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews1.jpg"></center>'
+					'Woman: "...Uh?...Wait a moment..."<br>....Reporter: "Move move...before the police arrive!"<br>Cameraman: "Here! You can start..."<br>Reporter: "Good morning ladies and gentleman, we interrupted the trasmission for a bad new. We are on air from Pavlovsk and we just called the police... . The report we were making about Pavlovsk''s prostitution bring us to an accidental discovery... . I recomdemned to restrict the image scenes to a mature audience ... ."'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breaknews.jpg"></center>'
+						'Woman: "..."<br>Reporter: "...The dead body we found show traces of violence...but the blood was cleaned with water... . We cannot say how many hours she stayed in the water...but a stink comes from the body... . You: go look in the purse if she has an ID... ."<br>Cameraman: "..."<br>Reporter: "We are near the sewer, maybe that''s where she cames from... . Her clothes are surely the clothes of a prostitute... . She was probably working on the street before she found the death... . Our report maybe will reveal in the future if that''s sporadic case or the beginning of a long list of a prostitute murdering...for the moment we can only serve you the true...as crude as it could be."<br>Cameraman: "...Here..take a look."<br>Reporter: "The prostitute has a name: <<$pcs_firstname>> <<$pcs_lastname>>. That''s everything at the moment from Pavlovsk...the line will return to the weather till the police arrival... ."<br>Woman: "...N..."'
+						act '...':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews3.jpg"></center>'
+							'...Woman: "...N-no..."'
+							act 'One day later':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/day_search.jpg"></center>'
+								'Woman: "...I''m hearing..."<br>Man: "Maybe we got something"<br>Woman: "Bring it here."'
+								act 'Two days later':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/blood1.jpg"></center>'
+									'Woman: "..."<br>Florist: "...I''m sorry, we only have premade bouquet... . Should i gave you one?"<br>Woman: "Give me all."...'
+									act 'Five minutes after':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/blood.jpg"></center>'
+										'Doc: "Where were you been?"<br>Woman: "..."<br>Man: "May your soul rest in peace."<br>Doc: "R-red? B-but that means...."'
+										act '...':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/war.jpg"></center>'
+											'Woman: "War."'
+											act '...': gt 'mod_iwhore_jenna', 'endscreen'
+										end	
+									end	
+								end	
+							end	
+						end	
+					end		
+				end
+			end
+		else
+			act '<<$pcs_nickname>>''s destiny':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/tea.jpg"></center>'
+				'"Yawwwnnn...good morning mom."<br>"Good morning Kolka, go sit the breakfast is ready."<br>"Good morning sweety."<br>"Hi honey...the same for you."<br>"Hi mom..."<br>"Anja...where''s your sister?"<br>"Uh?...i thought she was here..."<br>"Mom mom...can i turn on the tv? I have to make a research on radiation damage...please...there''s a morning program... "<br>"Good boy...you have to had good grade this year... . No Anja...she didn''t came back yesterday. I thought she was with you..."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews0.jpg"></center>'
+					'....Anchorman: "...and here finish our special: "How to survive a nuclear attack?"... . Remember: always try to be into another place. Now we pass to the weather for today."<br>"Oh...no it ended..."<br>"...No mom...she wasn''t..."<br>"...You can change dad..."<br>"No Kolka, leave it here, i want to see the weather..i have to drive..."<br>Unaware anchorman: "...yes baby. Suck my balls now... ."<br>"..."<br>Anchorman: "...What the fuck does it mean i''m "on air"!...And you: keep sucking: who told you to stop!"<br>"..."<br>Anchorman: "...GIVE THEM THE LINE THEN! WHAT THE FUCK ARE YOU WAITING! FIRED YOU ARE ALL FIRED!!!"<br>"..."'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews1.jpg"></center>'
+						'....Reporter: "Move move...before the police arrive!"<br>Cameraman: "Here! You can start..."<br>Reporter: "Good morning ladies and gentleman, we interrupted the trasmission for a bad new. We are on airfrom Pavlovsk and we just called the police... . The report we were making about Pavlovsk''s prostitution bring us to an accidental discovery... . I recomdemned to restrict the image scenes to a mature audience ... ."'
+						act '...':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breaknews.jpg"></center>'
+							'"One thing is sure! She''s on the edge to go out from this house! I don''t tollerate her behaviour anymore...just another time...and..."<br>"Come on mom...maybe she found a friends, or she stayed at a schoolmate home..."<br>Reporter: "...The dead body we found show traces of violence...but the blood was cleaned with water... . We cannot say how many hours she stayed in the water...but a stink comes from the body... . You: go look in the purse if she has an ID... ."<br>Cameraman: "..."<br>Reporter: "We are near the sewer, maybe that''s where she cames from... . Her clothes are surely the clothes of a prostitute... . She was probably working on the street before she found the death... . Our report maybe will reveal in the future if that''s sporadic case or the beginning of a long list of a prostitute murdering...for the moment we can only serve you the true...as crude as it could be."<br>Cameraman: "...Here..take a look."<br>Reporter: "The prostitute has a name: <<$pcs_firstname>> <<$pcs_lastname>>. That''s everything at the moment from Pavlovsk...the line will return to the weather till the police arrival... ."<br>...<br>..."Natasha..."...'
+							act '...':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/mother.jpg"></center>'
+								'..."...N-n..."...'
+								act '...':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews3.jpg"></center>'
+									'...Woman: "...N-no..."'
+									act 'One day later':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/day_search.jpg"></center>'
+										'Woman: "...I''m hearing..."<br>Man: "Maybe we got something"<br>Woman: "Bring it here."'
+										act 'Two days later':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/blood1.jpg"></center>'
+											'Woman: "..."<br>Florist: "...I''m sorry, we only have premade bouquet... . Should i gave you one?"<br>Woman: "Give me all."...'
+											act 'Five minutes after':
+												*clr & cla
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/blood.jpg"></center>'
+												'Doc: "Where were you been?"<br>Woman: "..."<br>Man: "May your soul rest in peace."<br>Doc: "R-red? B-but that means...."'
+												act '...':
+													*clr & cla
+													'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/war.jpg"></center>'
+													'Woman: "War."'
+													act '...': gt 'mod_iwhore_jenna', 'endscreen'
+												end	
+											end	
+										end	
+									end
+								end
+							end
+						end
+					end	
+				end
+			end
+		end
+	elseif over = 15:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/zend.jpg"></center>'
+		'....'
+		act 'Two hours later':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/money.jpg"></center>'
+			'Woman: "How much do they want?"<br>Doc: "75.000..."<br>Woman: "Cash or transaction?"<br>Doc: "But...it''s five time the standard cleaning..."<br>Woman: "Cash or transaction?"<br>Doc: "Cash..."<br>Woman: "Pay them."<br>Doc: "...But..."<br>Woman: "Should i repeat me?"<br>Doc: "...It''s only that..."<br>Woman: "Can''t you smell it? Can''t you smell that there''s someone working against us?"<br>Doc: "..."<br>Woman: "I want her to be cleaned as if she''s born today... . Go now, don''t make me lose more time."<br>Doc: "...Yes madam..."'
+			act 'The day after':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/day_search.jpg"></center>'
+				if body_healing >= 3:
+					'Mechislav: "Are we looking for something in particular? I just searched here... ."<br>Woman: "...No. I only want to see that trait she walked... ."<br>Mechislav: "You will make you dirty... ."<br>Woman: "..."<br>Mechislav: "Did i said something wrong?"<br>Woman: "No... . Keep looking, when we''ve done we had to add something to that place..."'
+				else
+					'Mechislav: "We could split and looking different paths... ."<br>Woman: "There won''t be need to be fast... ."<br>Mechislav: "You will make you dirty... ."<br>Woman: "..."<br>Mechislav: "Did i said something wrong?"<br>Woman: "No... . Keep looking, when we''ve done we had to add something to that place..."'
+				end
+				act 'Two days later':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/innocence0.jpg"></center>'
+					'Woman: "..."<br>Florist: "...I''m sorry, we only have premade bouquet... . Should i gave you one?"<br>Woman: "Give me three..."...'
+					act 'Five minutes later':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/innocence1.jpg"></center>'
+						'Doc: "Where were you been?"<br>Woman: "..."<br>Man: "May your soul rest in peace."<br>Woman: "I''m sorry <<$pcs_nickname>>, it was the best i could do...your memory is cleaned. That you can walk among your friends fields in bloom... ."<br>Doc: "We should go now..."<br>Woman: "Yes, we finished... . Here... ."'
+						act '...': gt 'mod_iwhore_jenna', 'endscreen'
+					end
+				end
+			end
+		end
+	elseif over = 16:
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/system/gameover/time.mp4"></video></center>'
+		'....'
+		wait 7000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endless.jpg"></center>'
+		'....'
+		act '"Stop it!"':
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/system/gameover/timelapse.mp4"></video></center>'
+			'...."...Stop...it..."...'
+			if preg = 1:
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endlessmother.jpg"></center>'
+					'"I''ve a good grades...mom...do you want to look at them?..."'
+					act '...': gt 'mod_iwhore_jenna', 'endscreen'
+				end
+			else
+				if StoryLine = 0:
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endless0.jpg"></center>'
+						'....'
+						act '...': gt 'mod_iwhore_jenna', 'endscreen'
+					end
+				else
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/endless1.jpg"></center>'
+						'"Anja, we should go now..."<br>"Ok Roma, two minutes... . Guys, we''ll return later to auntie...rush rush."<br>"Yes mom... ."<br>"See you later sis..."'
+						act '...': gt 'mod_iwhore_jenna', 'endscreen'
+					end
+				end
+			end
+		end
+	elseif over = 17:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/awake.jpg"></center>'	
+		'...and nothing more.'
+		act 'Two days later':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/gavend0.jpg"></center>'
+			'Inna: "...War knife."<br>Gavriil: "Leave him to me."<br>Inna: "Gavriil..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/gavend1.jpg"></center>'
+				'Gavriil: "He''s mine."<br>Inna: "Go."'
+				act '...': gt 'mod_iwhore_jenna', 'endscreen'
+			end
+		end
+	elseif over = 18:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/zend.jpg"></center>'
+		'....'
+		act '15:07 P.M.':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/updated.jpg"></center>'
+			'Doc: "What did the doctor...?"<br>Woman:"..."<br>Doc: "I-is...she...?"<br>Mechislav: "..."<br>Woman:"Pavlovsk. Doc: stay."<br>Doc: "..."<br>Mechislav: "..."'
+			act 'Two hours later':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/money.jpg"></center>'
+				'Woman: "How much do they want?"<br>Doc: "75.000..."<br>Woman: "Cash or transaction?"<br>Doc: "But...it''s five time the standard cleaning..."<br>Woman: "Cash or transaction?"<br>Doc: "Cash..."<br>Woman: "Pay them."<br>Doc: "...But..."<br>Woman: "Should i repeat me?"<br>Doc: "...It''s only that..."<br>Woman: "Can''t you smell it? Can''t you smell that there''s someone working against us?"<br>Doc: "..."<br>Woman: "I want her to be cleaned as if she''s born today... . Go now, don''t make me lose more time."<br>Doc: "...Yes madam..."'
+				act 'The day after':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/day_search.jpg"></center>'
+					if body_healing >= 3:
+						'Mechislav: "Are we looking for something in particular? I just searched here... ."<br>Woman: "...No. I only want to see that trait she walked... ."<br>Mechislav: "You will make you dirty... ."<br>Woman: "..."<br>Mechislav: "Did i said something wrong?"<br>Woman: "No... . Keep looking, when we''ve done we had to add something to that place..."'
+					else
+						'Mechislav: "We could split and looking different paths... ."<br>Woman: "There won''t be need to be fast... ."<br>Mechislav: "You will make you dirty... ."<br>Woman: "..."<br>Mechislav: "Did i said something wrong?"<br>Woman: "No... . Keep looking, when we''ve done we had to add something to that place..."'
+					end
+					act 'Two days later':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/innocence0.jpg"></center>'
+						'Woman: "..."<br>Florist: "...I''m sorry, we only have premade bouquet... . Should i gave you one?"<br>Woman: "Give me three..."...'
+						act 'Five minutes later':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/innocence1.jpg"></center>'
+							'Doc: "Where were you been?"<br>Woman: "..."<br>Man: "May your soul rest in peace."<br>Woman: "I''m sorry <<$pcs_nickname>>, it was the best i could do...your memory is cleaned. That you can walk among your friends fields in bloom... ."<br>Doc: "We should go now..."<br>Woman: "Yes, we finished... . Here... ."'
+							act '...': gt 'mod_iwhore_jenna', 'endscreen'
+						end
+					end
+				end
+			end
+		end
+	else
+		''
+	end
+
+!	act 'End?':gt 'mod_iwhore_jenna', 'endscreen'
+end
+
+if $ARGS[0] = 'endscreen':
+	showstat 0
+	showobjs 0
+	showinput 0
+	fcolor = RGB(255,255,255)
+	bcolor = RGB(0,0,0)
+	lcolor = RGB(106,90,205)
+	cls
+	cla
+!!there is no point having this optional 8, I say just delete this as I reworded the first bit to be more generic for drugs.
+	'<center><b><font color="maroon">GAME OVER</font></b></center>'
+
+	if over = 14:
+		*nl & *nl
+		'<center><h2>Special ending - iwhore! Breaking News</h2></center>'
+		*nl & *nl
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/breakingnews2.jpg"></center>'
+		'...Anchorgirl: "...And now we pass to the weather in St Petersbourg. The temperature will be about 3 at the 15:00...no, before 15:00 on the 21 or the 37 of the month. Hey! The temperature cannot be measured in mm! Who wrote that?"<br>Director: "Is she serious? Who put her on the weather?"<br>Anchorman: "...I don''t know and  don''t mind...she has other more interesting talents...my balls were never been so cleaned...hehehe..."'
+	elseif over = 15 or over = 18:
+		*nl & *nl
+		'<center><h1>Special ending - iwhore! Flowers</h1></center>'
+		*nl & *nl
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/innocence.jpg"></center>'
+		'...'
+	elseif over = 16:
+		*nl & *nl
+		'<center><h1>Special ending - iwhore! Sleeping</h1></center>'
+		*nl & *nl
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/system/gameover/deep.jpg"></center>'
+		'...'
+	elseif over = 17:
+		*nl & *nl
+		'<center><h1>Special ending - iwhore! Haunted</h1></center>'
+		*nl & *nl
+		'<center><img <<$set_imgh>> src="images/system/gameover/stab.jpg"></center>'
+		'...'
+	else
+		*nl & *nl & *nl & *nl & *nl & *nl & *nl & *nl & *nl & *nl
+		'<center><h1>end</h1></center>'
+	end
+
+	act 'Return to main menu':gt 'start'
+	act 'Load a savegame':opengame
+	act 'Load last auto-save':gt 'mod_iwhore_jenna', 'load_autosave'
+end
+
+if $ARGS[0] = 'load_autosave':
+	if StoryLine = 0:
+		opengame 'autosave.sav'
+	else
+		opengame 'autosave_alt.sav'
+	end
+end
+
+
+--- mod_iwhore_jenna ---------------------------------

+ 1665 - 0
locations/mod_iwhore_limbus.qsrc

@@ -0,0 +1,1665 @@
+# mod_iwhore_limbus
+!!!!!!!!!!!!!!!!DAY1!!!!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'day1':
+	cls
+	SHOWSTAT 1
+	SHOWOBJS 1
+	KILLOBJ
+	
+	if flame = 3:
+		ADDOBJ	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'		
+	elseif flame = 2:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	elseif flame = 1:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	else
+		''	
+	end
+	*clr & cla
+	minut += 1
+	$day_whore_switch = 'day1a1'
+	if MagikDostup = 0:
+		pcs_mana = 0
+	end
+	pcs_health = 1
+	pcs_sleep = 0
+	pcs_stam = 0
+	pcs_willpwr = 0
+	pcs_energy = 37
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fall.jpg"></center>'	
+	'..."...AHHHHHHHHH!!!!!!!..."....'
+	wait 5000
+	*clr & cla
+	KILLOBJ
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/in.jpg"></center>'
+	'..."....NOOOOOO!!!!!!!".'
+	wait 5000
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm55.mp4"></video></center>'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	pain['killer'] = 0
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start3.jpg"></center>'	
+	'..."IT HURTS!!!! PLEASE!!!!"...<br>Thousand knives pass through your heart...'
+	wait 8000
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm35.mp4"></video></center>'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	PL 'You were cleaned from sweat and mud and completely disinfected.'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start4.jpg"></center>'
+	'....''...Who''s that woman?...She seems familiar...i cannot clearly see her face....''...'
+	wait 5000
+	'<br>...Staff:"100/60...beating 35. Stable."<br>Ignatiy Bogomolov: "It seems... . That doesn''t means to lower the guard! START THE SEVENTH POUCH AND THE CHECK UP AGAIN!!!!" <br>Staff: "YES SIR!"<br>Ignatiy Bogomolov: "OXIGEN!..."... . '
+	wait 5000
+	'<br>...''...Is someone there? I think i''ve heard...no. It''s just my imagination...i...i have to move....'' ...'
+	act 'Move away':
+		minut += 5
+		gs 'mod_iwhore_realstat' , 'status'
+		cls
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start5.jpg"></center>'
+		'...."That''s seems to be a road..."...'
+		act '...':
+			*clr & cla
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/walker0.jpg"></center>'
+			'...."...And that''s seems to be its end..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'switch':
+	cls
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	if $day_whore_switch = 'memories':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/door.jpg"></center>'	
+		'...'
+		act 'Pass the light':gt 'mod_iwhore_limbusbattle', 'mind'
+!	elseif $day_whore_switch = 'bodyhealing':
+!		gt 'mod_iwhore_limbusbattle', 'body'
+	else
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/switch.jpg"></center>'	
+		if $day_whore_switch = 'day1a1':
+			$day_whore_switch = 'day1a'
+			'"Wonderful...where should i supposed to go?"'
+			msg 'Dear player, do not think you found a bug here. Keep looking for the right path... . This message will not expode when you will read it but it won''t be repeated neither. Have a nice play.'
+		elseif $day_whore_switch = 'day2b':
+			'"The picture left the place to the cross road...two are the things: this is a dream, or someone is playing a trick with me..."'
+		elseif $day_whore_switch = 'day4a':
+			'..."...but...where?..."...'
+		elseif $day_whore_switch = 'newborn2':
+			'..."...Why i don''t keep my mouth shutted?..."...'
+		else
+			'"Again..."'
+		end
+		'...'
+		act 'Left':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+		
+		act 'Middle':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+		
+		act 'Right':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end	
+end
+
+if $ARGS[0] = 'day1a':
+	minut += 5
+	pcs_sleep = 3
+	pcs_stam = 3
+	pcs_willpwr = 1
+	pcs_mood = 1
+	pcs_energy = pcs_energy / 3
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	$day_whore_switch = 'day1b'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/a0.jpg"></center>'
+	'..."...It''s going to be all black..."...'	
+	act '"IS SOMEONE THERE? HELP PLEASE!!!"':
+		cls
+		gs 'mod_iwhore_realstat' , 'day'
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/zangels0.jpg"></center>'	
+		'....Woman: "Shhhh!!! Do not make noise!" <br>Doc: "I''m sorry...i see nothing... . Did you speak with the doctor?" <br>Woman: "Not yet." <br>Doc: "...All that tubes..." <br>Woman: "If you touch them i''ll kill you with my own hands..." <br>Doc: "Ship! Let me sit..."'
+		act '"Someone? Is someone there...i don''t like that joke..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/a1.jpg"></center>'	
+			'...Doc: "S-see?...I will be good..." <br>Mechislav: "We should let her rest..."...<br>Doc: "Agree...it''s a little scary...i mean..." <br>Woman: "Shut up you both! And wait for me here...i have to take a thing..."'
+			wait 5000
+			'<br>"No one is here...but it seems real...am i starting to hear voices?"...'
+			wait 3000
+			'<br>"..."'
+			act '"No, it was just my imagination"':
+				*clr & cla
+				if StoryLine = 0:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/zangels2.jpg"></center>'	
+					'Woman: "See i was fast..." Mechislav: "Yet i don''t understand why you care so much about her, she''s good at work...but she will not make the difference. She''s just like the others." Woman: "...and me." Mechislav: "I..." Doc: "...Mieszko... you are new to us...with time you''ll understand..."<br>Woman: "...No offence is taken...thanks Doc..."'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/zangels1.jpg"></center>'	
+					'Woman: "...Let me pose that..." <br>Mechislav: "I don''t understand why you care so much about her, she''s good at work...but she will not make the difference. She''s just like the others." <br>Woman: "...and me." <br>Mechislav: "I..." <br>Doc: "...Mieszko... you are new to us...with time you''ll understand..."<br>Woman: "...thanks Doc..." <br>Mechislav: "...I''m sorry..i didn''t mean..." <br>Woman: "...No offence is taken... . Her family will be here in few moments, and we got some work to do. Mieszko..."<br>Mechislav: "Yes Madam?" <br>Woman: "Go hunting. ...Doc: bring me home."<br>Mechislav/Doc: "At your orders Madam..."'
+				end
+				'....'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/a2.jpg"></center>'	
+					'...."I never see that land...No...i never see a land...why i cannot remember a single place...i ...feel...lost..."'
+					act 'Walk':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/walker1.jpg"></center>'	
+						'...."..."'
+						act 'Pass the end':gt 'mod_iwhore_limbus', 'switch'
+					end	
+				end	
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day1b':
+	cls
+	*clr & cla
+	hour = 16
+	minut += 5
+	pcs_sleep = 2
+	pcs_stam = 2
+	pcs_willpwr = 2
+	pcs_energy = pcs_energy - pcs_energy / 3
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day1c'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/b0.jpg"></center>'	
+	'"People..."...'
+	act '..."Hey! Where are you going?"...':
+		cls
+		*clr & cla
+		minut += 5
+		gs 'mod_iwhore_realstat' , 'day'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/b1.jpg"></center>'	
+		'"I can give you a passage, you got the right money..."'
+		act '"I-i..."':
+			cls
+			*clr & cla
+			PL '<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/status/broken.jpg"></center>'	
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			minut += 5
+			gs 'mod_iwhore_realstat' , 'status'
+			if StoryLine = 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/zangels1.jpg"></center>'	
+				'Woman: "...Let me pose that..." Doc: "...We should go rest..."<br> Mechislav: "...Agree, and you eat nothing after you gave the blood..." Woman: "...The same for you...but we''ve not finished yet. Mieszko...."<br>Mechislav: "Yes Madam?" <br>Woman: "Go hunting. ...Doc: go home."<br>Mechislav/Doc: "But..."<br>Woman: "The sun is near to rise; it''s not that i will be lost."<br>Mechislav/Doc: "..."<br>Woman "...There''s something that''s not clear, i won''t let her alone...you know i can take care of myself."<br>Mechislav/Doc: "As you wish..."'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/family/mother.jpg"></center>'	
+				'"Where is she?" Nurse: "You are the mother right? We just moved her in the intensive care units; you should wait for the doctor..."'
+				wait 5000
+				'"WHERE IS SHE? I WON''T ASK YOU ANOTHER TIME! THREE TWO..."'
+				wait 1000
+				'Nurse: "N-no no...follow me..."'
+			end
+			
+			act '...':
+				cls
+				*clr & cla
+				pcs_mood += 20
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/b2.jpg"></center>'	
+				if StoryLine = 0:
+					'Woman: "...I''m sorry <<$pcs_firstname>>...it seems that someone wants to fight against me...and it happens you were in the middle... . I cannot bring you back to your life as nothing happened...but i swear: some head will be chopped. Rest well my friend...you will need all of your strengh...and more..."....'
+				else
+					'Nurse: "Here...please...do not tell Dr. Bogomolov i let you pass...he..."<br>"...<<$pcs_nickname>>...It cannot be...my <<$pcs_nickname>>...."<br> The nurse moves her hands on your mother''s shoulder "...I''m sorry..."<br>"...Who was?"<br>"We don''t know...maybe the police know something..."<br>"I WANT TO KNOW WHO MADE THIS TO MY DAUGHTER NOW!!!!"<br>Nurse: "I''m sorry madam, please...it''s for your own daughter safety...please be quiet..."'
+				end
+				wait 4000
+				if StoryLine = 0:
+					'<br>..."...who''s that voice?...it seems to be friendly... . Where''s the the woman in the boat? She...vanish..."...'
+				else
+					'<br>..."...I think i know that voice...it gave me heat... . Where''s the the woman in the boat? She...vanish..."...'
+				end
+				act '...':gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day1c':
+	cls
+	*clr & cla
+	hour = 21
+	minut += 5
+	pcs_sleep = 1
+	pcs_stam = 1
+	pcs_willpwr = 1
+	pcs_mood = 1
+	pcs_energy = pcs_energy - pcs_energy / 3
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	if preg = 1:
+		$day_whore_switch = 'day1d'
+	else
+		$day_whore_switch = 'bodyhealing'
+	end
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/c0.jpg"></center>'	
+	'"There''s a couple...maybe they know something..."'
+	act '"Hey...I think i''m lost..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/c1.jpg"></center>'	
+		'....But as they do not notice you they start to kiss each other. It start to rain...and politely the man cover both with his umbrella...that start to shine...'
+		wait 4000
+		act '..."Another trick?"':
+			cls
+			*clr & cla
+			PL '<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/status/broken.jpg"></center>'	
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			minut += 5
+			pcs_mood += 20
+			gs 'mod_iwhore_realstat' , 'status'			
+			if StoryLine = 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/help0.jpg"></center>'	
+				'Woman: "I''m sure you have nothing against some weed...maybe...maybe your mood will be improved...even in the place you are..."...'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/family/sister0.jpg"></center>'	
+				'...."...Mom..."<br>"...Anja..."<br>"...Tell me that''s not true..."<br>"..."<br>"...M-mom...please..."<br>"...I wish...i-i...i wish...oh Anja...i don''t know what to do..."....<br>"I-i..."<br>"..." the only strenght your mother has is to cry; your sister understand it...and feel the same. In those moments comes out the meaning of "family", where each member help the next to carry the stone, no matter the weight... . "...W-what the doctor said..."<br>"...I-i...i didn''t see him yet...they are...consulting...about...about..."<br>"...Mom..." There are no way for your sister to stop your mother tears...because hers are starting to comes out too..."...Oh...<<$pcs_nickname>> ...no...please...no..."....'
+			end
+			
+			act '...':
+				cls
+				*clr & cla
+				gs 'mod_iwhore_realstat' , 'day'
+				fcolor = rgb(255, 255, 255)
+				bcolor = rgb(0, 0, 0)
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/c2.jpg"></center>'	
+				'...."Who are you?"...<br>A woman dressed in black take the place of the kissing couple...<br>"Hey! I''m speaking to you..."<br>She turns to you without looking in your eyes...and then she walk away...'
+				if $day_whore_switch = 'day1d':
+					act '...':gt 'mod_iwhore_limbus', 'switch'
+				else
+					act '...':gt 'mod_iwhore_realtime', 'dayend'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day1d':
+	cls
+	*clr & cla
+	minut += rand(3,20)
+	pcs_mood = 0
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'"...That''s not natural...i...i...don''t have cold...but...i''m...freezing..."'
+	act '...':
+		cls
+		*clr & cla
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'
+		PL '--:--  ---  --/--/----'
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/d0.jpg"></center>'	
+		'"...And tell me...what do you want to wear for your birthday?"<br>"I want to be a cowboy! Bang! Bang!"<br>"Well mom will teach you to shoot in that case..."'
+		wait 4000
+		act '"I cannot move...what''s going on..."':
+			*clr & cla
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/d1.jpg"></center>'	
+			'"Mom! Mom! Look there''s Dad!"<br>"Where?"<br>"There! Can''t you see him?<br>"That''s not Dad! Run!"'			
+			wait 5000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/d2.jpg"></center>'	
+			'....'
+			wait 2000
+			gt 'mod_iwhore_realtime', 'dayend'
+		end
+	end
+end
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!DAY2!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+if $ARGS[0] = 'day2':
+	cls
+	*clr & cla
+	minut += 3
+	KILLOBJ
+	PL	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/help0.jpg"></center>'	
+	if StoryLine = 0:
+		PL	'Woman: "Do not fail doctor."'		
+	else
+		PL	'Doc:"...They called..."<br>Woman: "...Do not fail doctor."'		
+	end
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/start0.jpg"></center>'	
+	'..."...It''s quiet...here..."...'
+	wait 6000
+	gt 'mod_iwhore_realtime', 'secondcall'
+!	if flame < 2:
+!		gt 'mod_iwhore_limbus', 'flowers1'
+!	else
+!		''
+!	end
+end
+
+if $ARGS[0] = 'day2start':
+	cls
+	*clr & cla
+	hour = 8
+	minut = 16
+	pcs_horny = 0
+	music_loop = 0 & close all
+	pain['killer'] = 1
+	KILLOBJ
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day2a'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/start0.jpg"></center>'	
+	'..."I cannot stay here ...i have to move..."'
+	act 'Rise yourself':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/start2.jpg"></center>'	
+		'...."...Was i sleeping? It seems a bad dream..."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/start3.jpg"></center>'	
+			'...."...Another woman...she seems familiar but i cannot see her face..."'
+			act 'Walk away':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/start4.jpg"></center>'	
+				'...."...A woods? How did i end up in a woods?..."...'
+				act '...':
+					cls
+					*clr & cla
+					PL '<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/status/broken.jpg"></center>'	
+					PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+					minut += 5
+					gs 'mod_iwhore_realstat' , 'status'
+					if StoryLine = 0:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage0g.jpg"></center>'	
+						'....Nurse lida: "Oh! The woman must have changed the flower...she seems to be a friend of you. Well she had taste...and she seems to care about you. Come on <<$pcs_nickname>>, another day and you will see her again...don''t be sad..."'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/nicknamefb.jpg"></center>'	
+						'Vladimir: "...Natasha...i made as fast as i was able, the cargo was late and they didn''t let me...OH MY!!!!...No!...It can''t be...."<br>"..."<br>Vladimir: "...<<$pcs_nickname>>...what happened?...Who made her that?"<br>"...I-i don''t know Vlad..."<br>Vladimir: "...But...the police...someone...did the police passed?..."<br>"...No...and i won''t left her alone."<br>Vladimir "...o-of course..."<br>"...Is Kolka with you?..."<br>Vladimir "...Yes...he bring her favourite bear...h-he want to see <<$pcs_nickname>>..."<br>"...Leave it there. ...I''m sorry but Kolka is too young, please Vlad...ask Anja to bring him back at home..."<br>"...O-of course Natasha...you are right..."'
+					end
+					'....'
+					act '...':gt 'mod_iwhore_limbus', 'switch'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day2a':
+	*clr & cla
+	hour += 4
+	minut += rand(1,8)
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'	
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/a0.jpg"></center>'	
+	'"Hi! Have you seen my sister?"'
+	act '"N-no...do you know where are we?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/a1.jpg"></center>'	
+		'"Hehehe...my sister will never find me...hehehe..."'
+		act '..."But...there''s a girl...maybe she''s your sister...she seems worried..."...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/walker0.jpg"></center>'	
+			'...."N-non sense...i keep moving from a place to another without logic..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day2b':
+	*clr & cla
+	hour += 4
+	minut += rand(1,8)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/b0.jpg"></center>'	
+	'"Hey...I''m sorry...do you know the exit from this place?..."<br>"..." <br>The woman quickly glance at you and return to her business...'
+	act '"Well...thanks...really. Why give me some help? Sure..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/b1.jpg"></center>'	
+		'...."???".... You don''t know where you are but suddenly you find yourself looking to the girl who ignored you before...at least that''s your impression. Her eyes are covered in some black sticky thing...and now they are red: she''s facing a white tiger...without fear. She''s fiery...like the tiger. None of them make a move...'
+		act '"I-i...don''t understand..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/walker1.jpg"></center>'	
+			'"...Not again...even standing in a place i keep moving...i think and i move, i speak and i move...i move...and who knows...sometimes i move and sometimes not..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day2c':
+	*clr & cla
+	hour += 4
+	minut += rand(1,8)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	if preg = 1:
+		$day_whore_switch = 'day2d'
+	else
+		$day_whore_switch = 'bodyhealing'
+	end	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/c0.jpg"></center>'	
+	'"Pay attention to the tree..."'
+	act '"Hey...you seems to k..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/c1.jpg"></center>'	
+		'"Have you see the tree?"'
+		act '"N-no..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/walker2.jpg"></center>'	
+			'...."...Another road..."...'
+			if $day_whore_switch = 'day2d':
+				act '...':gt 'mod_iwhore_limbus', 'switch'
+			else
+				act 'Walk':gt 'mod_iwhore_realtime', 'dayend'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day2d':
+	cls
+	minut += rand(20,30)
+	pcs_willpwr = 0
+	pcs_stam = 0
+	pcs_sleep = 0
+	gs 'mod_iwhore_realstat' , 'day'
+	cls
+	PL	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/help0.jpg"></center>'	
+	gs 'mod_iwhore_realstat' , 'status'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'"...Again that sensation...i...i...don''t have cold...but...i''m...freezing..."'
+	act '"Move move move! Why i cannot move?"':
+		cls
+		*clr & cla
+		PL	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/d0.jpg"></center>'	
+		'"Do not go to far!"<br>"No mom..."'
+		act '..."...NGHHHH!!!!"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/d1.jpg"></center>'	
+			'....'
+			wait 3000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/walkerd.jpg"></center>'	
+			'...."...I keep seeing things...why?..."...'
+			act '...':gt 'mod_iwhore_realtime', 'dayend'
+		end
+	end
+end
+
+!!!!!!!!!!!!!!!!!!!!!!DAY3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+
+if $ARGS[0] = 'day3':
+	cls
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start0.jpg"></center>'	
+	'..."...Where is the woman?...Is it all in my head?..."...You just have the strenght to stand up..."I...don''t..."'
+	wait 8000
+	*clr & cla
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/darkness.mp4"></video></center>'
+	'...When everything start to being dark..."...Not again! What do you want from me? GO AWAY!!!!!...LEAVE ME ALONE!!!!!"...'
+	wait 9000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/grip.jpg"></center>'
+	'...."...Shooo! Shooo! Go away!..."...'
+!	'...."...Do not dare!...I tear off your feathers!..."'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fall.jpg"></center>'
+	'...But the crow wasn''t of the same idea..."....AAAAAAAAAAAAHHHHHHH!!!!!!!!!.....".....'
+	if flame < 2:
+		gt 'mod_iwhore_jenna', 'flowers'
+	else
+		''
+	end
+	wait 5000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/in.jpg"></center>'
+	'..."...NOOOOOO!!!! NONONONONONONOOOOOOO!!!!........."'
+	wait 2000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'
+	'....'
+	wait 2000
+	pain['killer'] = 0
+	cls
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start1.jpg"></center>'
+	'...."....BURN! IT BURN! TURN IT OFF!!!! PLEASEEEE!!!"'
+	wait 2000
+	*clr & cla
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/burn.mp4"></video></center>'
+	'You scream cannot be heard....'
+	wait 5000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller2.jpg"></center>'
+	'....and the source of your pain doesn''t stop...'
+	wait 5000
+	*clr & cla
+	gt 'mod_iwhore_realtime', 'daystart'
+end
+
+
+if $ARGS[0] = 'day3start':
+	cls
+	*clr & cla
+	hour = 8
+	minut += rand(1,23)
+	KILLOBJ
+	music_loop = 0 & close all
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day3a'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start2.jpg"></center>'
+	'"I can do nothing else than move away..."'	
+	act '...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start3.jpg"></center>'	
+		'"...The same girl is here...i know i know her...but  don''t rememebr. It''s like to live in a loop..."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start4.jpg"></center>'	
+			'...."...That''s seems to be an exit... . Yes...but...an exit for what...i cannot see and end..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day3a':
+	cls
+	*clr & cla
+	hour += 4
+	minut = rand(1,45)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/a0.jpg"></center>'	
+	'"Hi...do you like to read?"...You twink your eyes...a girl sit on the grass reading a book....<br>"I-i..."<br>"Here take this. It will keep you company." ...and offer you to take a book....'
+	act '"...But...who are you?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/a1.jpg"></center>'	
+		'...."A...city... . Finally." In front of you stand what to seems to be a city...a big one considering the hig building that almost touch the sky..."...Is...that...the book?...But...i...cannot read it...it''s all...blank... . And the girl vanished... ."'
+		act '"I have to reach the city..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker0.jpg"></center>'	
+			'...."...There must be someone...."....'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day3b':
+	cls
+	*clr & cla
+	hour += 4
+	minut = rand(1,45)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/b0.jpg"></center>'	
+	'You feel like to wonder in a circle, when you found a girl..."Hi...can you help me? I cannot reach the city..."'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/b0.jpg"></center>'	
+	'"I''ll show you the way."'
+	wait 2000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/b1.jpg"></center>'	
+	'..."Hey what...?"<br>"..."<br>A woman dressed in black keep looking at you... . There are several paper on the floor...it''s a mess...but she doesn''t care...and so you do...<br>"Can you help me? I think i''m lost...i''m trying to reach the city..."<br>"You''re too far ahead you should go back a little."'
+	act 'What...what do you mean?':
+		*clr & cla
+		pcs_mood = 0
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/b2.jpg"></center>'	
+		'The place start to became darker and darker... . You find yourself walking in an hallway with several jails... . All are empty...except one... . A man stand in there grasping the bars with his head lowered; he''s probably thinking about his situation...you almost asked him about his condition, but something stopped you from speak. "I-i..."'
+		act '...''...N-no...i have to go...''...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker1.jpg"></center>'	
+			'"What...was that?...i-i...feared him...."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day3c':
+	cls
+	*clr & cla
+	hour += 5
+	minut = rand(1,15)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	if preg = 1:
+		$day_whore_switch = 'day3d'
+	else
+		$day_whore_switch = 'bodyhealing'
+	end	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/c0.jpg"></center>'	
+	'You find yourself walking in a tunnel; you are near at its end when you see a woman figure "Hey! Can you help me?"<br>"I''m sorry i''m late...we shouldn''t go without them...i have to run..."'
+	act '"But..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/c1.jpg"></center>'	
+		'..."...How many time do i have to tell you. Don''t worry i''m the best... . We''ll not arrive in time if we turn back."...'
+		act '"Hey! Please...i think i''m lost..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/c2.jpg"></center>'	
+			'...."...Helmets....they aren''t throwed away...they seems to be disposed...by someone..."...'
+			act 'Walk':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker2.jpg"></center>'	
+				'...."..."...'
+				if $day_whore_switch = 'day3d':
+					act '..."A...dead end? I must have take the wrong path..."...':gt 'mod_iwhore_limbus', 'switch'
+				else
+					act '..."A...dead end? I must have take the wrong path..."...':gt 'mod_iwhore_realtime', 'dayend'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day3d':
+	cls
+	*clr & cla
+	minut += rand(10,35)
+	pcs_willpwr = 0
+	pcs_stam = 0
+	pcs_sleep = 0
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'"...I hate this....i hate this...What''s that?..."'
+	act '"...Why? ....WHY?"':
+		cls
+		*clr & cla
+		PL	'<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/d0.jpg"></center>'	
+		'"...These..."'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/d1.jpg"></center>'	
+		'...."...are for you."<br>"Thanks!!!"'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker3.jpg"></center>'	
+			'....'
+			act '...':gt 'mod_iwhore_realtime', 'dayend'
+		end
+	end
+end
+
+
+!!!!!!!!!!!!!!!!DAY4!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+if $ARGS[0] = 'day4':
+	cls
+	*clr & cla
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/switchend.jpg"></center>'	
+	'..."...Another light at the end..."...'
+	act 'Pass the light':
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/darkness.mp4"></video></center>'
+		'...Everything is going to be dark..."...No no no no no no no no..... GO AWAY!!!!!...LEAVE ME ALONE!!!!!"...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/grip.jpg"></center>'
+		'...."...Do not dare!..."...'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fall.jpg"></center>'
+		'...Again, the crow wasn''t of the same idea..."....I sweaaaaAAAAAAAAAAAAHHHHHHH!!!!!!!!!.....".....'
+		if flame < 1:
+			gt 'mod_iwhore_jenna', 'flowers'
+		else
+			''
+		end
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/in.jpg"></center>'
+		'..."...NOOOOOO!!!! NONONONONONONOOOOOOO!!!!........."'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'
+		'....'
+		wait 1500
+		pain['killer'] = 0
+		cls
+		*clr & cla
+		gs 'mod_iwhore_realstat' , 'day'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start1.jpg"></center>'
+		'...."...YOU ARE BURNING ME!!!! LET ME GO!!! LET ME GOOOO!!!..."'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/start0.jpg"></center>'
+		'...."...leave...me..."...'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller2.jpg"></center>'
+			'....'
+			act '...':gt 'mod_iwhore_realtime', 'daystart'
+		end
+	end
+end
+
+if $ARGS[0] = 'day4start':
+	cls
+	*clr & cla
+	KILLOBJ
+	music_loop = 0 & close all
+	hour = 8
+	minut = rand(17,35)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day4a'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/start2.jpg"></center>'
+	'..."...It''s going to be dark again..."....'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/start2.jpg"></center>'
+	'..."...I have to move..."...'
+	act 'Move':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walker0.jpg"></center>'	
+		'...."...and go away..."...'
+		act '...':gt 'mod_iwhore_limbus', 'switch'
+	end
+end
+
+if $ARGS[0] = 'day4a':
+	cls
+	*clr & cla
+	hour += 4
+	minut += rand(1,5)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/a0.jpg"></center>'	
+	'"Why don''t you fly?"'
+	act '"Excuse me?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/a1.jpg"></center>'	
+		'"Do not fear the void...jump...and fly with me..."'
+		act '"B-but..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/a2.jpg"></center>'	
+			'"Come on!"....<br>"...I cannot..."...<br>"I''m sorry."...'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walker1.jpg"></center>'	
+				'...."...To fly..."...'
+				act 'Pass the door':gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day4b':
+	cls
+	*clr & cla
+	hour += 4
+	minut = rand(1,30)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/b0.jpg"></center>'	
+	'"Hi, can you help me?"<br>"Uh?"'
+	act '"Is that an exit?"...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/b1.jpg"></center>'	
+		'"Yes."<br>"Oh thank you thank you thank you!!!! I was going mad..."<br>"Follow me."<br>"Yes!...uh?..."'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/b2.jpg"></center>'	
+		'...."..."....'
+		act 'Go away':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walker2.jpg"></center>'	
+			'....''...I''m going mad...''...'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day4c':
+	cls
+	*clr & cla
+	hour += 4
+	minut += 1
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	if preg = 1:
+		$day_whore_switch = 'day4d'
+	else
+		$day_whore_switch = 'bodyhealing'
+	end	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'	
+	'"Y-you got wings...black wings... . You seems different..."<br>"Have you seen my son?"<br>"No...I don''t think...can you help me?..."'
+	wait 5000
+	*clr & cla
+	pain['killer'] = 0
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c1.jpg"></center>'	
+	'"It doesn''t matter. Tell me what you see."<br>".....AAAAHHH!!! WHAT ARE YOU DOING?"'
+	wait 5000
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/moth.mp4"></video></center>'
+	PL '<b>22:25</b> Friday 31 December 2006'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c2.jpg"></center>'	
+	'...."Tell me."<br>"...T-there''s a boy on the bed...he seems alone and sad..."'
+	wait 5000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c2.jpg"></center>'	
+	'...."Where is She?"<br>"...T-there''s nobody else..."'
+	wait 4000
+	cls
+	*clr & cla
+	PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/moth.mp4"></video></center>'
+	PL '--:--  ---  --/--/----'
+	gs 'mod_iwhore_realstat' , 'status'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm35.mp4"></video></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3.jpg"></center>'	
+	'"Lie. Where is She?"<br>"There''s nobody...i swear...stop it please..."<br>"No. Help me: where is She?"'
+	act '"THERE''S NOBODY!!!! WHY DON''T YOU TRUST ME? "':
+		cls
+		*clr & cla
+		pcs_willpwr = 1
+		pcs_stam = 1
+		pcs_sleep = 1
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3.jpg"></center>'
+		PL '<b>23:59</b> Friday 31 December 2006'
+		gs 'mod_iwhore_realstat' , 'status'
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		KILLOBJ
+		ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c4.jpg"></center>'	
+		'"Where is She?"<br>"...T-there''s...a woman...near the door..."<br>"Is She touching him?"<br>"...I-it s-seems not..."<br>"IS SHE TOUCHING HIM?"'
+		act '..."NOOO! SHE''S NOT TOUCHING HIM!"':
+			cls
+			*clr & cla
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3.jpg"></center>'
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			KILLOBJ
+			ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c5.jpg"></center>'	
+			'"Tell me what you see."<br>"...A-a...young man...".....<br>----"...Oh...mom...i wish you were here to see me...tomorrow i will be married...I should be happy but if i close my eyes i cannot remember your face... . You left me everything a man could desire...but at wich price..."----'
+			act '"...T-tomorrow he will be married, but he miss his mother...l-let me go please..."':
+				cls
+				*clr & cla
+				pain['killer'] = 1
+				gs 'mod_iwhore_realstat' , 'day'
+				KILLOBJ 				
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm35.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'	
+				'"Thanks."'
+				wait 4000
+				*clr & cla
+				KILLOBJ 				
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'	
+				'..."...W-wait..."...<br>"What do you want?"'
+				act '..."W-who are you?..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c6.jpg"></center>'	
+					'"It doesn''t matter."<br>"...Y-your wings are black...w-why?..."<br>"No."<br>"...H-help me..."<br>"No."'
+					act '"...P-please..."':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c7.jpg"></center>'	
+						'"You cannot see."'
+						wait 4000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walker3.jpg"></center>'	
+						'...."...Where...? Where...?...Another place...she...left me...it''s gone...the pain it''s gone. I..."'
+						if $day_whore_switch = 'day4d':
+							act '"...i cannot stop..."':gt 'mod_iwhore_limbus', 'switch'
+						else
+							act '"...i cannot stop..."':gt 'mod_iwhore_realtime', 'dayend'
+						end
+					end
+				end
+			end
+		end
+		act '..."LET ME GO!!!!!"':
+			cls
+			*clr & cla
+			pcs_health = 0
+			pcs_willpwr = 0
+			pcs_stam = 0
+			pcs_sleep = 0
+			if whore_flame > 2 and rand(0,2) = 2:
+				whore_flame -= 1
+				sons_flame += 1
+			else
+				whore_flame -= 1
+			end
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3.jpg"></center>'
+			PL '--:--  ---  --/--/----'
+			gs 'mod_iwhore_realstat' , 'status'
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			KILLOBJ 				
+			ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm15.mp4"></video></center>'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3a.jpg"></center>'	
+			'"It doesn''t matter."'
+			wait 4000
+			cls
+			*clr & cla
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3a.jpg"></center>'
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c5.jpg"></center>'	
+			'"Tell me."<br>"...A-a...young man...".....<br>----"...Oh...mom...i wish you were here to see me...tomorrow i will be married...I should be happy but if i close my eyes i cannot remember your face... . You left me everything a man could desire...but at wich price..."----'
+			act '"...T-tomorrow he will be married, but he miss his mother...l-let me go please..."':
+				cls
+				*clr & cla
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3a.jpg"></center>'
+				PL '--:--  ---  --/--/----'
+				gs 'mod_iwhore_realstat' , 'status'
+				fcolor = rgb(255, 255, 255)
+				bcolor = rgb(0, 0, 0)
+				KILLOBJ
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/warning.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c6.jpg"></center>'	
+				'"Should I?"'
+				wait 6000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c1.jpg"></center>'	
+				'..."...P-Pl...p..."...'
+				wait 6000
+				cls
+				*clr & cla
+				KILLOBJ
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c3.jpg"></center>'
+				PL '--:--  ---  --/--/----'
+				gs 'mod_iwhore_realstat' , 'status'
+				fcolor = rgb(255, 255, 255)
+				bcolor = rgb(0, 0, 0)
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm15.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'	
+				'"Go away."'
+				wait 6000
+				cls
+				*clr & cla
+				pcs_health = 1
+				KILLOBJ
+				gs 'mod_iwhore_realstat' , 'day'
+				fcolor = rgb(255, 255, 255)
+				bcolor = rgb(0, 0, 0)
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm26.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c8.jpg"></center>'	
+				'...."...S-she left me....... ......i-i''m safe..."'
+				wait 8000
+				*clr & cla
+				KILLOBJ
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walker4.jpg"></center>'	
+				'...."...I..."'
+				if $day_whore_switch = 'day4d':
+					act '"...i cannot stay here..."':gt 'mod_iwhore_limbus', 'switch'
+				else
+					act '"...i cannot stay here..."':gt 'mod_iwhore_realtime', 'dayend'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day4d':
+	cls
+	*clr & cla
+	minut += 8
+	pcs_willpwr = 0
+	pcs_stam = 0
+	pcs_sleep = 0
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'..."...Please...not..."...'
+	act '...':
+		cls
+		*clr & cla
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'
+		PL '--:--  ---  --/--/----'
+		gs 'mod_iwhore_realstat' , 'status'
+		fcolor = rgb(255, 255, 255)
+		bcolor = rgb(0, 0, 0)
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/d0.jpg"></center>'	
+		'...."...Sniff sniff...mom!..."...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/d1.jpg"></center>'	
+		'...."...Oh my dear...Don''t worry, mom will take them again for you..."....'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/walkerd.jpg"></center>'	
+			'...."...It doesn''t stop....it doesn''t stop..."...'
+			act '...':gt 'mod_iwhore_realtime', 'dayend'
+		end
+	end
+end
+
+
+
+!!!!!!!!!!!DAY5!!!!!!!!!!!!!!!!
+
+
+
+if $ARGS[0] = 'day5':
+	cls
+	*clr & cla
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller0.jpg"></center>'	
+	'..."...and empty...."...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/switchend.jpg"></center>'
+	'..."...I don''t know how much i can resist..."...'
+	act '...':
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/darkness.mp4"></video></center>'
+		'......"...GO AWAY!!!!!...GO AWAY!!!!!"...'
+		wait 9000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/grip.jpg"></center>'
+		'...."...No no no!!!!...I tear off your feathers!..."'
+		wait 5000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fall.jpg"></center>'
+		'..."....I SWEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHHHHHHHHHHHHHHHHHHHHH!!!!!!!!!!!!!!!"....'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/in0.jpg"></center>'
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/in1.jpg"></center>'
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'
+		'....'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller2.jpg"></center>'
+		'....'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start1.jpg"></center>'
+		'....'
+		act '"...leave me..."':
+			*clr & cla
+			gs 'mod_iwhore_realstat' , 'day'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start2.jpg"></center>'
+			'...."...It''s gone... "'
+			act '...':gt 'mod_iwhore_realtime', 'daystart'
+		end
+	end	
+end
+
+if $ARGS[0] = 'day5start':
+	cls
+	*clr & cla
+	KILLOBJ
+	pain['killer'] = 1
+	music_loop = 0 & close all
+	hour = 8
+	minut += rand(2,4)
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5a'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'
+	'..."What''s that?...I-i got something..."'
+	wait 3000
+	act '"There''s a light..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start3.jpg"></center>'	
+		'"It must be the city..."'
+		act '...':gt 'mod_iwhore_limbus', 'switch'
+	end
+end
+
+if $ARGS[0] = 'day5a':
+	cls
+	*clr & cla
+	minut += 30
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5b'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/a0.jpg"></center>'	
+	'"Hi...who are you? Is that the city?"<br>"Depends."<br>"Why are you bandaged?"<br>"Because i cannot see."<br>"Are you blind?"<br>"No."'
+	act '"Do you want me to help removing them then?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/a1.jpg"></center>'	
+		'"No."<br>"But...why? If you are not blind...why do you keep them?."<br>"Because i don''t want."'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+		'...."...I-i...don''t understand..."'
+		act '...':gt 'mod_iwhore_limbus', 'switch'
+	end
+end
+
+if $ARGS[0] = 'day5b':
+	cls
+	*clr & cla
+	minut += 30
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5c'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/b0.jpg"></center>'	
+	'"You should remove your bandages."'
+	act '"What? What bandages?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/b1.jpg"></center>'	
+		'"Yours."'
+		act '"I have none..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+			'...."...I-i..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day5c':
+	cls
+	*clr & cla
+	minut += 30
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	if preg = 1:
+		$day_whore_switch = 'day5d'
+	else
+		$day_whore_switch = 'Iskra'
+	end	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c0.jpg"></center>'	
+	'"You should remove your bandages."'
+	act '"What do i have to do?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+		'"Remove your bandages."<br>"That ...way?"'
+		act 'Continue':
+			cls
+			minut += rand(25,35)
+			pain['killer'] = 0
+			pcs_willpwr -= 1
+			pcs_stam -= 1
+			pcs_sleep -= 1
+			gs 'mod_iwhore_realstat' , 'day'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c2.jpg"></center>'	
+			'...."........AAAAAAHHHH!!!! IT HURTS!!!!!!!!!!!"'
+			act 'STOP!!!!':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start1.jpg"></center>'	
+				'"Why? Why it''s so painful?...where are them?..."'
+				act '...':gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day5d':
+	cls
+	*clr & cla
+	minut += rand(2,5)
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	$day_whore_switch = 'day5d1'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'..."...This things...continue follow me...even in the city..."'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+	'...."...This time i can move..."'
+	act '"I have to see clear on that..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+		'...."... And I have to be slow..."'
+		act '..."...A little more..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/d1.jpg"></center>'	
+			'...."...AAAAHHH!!!!..."'
+			wait 4000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start1.jpg"></center>'	
+			'...."...It''s painful...but far away..."'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'day5d1':
+	cls
+	*clr & cla
+	minut += rand(2,5)
+	gs 'mod_iwhore_realstat' , 'day'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	$day_whore_switch = 'Iskra'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/ddoor.jpg"></center>'	
+	'..."...Not again..."'
+	act '..."...Why don''t you leave me alone?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+		'....'
+		act '..."What do you want this time?"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/d2.jpg"></center>'	
+			'...."...I-i know that girl...her eyes...are empty..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/d0.jpg"></center>'	
+				'...."...No...they have no hope...they are..."'
+				act '"...resigned..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+					'...."I''m starting ...to be tired...."'
+					act '...':gt 'mod_iwhore_limbus', 'switch'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Iskra':
+	cls
+	*clr & cla
+	minut += rand(2,8)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'Iskra1'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz0.jpg"></center>'	
+	'"There is a little girl...maybe...Hi...are you awake?"<br>"Of course i am...are you here for the bandages? Do your work and let me sleep...i don''t want to talk."'
+	act 'Remove her bandages.':
+		cls
+		*clr & cla
+		
+		minut += rand(2,8)
+		pcs_willpwr -= 1
+		pcs_stam -= 1
+		pcs_sleep -= 1
+		iskra_war = 1
+		gs 'mod_iwhore_realstat' , 'day'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz1.jpg"></center>'	
+		'Girl: "Hey! What are you doing?..."<br>"I-i''m sorry...i know it''s painful..."<br>Girl: "Why are you removing them? You usually put them on...hey! You are not one of them! Who are you?"<br>"I-i...i-i...i don''t know..."<br>Girl: "Don''t you know your own name?"<br>"I-i...i-i...i don''t remember..."<br>Girl: "Well...thanks i guess, miss...miss "I Don''t Remember"."'
+		act '..."...I...i..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+			'...."...I''m starting to lose my strenght..."'
+			act 'Walk':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+	act 'Leave her alone':
+		*clr & cla
+		$day_whore_switch = 'day5s0'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+		'...."...I need to move..."'
+		act 'Walk':gt 'mod_iwhore_limbus', 'switch'
+	end
+end
+
+if $ARGS[0] = 'Iskra1':
+	cls
+	*clr & cla
+	minut += rand(2,8)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'Iskra2'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz2.jpg"></center>'	
+	'Girl: "Miss "I Don''t Remember"!... . It''s nice to see you again."<br>"You can see me? But you have bandages on your eyes."<br>Girl: "Well...you too. Don''t ask me why...but i can see here. I told them that i''m blind and it''s useless on me...but they keep putting them on..."<br>"Who? Who put them on you?"<br>Girl: "The same who put them on you...i think. But i don''t like having them on...they keep pushing my hair..."<br>"Do you want me to help you removing them?"<br>Girl: "There''s no need thanks, they''ll put again on me before or later...also..."<br>"...Also?"<br>Girl: "It''s not that i want to came back, but if you prefere i can remove mine...you seems scared, i don''t want to scare you with my creepy bandages."<br>"You ...don''t you want to came back? Do you know how to exit from here?"<br>Girl: "Yes, i know my path. You should know yours...i think... ."'
+	act '"N-no...i don''t know mine."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz3.jpg"></center>'	
+		'Girl: "I understand... . I''m sorry. Here, i hope you feel less feared Miss "I Don''t Remember"."<br>"I...thanks...yes... . You are a beautyful girl...you shouldn''t wear them... ."<br>Girl: "Well...you are pretty too! I''d really like to play me Vanya and you all together."<br>"Who''s Vanya?"<br>Girl: "It''s my bear...But i didn''t show myself yet...my name is Iskra"<br>"It''s a beautiful name..."<br>Iskra: "I guess it''s better than "I Don''t Remember"...can...can i call you Idore? I don''t like "I Don''t Remember"..."<br>"...Of course Iskra...you are a little shini light in this dark, do you know?"<br>Iskra: "Thanks Idore...you are shiny too."<br>"Iskra...why don''t you want to come back?"<br>Iskra: "I...i...mom and dad...they...they keep fighting..."<br>"You mean they don''t love each other?"<br>Iskra: "I think so...and Vanya told me. Both love someone else...and they fight every day. Vanya let me hear his record...he can record and repeat what people say..."<br>"...I-i''m sorry. But i''m sure their love for you is the same; they could love another person but you are unique for them..."<br>Iskra: "Then they should do as i want!"<br>"You are right...but...not every wish can be obtained... . I-i''m sure they want you back."<br>Iskra: "That''s not enough..."'
+		act '...''...that girl...''...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+			'...''...that girl is strong...while i feel weak...''...'
+			act '...':gt 'mod_iwhore_limbus', 'switch'
+		end
+	end
+end
+
+if $ARGS[0] = 'Iskra2':
+	cls
+	*clr & cla
+	minut += rand(2,8)
+	pain['killer'] = 1
+	pcs_willpwr -= 1
+	pcs_stam -= 1
+	pcs_sleep -= 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5s0'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz4.jpg"></center>'	
+	'"Hi...Iskra..."<br>Iskra: "Hi Idore."<br>"We...still are here...it seems..."<br>Iskra: "...Can i ask you something?"<br>"Yes...of course."<br>Iskra: "You...you don''t remember you name, so you remember nothing about your life...is that right?"<br>"...You...are right..."<br>Iskra: "...I know your name now, but i cannot tell you..."<br>"What?"<br>Iskra: "...They won''t let me tell you..."<br>"Why?"<br>Iskra: "...You have to find it by yourself...I''m sorry..."<br>"..."<br>Iskra: "...If you remember nothing about your life...why do you want to came back?"<br>"...I...there''s something...i miss the breeze on my skin...the wind in my hair... . And there''s something...there''s a reason...i know that...it''s that i don''t remember wich...it''s a stone...but i have to carry it. I cannot leave it..."<br>Iskra: "...The breeze...and a stone..."<br>"...I know...it''s not much...i really cannot say what''s that..."<br>Iskra: "..."Idore"?..."<br>"Tell me everything Iskra..."<br>Iskra: "...Can you help me removing my bandages?"'
+	act 'Help Iskra':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dz5.jpg"></center>'	
+		'"...Y-your eyes... . ...Hey! Where did you get that gun?"<br>Iskra: "I told you i''m blind...and that''s not a gun..."<br>"...No?...It seems a gun to me...and pretty powerful too..."<br>Iskra: "That''s my soul..."<br>"...Y-your soul?...A-and why do you have your "soul" in your hand?..."<br>Iskra: "Because i''m going back."<br>"...Y-you mean?..."<br>Iskra: "I''m going back to my life."<br>"...Did you change your mind about your parents?"<br>Iskra: "No. They will be a target."<br>"...I don''t understand."<br>Iskra: "The breeze and the stone. ...They will learn."<br>"...I wish you good luck Iskra..."<br>Iskra: "There won''t be need; i will not made prisoners."<br>"I can see that...I wouldn''t want to be on your way."<br>Iskra: "I will search for you; i hope to meet you again..."Idore"... ."'
+		act '"I hope that too..."':
+			*clr & cla
+			pcs_stam += 10
+			pcs_willpwr += 50
+			pcs_mood += 50
+			if MagikDostup = 0:
+				pcs_mana = manamax
+			end
+			cls
+			PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/moth.mp4"></video></center>'
+			PL '--:--  ---  --/--/----'
+			gs 'mod_iwhore_realstat' , 'status'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+			'...."...Iskra..."...'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+				'...."...i wish you all the goods..."...'
+				wait 6000
+				cls
+				pcs_stam = 0
+				pcs_willpwr = 0
+				pcs_mood = 0
+				if MagikDostup = 0:
+					pcs_mana = 1
+				end
+				if rand(0,2) = 0:
+					if whore_flame > sons_flame: sons_flame = whore_flame
+					if whore_flame < sons_flame: whore_flame = sons_flame
+				end
+				PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/moth.mp4"></video></center>'
+				PL '--:--  ---  --/--/----'
+				gs 'mod_iwhore_realstat' , 'status'
+				KILLOBJ 				
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm15.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/dzg.jpg"></center>'	
+				'..."...i...know...y-you..."....'
+				wait 9000
+				KILLOBJ
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'	
+				'..."...n-no...p-please..."...<br><br><br>'
+				wait 4000
+				pcs_stam = 6
+				pcs_willpwr = 6
+				'<br>"Why are you losing your time?"'
+				wait 6000
+				gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day5s0':
+	cls
+	*clr & cla
+	hour += 1
+	minut += rand(28,35)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5s1'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c0.jpg"></center>'	
+	'"You should remove your bandages."'
+	act '...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+		'...."...Again...i have to be careful..."'
+		act 'Remove your bandage.':
+			cls
+			*clr & cla
+			pain['killer'] = 0
+			pcs_willpwr -= 1
+			pcs_stam -= 1
+			pcs_sleep -= 1
+			gs 'mod_iwhore_realstat' , 'day'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s0.jpg"></center>'	
+			'...."...IT HURTS!!! WHY? WHY IT HURTS?"...<br>"Another one."'
+			act 'Remove another bandage.':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+				'...."..."...'
+				act '..."...I had to...be careful...careful..."':
+					cls
+					pcs_willpwr -= 1
+					pcs_stam -= 1
+					pcs_sleep -= 1
+					gs 'mod_iwhore_realstat' , 'day'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c2.jpg"></center>'	
+					'...."AAAAAAAAAAAAAAAAAAAAAAHHHHHHHHHHHHHHHHHHHH!!!!!!...."'
+					act 'Stop':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s1.jpg"></center>'	
+						'"Rest."'
+						act '"W-why are you doing this to me?"':gt 'mod_iwhore_limbus', 'switch'
+					end
+				end
+			end
+			act 'Leave':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/zangels1.jpg"></center>'	
+				'"You have to finish what you started."'
+				wait 3000
+				cls
+				pcs_willpwr -= 1
+				pcs_stam -= 1
+				pcs_sleep -= 1
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c2.jpg"></center>'	
+				'...."AAAAAAAAAAAAAAAAAAAAAAHHHHHHHHHHHHHHHHHHHH!!!!!!...."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s1.jpg"></center>'	
+					'"Rest."'
+					act '"W-why are you doing this to me?"':gt 'mod_iwhore_limbus', 'switch'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day5s1':
+	cls
+	*clr & cla
+	hour += 1
+	minut += rand(28,35)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day5s2'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start1.jpg"></center>'	
+	'...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+	'...."...How long this torture will last...it''s killing me..."'
+	wait 3000
+	act '"You..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c0.jpg"></center>'	
+		'"You should remove your bandages."'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c0.jpg"></center>'	
+		'"But you are killing me..."<br>"You should remove your bandages."<br>"Is there another choice?"<br>"You should remove your bandages."'
+		act '"I dont have many choice...i see.."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+			'"No."<br>"...Slowly....slowly...a....little..."'
+			act '..."...more..."...':
+				cls
+				*clr & cla
+				pain['killer'] = 0
+				pcs_willpwr -= 1
+				pcs_stam -= 1
+				pcs_sleep -= 1
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s2.jpg"></center>'	
+				'...."AAAAHHHH....DAMNED!!!!...."<br>"Another one."<br>"...W...wait...a second....i cannot..."<br>"No."'
+				wait 3000
+				cls
+				pcs_willpwr -= 1
+				pcs_stam -= 1
+				pcs_sleep -= 1
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s3.jpg"></center>'	
+				'...."...AAAAAAAAHHHHH!!!....PLEASE...I''M DYING!!!!!"'
+				wait 3000
+				*clr & cla
+				gt 'mod_iwhore_limbus', 'switch'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day5s2':
+	cls
+	*clr & cla
+	hour += 1
+	minut += rand(28,35)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start1.jpg"></center>'	
+	'...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/start0.jpg"></center>'	
+	'...."..."....'
+	act '"...I-i know what to do..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/c1.jpg"></center>'	
+		'...."...but i don''t know if i''ll survive this time... . Is my life what you want?..."...<br>"..."'
+		wait 3000
+		act '..."There''s no turning point..."...':
+			cls
+			*clr & cla
+			pain['killer'] = 0
+			pcs_willpwr = 0
+			pcs_stam = 0
+			pcs_sleep = 0
+			gs 'mod_iwhore_realstat' , 'day'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/s4.jpg"></center>'	
+			'..."...NNNNGGHH!!!..."...''...i see nothing....it''s fading away...''...'
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/sg.jpg"></center>'	
+			'"You can pass."'
+			wait 5000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/tired.jpg"></center>'	
+			'....''...you killed...m-me...''...'
+			wait 5000
+			hour = 21
+			minut = rand(10,50)
+			'"Maybe."'
+			wait 5000
+			*clr & cla
+			gt 'mod_iwhore_realtime', 'dayend'
+		end
+	end
+end
+
+
+
+--- mod_iwhore_limbus ---------------------------------

+ 1285 - 0
locations/mod_iwhore_limbus1.qsrc

@@ -0,0 +1,1285 @@
+# mod_iwhore_limbus1
+!    gt 'mod_iwhore_limbus1', 'sleep'
+if $ARGS[0] = 'switch1':
+	cls
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	if $day_whore_switch = 'memories':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/door.jpg"></center>'	
+		'...'
+		act 'Pass the light':gt 'mod_iwhore_limbusbattle', 'mind'
+!	elseif $day_whore_switch = 'bodyhealing':
+!		gt 'mod_iwhore_limbusbattle', 'body'
+	else
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/switch.jpg"></center>'	
+		if $day_whore_switch = 'newborn2':
+			'..."...Why i don''t keep my mouth shutted?..."...'
+		else
+			'"Again..."'
+		end
+		'...'
+		act 'Left':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus1', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus1', 'switch1'
+			end
+		end
+		
+		act 'Middle':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus1', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus1', 'switch1'
+			end
+		end
+		
+		act 'Right':
+			if rand(0,2) = 0:
+				minut += 1
+				gs 'mod_iwhore_realstat' , 'status'
+				cls
+				gt 'mod_iwhore_limbus1', '<<$day_whore_switch>>'
+			else
+				minut += 1
+				gt 'mod_iwhore_limbus1', 'switch1'
+			end
+		end
+	end	
+end
+
+!!!!!!!!!!!!!!DAY6!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'day6':
+	cls
+	*clr & cla
+	minut += rand(5,9)
+	pain['killer'] = 1
+	pcs_stam = 50
+	pcs_willpwr = 50
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/in.jpg"></center>'	
+	'...''...i-i have to lay...''...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start0.jpg"></center>'	
+	'...''...i need rest...''...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+	'...''...where are you taking me now?...y-you want me to go?...where?...''...'
+	wait 3000
+	act '..."...T-the road?"...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start2.jpg"></center>'	
+		'..."...I don''t have many choice...isn''t it?...I...see..."...'
+		act 'Walk':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start3.jpg"></center>'	
+			'....But you were caught..."...Leave me!!! "...'
+			'sons_flame = <<sons_flame>>'
+			'whore_flame= <<whore_flame>>'
+			act '..."....I HAVE TO GOOOO!!!!!"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start3.jpg"></center>'	
+				'...No matter the strenght you put to escape, something is trying to bringing you back...'
+				wait 4000
+				cls
+				pcs_willpwr = 25
+				pcs_stam = 25
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker0.jpg"></center>'	
+				'...."....Where am i? ....What''s that thing?..."'
+				act '"I...cannot stop..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker1.jpg"></center>'	
+					'...."...This...this will be a long journey..."'
+					act 'Walk':gt 'mod_iwhore_realtime', 'daystart'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day6start':
+	cls
+	*clr & cla
+	KILLOBJ
+	hour = 8
+	minut += rand(25,29)
+	music_loop = 0 & close all
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker1.jpg"></center>'	
+	'...."...a long a long journey..."'
+	act '"..."':gt 'mod_iwhore_limbus1', 'day6a'
+end
+
+if $ARGS[0] = 'day6a':
+	cls
+	*clr & cla
+	hour += 2
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/a0.jpg"></center>'	
+	'"Hi, did the book kept you company?"<br>"Hi...i...don''t think...i wasn''t able to read it."<br>"Then sit near to me, i''ll read it for you."'
+	act 'Approach the girl.':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/a1.jpg"></center>'	
+		'...."...What...?"...'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker9a.jpg"></center>'	
+		'....''...in the water!...I''m under the water!...''...'
+		act 'Exit':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker2.jpg"></center>'	
+			'...."...How was that possible?...Just...just...as...just as if something is normal...i should have expected something like that...i''m not even sure what''s normal and not...anymore..."...'
+			act 'Pass the light...':gt 'mod_iwhore_limbus1', 'switch1'
+		end
+	end
+end
+
+if $ARGS[0] = 'day6b':
+	cls
+	*clr & cla
+	hour += 2
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker3.jpg"></center>'	
+	'...."...That''s a beautiful place...the light touch the water...it''s peaceful..."...'
+	act 'Walk toward the light':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b0.jpg"></center>'	
+		'...."...Two womans..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b1.jpg"></center>'	
+		'...."...they both are spreading...birds...from their skirt..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b2.jpg"></center>'	
+		'........"...I have to go!...That''s a storm!..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b3.jpg"></center>'	
+		'...."...am i here?..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b4.jpg"></center>'	
+		'...."...I don''t understand..."...'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/b5.jpg"></center>'	
+			'..."...Another bird..."...'
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+			'...."...What does it means "Again."? No wait! Just a moment...i need rest..."'
+			act '...':gt 'mod_iwhore_limbus1', 'switch1'
+		end
+	end
+end
+
+if $ARGS[0] = 'day6c':
+	cls
+	*clr & cla
+	hour += 2
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker4.jpg"></center>'	
+	'...."...That''s...i''m wondering in circle...again..."...'
+	act '...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c0.jpg"></center>'	
+		'...."...The woman...again...she''s...speaking to...a wolf..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c1.jpg"></center>'	
+		'...."...and so the other one..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c2.jpg"></center>'	
+		'...."...That''s not going to be good..."...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c3.jpg"></center>'	
+		'....'
+		
+		if (preg = 1 and pregtime > 130 and sons_flame < 5) or (preg = 1 and pregtime =< 130 and sons_flame < 4):
+			wait 6000
+			*clr & cla
+			$day_whore_switch = 'day6d'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c4d.jpg"></center>'	
+			'A wolf return to its woman: she''s praised and it receives its reward... . "...Something...something is going wrong..."...'
+			act 'Look for the other woman':
+				pain['killer'] = 0
+				gs 'mod_iwhore_realstat' , 'day'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c5d.jpg"></center>'	
+				'...."...why don''t you move?..."....'
+				act '"Help it! It need help!"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+					'...."NO! LET ME GO! IT NEED HELP!!!!"....'
+					wait 4000
+					gt 'mod_iwhore_limbus1', 'switch1'
+				end
+			end	
+		elseif (preg = 1 and pregtime > 130 and sons_flame >= 5) or (preg = 1 and pregtime =< 130 and sons_flame >= 4):
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c4.jpg"></center>'	
+			'A wolf return to its woman...'
+			act 'Look for the other woman':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c5z.jpg"></center>'	
+				'....and so the other.'
+				act '"Why do you allow this?"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+					'...."...No! Not again...i won''t move! You have to stop this! Did you hear me!"...'
+					wait 4000
+					gt 'mod_iwhore_limbus1', 'switch1'
+				end
+			end	
+		else
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c4.jpg"></center>'	
+			'A wolf return to its woman...'
+			act 'Look for the other woman':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/c5.jpg"></center>'	
+				'....and so the other.'
+				act '"Why do you allow this?"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+					'...."...No! Not again...i won''t move! You have to stop this! Did you hear me!"...'
+					wait 4000
+					gt 'mod_iwhore_limbus1', 'switch1'
+				end
+			end		
+		end
+	end
+end
+
+if $ARGS[0] = 'day6d':
+	cls
+	*clr & cla
+	minut += rand(8,15)
+	gs 'mod_iwhore_realstat' , 'day'
+	ADDOBJ	'<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/girl/move.jpg"></center>'	
+	ADDOBJ	'...'	
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d0.jpg"></center>'	
+	'The hunter go claim his prey... . Its friend cry...'
+	wait 4000
+	cls
+	PL '<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/fight/lost0.jpg"></center>'
+	PL '--:--  ---  --/--/----'
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	KILLOBJ
+	ADDOBJ	'<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/fight/lost1.jpg"></center>'	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d1.jpg"></center>'	
+	'....and so the woman...'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d2.jpg"></center>'	
+	'....and so you.'
+	wait 4000
+	'..."...Why are you making me see this?...You are hurting...me..."...'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d3.jpg"></center>'	
+	'....'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d4.jpg"></center>'	
+	'....and so the woman.'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d5.jpg"></center>'	
+	'A child turn back... "...Where are you going?..."...'
+	wait 4000
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'was'
+	was_awhore_son = 1
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d6.jpg"></center>'	
+	'....for the last time. <br>The hunter claim his prey...'
+	wait 6000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/d7.jpg"></center>'	
+	'....leaving only tears...'
+	wait 4000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+	'....and silence... .'
+	wait 4000
+	cls
+	KILLOBJ
+	gt 'mod_iwhore_limbus1', 'switch1'
+end
+
+if $ARGS[0] = 'day6e':
+	cls
+	*clr & cla
+	hour += 2
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker5.jpg"></center>'	
+	'You find yourself in the same place...'
+	act 'Walk toward the light':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e0.jpg"></center>'	
+		'...You now know what''s going on... . The first woman prepare his champion...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e1.jpg"></center>'	
+		'....and so the other one.'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e2.jpg"></center>'	
+		'You can do nothing but look at the fight...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e3.jpg"></center>'	
+		'....waiting for its end.'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e4.jpg"></center>'	
+		'The bear return to its woman...'
+		act 'Look the other woman':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/e5.jpg"></center>'	
+			'....and so the other one.'
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+			'...."...leave...me...alone..."...'
+			wait 6000
+			*clr & cla
+			gt 'mod_iwhore_limbus1', 'switch1'
+		end
+	end
+end
+
+if $ARGS[0] = 'day6f':
+	cls
+	*clr & cla
+	hour += 2
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day6g'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker6.jpg"></center>'	
+	'...."...that''s different..."...'
+	act 'Walk toward the darkness.':
+		cls
+		*clr & cla
+		hour += 2
+		minut += rand(1,2)
+		pain['killer'] = 1
+		gs 'mod_iwhore_realstat' , 'day'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f0.jpg"></center>'	
+		'The woman stand with all her champions on her side...'
+		wait 6000
+		*clr & cla
+		if was_awhore_son = 1:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f1d.jpg"></center>'	
+			'....the other one seems to be alone. Another fight is near to come...'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f1.jpg"></center>'	
+			'....the other one seems to be alone. Another fight is near to come...'
+		end
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f2.jpg"></center>'	
+		'....but they won''t use their champions...'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f3.jpg"></center>'	
+		'....not this time...'
+		wait 6000
+		*clr & cla
+		if preg = 1:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f4d.jpg"></center>'	
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f4.jpg"></center>'	
+		end
+		'....not ever.'
+		wait 6000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/f5.jpg"></center>'	
+		'You can only imagine what the fight was...'
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/start1.jpg"></center>'	
+		'....because you were called out before it''s beginning... .'
+		wait 3000
+		*clr & cla
+		gt 'mod_iwhore_limbus1', 'switch1'
+	end
+end
+
+if $ARGS[0] = 'day6g':
+	cls
+	*clr & cla
+	minut += rand(1,2)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker6.jpg"></center>'	
+	'...."...I have to see!"'
+	act 'Run toward the darkness':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker7.jpg"></center>'	
+		'...."...Damn! The level is rising!"'
+		act 'Run toward the light':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker8.jpg"></center>'	
+			'...."...I cannot walk anymore... . I have to move!"'
+			act 'Swim out':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker9.jpg"></center>'	
+				'....''...no! I HAVE TO SEE!!!!!...''....'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day6/walker10.jpg"></center>'	
+					'....''...i-i cannot hold the breath....let...me....''...'
+					wait 3000
+					*clr & cla
+					act '...':gt 'mod_iwhore_realtime', 'dayend'
+				end
+			end
+		end
+	end
+end
+
+
+!!!!!!!!!!DAY7!!!!!!!!!!!!!!!
+
+
+if $ARGS[0] = 'day7':
+	cls
+	*clr & cla
+	KILLOBJ
+	minut += rand(1,5)
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/intro0.jpg"></center>'	
+	'...'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/intro1.jpg"></center>'	
+	'....'
+	wait 3000
+	*clr & cla
+	if was_awhore_son = 1:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/intro2d.jpg"></center>'	
+		'...'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/intro2.jpg"></center>'	
+		'...'
+	end
+	wait 3000
+	*clr & cla
+	if was_awhore_son = 1:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start0d.jpg"></center>'	
+		'...'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start0.jpg"></center>'	
+		'...'
+	end
+	'...''...yes...it was only a dream...i should return to sleep...''...'
+!whoreflamestarthere
+	act 'Sleep':gt 'mod_iwhore_realtime', 'daystart'
+end
+
+if $ARGS[0] = 'day7start':
+!bodyhealing = 6
+	cls
+	*clr & cla
+	KILLOBJ
+	minut += 1
+	music_loop = 0 & close all
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start1.jpg"></center>'	
+	'....'
+	wait 3000
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start2.jpg"></center>'	
+	'....'
+	wait 3000
+	*clr & cla
+	if was_awhore_son = 1:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start3d.jpg"></center>'	
+		'..."....WOAH!!! IS THAT A JOKE?...OUCH!!!"'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/start3.jpg"></center>'	
+		'..."....WOAH!!! IS THAT A JOKE?"'
+	end
+	act 'Walk':gt 'mod_iwhore_limbus1', 'day7a'
+end
+
+if $ARGS[0] = 'day7a':
+	cls
+	*clr & cla
+	minut += 5
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day7b'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker0.jpg"></center>'	
+	'...."Ice...there''s only ice... . It''s cold...but..."'
+	act 'Walk':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/a0.jpg"></center>'	
+		'"Hi...What are you doing here?"<br>"Woof Woff!"<br>"Are you lost? It''s not your lucky day, you know...i''m lost too..."<br>"Woof!"<br>"You are a good boy."<br>"Woof woof!"<br>"You can walk with me if you want, maybe we''ll be lucky...and your owner will help me."<br>"Woof woof!"'
+		wait 9000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker0.jpg"></center>'	
+		'..."Hey stop! Where are you going?"...'
+		act 'Follow the dog': 
+			$day_whore_switch = 'day7c'
+			gt 'mod_iwhore_limbus1', 'day7b'
+		end
+		act '...': gt 'mod_iwhore_limbus1', 'switch1'
+	end
+end
+
+if $ARGS[0] = 'day7b':
+	cls
+	*clr & cla
+	hour = 18
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker1.jpg"></center>'	
+	if $day_whore_switch = 'day7c':
+		'..."...Ufff...for sure you run...ufff...hey look it seems an exit!"<br>"Woof woof!"<br>"Come on let''s see what''s out there..."<br>"Woof!"<br>"No? Don''t you come with me?"<br>"Woof!"<br>"Owww...i guess i have to thank you, you lead me to the exit afterall..."<br>"Woof Woof!"<br>"Thanks my friend, i hope to see you again..."<br>"Woof Woof!"'
+	else
+		'..."...What the...? How...?"<br>"Woof woof!"<br>"How did you fine that way? Did you passed through the doors?"<br>"Woof!"<br>"...How did you end up here?"<br>"Woof woof woof....anf anf....woof woof woof!"<br>"...Eeemh...yes right... . Well it seems an exit, you can came with me if you like, but do not run...ok?"<br>"No? Don''t you want to come with me?"<br>"Woof!"<br>"Owww...it''s a shame, but i cannot force you."<br>"Woof Woof!"<br>"Thanks my friend, i hope to see you again..."<br>"Woof Woof!"'
+	end
+	act '"Goodbye..."':
+		*clr & cla
+		$day_whore_switch = 'day7c'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/b0.jpg"></center>'	
+		'"...It seems the exit from the ice..."'
+		act 'Pass the ladder':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/b1.jpg"></center>'	
+			'...."Hi...do you know where am i?"<br>"..."<br>"You''ve got wings...is it common here?"<br>"..."<br>"You''re not talkative...isn''t it?"<br>"..."'
+			act 'Leave her':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker2.jpg"></center>'	
+				'...."...That''s...strange...maybe there''s something inside..."...'
+				act '...':gt 'mod_iwhore_limbus1', 'switch1'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day7c':
+	cls
+	*clr & cla
+	hour += 2
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'day7e'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/c0.jpg"></center>'	
+	'...."...Another one...how many...i guess i have to try them..."'
+	if was_awhore_son = 1:
+		act '...':
+			pcs_mood = 0
+			gs 'mod_iwhore_realstat' , 'day'
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/c1d.jpg"></center>'	
+			'...."Hi..."<br>"I cannot give you mine, you just had it."<br>"W-what do you mean?...Do you need help?"<br>"Do you have a book?"<br>"...I-i''ve got this one..."<br>"Can you lend it to me? I will be a good girl."'
+			act '"H-here take...it..."':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/c2d.jpg"></center>'	
+				'"...I will do my homework. It''s all i got."'
+				act '"W-who are you...do i know you?"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/d0.jpg"></center>'	
+					'There are written pages that should never be read...'
+					act '..."I don''t...i don''t remember..."':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker3.jpg"></center>'	
+						'...."Where did you go?...where...? I don''t ... i don''t remember... who was i speaking with? I-i... What''s that?"'
+						act '"It''s too little for me..."':gt 'mod_iwhore_limbus1', 'switch1'
+					end
+				end
+			end
+		end
+	else
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/c1.jpg"></center>'	
+			'"This is for you. Use it carefully."<br>"What''s that?"<br>"It''s the payment."'
+			act '"The payment?"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/c2.jpg"></center>'	
+				'"Yes. It''s the payment for your book."<br>"You mean the book you gave me?"<br>"I mean the book you have. Did you like it?"<br>"Don''t take me bad...but i read nothing... . I wasn''t able..."<br>"You should give it to me. Take your payment, you earned it."<br>"I guess...it''s not that i really have a use of it...i cannot read a single page!"'
+				act 'Give her the book':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker3.jpg"></center>'	
+					'...."Hey! Where did you go?...What''s that?"'
+					act '"It''s too little for me..."':gt 'mod_iwhore_limbus1', 'switch1'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'day7e':
+	cls
+	*clr & cla
+	hour += 2
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'memories'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker4.jpg"></center>'	
+	'..."...Well...i missed that one...."'
+	act 'Enter the book':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/e0.jpg"></center>'	
+		'"People...a lot of people...hey..."'
+		act '"HEY!!!"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/e1.jpg"></center>'	
+			'You walk toward the people, trying to catch their attention. Finally you reach one of them..."Hey! Do you hear me?"...'
+			act 'Poke her':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/e2.jpg"></center>'	
+				'Before you touch the girl a jeweled woman stop you "Leave her alone."'
+				wait 3000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker6.jpg"></center>'	
+				'All the people vanish, and you find yourself facing the keyhole door...alone...'
+				act 'Pass the keyhole door':gt 'mod_iwhore_limbus1', 'switch1'
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'day7f':
+	cls
+	*clr & cla
+	hour += 1
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'bodyhealing'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/f0.jpg"></center>'	
+	'" Again...and...again alone"...'
+	act 'Pass the keyhole door':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/f1.jpg"></center>'	
+		'You made few step and see a man standing in the light...'
+		act '"I-i..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/f2.jpg"></center>'	
+			'"I-i....i should follow him...but..." Something stop you for a second; you have to see where the path ends, but your legs didn''t respond to your order... . You almost turn back...'
+			act '"No. I have to see."':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/walker7.jpg"></center>'	
+				'...."I must see."'
+				act '...': gt 'mod_iwhore_realtime', 'dayend'
+			end
+		end
+		
+	end
+end
+
+!!!!!!!!!!!!!!!!NEWBORN!!!!!!!!!!!!!!!!
+
+
+if $ARGS[0] = 'newborn':
+	cls
+	*clr & cla
+	hour = 23
+	minut += 1
+	pain['killer'] = 1
+	KILLOBJ
+	gs 'mod_iwhore_realstat' , 'day'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/start0.jpg"></center>'	
+	'..."...I think i overslept....uhhmmm...again...another keyhole door..."'
+	act '"They are starting to bothering me..."':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/start1.jpg"></center>'	
+		'...."...even that is bothering me..."....'
+		act 'Pass the door':gt 'mod_iwhore_limbus1', 'newborn1'
+	end
+end
+
+if $ARGS[0] = 'newborn1':
+	cls
+	*clr & cla
+	hour += 1
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'day'
+	$day_whore_switch = 'newborn2'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/a0.jpg"></center>'	
+	'..."...An hallway...i''m inside a building..."'
+	act 'Walk':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/a1.jpg"></center>'	
+		'...."Definitively that''s a building...i should look the doors..."'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/a2.jpg"></center>'	
+			'...."...creepy... . Nothing in there... ."'
+			act 'Walk':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/walker0.jpg"></center>'	
+				'...."This place is big...it could me take ages to explore it...if i will not be teleported in some other place..."'
+				if was_awhore_son = 1:
+					act '...': gt 'mod_iwhore_realtime', 'nightactivities'
+				else
+					act '...': gt 'mod_iwhore_limbus1', 'switch1'
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'newborn2':
+	cls
+	*clr & cla
+	hour += 1
+	pain['killer'] = 1
+	minut += 5	
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5311.jpg"></center>'	
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/b0.jpg"></center>'	
+	'...''...an hospital...''... <br><br>"...and then i said him: I have the bills to pay!"<br>"...and what did he said?"<br>"..."You are right we are all in the same situation, we sent a letter to the governance." ..."<br>"Well...he''s right he''s not in charge for the payment...still he can affor three month without payment, he''s the boss here he''s not like common people like us... . Fortunately i''m still living with my parents... "<br>"...I think i have to look for a part time job..."<br>"...Ummmhh...have you thought about being a model?"<br>"...Are you serious? Did you see my butt?...I''m keep getting weight..."<br>"...Maybe they are looking for curvy models too..."'
+	act '"Hey!"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/b1.jpg"></center>'	
+		'...."...Vanished... . I should have expected...what''s next? Where are my favourite three doors?..."...'
+		act 'Walk':
+			cls
+			*clr & cla
+			minut += 1	
+			gs 'mod_iwhore_realstat' , 'status'
+			cls
+			PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5321.jpg"></center>'	
+			PL '--:--  ---  --/--/----'
+			gs 'mod_iwhore_realstat' , 'status'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/b2.jpg"></center>'	
+			'...."Woof woof!"<br>"You!...I didn''t expected to see you there... . Did the ice bother you? Or did you find you owner?"<br>"Woof woof!"<br>"No? ...He could be worried... do you know?"<br>"Woof!"<br>"Ummhh...maybe "he" is a "she"..."<br>".....Whiine....."<br>"...and she''s looking for you..."<br>".....Whiine....."<br>"...Owww...sweet..."<br>".....Whiine.....Woof woof!!!..."'
+			wait 14000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/b3.jpg"></center>'	
+			'...."Hey! Stop!"...'
+			act '"You cannot go there!"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/b3walker.jpg"></center>'	
+				'...."Woof woof!...Woof woof!"<br>"Ssssshhhh! You shouldn''t be there...! Come here, let her sleep!"'
+				wait 3000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/mind0.jpg"></center>'	
+				'...."......What are you doing?....MY HEAD!!!!!!"......'
+				wait 3000
+				*clr & cla
+!				gt 'mod_iwhore_limbusbattle', 'mind'
+				if mind_errors >= 3:
+					gt 'mod_iwhore_jenna', 'endless'
+				else
+					gt 'mod_iwhore_limbusbattle', 'mind'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'newbornz_orig':
+	cls
+	*clr & cla
+	music_loop = 0 & close all
+	minut += 25
+	pain['killer'] = 1
+	$track_loop = 'sound/mod/iwhore/rain.mp3'
+	volume = 50
+	music_loop = 1
+	cls
+	*clr & cla
+	minut += 1	
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5312.jpg"></center>'	
+	PL '--:--  ---  --/--/----'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cg.jpg"></center>'	
+	'...'
+	act '"...water..."':
+		cls
+		*clr & cla
+		minut += 1	
+		gs 'mod_iwhore_realstat' , 'status'
+		cls
+		PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5312.jpg"></center>'	
+		PL '--:--  ---  --/--/----'
+!		PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/mind.jpg"></center>'	
+		'...."..."....'
+		act '"Is it mine?"':
+			cls
+			*clr & cla
+			minut += 1	
+			gs 'mod_iwhore_realstat' , 'status'
+			cls
+			PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5322.jpg"></center>'	
+			PL '--:--  ---  --/--/----'
+!			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			if iskra_war = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c0i.jpg"></center>'	
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c0.jpg"></center>'	
+			end
+			'...."...That girl...i know her..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c1.jpg"></center>'	
+				'...."...i can..."'
+				act '...':
+					cls
+					*clr & cla
+					minut += 1	
+					gs 'mod_iwhore_realstat' , 'status'
+					cls
+					PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5331.jpg"></center>'	
+					PL '--:--  ---  --/--/----'
+!					PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+					gs 'mod_iwhore_realstat' , 'status'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'	
+					'...."......the time you have... . Hahahaha!!!! .... "...'
+					wait 4000
+					'...."...see... "...'
+					wait 5000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c3.jpg"></center>'	
+					'...."...what you have done... "...'
+					wait 5000
+					*clr & cla
+					gt 'mod_iwhore_limbus1', 'awakening'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'newbornz':
+	cls
+	*clr & cla
+!	music_loop = 0 & close all
+	minut += 25
+	pain['killer'] = 1
+	cls
+	*clr & cla
+	minut += 1	
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5312.jpg"></center>'	
+	PL '--:--  ---  --/--/----'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cg.jpg"></center>'	
+	'...'
+	act '"...water..."':
+		cls
+		*clr & cla
+		minut += 1	
+		gs 'mod_iwhore_realstat' , 'status'
+		cls
+		PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5312.jpg"></center>'	
+		PL '--:--  ---  --/--/----'
+!		PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/mind.jpg"></center>'	
+		'...."..."....'
+		act '"Is it mine?"':
+			cls
+			KILLOBJ
+	!	SHOWSTAT 0
+	!	SHOWOBJS 0
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			*clr & cla
+			*nl & *nl & *nl & *nl & *nl & *nl & *nl
+
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/dream.mp4"></video></center>'
+			
+!			act '....': gt 'mod_iwhore_recovery', 'morningcare'
+			wait 200000
+!			gt 'mod_iwhore_recovery', 'morningcare'
+			cls
+			*clr & cla
+			minut += 1	
+			gs 'mod_iwhore_realstat' , 'status'
+			cls
+			PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5322.jpg"></center>'
+			PL '--:--  ---  --/--/----'
+!			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			if iskra_war = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c0i.jpg"></center>'	
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c0.jpg"></center>'	
+			end
+			'"...That girl...i know her..."'
+			act '...':
+				*clr & cla
+				$track_loop = 'sound/mod/iwhore/rain.mp3'
+				volume = 50
+				music_loop = 1
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c1.jpg"></center>'	
+				'"...i can..."'
+				act '...':
+					cls
+					*clr & cla
+					minut += 1	
+					gs 'mod_iwhore_realstat' , 'status'
+					cls
+					PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5331.jpg"></center>'	
+					PL '--:--  ---  --/--/----'
+!					PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+					gs 'mod_iwhore_realstat' , 'status'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'	
+					'...."......the time you have... . Hahahaha!!!! .... "...'
+					wait 4000
+					'...."...see... "...'
+					wait 5000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c3.jpg"></center>'	
+					'...."...what you have done... "...'
+					wait 5000
+					*clr & cla
+					gt 'mod_iwhore_limbus1', 'awakening'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'awakening':
+	cls
+	*clr & cla
+	pain['killer'] = 1
+	cls
+	*clr & cla
+	minut += 1	
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5332.jpg"></center>'	
+	PL '--:--  ---  --/--/----'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/zangel.jpg"></center>'	
+	'...'
+	act '...''...to her...''...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c4.jpg"></center>'	
+		'....'
+		act '...''...to me...''...':
+			cls
+			*clr & cla
+			minut += 1	
+			gs 'mod_iwhore_realstat' , 'status'
+			cls
+			PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5332.jpg"></center>'	
+			PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+			gs 'mod_iwhore_realstat' , 'status'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/restored.mp4"></video></center>'
+			'...''......''...'
+			wait 10000
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/awake.mp4"></video></center>'
+			'...''......''...'
+			wait 14000
+			*clr & cla
+			PLAY 'sound/mod/iwhore/rumbling.mp3'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c5.jpg"></center>'	
+			'...''...every...''...'
+			act '..."...R-r..."...':
+				*clr & cla
+				close 'sound/mod/iwhore/rumbling.mp3'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c6.jpg"></center>'	
+				'...''...thing...''...'
+				act '..."...R-red..."...':
+					*clr & cla
+					InSleep = 0
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/zangel.jpg"></center>'	
+					'....'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/move.jpg"></center>'	
+						'....'
+						act '...':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt1.jpg"></center>'	
+							'Dr. Ignatiy Bogomolov: "..."<br>"...l-leave..."'
+							act '"...me..."': gt 'mod_iwhore_limbus1', 'back'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'back':
+	cls
+	*clr & cla
+	minut += 1	
+	gs 'mod_iwhore_realstat' , 'status'
+	cls
+	PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5322.jpg"></center>'	
+	PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+	gs 'mod_iwhore_realstat' , 'status'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt1.jpg"></center>'	
+	'Dr. Ignatiy Bogomolov: "You hear the girl: everyone out. I''ll check you later <<$pcs_nickname>>...we need to talk."'
+	act '...':
+		cls
+		*clr & cla
+		music_loop = 0 & close all
+		minut += 1	
+		gs 'mod_iwhore_realstat' , 'status'
+		cls
+		PL '<center><img <<$set_imgh>> src="images/system/weather/WTHR5321.jpg"></center>'	
+		PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+		gs 'mod_iwhore_realstat' , 'status'
+		'<center><img <<$set_imgh>> src="images/locations/shared/clinic/wakeup.jpg"></center>'
+		'....A nurse is moving some object on a table; that''s the last thing you remember before falling into a deep sleep, as if it was an year you were not able to rest... .'
+		act '...': gt 'mod_iwhore_limbus1', 'rest'
+	end
+end
+
+if $ARGS[0] = 'rest':
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'night'
+
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/a.jpg"></center>'	
+	'Dr. Ignatiy Bogomolov: "...."<br>"..."'
+	act 'Rest':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/zangel.jpg"></center>'	
+		'...."...a dream...it was only a dream..."...'
+		act '"...a dream..."': gt 'mod_iwhore_limbus1', 'sleep'
+	end
+end
+
+if $ARGS[0] = 'sleep':
+	cls
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'night'
+	ADDOBJ '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+	ADDOBJ 'Nurse Lida: "Check check!"'
+	'<center><img <<$set_imgh>> src="images/locations/shared/clinic/wakeup.jpg"></center>'
+	'"..."'
+	pcs_hairbsh = 0
+	InSleep = 1
+	if StoryLine = 1 and $loc ! 'bedrPar' and SchoolAtestat = 0:
+		notathomesleep += 1
+	else
+		notathomesleep = 0
+	end
+	if pcs_horny >= 90:
+		pcs_horny = 0
+		orgasm += 1
+		minut += 1
+		pcs_mood += 50
+!		gs 'mod_iwhore_recovery' , 'pain'
+		gs 'mod_iwhore_realstat' , 'night'
+		gs 'arousal', 'end'
+	end
+	
+	act '....': gt 'mod_iwhore_recovery', 'morningcare'
+end
+
+if $ARGS[0] = 'updated':
+	*clr & cla
+	KILLOBJ
+	hour = 8
+	pcs_hairbsh = 1
+	InSleep = 0
+	recovering_old_stat = 1
+	gs 'mod_iwhore_realstat' , 'restoring'
+	if was_awhore_son = 1:
+		if knowpreg = 1:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/aware.jpg"></center>'
+			'Nurse Lida: "Wait wait wait. You shouldn''t move." You really shouldn''t move, but it was impossible...you feel a stillness inside you; an empty place where something grew before.<br>Dr Filippa Smirnitskaya: "..." <br>Dr. Ignatiy Bogomolov: "..."<br>"<<$pitfs>>No. Please, no!<<$pitfe>>" Your mind prays to an uncaring god, trying to make this nightmare end. You know what the doctor will tell you...<br>Nurse Lida: "..."<br>Dr. Ignatiy Bogomolov: "...Filippa..."<br>Dr Filippa Smirnitskaya: "...Hi <<$pcs_nickname>>..." '
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+			'Nurse Lida: "Wait wait wait. You shouldn''t move." There''s no need for the nurse to remind you to not move, the pain tells you it''s a bad idea...<br>Dr. Ignatiy Bogomolov: "...Filippa..."<br>Dr Filippa Smirnitskaya: "...Hi <<$pcs_nickname>>..." '
+		end
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+		'Nurse Lida: "Wait wait wait. You shouldn''t move." There''s no need for the nurse to remind you to not move, the pain tells you it''s a bad idea...<br>Dr. Ignatiy Bogomolov: "Good morning <<$pcs_nickname>>...I''m Ignatiy Bogomolov, and near me stand Filippa and Lyudmila..."<br>Dr Filippa Smirnitskaya: "...Hi <<$pcs_nickname>>..." <br>Nurse Lida: "...Yes yes...I''m Lida for you..."'
+	end
+	act '...': 
+		*clr & cla
+		if was_awhore_son = 1:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/aware.jpg"></center>'
+			'...and words that we would never want to say or hear.'
+			act '...': 
+				*clr & cla
+				knowpregloss = 2
+				thinkpreg = 0
+				knowpreg = 0
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage1.jpg"></center>'
+				'You''ve expended every tear your body could produce...<br>Dr Filippa Smirnitskaya: "..." The female doctor explain the situation, she''s focused more on your worries than on your clinical situation. The male doctor speak to the nurse, he tell her something and then he make her a sign; few minutes later he politely say goodbye and left the room...'
+				act 'Rise': gt 'mod_iwhore_limbus1', 'walker'
+			end
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt2.jpg"></center>'
+			'Dr. Ignatiy Bogomolov: "...Welcome back..."...'
+				act '...': 
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage1.jpg"></center>'
+				if preg ! 1:
+					'Dr. Ignatiy Bogomolov: "...We were waiting for you...you will excuse me, but i''ll left you to Dr Smirnitskaya for the moment...you should come to my office when finished."...The male doctor speak lastly to the nurse, he tell her something and then he make her a sign; few minutes later he politely wave goodbye and left the room...<br>Dr Filippa Smirnitskaya: "How do you feel <<$pcs_nickname>>? You can call me Filippa, i''m here for a fast check mainly, but you can speak freely about all you want here..." <br>"...I-it''s all a pain..."<br>Dr Filippa Smirnitskaya: "I can imagine... . Dr. Bogomolov is the leader here... . I''m mainly a gynecologist, but as a doctor i can listen at your need. You should speak to him when finished about your conditions...but according to him since i''m a woman you can find easy to speak with me about certain things, and i''m totally agree. I want you to know that we are here for everything, and we''ll follow you till you will be able to return to your daily life..." The female doctor explain part of your clinical situation; she let you know something you were not able to record in your mind and delay the main things to Dr. Bogomolov. Among the things, you were reassured that the rape didn''t made you pregnant... '
+				else
+					'Dr. Ignatiy Bogomolov: "...We were waiting for you...you will excuse me, but i''ll left you to Dr Smirnitskaya for the moment...you should come to my office when finished."...The male doctor speak lastly to the nurse, he tell her something and then he make her a sign; few minutes later he politely wave goodbye and left the room...<br>Dr Filippa Smirnitskaya: "How do you feel <<$pcs_nickname>>? You can call me Filippa, i''m here for a fast check mainly, but you can speak freely about all you want here..." <br>"...I-it''s all a pain..."<br>Dr Filippa Smirnitskaya: "I can imagine... . Dr. Bogomolov is the leader here... . I''m mainly a gynecologist, but as a doctor i can listen at your need. You should speak to him when finished about your conditions...but according to him since i''m a woman you can find easy to speak with me about certain things, and i''m totally agree. I want you to know that we are here for everything, and we''ll follow you till you will be able to return to your daily life..." The female doctor explain part of your clinical situation; she let you know something you were not able to record in your mind and delay the main things to Dr. Bogomolov. Among the things, you were reassured that your child should be safe... .'
+				end
+				act 'Rise': gt 'mod_iwhore_limbus1', 'walker'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'walker':
+	*clr & cla
+	KILLOBJ
+	pcs_hairbsh = 1
+	InSleep = 0
+	gs 'mod_iwhore_realstat' , 'restoring'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+	if was_awhore_son = 1:
+		if StoryLine = 1:
+			'Nurse Lida: "I''m sorry <<$pcs_nickname>>...i-i''m sure...you have someone who will watch on you now and forever...it...it cannot be another way...no... . ...And Lida too...yes. I''ll be with you..."<br>"..."<br>Nurse Lida: "...and I will not be alone no no no..."<br>"..."'
+		else
+			'Nurse Lida: "I''m sorry <<$pcs_nickname>>...i-i''m sure...you have someone who will watch on you now and forever...it...it cannot be another way...no... . ...And Lida too...yes. I''ll be with you..."<br>"..."'
+		end
+	else
+		if StoryLine = 1:
+			'Nurse Lida: "I knew it! It''s not completely clear but i can see it...yes yes. I can see it! Oh it will be only a matter of time but it will be restored soon...your mouth will come back to smile in no time!"<br>"..."<br>Nurse Lida: "...But i''m not the jealous type...no no no...i like to share!..."<br>"..."'
+		else
+			'Nurse Lida: "I knew it! It''s not completely clear but i can see it...yes yes. I can see it! Oh it will be only a matter of time but it will be restored soon...your mouth will come back to smile in no time!"<br>"..."<br>Nurse Lida: "...But i''m not the jealous type...no no no...i like to share!...uhmmm...well....uhmmm...ok i have to find someone you like to be shared with...uhmmm...that woman vanished...wathever...you will not feel alone with me...that''s a promise!..."<br>"..."'
+		end
+	end
+
+	act '...': 
+		*clr & cla
+		if was_awhore_son = 1:
+			if StoryLine = 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+				'Nurse Lida: "...i-if...if you like of course..."<br>"..."<br>Nurse Lida: "...I''d like you to share a little piece of your hell with me......I-i only want you to know that."<br>"...Thanks...i guess."<br>Nurse Lida: "...When you want, whatever you need... . But we really should start now..."'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/family/sister3.jpg"></center>'
+				'"Good morning sleepy head!"<br>"Anja..."<br>"You made us a big scare you know that?"<br>...<br>Nurse Lida: "...M-miss Anja...i''ll left you now...but remember to not stay too long...please."<br>"Thanks Lida, i will not..."<br>The nurse politely left and you with your sister spend the little time you have together.<br>"...Anja...i''m sorry..."<br>"...You have nothing to be sorry. Listen: i cannot stay here, you have a lot of things to do, the doctor will explain everything. Me and mom are both late on work and we should recover the time we spent with you...She left 500 rubles to the doctor for you to move when you will finish the rehabilitation...they found you and you had no money. Here...it''s not too much...i can give you a little bonus..." Anja lend you 100 rubles..."...but you really have to not miss what the doctor will tell you to do. They are really good...i thought...i...i-i..." Words start to became hard to say as the memory of your sight in the condition you were start to paint again in her mind..."...no...not now. Promise me <<$pcs_nickname>>."<br>"Sis..."<br>"P-promise me."<br>"I promise..."<br>...<br>"Thanks...<<$pcs_nickname>>... . I won''t stop you now. Rush rush...you have to recover." Your sister move toward you, she give a kiss to your front and left you without letting you reply, just before the nurse enter again the room. You can feel it was an heavy moments for her...for all of your family...'
+			end
+		else
+			if StoryLine = 0:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+				'Nurse Lida: "...But we really should start now...the earlier we start the earlier we finish..."'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/family/sister3.jpg"></center>'
+				'"Good morning sleepy head!"<br>"Anja..."<br>"You made us a big scare you know that?"<br>...<br>Nurse Lida: "...Miss Anja..."<br>"Thanks Lida..."<br>The nurse politely left and you with your sister spend the little time you have together.<br>"...Anja...i''m sorry..."<br>"...You have nothing to be sorry. Listen: i cannot stay here, you havea lot of things to do, the doctor will explain everything. Me and mom are both late on work and we should recover the timewe spent with you...She left 500 rubles to the doctor for you to move when you will finish the rehabilitation...they found you and you had no money. Here...it''s not too much...i can give you a little bonus..." Anja lend you 100 rubles..."...but you really have to not miss what the doctor will tell you to do. They are really good...i thought...i...i-i..." Words start to became hard to say as the memory of your sight in the condition you were start to paint again in her mind..."...no...not now. Promise me <<$pcs_nickname>>."<br>"Sis..."<br>"P-promise me."<br>"I promise..."<br>...<br>"Thanks...<<$pcs_nickname>>... . I won''t stop you now. Rush rush...you have to recover." Your sister move toward you, she give a kiss to your front and left you without letting you reply, just before the nurse enter again the room. You can feel it was an heavy moments for her...for all of your family...'
+			end
+		end
+		act 'Stand up': 
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+			'You try to rise yourself but it was not possible, it''s like you never walked before... . Nurse Lida: "...That''s normal, don''t worry...you are weak actually... . I''m here to help you; you will recover completely don''t worry...we actually have a schedule, you should have a shower, and then i will lead you to Dr Bogomolov. I''ll be out of the shower...there''s a button to press if you have any problem. You can wash yourself from a sitting position if you want, i suggest you to go in the shower with the corner seat..."...'
+			act 'Have a shower': 
+				*clr & cla
+				$track_loop = 'sound/mod/iwhore/shower1.mp3'
+				volume = 50
+				music_loop = 1
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower0.jpg"></center>'
+				'Despite the nurse''s advice...you don''t have the strengh to think clear...you enter into a random stall, and the water start to flow...'
+				act '...a scene in your head...': 
+					*clr & cla
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memories.mp4"></video></center>'
+					'...'
+					wait 8000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower0.jpg"></center>'
+					'...a scene you cannot delete...'
+					wait 3000
+					'...Nurse Lida: ..."...<<$pcs_nickname>>...if you won''t finish soon, i''ll come in..."'
+					wait 3000
+					'...'
+					wait 3000
+					'Nurse Lida: ..."..."'
+					wait 3000
+					'Nurse Lida: ..."...That''s it!"'
+					wait 8000
+					*clr & cla
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida0.mp4"></video></center>'
+					'Nurse Lida: ..."...What...?"'
+					wait 6500
+					*clr & cla
+					music_loop = 0 & close all
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida0.jpg"></center>'
+					'You have no reactions your eyes are fixed on a point...you don''t speak. She stripped before enter to be ready to help you; she doesn''t expect to find you dressed, she only expected you had some difficulties...it was not the case... . Nurse Lida: ..."...I cannot imagine what you passed <<$pcs_nickname>>...but i''ll do my best to help you...". She careful strip your clothes, and then she lead you again in the shower to finish your cleaning...'
+					act '...': 
+						*clr & cla
+						$track_loop = 'sound/mod/iwhore/shower1.mp3'
+						volume = 50
+						music_loop = 1
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1.jpg"></center>'
+						'Sometimes Lida try to see if you can stand on your own feet...but you cannot...<br>Nurse Lida: ..."...No no no...you won''t fall with me...no no no...i cannot allow that..."<br>It was an heavy task to wash your body...your wish is to be light...'
+						act '..."...let ...me... d..."...': 
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+							'Nurse Lida: ..."NO! I NEVER LEFT MY FLOWERS!"<br>The nurse hold your body with all her strengh... ."Never."<br>She know she cannot be weak right now...<br>"Hold on me." You execute the order, as if you have no more will..."It''s only a matter of time...and i will be here...when you will not stay on your own...trust me." Your body are tightened together...you can almost feel a little heat that warm your heart... . But Lida is not an ice cold stone...part of the tears that you could no longer pay are poured by her... . You wouldn''t be a weight for somebody...but you can do nothing about that. "That''s it...don''t worry, you won''t break me...i''m strong you know?"...you brietly have a little of control on your arms...and you try to hug her...but it doesn''t last long. "Yes yes...it''s ok...i don''t want you to use all your strengh right now..."'
+							act 'The shower end': 
+								*clr & cla
+								music_loop = 0 & close all
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+								'It was hard, but Lida was able to wash your body; at the end she led your wasted body in the room. Your look is  absent, and your mind is occupied by your memories...<br>Nurse Lida: ..."...Let me prepare yourself... ."... . You neither have the will to nod; Lida understand that and carefully dress your body... . '
+								act '...':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hallway0.jpg"></center>'
+									'...Nurse Lida: ..."...I''m always here...first the left, then the right...the left ... and the right... ."...'
+									act '...': 	gt 'mod_iwhore_therapy', 'bogomolov'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+--- mod_iwhore_limbus1 ---------------------------------

+ 1319 - 0
locations/mod_iwhore_limbusbattle.qsrc

@@ -0,0 +1,1319 @@
+# mod_iwhore_limbusbattle
+if $ARGS[0] = 'mind':
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/zend.jpg"></center>'	
+	if mind_healing < 1:
+		'..."What''s that?...It''s like a pictures...but it seems i''m in there..."'	
+	elseif mind_healing = 1:
+		'..."Again... . The same things..."'	
+	else
+		'..."......"...'	
+	end	
+	act 'Touch the picture.':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/z.jpg"></center>'	
+		if mind_healing < 1:
+			'The picture start to break into different pieces..."...I swear it wasn''t me!..."...'	
+		elseif mind_healing = 1:
+			'..."...It seems a dream..."'	
+		elseif mind_healing = 2:
+			'..."Really? Do I have to do that again?..."'	
+		else
+			'..."......"...'	
+		end
+		act '...':
+			*clr & cla
+			if mind_healing < 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces1.jpg"></center>'	
+				'...'
+			elseif mind_healing = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces2.jpg"></center>'	
+				'...'
+			elseif mind_healing = 2:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces3.jpg"></center>'	
+				'...'
+			elseif mind_healing = 3:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces4.jpg"></center>'	
+				'...'
+			elseif mind_healing = 4:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces5.jpg"></center>'	
+				'...'
+			elseif mind_healing = 5:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces6.jpg"></center>'	
+				'...'
+			elseif mind_healing = 6:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces7.jpg"></center>'	
+				'...'
+			elseif mind_healing = 7:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces8.jpg"></center>'	
+				'...'
+			elseif mind_healing = 8:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces9.jpg"></center>'	
+				'...'
+			elseif mind_healing = 9:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces10.jpg"></center>'	
+				'...'
+			elseif mind_healing = 10:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces11.jpg"></center>'	
+				'...'
+			elseif mind_healing = 11:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/pieces12.jpg"></center>'	
+				'...'
+			elseif mind_healing = 12:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/x.jpg"></center>'	
+				'...'
+			else
+				''
+			end
+			'Few moments and the pieces are causally disposed lefting a blank picture with one highlighted piece......'
+			if body_healing < 1:
+				act '"Better restored it...i don''t want someone who told me it was my fault..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/maybe.jpg"></center>'	
+					'"It''s a big block! It seems valuable too...Hope it''s not broken... . Maybe it''s used is some scenes...it doesn''t seems a studio anyway..."'
+					act '...':gt 'mod_iwhore_limbusbattle', 'mind_pieces'
+				end		
+			else
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/maybe.jpg"></center>'	
+					'...'
+					act '...':gt 'mod_iwhore_limbusbattle', 'mind_pieces'
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'mind_pieces':
+	fcolor = rgb(0, 0, 0)
+	bcolor = rgb(255, 255, 255)
+	gs 'mod_iwhore_realstat' , 'mind_pieces'
+	$random[0] = '<a href="exec:mind_piece = 1 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ad'+rand(0,3)+'.jpg"></a>'
+	$random[1] = '<a href="exec:mind_piece = 2 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ae'+rand(0,3)+'.jpg"></a>'
+	$random[2] = '<a href="exec:mind_piece = 3 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/af'+rand(0,3)+'.jpg"></a>'
+	$random[3] = '<a href="exec:mind_piece = 4 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ag'+rand(0,3)+'.jpg"></a>'
+	$random[4] = '<a href="exec:mind_piece = 5 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bd'+rand(0,3)+'.jpg"></a>'
+	$random[5] = '<a href="exec:mind_piece = 6 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/be'+rand(0,3)+'.jpg"></a>' 
+	$random[6] = '<a href="exec:mind_piece = 7 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bf'+rand(0,3)+'.jpg"></a>'
+	$random[7] = '<a href="exec:mind_piece = 8 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bg'+rand(0,3)+'.jpg"></a>'
+	$random[8] = '<a href="exec:mind_piece = 9 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cd'+rand(0,3)+'.jpg"></a>'
+	$random[9] = '<a href="exec:mind_piece = 10 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ce'+rand(0,3)+'.jpg"></a>'
+	$random[10] = '<a href="exec:mind_piece = 11 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cf'+rand(0,3)+'.jpg"></a>'
+	$random[11] = '<a href="exec:mind_piece = 12 & gt ''mod_iwhore_limbusbattle'', ''end''"><img src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cg'+rand(0,3)+'.jpg"></a>'
+
+	*CLR
+
+	i = 1
+	: loop
+		$rand = FUNC('mod_iwhore_limbusbattle','rand_draw')
+		*p '<<$rand>>'
+			*p '   '
+		i = i + 1
+	IF i <= 12:
+		JUMP 'loop'
+	END
+	'"Let''s see..."' 
+end
+!temp = func('shortgs','guy')
+!$rand = FUNC('mod_iwhore_limbusdraw')
+if $ARGS[0] = 'end':
+	cls
+	*clr & cla
+	KILLOBJ
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/no.jpg"></center>'	
+	'....'	
+	act '"It should be this one...i...think..."':
+		*clr & cla
+!DAY2
+		if 	mind_healing = 0 and mind_piece = 1:
+			mind_healing += 1
+			$day_whore_switch = 'day2b'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ad.jpg"></center>'
+			'For a moment the picture restore to the original one; suddenly the piece you put on it became completely black ...<br>"Hey! Is that a trick?"...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'
+		elseif mind_healing = 1 and mind_piece = 2:
+			mind_healing += 1
+			$day_whore_switch = 'day2c'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ae.jpg"></center>'
+			'For a moment the picture restore to the original one; suddenly the piece you put on it became completely black and it add to the previous piece to cover the figure...<br>..."...That''s a trick for sure..."...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'
+!DAY3
+		elseif mind_healing = 2 and mind_piece = 3:
+			mind_healing += 1
+			$day_whore_switch = 'day3b'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/af.jpg"></center>'
+			'For a moment the picture restore to the original one; suddenly the piece you put on it add to the previous piece to cover the figure...<br>..."...There''s something..."...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'
+		elseif mind_healing = 3 and mind_piece = 4:
+			mind_healing += 1
+			$day_whore_switch = 'day3c'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ag.jpg"></center>'
+			'For a moment the picture restore to the original one; suddenly the piece you put on it add to the previous piece to cover the figure...<br>..."...Black...again..."...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'
+!DAY4
+		elseif mind_healing = 4 and mind_piece = 5:
+			mind_healing += 1
+			$day_whore_switch = 'day4b'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bd.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'		
+		elseif mind_healing = 5 and mind_piece = 6:
+			mind_healing += 1
+			$day_whore_switch = 'day4c'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/be.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus', 'switch'		
+!DAY6
+		elseif mind_healing = 6 and mind_piece = 7:
+			mind_healing += 1
+			$day_whore_switch = 'day6b'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bf.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus1', 'switch1'		
+		elseif mind_healing = 7 and mind_piece = 8:
+			mind_healing += 1
+			$day_whore_switch = 'day6c'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/bg.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus1', 'switch1'		
+		elseif mind_healing = 8 and mind_piece = 9:
+			mind_healing += 1
+			$day_whore_switch = 'day6e'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cd.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus1', 'switch1'		
+		elseif mind_healing = 9 and mind_piece = 10:
+			mind_healing += 1
+			$day_whore_switch = 'day6f'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/ce.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus1', 'switch1'		
+!DAY7
+		elseif mind_healing = 10 and mind_piece = 11:
+			mind_healing += 1
+			$day_whore_switch = 'day7f'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/cf.jpg"></center>'
+			'...'
+			act '...': gt 'mod_iwhore_limbus1', 'switch1'		
+!NEWBORN	
+		elseif mind_healing = 11 and mind_piece = 12:
+			mind_healing += 1
+			PLAY 'sound/mod/iwhore/drop.mp3'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/xend.jpg"></center>'
+			'...'
+			wait 6000
+			gt 'mod_iwhore_limbus1', 'newbornz'	
+			
+!!!!!!!!!!!!!
+		else
+			*clr & cla
+			mind_errors += 1
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/beast/mind/maybe.jpg"></center>'
+			'..."...Aaaaand...Hey!"...The picture reject your piece... . You find yourself with your piece again in your hands..."Maybe it wasn''t the right one..."'
+			act '...':gt 'mod_iwhore_limbusbattle', 'mind_pieces'
+		end
+	end
+end
+
+! gt 'mod_iwhore_limbusbattle', 'body'
+if $ARGS[0] = 'body':
+!DAY1night
+	cls
+	KILLOBJ
+	hour += 2
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'night'
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+	if body_healing < 1:
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day10.jpg"></center>'	
+		'"I think i''m sleeping now...but it''s like i couldn''t...i can move but it''s like i cannot made a step...and that''s a...white rose?...why that rose is here?...it stand on a stone..."'
+		act '"I should put it in the water..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/walker2.jpg"></center>'	
+			'..."...Another road?...It''s like i''m in a maze...or something like that...but even when i am in a place...i can move into another...I think i''m going to be mad..." <br>You walk the road a little...'
+			wait 6000
+			nl
+			'..."...A light comes out from the end..."...'
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source0.jpg"></center>'
+			'..."It''s making me blind...it''s too strong..."'
+			act '"...Got it..."':
+				cls
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller0.jpg"></center>'
+				'..."...N-no ... w-way...it''s ... impossible..."...'
+				ADDOBJ '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/warning.mp4"></video></center>'
+				wait 2000
+				*clr
+				minut += 3
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day11.jpg"></center>'	
+				'..."...There''s something wrong...something is going wrong...it start to hurt...why? why the rose is bleeding?...help!...i cannot breath..."'
+				PL '<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/girl/move.jpg"></center>'
+				PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+				if StoryLine = 0:
+					PL 'Dr Ignatiy Bogomolov: "Who''s in there?" <br>Nurse: "No one, but a woman stroll around some time...." <br>Dr Ignatiy Bogomolov: "And who''s the one who called from the room? Uh? The tomato''s ghost? That''s an hospital!!! DAMN!!!!! I want everyone else but us out!!!! MOVE MOVE MOVE!!!"'
+				else
+					PL 'Dr Ignatiy Bogomolov: "Who''s in there?" <br>Nurse: "Her mother and her sister they called probably..." <br>Dr Ignatiy Bogomolov: "Out! I want everyone else but us out! MOVE MOVE MOVE!"'
+				end
+				wait 12000
+				*clr
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/darkness.mp4"></video></center>'
+				'Everything start to being dark..."...What do you want from me? GO AWAY!!!!!..."'
+
+				wait 9000
+				gt 'mod_iwhore_limbus', 'day2'
+			end
+		end
+!DAY2night
+	elseif body_healing = 1:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/z0.jpg"></center>'	
+		'"That''s another dream...". <br>A woman stand in front of a shiny heart...<br>"Why don''t you touch the moon?"<br>..."But that''s an heart...it''s not a moon..."...<br>"No. It''s a moon, touch it..."'
+		act 'Touch the "moon"...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/z0.jpg"></center>'	
+			'"...I cannot..."<br>"I''m sorry..."'
+			wait 8000
+			*clr & cla
+			pain['killer'] = 0
+			gs 'mod_iwhore_realstat' , 'night'
+			fcolor = rgb(255, 255, 255)
+			bcolor = rgb(0, 0, 0)
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day20.jpg"></center>'	
+			'..."No leave it! Why are you crushing it...? ....AAAAAAAHHHH! WHY? WHY ARE YOU DOING THIS TO ME?....WHAT''S THIS? PLEEEEEEEEASEEEEE!!!!!...."'
+			wait 4000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/essence3.jpg"></center>'	
+			'..."....p-pl..."...'
+			wait 3000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day21.jpg"></center>'	
+			'..."...e..."...'
+			wait 3000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller0.jpg"></center>'	
+			'..."...a..."...'
+			wait 3000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/z1.jpg"></center>'	
+			'..."...s..."...'
+			wait 3000
+			*clr & cla
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'night'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day2/zbegin.jpg"></center>'	
+			'...."...e."... . <br>You see the back of a woman figure; she didn''t answer your request... . The sea is calm and quiet, a bird stand on a stone cross...nothing happens...'
+			act '...': gt 'mod_iwhore_limbus', 'day3'
+		end
+		
+!DAY3night
+	elseif body_healing = 2:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/essence0.jpg"></center>'	
+		'..."...I...feel... No. ...I''am ...empty... There''s no way...there''s ...nothing..."...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day30.jpg"></center>'	
+		'..."...nothing..."...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/z0.jpg"></center>'	
+		'"You still cannot touch the moon...isn''t it?"'
+		act '"N..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/z1.jpg"></center>'	
+			'"...No."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/tired.jpg"></center>'	
+				'..."...Alone... . Again, i''m alone...."'
+				if StoryLine = 0:
+					act '..."...again..."...':
+						cls
+						*clr & cla
+						PL '<center><img width="65%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/zangels.jpg"></center>'
+						PL 'Woman: "I''m sorry <<$pcs_nickname>>...i was busy with the doctor...but now he''s drained...hehehe....I think, things will became easier from now on...hehehe..."<br>Doc: "I see... . Mieszko called during your absence."<br>Woman: "And?"<br>Doc: "...He got something..."'
+						PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day31.jpg"></center>'	
+						'...'
+						act '..."No. I cannot stop."':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker3.jpg"></center>'	
+							'..."...Not now..."...'
+							act '..."...There''s something."...': gt 'mod_iwhore_limbus', 'day4'
+						end
+					end
+				else	
+					act '..."...again..."...':
+						cls
+						*clr & cla
+						PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/nicknamems1.jpg"></center>'
+						PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+						PL '"...Mom...you shouldn''t stay there...you have to rest."<br>"...I cannot sleep Anja..."<br>"Did you take the pills? The doctor said they should help us to sleep..."<br>"...I''ll take them...return to the room, you don''t have to worry. Five minutes and i''ll reach you."<br>"...Yes mom..."<br>"...<<$pcs_nickname>>...why don''t you leave to me your sleep...i wish...i...just a little...i could help you..."'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day31.jpg"></center>'	
+						'...'
+						act '..."No. I cannot stop."':
+							cls
+							*clr & cla
+							PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/zangels.jpg"></center>'
+							PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+							PL 'Doc: "...Her mother never rest. It was ages before she went to sleep. Do you want me to drug her tomorrow?"<br>Woman: "I didn''t know you want to lose your balls..."<br>Doc: "...Eeeerhhh...got it... ."<br>Woman: "...Mppphf! ...What do you think about Mieszko''s report?"<br>Doc: "...It could be something...it''s not a regular worker uniform. We need to go Pavlovsk..."...'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day3/walker3.jpg"></center>'	
+							'..."...Not now..."...'
+							act '..."...There''s something."...': gt 'mod_iwhore_limbus', 'day4'
+						end
+					end
+				end
+			end
+		end
+!DAY4night
+	elseif body_healing = 3:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/tired.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day40.jpg"></center>'	
+		'"...W-who are you?...Leave the rose...please...it cannot resist...anymore..."'
+		wait 5000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/z0.jpg"></center>'	
+		'"So tell me do you like the book?"'
+		act '"...I-i don''t know...i cannot read it..."':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/z1.jpg"></center>'	
+			'..."...Where are you?...I cannot see you..."<br>"No."<br>"Are you in the city?..."<br>"..."'
+			act '"Are you in there?"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day41.jpg"></center>'	
+				'...'
+				act '"I cannot reach it..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/z2.jpg"></center>'	
+					'..."...I feel trapped...I''m trapped..."...'
+					wait 4000
+					gt 'mod_iwhore_limbus', 'day5'
+				end
+			end
+		end
+!DAY5night
+	elseif body_healing = 4:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/tired.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/essence4.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day50.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		if iskra_war = 1:
+			act '...''...it''s...raining...Iskra''...': gt 'mod_iwhore_realtime', 'Iskra'
+		else
+			act '...''...it''s...raining...''...': gt 'mod_iwhore_limbus1', 'day6'
+		end
+
+!DAY6night
+	elseif body_healing = 5:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/in0.jpg"></center>'	
+		'...'
+		wait 4000
+		*clr & cla
+		if whore_flame < 4:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day5/tired.jpg"></center>'	
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day7/tired.jpg"></center>'	
+		end
+		'...''...i''m dead...''...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/day51.jpg"></center>'	
+		'...''...but if i''m dead ....why am i still dreaming? ''... .'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/essence5.jpg"></center>'	
+		'...''...i have to wait...what?...''...'
+		if whore_flame < 4:
+			act 'Wait':gt 'mod_iwhore_jenna', 'lost'
+		else
+			act 'Wait':gt 'mod_iwhore_limbus1', 'day7'
+		end
+		
+!NEWBORN
+	elseif body_healing = 6:
+		*clr & cla
+		body_healing += 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/essence3.jpg"></center>'	
+		'..."i"...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller1.jpg"></center>'	
+		'..."cannot"...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/traveller2.jpg"></center>'	
+		'..."sleep"...'
+		wait 4000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/fs/body.jpg"></center>'	
+		'..."W..."...'
+		act '..."...who are you?..."': gt 'mod_iwhore_realtime', 'daystart'
+	else
+		''
+	end	
+!	act '...':gt 'mod_iwhore_limbusbattle', 'mind_pieces'
+end
+
+!max = 6
+
+if $ARGS[0] = 'deck':
+	!START!
+	!KILLALL
+	iwhore_card_round = 0
+	if MagikDostup = 0:
+		pcs_mana = 0
+	end
+	cls
+	SHOWOBJS 0
+	SHOWSTAT 0
+	fcolor = rgb(255, 255, 255)
+	bcolor = rgb(0, 0, 0)
+
+!	turn = 0
+	flame = 3
+	$suit[1] = 'pikes'
+	$symbol[1] = '♠'
+	$suit[2] = 'clovers'
+	$symbol[2] = '♣'
+	$suit[3] = 'hearts'
+	$symbol[3] = '♥'
+	$suit[4] = 'tiles'
+	$symbol[4] = '♦' 
+
+	$number[1] = 'ace '
+	points[1] = 11
+	$number[2] = 'two '
+	points[2] = 2
+	$number[3] = 'three '
+	points[3] = 3
+	$number[4] = 'four '
+	points[4] = 4
+	$number[5] = 'five '
+	points[5] = 5
+	$number[6] = 'six '
+	points[6] = 6
+	$number[7] = 'seven '
+	points[7] = 7
+	$number[8] = 'eight '
+	points[8] = 8
+	$number[9] = 'nine '
+	points[9] = 9
+	$number[10] = 'ten '
+	points[10] = 10
+	$number[11] = 'jack '
+	points[11] = 10
+	$number[12] = 'queen '
+	points[12] = 10
+	$number[13] = 'king '
+	points[13] = 10
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/lead.jpg"></center>'	
+	if body_healing < 1:	
+		'"It''s you again! What do you want from me?" But the woman didn''t answer and keeps pointing you to a direction to take...'
+	else
+		''
+	end
+
+	act 'Follow the woman': gt 'mod_iwhore_limbusbattle', 'dealer'
+!	act 'Pavlovsk': gt 'pav_residential'
+end
+
+if $ARGS[0] = 'dealer':
+	cls
+	SHOWSTAT 1
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerset.jpg"></center>'	
+	if body_healing < 1:
+		'The other woman you saw before sit on the table with her drink..."...And you again...am i running in a circle?" This time she didn''t answer...'
+	else
+		''
+	end
+	nl
+	'You can now look at the <a href="exec:view''mod/iwhore/images/locations/pavlovsk/events/fight/rules.jpg''">rules</a>'
+	PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+	if body_healing < 1:
+		act '"Ok...ok...can i have a drink too?"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerspeak.jpg"></center>'	
+			'....The woman stop drinking and take some cards in her hands...they are all white...'
+			'....'
+			act 'Sit': 
+!				iwhore_card_round += 1
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end
+	end
+	act 'Sit': 
+!		iwhore_card_round += 1
+		gt 'mod_iwhore_limbusbattle', 'start'
+	end
+end
+
+if $ARGS[0] = 'start':
+
+	SHOWSTAT 1
+	SHOWOBJS 1
+	KILLOBJ
+	if flame = 3:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+	elseif flame = 2:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	elseif flame = 1:
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameon.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	else
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+		ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	end
+
+
+	cls
+!	PL '  PLAYING ROOM'
+!	PL '  At the table play blackjack'
+	!BEGIN 
+	if turn = 0:
+		*clr & cla
+		if iwhore_card_round = 5:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/lead.jpg"></center>'	
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'	
+			'As you sit you hear a voice in your head..."...All the time you want..." . ...'
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerbet0.jpg"></center>'
+		end
+		
+		if iwhore_card_round =< 4:
+			if flame => 1:
+				act 'bet':
+					deal = 1
+					flame = flame - deal
+					turn = 1
+					iwhore_card_round += 1
+					gt 'mod_iwhore_limbusbattle', 'start'
+				end
+			else
+				act 'Finish the game':
+					gt 'mod_iwhore_limbusbattle', 'body'
+				end
+			end
+		else
+			act 'Finish the game':
+				if body_healing < 5:
+					if flame >= 2:
+						sons_flame += 1
+						whore_flame += 1
+						!max = 6
+					else
+						''
+					end
+				else
+					if flame >= 2: whore_flame += 1
+				end
+				
+				gt 'mod_iwhore_limbusbattle', 'body'
+			end
+		end
+	end
+
+	!CARD ACCOUNT
+	if turn = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer0.jpg"></center>'	
+		' The woman gives cards:'
+		'...'
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+		suit = RAND (1,4)
+		number = RAND (1,13)
+		$d_card[1] = $number[number] + $suit[suit]
+		d_points = points[number]
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 	
+		$p_card[1] = $number[number] + $suit[suit]
+		p_points = points[number]
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$p_card[2] = $number[number] + $suit[suit]
+		p_points = p_points + points[number]
+		
+!		if p_points = 22: p_points = 21  
+		
+		if p_points = 20:
+			if $p_card[1] = $number[12] and $p_card[2] = $number[12]: p_points = 22
+		end
+		
+		
+		wait 1000
+		if p_points < 22:
+			'Challenger card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player cards:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			act 'Enough':
+				turn = 3
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+			act 'Another card':
+				turn = 2
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end  
+		end
+		if p_points = 22:
+			'Challenger card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player cards:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'BLACK QUEEN!!!'
+			prise = deal
+			act 'Turn on <<prise>>':
+				if flame =< 1:
+					flame = flame + prise + 1
+				else
+					flame = flame + prise
+				end
+				turn = 0
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end 
+	end
+
+	!ADDITIONAL TURN
+	if turn = 2:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer1.jpg"></center>'	
+		'The woman gives another card:'
+		'...' 
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$p_card[3] = $number[number] + $suit[suit]
+		p_points = p_points + points[number] 
+		if p_points <= 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			act 'Enough':
+				turn = 3
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+			act 'Another card':
+				turn = 22
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end   
+		end
+		if p_points > 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			'OVER!'
+			act '...':
+				turn = 0
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end 
+	end
+
+	if turn = 22:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer2.jpg"></center>'	
+		'The woman gives another card:'
+		'...' 
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$p_card[4] = $number[number] + $suit[suit]
+		p_points = p_points + points[number] 
+		if p_points <= 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			'  <<$p_card[4]>>'
+			act 'Enough':
+				turn = 3
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+			act 'Another card':
+				turn = 222
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end   
+		end
+		if p_points > 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			'  <<$p_card[4]>>'  
+			'Over!'
+			act '...':
+				turn = 0
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end 
+	end
+
+	if turn = 222:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer'+rand(0,2)+'.jpg"></center>'	
+		'The woman gives another card:'
+		'...' 
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$p_card[5] = $number[number] + $suit[suit]
+		p_points = p_points + points[number] 
+		wait 500
+		if p_points <= 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			'  <<$p_card[4]>>'
+			'  <<$p_card[5]>>'  
+			act 'Enough':
+				turn = 3
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end
+		if p_points > 22:
+			'Challenger''s card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player card:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'  <<$p_card[3]>>'
+			'  <<$p_card[4]>>'
+			'  <<$p_card[5]>>'    
+			'Over!'
+			act '...':
+				turn = 0
+				gt 'mod_iwhore_limbusbattle', 'start'
+			end
+		end 
+	end
+
+	!ADDRESSING CARDS BANKING
+	if turn = 3:
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$d_card[2] = $number[number] + $suit[suit]
+		d_points = d_points + points[number]  
+!		if p_points = 22: p_points = 21   
+		wait 500
+		if d_points => 17:
+			
+			
+			if d_points > p_points:
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3l.jpg"></center>'	
+				'The woman check the cards:'
+				'...' 
+				'Challenger''s cards:'
+				'  <<$d_card[1]>>'
+				'  <<$d_card[2]>>'
+				'Challenger''s Points: <<d_points>>'
+				'__________________________'
+				'Player Points: <<p_points>>'
+				'__________________________'  
+				'You lost'
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+				
+				act '...':
+					turn = 0
+					gt 'mod_iwhore_limbusbattle', 'start'
+				end   
+			end
+			if d_points = p_points:
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3d.jpg"></center>'	
+				'The woman check the cards:'
+				'...' 
+				'Challenger''s cards:'
+				'  <<$d_card[1]>>'
+				'  <<$d_card[2]>>'
+				'Challenger''s Points: <<d_points>>'
+				'__________________________'
+				'Player Points: <<p_points>>'
+				'__________________________'  
+				'Draw'
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+				
+				act 'Turn on':
+					flame = flame + deal
+					turn = 0
+					gt 'mod_iwhore_limbusbattle', 'start'
+				end      
+			end
+			if d_points < p_points:
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3w.jpg"></center>'	
+				'The woman check the cards:'
+				'...' 
+				'Challenger''s cards:'
+				'  <<$d_card[1]>>'
+				'  <<$d_card[2]>>'
+				'Challenger''s Points: <<d_points>>'
+				'__________________________'
+				'Player Points: <<p_points>>'
+				'__________________________'  
+				'You won'
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+				
+				prise = deal  
+				act 'Turn on (<<prise>>)':
+					if flame =< 1:
+						flame = flame + prise + 1
+					else
+						flame = flame + prise
+					end
+					turn = 0
+					gt 'mod_iwhore_limbusbattle', 'start'
+				end      
+			end  
+		end
+		if d_points < 17:
+			suit = RAND (1,4)
+			number = RAND (1,13) 
+			$d_card[3] = $number[number] + $suit[suit]
+			d_points = d_points + points[number]    
+			if d_points <= 22:
+				
+				if d_points > p_points:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3l.jpg"></center>'	
+					'The woman gets the cards:'
+					'...' 
+					'Challenger''s card:'
+					'  <<$d_card[1]>>'
+					'  <<$d_card[2]>>'
+					'  <<$d_card[3]>>'
+					'Challenger''s Points: <<d_points>>'   
+					'__________________________'
+					'Player Points: <<p_points>>'
+					'__________________________'  
+					'You lost'
+					PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+					
+					act '...':
+						turn = 0
+						gt 'mod_iwhore_limbusbattle', 'start'  
+					end   
+				end
+				if d_points = p_points:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3d.jpg"></center>'	
+					'The woman check the cards:'
+					'...' 
+					'Challenger''s card:'
+					'  <<$d_card[1]>>'
+					'  <<$d_card[2]>>'
+					'  <<$d_card[3]>>'
+					'Challenger''s Points: <<d_points>>'   
+					'__________________________'
+					'Player Points: <<p_points>>'
+					'__________________________'  
+					'Draw'
+					PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+					
+					act 'Turn on':
+						flame = flame + deal
+						turn = 0
+						gt 'mod_iwhore_limbusbattle', 'start'
+					end      
+				end
+				if d_points < p_points:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3w.jpg"></center>'	
+					'The woman check the cards:'
+					'...' 
+					'Challenger''s card:'
+					'  <<$d_card[1]>>'
+					'  <<$d_card[2]>>'
+					'  <<$d_card[3]>>'
+					'Challenger''s Points: <<d_points>>'   
+					'__________________________'
+					'Player Points: <<p_points>>'
+					'__________________________'  
+					'You won'
+					PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+					
+					prise = deal 
+					act 'Turn on (<<prise>>)':
+						if flame =< 1:
+							flame = flame + prise + 1
+						else
+							flame = flame + prise
+						end
+						turn = 0
+						gt 'mod_iwhore_limbusbattle', 'start'
+					end      
+				end     
+			end
+			if d_points > 22:
+				
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3w.jpg"></center>'	
+				'The woman check the cards:'
+				'...' 
+				'Challenger''s card:'
+				'  <<$d_card[1]>>'
+				'  <<$d_card[2]>>'
+				'  <<$d_card[3]>>'
+				'__________________________'
+				'Over!!!'
+				'__________________________'
+				'You won'
+				PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+				
+				prise = deal  
+				act 'Turn on (<<prise>>)':
+					if flame =< 1:
+						flame = flame + prise + 1
+					else
+						flame = flame + prise
+					end
+					turn = 0
+					gt 'mod_iwhore_limbusbattle', 'start'
+				end      
+			end    
+		end
+	end
+end
+
+
+if $ARGS[0] = 'deck0':
+	gs 'mod_iwhore_realstat' , 'status'
+	SHOWOBJS 0
+	SHOWSTAT 0
+	cls
+	flame = 0
+	$suit[1] = 'pikes'
+	$symbol[1] = '♠'
+	$suit[2] = 'clovers'
+	$symbol[2] = '♣'
+	$suit[3] = 'hearts'
+	$symbol[3] = '♥'
+	$suit[4] = 'tiles'
+	$symbol[4] = '♦' 
+
+	$number[1] = 'ace '
+	points[1] = 11
+	$number[2] = 'two '
+	points[2] = 2
+	$number[3] = 'three '
+	points[3] = 3
+	$number[4] = 'four '
+	points[4] = 4
+	$number[5] = 'five '
+	points[5] = 5
+	$number[6] = 'six '
+	points[6] = 6
+	$number[7] = 'seven '
+	points[7] = 7
+	$number[8] = 'eight '
+	points[8] = 8
+	$number[9] = 'nine '
+	points[9] = 9
+	$number[10] = 'ten '
+	points[10] = 10
+	$number[11] = 'jack '
+	points[11] = 10
+	$number[12] = 'queen '
+	points[12] = 10
+	$number[13] = 'king '
+	points[13] = 10
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/lead.jpg"></center>'	
+	'You don''t know where you are...you can only see a pale woman pointing you to a direction..."Who are you? Where are you bringing me?" The woman doesn''t answer, and keep pointing you...'
+
+	act 'Follow the woman...': gt 'mod_iwhore_limbusbattle', 'dealer0'
+!	act 'Pavlovsk': gt 'pav_residential'
+end
+
+if $ARGS[0] = 'dealer0':
+	cls
+	SHOWSTAT 1
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerset.jpg"></center>'	
+	'You find your self in front of a beautiful woman who''s dinking some alchool...she made you the sign to sit.'
+	nl
+!	'<a href="exec:view''mod/iwhore/images/locations/pavlovsk/events/fight/rules.jpg''">Rules</a>'
+	
+	PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'	
+	act 'Sit': 
+		gt 'mod_iwhore_limbusbattle', 'start0'
+	end
+end
+
+if $ARGS[0] = 'start0':
+	cls
+	SHOWSTAT 1
+	SHOWOBJS 1
+	KILLOBJ
+	
+	ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+	ADDOBJ	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/flameoff.jpg"></center>'	
+
+	if turn = 0:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'	
+		'Sitting at the table a hooded figure waits... . "Why am i here?"...'
+		
+
+		if turn=<0:
+			'<a href="exec:turn += 1 & gs ''mod_iwhore_limbusbattle'', ''start0'' & msg''You know the rules, the bet is on the table.''">Rules</a>'
+		else
+			''
+		end
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerbet0.jpg"></center>'
+
+
+	end
+
+	if turn = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'	
+		'...'
+!		'<a href="exec:msg''You know the rules, the bet is on the table.''">Rules</a>'
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/dealerbet0.jpg"></center>'
+
+		act '"What? Bet? Wich rules?"':
+			turn = 2
+			gt 'mod_iwhore_limbusbattle', 'start0'
+		end
+	end
+
+	!CARD ACCOUNT
+	if turn = 2:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer0.jpg"></center>'	
+		'The woman gives you two cards...<br>..."What''s that for?"...you receive no answer...'
+		PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+		suit = RAND (1,4)
+		number = RAND (1,13)
+		$d_card[1] = $number[number] + $suit[suit]
+		d_points = points[number]
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 	
+		$p_card[1] = $number[number] + $suit[suit]
+		p_points = points[number]
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$p_card[2] = $number[number] + $suit[suit]
+		p_points = p_points + points[number]
+		
+!		if p_points = 22: p_points = 21  
+		
+		if p_points = 20:
+			if $p_card[1] = $number[12] and $p_card[2] = $number[12]: p_points = 22
+		end
+		
+		
+		wait 1000
+		
+		if p_points = 22:
+			'Challenger card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player cards:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			'BLACK QUEEN!!!'
+			prise = deal
+			act 'Hey!':
+				cls
+				flame = 3
+				turn = 0
+				PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm0.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source1.jpg"></center>'
+				nl
+				'Staff: "...u-undetectable..."<br>'
+				wait 8000
+				gt 'mod_iwhore_jenna', 'calltolife1'
+			end
+		else
+			'Challenger card:'
+			'  <<$d_card[1]>>'
+			'__________________________'
+			'Player cards:'
+			'  <<$p_card[1]>>'
+			'  <<$p_card[2]>>'
+			act '"I don''t like this...answer me!"':
+				turn = 3
+				gt 'mod_iwhore_limbusbattle', 'start0'
+			end
+		end 
+	end
+
+
+
+	!ADDRESSING CARDS BANKING
+	if turn = 3:
+		
+		suit = RAND (1,4)
+		number = RAND (1,13) 
+		$d_card[2] = $number[number] + $suit[suit]
+		d_points = d_points + points[number]  
+!		if p_points = 22: p_points = 21   
+		wait 500
+		
+		if d_points > p_points:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3l.jpg"></center>'	
+			'The dealer gets the cards:'
+			'...' 
+			'Challenger''s cards:'
+			'  <<$d_card[1]>>'
+			'  <<$d_card[2]>>'
+			'Challenger''s Points: <<d_points>>'
+			'__________________________'
+			'Player Points: <<p_points>>'
+			'__________________________'  
+			'You lost'
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/challenger.jpg"></center>'
+
+			act '"Hey!"(To write the end)':
+				cls
+				turn = 0
+				PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm0.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source1.jpg"></center>'
+				nl
+				'Staff: "...u-undetectable..."<br>'
+				wait 8000
+				gt 'mod_iwhore_jenna', 'calltolife1'
+			end   
+		end
+		if d_points = p_points:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3d.jpg"></center>'	
+			'The dealer gets the cards:'
+			'...' 
+			'Challenger''s cards:'
+			'  <<$d_card[1]>>'
+			'  <<$d_card[2]>>'
+			'Challenger''s Points: <<d_points>>'
+			'__________________________'
+			'Player Points: <<p_points>>'
+			'__________________________'  
+			'Draw'
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/surgery.jpg"></center>'	
+			act '"Hey!"':
+				cls
+				flame += 1
+				turn = 0
+				PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm0.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source1.jpg"></center>'
+				nl
+				'Staff: "...u-undetectable..."<br>'
+				wait 8000
+				gt 'mod_iwhore_jenna', 'calltolife1'
+			end      
+		end
+		if d_points < p_points:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/dealer3w.jpg"></center>'	
+			'The dealer gets the cards:'
+			'...' 
+			'Challenger''s cards:'
+			'  <<$d_card[1]>>'
+			'  <<$d_card[2]>>'
+			'Challenger''s Points: <<d_points>>'
+			'__________________________'
+			'Player Points: <<p_points>>'
+			'__________________________'  
+			'You won'
+			PL '<center><img width="75%" src="mod/iwhore/images/locations/pavlovsk/events/fight/surgery.jpg"></center>'
+
+			act '"Hey!"':
+				cls
+				flame += 2
+				turn = 0
+				PL '<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/status/bpm0.mp4"></video></center>'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day1/source1.jpg"></center>'
+				nl
+				'Staff: "...u-undetectable..."<br>'
+				wait 8000
+				gt 'mod_iwhore_jenna', 'calltolife1'
+			end      
+		end  
+	end
+end
+
+if $ARGS[0] = 'rand_draw':
+	! Request the length of the array
+	_length = ARRSIZE('$random')
+	! If there are no options, return 'ERROR'
+	IF _length = 0:
+		$RESULT = 'ERROR'
+		EXIT
+	END
+
+	! We select from the array a random element, resp. length of the array
+	_variant = RAND(0, _length-1)
+	! Remember the result
+	$RESULT = $random[_variant]
+
+	! Delete the waste element
+	KILLVAR '$random', _variant
+end
+
+--- mod_iwhore_limbusbattle ---------------------------------

+ 20 - 0
locations/mod_iwhore_limbusdraw.qsrc

@@ -0,0 +1,20 @@
+# mod_iwhore_limbusdraw
+
+! Request the length of the array
+_length = ARRSIZE('$random')
+! If there are no options, return 'ERROR'
+IF _length = 0:
+    $RESULT = 'ERROR'
+    EXIT
+END
+
+! We select from the array a random element, resp. length of the array
+_variant = RAND(0, _length-1)
+! Remember the result
+$RESULT = $random[_variant]
+
+! Delete the waste element
+KILLVAR '$random', _variant
+ 
+
+--- mod_iwhore_limbusdraw ---------------------------------

+ 1139 - 0
locations/mod_iwhore_mainstreet.qsrc

@@ -0,0 +1,1139 @@
+# mod_iwhore_mainstreet
+if $ARGS[0] = 'hookedcar':	
+	*clr & cla	
+	protect = 0
+	propose = 0
+	minut += 2
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/dealc'+rand(0,9)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/cardeal'+rand(0,6)+'.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/dealc0.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal1.jpg"></center>'
+		end
+	end	
+	'"Looking for something, big boy?"'
+	if new_whore < 50:
+		if new_whore = 20 or new_whore = 30 or new_whore = 40 or new_whore = 44 or new_whore = 48:
+			ms_temp = 3 
+			new_whore += 1
+		else
+			ms_temp = rand(11,70)
+		end
+	else
+		if Krestovoz_pimp_protection ! 1:
+			ms_temp = rand(0,70)
+		else
+			ms_temp = rand(11,70)
+		end
+	end
+	act 'Let him decide':
+		if ms_temp =< 10: gt 'mod_iwhore_hardlife', 'car_rape'
+		if ms_temp > 10 and ms_temp =< 20: gt 'mod_iwhore_mainstreetw', 'cbj'
+		if ms_temp > 20 and ms_temp =< 30: gt 'mod_iwhore_mainstreetw', 'cvag'
+		if ms_temp > 30 and ms_temp =< 40: gt 'mod_iwhore_mainstreetw', 'canal'
+		if ms_temp > 40 and ms_temp =< 50: gt 'mod_iwhore_mainstreet', 'mscpropose' 
+		if ms_temp > 50 and ms_temp =< 60: gt 'mod_iwhore_mainstreet', 'mscplace'
+		if ms_temp > 60 and ms_temp =< 70: gt 'mod_iwhore_mainstreetw', 'nakcar' 
+	end
+
+	act 'I''m off': gt $loc, $loc_arg	
+end
+if $ARGS[0] = 'hooked':	
+	*clr & cla
+	protect = 0
+	propose = 0
+	minut += 5
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals2.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal0.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal2.jpg"></center>'
+		end
+	end	
+	'"Looking for something, big boy?"'
+	if new_whore < 50:
+		if new_whore = 20: 
+			ms_temp = 3 & new_whore += 1
+		elseif new_whore = 30: 
+			ms_temp = 3 & new_whore += 1
+		elseif new_whore = 40: 
+			ms_temp = 3 & new_whore += 1
+		elseif new_whore = 44: 
+			ms_temp = 3 & new_whore += 1
+		elseif new_whore = 48: 
+			ms_temp = 3 & new_whore += 1
+		else
+			ms_temp = rand(11,70)
+		end
+	else
+		if Krestovoz_pimp_protection ! 1:
+			if hour > 6 and hour < 18:
+				ms_temp = rand(0,60)
+			else
+				ms_temp = rand(0,70)		
+			end
+		else
+			if hour > 6 and hour < 18:
+				ms_temp = rand(11,60)
+			else
+				ms_temp = rand(11,70)		
+			end
+		end
+	end
+	act 'Let him decide':
+		if ms_temp =< 10: gt 'mod_iwhore_hardlife', 'street_rape'
+		if ms_temp > 10 and ms_temp =< 20: gt 'mod_iwhore_mainstreetw', 'msbj'
+		if ms_temp > 20 and ms_temp =< 30: gt 'mod_iwhore_mainstreetw', 'msvag'
+		if ms_temp > 30 and ms_temp =< 40: gt 'mod_iwhore_mainstreetw', 'msanal'
+		if ms_temp > 40 and ms_temp =< 50: gt 'mod_iwhore_mainstreet', 'mspropose' 
+		if ms_temp > 50 and ms_temp =< 60: gt 'mod_iwhore_mainstreet', 'msplace'
+		if ms_temp > 60 and ms_temp =< 70: gt 'mod_iwhore_mainstreetw', 'nakstreet' 
+	end
+	
+	
+	act 'I''m off': gt $loc, $loc_arg
+	
+end
+if $ARGS[0] = 'mshooker':
+	cla
+	*clr
+	protect = 0
+	propose = 0
+	killvar 'ms_temp'
+	killvar 'ms_ender'
+	gs 'mod_iwhore_dincollect' , 'hooking'
+	gs 'stat'
+
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/prost'+rand(0,5)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/pmstreet'+rand(0,6)+'.jpg"></center>'
+		end
+		'It shouldn''t be difficult for you to catch attentions.'
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/dealms0.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/girlms0.jpg"></center>'
+		end
+	end
+	
+	act 'Strool around':
+		cla
+		*clr
+		minut += 5
+		gs 'stat'
+		if PCloStyle = 4:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zstrollwhore.mp4"></video></center>'
+				'You walk on the street trying to catch some attention...you shouldn''t pass unnoticed.'
+				if hooked_walk >= 6 and hooked_walk =< 10:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'			
+				elseif hooked_walk >= 11 and hooked_walk =< 15:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hooked'
+				else
+					act 'Walk back': minut += 2 & gt 'mod_iwhore_mainstreet', 'mshooker'
+				end
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zmswork1.mp4"></video></center>'
+				'You walk on the street trying to catch some attention...your fame shoud help you'
+				if hooked_walk >= 16 and hooked_walk =< 22:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'
+				elseif hooked_walk >= 23 and hooked_walk =< 28:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'
+				else
+					act 'Walk back': minut += 2 & gt 'mod_iwhore_mainstreet', 'mshooker'
+				end
+			end
+			
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zstroll'+rand(0,1)+'.mp4"></video></center>'
+				'You walk on the street trying to catch some attention...you shouldn''t pass unnoticed.'
+				if hooked_walk >= 6 and hooked_walk =< 10:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'			
+				elseif hooked_walk >= 11 and hooked_walk =< 15:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hooked'
+				else
+					act 'Walk back': minut += 2 & gt 'mod_iwhore_mainstreet', 'mshooker'
+				end
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zmswork0.mp4"></video></center>'
+				'You walk on the street trying to catch some attention...you shouldn''t pass unnoticed.'
+				if hooked_walk >= 16 and hooked_walk =< 22:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'
+				elseif hooked_walk >= 23 and hooked_walk =< 28:
+					act 'Turn': gt 'mod_iwhore_mainstreet', 'hookedcar'
+				else
+					act 'Walk back': minut += 2 & gt 'mod_iwhore_mainstreet', 'mshooker'
+				end
+			end
+			
+		end
+	end
+	act 'Go away': minut += 2 & gt $loc, $loc_arg	
+end
+!!!!!!!!!!!!!!!!!!PROPOSE!!!!!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'mscpropose':
+	cla
+	*clr
+	minut += 2
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/zcarprop'+rand(0,1)+'.mp4"></video></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/carpropose'+rand(0,1)+'.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/propmsc'+rand(0,1)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal1.jpg"></center>'
+		end
+	end
+	'The man stay in his car without speaking, you approach the car in a sensual manner. "Sweety, i''ve got all you need; just relax and enjoy me."'
+	propose = 1
+	gfy_rand = rand(0,10)
+	act 'Show tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcartit'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcartit'+rand(0,1)+'.mp4"></video></center>'
+			end
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcartit'+rand(1,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcartit0.mp4"></video></center>'
+			end
+		end
+		'"I know what you like..."'
+		act 'Deal': 			
+			if gfy_rand < 8:
+				gt 'mod_iwhore_mainstreetw', 'cbj' 
+			else
+				gt 'mod_iwhore_mainstreet', 'mscgfy'
+			end
+		end  		
+	end
+	act 'Show pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarpuss'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcarpuss'+rand(0,3)+'.mp4"></video></center>'
+			end
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarpuss0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcarpuss0.mp4"></video></center>'
+			end
+		end
+		'"I know what you like..."'
+		act 'Deal': 
+			if gfy_rand < 8:
+				gt 'mod_iwhore_mainstreetw', 'cvag' 
+			else
+				gt 'mod_iwhore_mainstreet', 'mscgfy'
+			end
+		end
+	end
+	act 'Show ass':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if analplugin = 1:
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/zzshowplug'+rand(0,4)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/zzplug'+rand(0,1)+'.jpg"></center>'
+				end
+				'"I feel empty...you know?"'
+			else
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarass'+rand(0,5)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzasscar'+rand(0,3)+'.mp4"></video></center>'
+				end
+			end
+			'"I know what you like..."'	
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzcarass'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzasscar'+rand(0,1)+'.mp4"></video></center>'
+			end
+			'"I know what you like..."'
+		end
+		act 'Deal': 
+			if gfy_rand < 8:
+				gt 'mod_iwhore_mainstreetw', 'canal' 
+			else
+				gt 'mod_iwhore_mainstreet', 'mscgfy'
+			end
+		end 
+	end
+end
+if $ARGS[0] = 'mspropose':
+	cla
+	*clr
+	minut += 2
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/prop0.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreeet/prop0.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/propms'+rand(0,1)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/propms0.jpg"></center>'
+		end
+	end	
+	'"What can you offer slut?"<br>"Sweety, i''ve got all you need; just relax and enjoy me to a quiet place."<br>"What the .... let me see what do you have, are you retarded or what?"'
+	propose = 1
+	gfy_rand = rand(0,10)
+	act 'Show tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/titms'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/titms'+rand(0,1)+'.mp4"></video></center>'
+			end
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/titms'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/titms'+rand(0,4)+'.mp4"></video></center>'
+			end
+		end
+		'"I know what you like..."'
+		act 'Deal': 			
+			if gfy_rand >= 8:
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_mainstreet', 'msgfyd'
+				else
+					gt 'mod_iwhore_mainstreet', 'msgfyn'
+				end
+			else
+				gt 'mod_iwhore_mainstreetw', 'msbj'
+			end
+		end  
+	end
+	act 'Show pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/pussms'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/pussms'+rand(0,1)+'.mp4"></video></center>'
+			end
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/pussms'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/pussms0'+rand(0,1)+'.mp4"></video></center>'
+			end
+		end
+		'"I know what you like..."'
+		act 'Deal':
+			if gfy_rand >= 8:
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_mainstreet', 'msgfyd'
+				else
+					gt 'mod_iwhore_mainstreet', 'msgfyn'
+				end
+			else
+				gt 'mod_iwhore_mainstreetw', 'msvag'
+			end
+		end
+	end
+	act 'Show ass':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if analplugin = 1:
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/zzshowplug'+rand(0,4)+'.jpg"></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zzmsplug0.mp4"></video></center>'
+				end
+				'"I feel empty...you know?"'
+			else
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/assms'+rand(0,4)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/assms'+rand(0,2)+'.mp4"></video></center>'
+				end
+			end
+			'"I know what you like..."'	
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/assms'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/assms'+rand(0,2)+'.mp4"></video></center>'
+			end
+			'"I know what you like..."'
+		end
+		act 'Deal': 
+			if gfy_rand >= 8:
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_mainstreet', 'msgfyd'
+				else
+					gt 'mod_iwhore_mainstreet', 'msgfyn'
+				end
+			else
+				gt 'mod_iwhore_mainstreetw', 'msanal'
+			end
+		end 
+	end
+end
+!!!!!!!!!!!!!!!!!!!!GFYCAR!!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'mscgfy':
+	minut += 5
+	gfy_rand = rand(0,10)
+	*clr & cla
+	if gfy_rand = 0:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."...'
+		wait 2000
+		'<br>"...Fuck you!"...'
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"Mom is calling you!"...'
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"I''ve hear that you own the syphilis cure..."<br>"Uh?"'
+		wait 3000
+		'<br>"...Fuck you!"...'
+	elseif gfy_rand = 3:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m lost; do you happen to know the street that lead to Pushkin?"<br>"Ummmh...you have to go straight for about..."'
+		wait 5000
+		'<br>..."...Fuck you bitch!".'
+	elseif gfy_rand = 4:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'"The police! The police! Run bitch run!"...'
+	elseif gfy_rand = 5:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"WHORE!....Hahahahaha..."... '	
+	elseif gfy_rand = 6:
+		'"..."<br>"I won''t work without money, if you are going to ask."<br>"..."'
+		wait 3000
+		'"Uh? Can you repeat, i didn''t hear you..."...<br>"Uh? I WON''T WORK WITHOUT MONEY...."'
+		wait 3000
+		'<br>"Hahaha... . Fuck you! Bitch! "... '	
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...let''s put that way..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."'
+		wait 1000
+		'<br>"...Fuck you!"... .'	
+	elseif gfy_rand = 8:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"How much do you want?"<br>"200 mouth, 350 pussy, 400 ass honey; 50 bonus without condom and other 20 if you want to fill me daddy."'
+		wait 5000
+		'<br>"Ok, give me 470 then, and i''ll fill your butt."<br>"Go away..."'
+		wait 2000
+		'<br>"...Fuck you!" ....'	
+	elseif gfy_rand = 9:
+		'"Come here bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"Nooooo, it''s not that...more more..."'
+		wait 2000
+		'"...just a moment..."<br>"Uh?"<br>"...Uhhh uhhh...aaahhh..."<br>"Hey what the fuck are you...."... '
+		wait 3000
+		'<br>"...Fuck you! Bitch!"'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'
+	elseif gfy_rand = 10:
+		'"..."<br>"I won''t work without money, if you are going to ... hey you are drunk!."<br>"Meeeee...? Youuuu!"<br>"Uh???"'
+		wait 2000
+		'"Hey man i''m not going in a car with you..."<br>"...Who the fuck..."<br>"I don''t want to have a car accident."'
+		wait 4000
+		'<br>"...Fuck you! Bitch!"'	
+	else
+		''	
+	end
+	
+	if hour < 18 and hour > 6:
+		wait 1500
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyms.mp4"></video></center>'
+	else
+		wait 1500
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfy.mp4"></video></center>'
+	end
+	if gfy_rand = 9:
+		*nl
+		'The freaky bastard was jerking, and throw his cum on your face; he push the gas on the machine to the max and cover you with dust.'	
+	elseif gfy_rand = 10:
+		*nl
+		'The man was seriously drunk, he push the gas on the machine to the max and cover you with dust. He''s going to crash on a nearby wall for sure'	
+	else
+		*nl
+		'The man was here for some laugh, he push the gas on the machine to the max and cover you with dust.'
+	end
+	act 'Fuck you!': gt $loc, $loc_arg
+	
+end
+!!!!!!!!!!!!!!!!!!!!GFYWALKER!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'msgfyd':
+	minut += 5
+	gfy_rand = rand(0,10)
+	*clr & cla
+	if gfy_rand = 0:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."...<br>"Really? Why?"'
+		wait 2000
+		'<br>"Shooo shooo! I''ve no time to lose..."<br>"...Fuck you!"...'
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"Uh? What''s then?"<br>"Fuck you!"...'
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"I''ve hear that you are trying to be the biggest slut in town..."<br>"Uh? Really? Who told you that?"'
+		wait 3000
+		'<br>"...Fuck you!"...'
+	elseif gfy_rand = 3:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'"The police! The police! Run bitch run!"...<br>"Yes yes whatever...uh?"'
+	elseif gfy_rand = 4:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m lost; do you happen to know the street that lead to the optometrist?"<br>"Ummmh...you are in the wrong town; You have to go to St. P..."'
+		wait 5000
+		'<br>..."...Fuck you bitch!".'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'	
+	elseif gfy_rand = 5:
+		'"Come here bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"Listen...I''ve got the money... . I''ve got 320 rubles for a fuck..."'
+		wait 3000
+		'"350 honey... . I can blow you for 200."<br>"Wait...if you go to the embassy and change the rubles into dollars and then you change them into euros and then you change them into sloty and again into rubles you can make 435 rubles, from 320... . That way i can fuck your ass...right?"<br>"...Go away..."... '
+		wait 3000
+		'<br>"...Fuck you! Bitch!"'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'	
+	elseif gfy_rand = 6:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"How much do you want?"<br>"200 mouth, 350 pussy, 400 ass honey; 50 bonus without condom and other 20 if you want to fill me daddy."'
+		wait 5000
+		'<br>"Ok, give me 470 then, and i''ll fill your butt."<br>"Go away..."'
+		wait 2000
+		'<br>"...Fuck you!" ....'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...it''s that..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."<br>"...Well...my bad, it was a mistake...hehehe..."... .<br>"Uh?"....'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'
+	elseif gfy_rand = 8:
+		'"Tsk tsk... ."<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"Tsk tsk... . "...<br>"Uh? Go away..."'
+		wait 3000
+		'<br>"..."... . The man scold his head and went away. '	
+	elseif gfy_rand = 9:
+		'"Mmmmm...!"<br>"I won''t work without money, if you are going to ask."<br>"I''ve got the money...but i cannot read what the ATM says...can you help me?"'
+		wait 3000
+		'"Mmmm ok...let me see...how much do you want withdraw? 200 mouth, 350 sex 400 bum bum..."You move toward the ATM <br>"Mmmm....you know what?..."... '
+		wait 3000
+		'....<br>"Uh? What?"<br>"...Fuck you! Bitch!"'
+	elseif gfy_rand = 10:
+		'"..."<br>"I won''t work without money...Uh???"'
+		wait 2000
+		'<br>"HAAAA!"<br>"Mmmm...Yes ok...if you have the money we can look for a little more privacy..."'
+		wait 4000
+		'<br>"Uh? HAAAAAA Hahahahaa.....RAAAAAHHH AAAAAAHHHHAAA...."'	
+	else
+		''	
+	end
+	wait 1500
+	if gfy_rand =< 3:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyms'+rand(0,1)+'.mp4"></video></center>'
+	elseif gfy_rand >= 4 and gfy_rand =< 7:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyms'+rand(3,4)+'.mp4"></video></center>'
+	elseif gfy_rand = 8:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyno0.mp4"></video></center>'
+	elseif gfy_rand = 9:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyms2.mp4"></video></center>'
+	elseif gfy_rand = 10:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyms5.mp4"></video></center>'
+	else
+		''
+	end
+	if gfy_rand =< 3:
+		'The man was here for some laugh; who was probably his friend comes out from a corner and pull down your skirt'
+	elseif gfy_rand >= 4 and gfy_rand =< 7:
+		'The man keep you on a fucking nonsense conversation to make his friend have the time to charge and spurt a big load on you. It takes some times for you to realize that your back is now covered in cum and the mens now are far away from you...'		
+	elseif gfy_rand = 8:
+		'...'
+	elseif gfy_rand = 9:
+			'"Stupid jokes..." You can see the man run, and another one follow him...'
+	elseif gfy_rand = 10:
+		'The man reveal to be a pervert who flash woman on the street; after he show you his dick he keep flashing all the woman he was able...."Shit!...This will call unwanted attention! Better look another place..."'
+	else
+		''
+	end
+	act 'Fuck you!': gt $loc, $loc_arg
+end
+if $ARGS[0] = 'msgfyn':
+	minut += 5
+	gfy_rand = rand(0,10)
+	*clr & cla
+	if gfy_rand = 0:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."...<br>"You walked on a shit...i can smell it from here..."'
+		wait 2000
+		'<br>"Uh?...Oh...!"<br>"...Hahahah....Fuck you! Bitch"...'
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...I wonder if you hide something...."'
+		wait 2000
+		'<br>"No honey, i''m hiding nothing...but you have to pay to see..."<br>"No way! Fuck you bitch!...."'
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"I''ve hear that you are used to steal vodka from the grocery and hide it in your butt..."<br>"Bullshit... Who told you that?"'
+		wait 3000
+		'<br>"...Fuck you!"...'	
+	elseif gfy_rand = 3:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'"The police! The police! Run bitch run!"...<br>"Yes yes whatever...uh?"'	
+	elseif gfy_rand = 4:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...it''s that..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."<br>"...Well...my bad, it was a mistake...hehehe..."... .<br>"Uh?"....'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'	
+	elseif gfy_rand = 5:
+		'"Come here bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"Listen...I''ve got the money... . I''ve got 320 rubles for a fuck..."'
+		wait 3000
+		'"350 honey... . I can blow you for 200."<br>"I can take them remnants from the ATM; let''s go fuck i''ll pay you later. "<br>"...Go away..."... '
+		wait 3000
+		'<br>"...Fuck you! Bitch!"'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'	
+	elseif gfy_rand = 6:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"What can you do with 50 rubles?"<br>"Let me think...i can buy a cigarette pack ...maybe..."<br>"I mean sex slut!"'
+		wait 3000
+		'<br>"Go away..."<br>"...Fuck you!" ....'
+		spafinloc = 12
+		spafinloc = 11
+		gs 'cum_manage'
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"Hold it for a moment...i have to look in my pocket..."'
+		wait 2000
+		'<br>"Just a moment...oh yes!...Fuck you!" ....'
+	elseif gfy_rand = 8:
+		'"Tsk tsk... ."<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"Tsk tsk... . "...<br>"Uh? Go away..."'
+		wait 3000
+		'<br>"..."... . The man scold his head and went away. '	
+	elseif gfy_rand = 9:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m looking for a bar: "The Spunknik"; do you happen to know where is it?"<br>"Ummmh...the "Spunknik"...never heard... . Let me look the map..."'
+		wait 5000
+		'<br>..."Hahaha...Fuck you bitch!".'
+	elseif gfy_rand = 10:
+		'"Psssh pssssh...come here..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'<br>"Money is not a problem for me."<br>"Ok...then honey? What can i....uh? Shhhh"'
+	else
+		''	
+	end
+	wait 1500
+	if gfy_rand =< 3:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyms'+rand(0,1)+'.mp4"></video></center>'
+	elseif gfy_rand >= 4 and gfy_rand =< 6:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyms'+rand(3,4)+'.mp4"></video></center>'
+	elseif gfy_rand = 7:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyms6.mp4"></video></center>'
+	elseif gfy_rand = 8:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyno0.mp4"></video></center>'
+	elseif gfy_rand = 9:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyms2.mp4"></video></center>'
+	elseif gfy_rand = 10:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyms5.mp4"></video></center>'
+	else
+		''
+	end
+	if gfy_rand =< 3:
+		'The man was here for some laugh; who was probably his friend comes out from a corner and pull down your skirt'
+	elseif gfy_rand >= 4 and gfy_rand =< 6:
+		'The man keep you on a fucking nonsense conversation to make his friend have the time to charge and spurt a big load on you. It takes some times for you to realize that your back is now covered in cum and the mens now are far away from you...'		
+	elseif gfy_rand = 7:
+		'While keeping the man''s drink in your hand another figure comes out from a corner and pulled down your dress... . With your hands occupied you weren''t able to protect yourself and you find yourself completely naked on the street.'
+	elseif gfy_rand = 8:
+		'...'
+	elseif gfy_rand = 9:
+		'"Stupid jokes..." You can see the man run, and another one follow him...'
+	elseif gfy_rand = 10:
+		'Another man was waiting for you to pass behind the corner; once you were on his sight he give a last stroke to his member and spurt all your face with his big load. Your eyes were completely covered and your vision fail for a couple of minutes....'
+	else
+		''
+	end
+	act 'Fuck you!': gt $loc, $loc_arg
+end
+!!!!!!!!!!!!!!!!!!!!PLACER!!!!!!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'mscplace':
+	cla
+	*clr
+	minut += 2
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end
+	'You jump on the car; the client want to go somewhere else. "Tell me a secure place, i don''t want any trouble bitch."<br>"Honey, we can go to...."' 	
+	act 'The park....':
+		minut += 5
+		$loc_arg = 'start'
+		$loc = 'pav_park'
+		gt 'mod_iwhore_park', 'ender'
+	end
+	act '...Turn the next corner...':
+		minut += 3
+		gt 'mod_iwhore_mainstreet', 'ender'
+	end
+	act 'To the bath...':
+		minut += 5
+		gt 'mod_iwhore_pbath', 'ender'	
+	end
+end
+if $ARGS[0] = 'msplace':
+	cla
+	*clr
+	minut += 5
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals2.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/girlms0.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/propms0.jpg"></center>'
+		end
+	end	
+	'"Tell me a secure place, i don''t want any trouble bitch."<br>"Honey, we can go to...."' 
+	act 'The park....':
+		minut += 10
+		$loc_arg = 'start'
+		$loc = 'pav_park'
+		gt 'mod_iwhore_park', 'wender'
+	end
+	act '...Turn the next corner...':
+		minut += 5
+		gt 'mod_iwhore_mainstreet', 'wender'
+	end
+	act 'To the bath...':
+		minut += 5
+		gt 'mod_iwhore_pbath', 'wender'	
+	end
+end
+if $ARGS[0] = 'wender':
+	
+	*clr & cla	
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'arousal', 'massage', 10, 'prostitution', 'exhibitionism', 'unknown'
+	gs 'stat'
+	if Krestovoz_pimp_protection ! 1 and new_whore > 50:
+		if hour > 6 and hour < 18:
+			ms_temp = rand(0,30)
+		else
+			ms_temp = rand(0,40)		
+		end
+	else
+		if hour > 6 and hour < 18:
+			ms_temp = rand(2,30)
+		else
+			ms_temp = rand(2,40)		
+		end
+	end
+	
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can. "...Really man? Can''t you wait? We almost arrived..." .'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace'+rand(0,1)+'.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can, but with the night favor you cannot stop him to constantly finger your pussy in the middle of the street...this will cost in time terms..."...Really man? Can''t you ...mmmmh....wait? We almost ....mmmmm..." .'
+	end		
+	act 'Finally':
+		if ms_temp =< 1: gt 'mod_iwhore_hardlife', 'street_rape_ender'
+		if ms_temp > 1 and ms_temp =< 10: gt 'mod_iwhore_mainstreetw', 'msbj'
+		if ms_temp > 10 and ms_temp =< 20: gt 'mod_iwhore_mainstreetw', 'msvag'
+		if ms_temp > 20 and ms_temp =< 30: gt 'mod_iwhore_mainstreetw', 'msanal'
+		if ms_temp > 30 and ms_temp =< 40: gt 'mod_iwhore_mainstreetw', 'nakstreet' 
+	end
+end
+if $ARGS[0] = 'ender':
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	if Krestovoz_pimp_protection ! 1 and new_whore > 50:
+		ms_ender = rand(0,22)
+	else
+		ms_ender = rand(0,20)
+	end
+	
+	if ms_ender =< 10:
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		if ms_ender =< 9:
+			act '...': 
+				cla
+				*clr
+				money += 30
+				stat['bj'] += 1
+				gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+				end
+				'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. Finally you arrived; you don''t stop to blow him and wait for him to choose... .' 
+				if ms_ender =< 4:
+					'"Show me your butt slut"'
+					act 'Bum bum':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_anal'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/1showma'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/1showma'+rand(0,15)+'.jpg"></center>'
+						end
+						'"Better for you if you lubed it enough...." He''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+						act 'Come here "big" boy!':
+							cla
+							*clr
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/anal/anal'+rand(0,5)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/anal'+rand(0,14)+'.jpg"></center>'
+							end
+							gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+							gs 'stat'
+							act 'Work the shaft': gt 'mod_iwhore_mainstreetw' , 'msanalend'
+						end
+					end
+				elseif ms_ender >= 5 or ms_ender =< 8:
+					'"Time to fuck slut"'
+					act 'Show your pussy':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_vag'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/2showmp'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/3showmp'+rand(0,9)+'.jpg"></center>'
+						end
+						'You quickly pull apart you clothes and present your pussy to him. "Do you like it honey?"<br>"Shut up and spread you legs." he orders.'
+						act 'Come here "big" boy!':
+							cla
+							*clr
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/vag/vag'+rand(0,21)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vag'+rand(0,21)+'.jpg"></center>'
+							end
+							gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+							'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "Ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+							gs 'stat'
+							act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msvagend'	
+						end
+					end
+				else
+					'"Free your puppy whore, they need fresh air too ehehehe..."'
+					act 'Show your tits':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_vag'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/3showmt'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/4showmt'+rand(0,12)+'.jpg"></center>'
+						end
+						'"Do you like it honey?"<br>"Don''t keep me waiting" he orders. '
+						act 'Take it again':
+							cla
+							*clr
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj'+rand(0,8)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/bj'+rand(0,15)+'.jpg"></center>'
+							end
+							if protect = 1:
+								'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+							else
+								'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+							end
+							gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+							gs 'stat'
+							act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msbjend'
+						end
+					end
+				end
+			end	
+		else
+		!ms_ender = 10
+			act '...': 
+				cla
+				*clr
+				guy += 1
+				pav_sex += 1
+				gs 'fame', 'pav', 'prostitute', rand(3,9)
+				stat['bj'] += 1
+				gs 'arousal', 'bj', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					spafinloc = 11
+					gs 'cum_manage'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zfast.mp4"></video></center>'
+					'...."UUhhghh ....stupid bitch.....!....." While sucking the man''s cock, with your free hand you continue to jerk him...it seems you hit a sensible spot...' 
+				else		
+					spafinloc = 12
+					gs 'cum_manage'
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zfast.mp4"></video></center>'
+					'...."UUhhghh ....stupid bitch.....!....." You don''t know how it was possible but as soon as you arrived you find your face covered in cum.... . That was fast... .' 
+				end
+				act 'Collect money':		
+					cla
+					*clr	
+					gs 'mod_iwhore_dincollect', 'whore_check_fastender'	
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetdeal1.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+					end
+					'"Do you need another round honey?... ."<br>"..."<br>The man, clearly embarassed, pass you your payment... . "You know where to find me... ." You give him a flying kiss and turn back to your occupations.'
+					act 'Leave': gt $loc, $loc_arg
+				end
+			end
+		end
+	elseif ms_ender >= 11 and ms_ender =< 20:
+		cla
+		*clr
+		money += 30
+		gs 'arousal', 'massage', 5, 'prostitution', 'unknown'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace2.mp4"></video></center>'
+		end
+		'For the whole trip the man continue to touch your legs reaching your crotch and rubbing your pussy; you let him do. Once arrived you both exit from the car; the man was really taken by the situation that he immediately unzip his pants...'
+		if ms_ender =< 14 and ms_ender >= 10:
+			'"Show me your butt slut"'
+			act 'Bum bum':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_anal'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/1showma'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/1showma'+rand(0,15)+'.jpg"></center>'
+				end
+				'"Better for you if you lubed it enough...." He''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+				act 'Come here "big" boy!':
+					cla
+					*clr
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/anal/anal'+rand(0,5)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/anal'+rand(0,16)+'.jpg"></center>'
+					end
+					gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+					gs 'stat'
+					act 'Work the shaft': gt 'mod_iwhore_mainstreetw' , 'msanalend'
+				end
+			end
+		elseif ms_ender >= 15 or ms_ender =< 18:
+			'"Time to fuck slut"'
+			act 'Show your pussy':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_vag'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/2showmp'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/3showmp'+rand(0,9)+'.jpg"></center>'
+				end
+				'You quickly pull apart you clothes and present your pussy to him. "Do you like it honey?"<br>"Shut up and spread you legs." he orders.'
+				act 'Come here "big" boy!':
+					cla
+					*clr
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/vag/vag'+rand(0,21)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vag'+rand(0,21)+'.jpg"></center>'
+					end
+					gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+					'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "Ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+					gs 'stat'
+					act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msvagend'	
+				end
+			end
+		else
+			'"Free your puppy whore, they need fresh air too ehehehe..."'
+			act 'Show your tits':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_oral'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/3showmt'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/4showmt'+rand(0,12)+'.jpg"></center>'
+				end
+					'"Do you like it honey?"<br>"Don''t keep me waiting" he orders. '
+				act 'Start':
+					cla
+					*clr
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj'+rand(0,8)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/bj'+rand(0,15)+'.jpg"></center>'
+					end
+					if protect = 1:
+						'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+					else
+						'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+					end
+					gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+					gs 'stat'
+					act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msbjend'
+				end
+			end
+		end
+	elseif ms_ender = 21 or ms_ender = 22:
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		act '...': gt 'mod_iwhore_hardlife', 'car_rape_ender'
+	end
+end
+
+
+--- mod_iwhore_mainstreet ---------------------------------

+ 988 - 0
locations/mod_iwhore_mainstreetw.qsrc

@@ -0,0 +1,988 @@
+# mod_iwhore_mainstreetw
+!!!!!!!!!!!CAR!!!!!!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'cbj':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end
+	if propose = 1:
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me again slut"'
+	else
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me your tits slut"' 
+	end	
+	act 'Show your tits':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/4showct'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/4showct'+rand(0,11)+'.jpg"></center>'
+		end
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/bj'+rand(0,10)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/bj'+rand(0,18)+'.jpg"></center>'
+			end
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'cbjend'
+		end
+	end
+end
+if $ARGS[0] = 'cbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	stat['bj'] += 1
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	if new_whore < 30: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+	end
+	if dnak_car = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/facial'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vfacial0.mp4"></video></center>'
+			end
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'arousal', 'end'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/bj'+rand(0,5)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbj'+rand(0,1)+'.mp4"></video></center>'
+			end
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/bj'+rand(0,5)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbj'+rand(0,1)+'.mp4"></video></center>'
+				end				
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/facial'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vfacial0.mp4"></video></center>'
+				end
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			end			
+		end
+	end
+end
+if $ARGS[0] = 'cvag':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/3showcp'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/3showcp'+rand(0,14)+'.jpg"></center>'
+		end
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/vag/vag'+rand(0,13)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/vag/vag'+rand(0,16)+'.jpg"></center>'
+			end
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			gs 'stat'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'cvagend'	
+		end
+	end
+end
+if $ARGS[0] = 'cvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/vag/vvag'+rand(0,16)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/vag/vvag'+rand(0,21)+'.mp4"></video></center>'
+	end
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if nnak_car = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end	
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagout0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvagout0.mp4"></video></center>'
+			end
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagin'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvag'+rand(0,4)+'.mp4"></video></center>'
+			end
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'      
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagout0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvagout0.mp4"></video></center>'
+				end
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/vagin'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvag'+rand(0,4)+'.mp4"></video></center>'
+				end
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+			end
+		end
+	end			
+end
+if $ARGS[0] = 'canal':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/1showca'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/1showca'+rand(0,10)+'.jpg"></center>'
+		end
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/anal/anal'+rand(0,10)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/anal/anal'+rand(0,17)+'.jpg"></center>'
+			end
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw' , 'canalend'
+		end
+	end
+end
+if $ARGS[0] = 'canalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/anal/vanal'+rand(0,16)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/anal/vanal'+rand(0,9)+'.mp4"></video></center>'
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if nnak_car = 1:
+		'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbutt0.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/anal'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vanal0.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbutt0.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/anal'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vanal0.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'
+			end
+		end
+	end			
+end
+if $ARGS[0] = 'nakcar':
+	cla
+	*clr
+	dnak_car = 1
+	dnakcar_way = rand(0,10)
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zcarjump0.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	end
+	'"Let me see your body slut, i have to decide. And do not dance i''m not here for a show."' 
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/car/2showcb'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/2showcb'+rand(0,12)+'.jpg"></center>'
+		end
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision."'		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/bj'+rand(0,10)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/bj'+rand(0,18)+'.jpg"></center>'
+			end
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			if dnakcar_way = 10:
+				act 'Work the shaft':
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral'
+					gt 'mod_iwhore_mainstreetw', 'cbjend'
+				end
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+					end
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if dnakcar_way =< 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_vag'
+							gt 'mod_iwhore_mainstreetw', 'cvagend'
+						elseif dnakcar_way =< 9 and dnakcar_way > 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_anal'
+							gt 'mod_iwhore_mainstreetw', 'canalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+!!!!!!!!MAINSTREET!!!!!!!!!!!!!!!!
+if $ARGS[0] = 'msbj':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal0.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to blow him, so you lead him to a secluded area. "Show me again slut"'
+	else
+		'You agree to blow him, so you lead him to a secluded area. "Show me your tits slut"' 
+	end
+	act 'Show your tits':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/3showmt'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/4showmt'+rand(0,12)+'.jpg"></center>'
+		end
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'			
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj'+rand(0,8)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/bj'+rand(0,15)+'.jpg"></center>'
+			end
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msbjend'
+		end
+	end
+end
+if $ARGS[0] = 'msbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	stat['bj'] += 1
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	if new_whore < 30: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/vbj'+rand(0,2)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/vbj'+rand(0,13)+'.mp4"></video></center>'
+	end
+	if dnak_car = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/facial0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/facial'+rand(0,3)+'.mp4"></video></center>'
+			end
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/bj'+rand(0,2)+'.mp4"></video></center>'
+			end
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/bj'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/bj'+rand(0,2)+'.mp4"></video></center>'
+				end			
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/facial0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/facial'+rand(0,3)+'.mp4"></video></center>'
+				end
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			end			
+		end
+	end
+end
+if $ARGS[0] = 'msvag':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal0.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you lead him to a secluded area. "Show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/2showmp'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/3showmp'+rand(0,9)+'.jpg"></center>'
+		end
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/vag/vag'+rand(0,20)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vag'+rand(0,21)+'.jpg"></center>'
+			end
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw', 'msvagend'	
+		end
+	end
+end
+if $ARGS[0] = 'msvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/vag/vvag'+rand(0,5)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vvag'+rand(0,14)+'.mp4"></video></center>'
+	end
+	if nnak_car = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end	
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 1
+			spafinloc = 14
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagoutcum0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,5)+'.mp4"></video></center>'
+			end
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagin'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+			end
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 1
+				spafinloc = 14
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagoutcum0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,5)+'.mp4"></video></center>'
+				end
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagin'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+				end
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'     
+			end
+		end
+	end			
+end
+if $ARGS[0] = 'msanal':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/deals2.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetdeal0.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your ass, so you lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you lead him to a secluded area. "Show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/1showma'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/1showma'+rand(0,15)+'.jpg"></center>'
+		end
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/anal/anal'+rand(0,5)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/anal'+rand(0,16)+'.jpg"></center>'
+			end
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_mainstreetw' , 'msanalend'
+		end
+	end
+end
+if $ARGS[0] = 'msanalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/anal/vanal'+rand(0,1)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/vanal'+rand(0,8)+'.mp4"></video></center>'
+	end
+	if nnak_car = 1:
+		'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/butt'+rand(0,1)+'.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'   
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/anal0.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/anal'+rand(0,1)+'.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/car/butt0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/butt'+rand(0,1)+'.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/anal0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/anal'+rand(0,1)+'.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_mainstreet', 'mshooker'
+			end
+		end
+	end			
+end
+if $ARGS[0] = 'nakstreet':
+	cla
+	*clr
+	dnak_car = 1
+	dnakcar_way = rand(0,10)
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zdeal'+rand(0,1)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zstreetdealms0.mp4"></video></center>'
+	end
+	'"Let me see your body slut, i have to decide. And do not dance i''m not here for a show."<br>"Follow me honey." You lead the man to a secluded place.' 
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/mainstreet/4showmb'+rand(0,16)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/2showmb'+rand(0,16)+'.jpg"></center>'
+		end
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision."'		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/bj'+rand(0,8)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/bj'+rand(0,15)+'.jpg"></center>'
+			end
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			if dnakcar_way = 10:
+				act 'Work the shaft':
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral'
+					gt 'mod_iwhore_mainstreetw', 'msbjend'
+				end
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown' 
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/mainstreet/bj/vbj'+rand(0,9)+'.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/vbj'+rand(0,23)+'.mp4"></video></center>'
+					end
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if dnakcar_way =< 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_vag'
+							gt 'mod_iwhore_mainstreetw', 'msvagend'
+						elseif dnakcar_way =< 9 and dnakcar_way > 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_anal'
+							gt 'mod_iwhore_mainstreetw', 'msanalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_iwhore_mainstreetw ---------------------------------

+ 1909 - 0
locations/mod_iwhore_methbang.qsrc

@@ -0,0 +1,1909 @@
+# mod_iwhore_methbang
+!    gt 'mod_iwhore_methbang', 'meth_man'
+!	 gt 'mod_iwhore_methman', 'running_meth'
+!	 Krestovoz_pimp_protection = 1
+
+if $ARGS[0] = 'meth_man':
+	
+	if meth_man < 1:
+		if meth_fastest ! 1:
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			'"What do you want man?"'
+			wait 2000
+			'"Fuck fuck...fuck fuck..."....'
+			nl
+			'You decide to give the man a chance... "...250 pussy, 350 ass. Money first."'
+			wait 2000
+			'"Pussypussypussypussy...."....'
+			nl
+			'"..."'
+			wait 1000
+			nl
+			'"Pussypussypussypussy...."....'
+		else
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			'The man left the grip on you... he''s clearly on high..."What do you want man?"'
+			wait 2000
+			'"Fuck fuck...fuck fuck..."....'
+			nl
+			'His behaviour is dued to the drugs, it could be the safest thing to give the man a chance... "...250 pussy, 350 ass. Money first."'
+			wait 2000
+			'"Pussypussypussypussy...."....'
+			nl
+			'"..."'
+			wait 1000
+			nl
+			'"Pussypussypussypussy...."....'
+		end
+		act 'Show him your pussy.': 
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.jpg"></center>'
+			'You lower your short to give the man a clear view of your intimate...."Happy?...Now my money."'
+			wait 3000
+			'"No!!!! Fuckfuckfuckfuck!!!!!"'
+			wait 2000
+			act '"That''s it. Look for someone else"': 
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+				'You made to go away that you feel some hands strangling you from behind...."AauuuhGGGHHH...". You were caught on surprise, and soon you lose your consciousness...'
+				wait 3000
+				'It take you some times to realize what''s happening...'
+				wait 2000
+				act '...': 
+					*clr & cla
+					$orgasm_or = 'no'
+					pcs_stam = pcs_stam / 10
+					pcs_willpwr = pcs_willpwr / 10
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+					'You found yoursel with the hands cuffed with ropes and the man is pounding your pussy, you don''t know how much time passed, but your pussy is on fire. He keeps trust in you as if wasn''t even human...."...Pussypussypussy....Fuckfuckfuck..."'
+					nl
+					'"Please stop! You are killing me! Please help somebody help! Please!!!!"'
+					nl
+					'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!"The man discarge a big load of cum into your womb...'
+					wait 6000
+					gs 'cum_manage'
+					nl
+					'"...Fuckfuckfuck...Pussypussypussy..."...but he doesn''t stop and continue fucking you furiously...'
+					nl
+					'"...It''s useless, he cannot hear you. Be quiet, it''s your first time with him; you will recover soon."...You hear a voice...near you...'
+					wait 4000
+					act '"Please help...you have to help me...he''s raping me...please..."': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wife.jpg"></center>'
+						'"....What? And how am i supposed to sleep tonight? No way, i have to work tomorrow... " The woman walk to you and free your hands.... "There we are; no one can move after he finish his first round...these are useless now. " The woman is right; you are exausted and cannot move... '
+						nl
+						'"...please i beg you...you are a woman, you should... AAAAAAHHHH.....help me...."'
+						nl
+						'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!"'
+						nl
+						'"...Listen slut, you won''t fool me. From what i know you are free meat, and it''s dinner time for him...so: stop complain and take your daily cock. I cannot afford him when is on meth, think about it like a clarity gift..."'
+						nl
+						'"Please help me...i''m not a free meat...i''m a woman....please...AAAAAAHHHH..." The man discarge another load of cum into your womb...'
+						wait 6000
+						gs 'cum_manage'
+						nl
+						'"ASSSSSSSSSSSS!!!!!!"'
+						wait 2000
+						act '"NOOOO!!!!"': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'anal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'asshole', 'burn'
+							gs 'pain', 8, 'hips', 'tear'
+							spafinloc = 3
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+							'"Stop complaining fresh meat..."'
+							nl
+							'"...Assassassass....Fuckfuckfuck...FFFFUUUU!!!!....Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a first load inside.... and the man doesn''t stop...'
+							nl
+							'"...Sure honey. But this is the last one for today...."'
+							wait 5000
+							gs 'cum_manage'
+							wait 2000
+							act '"...Please!!!!"': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'anal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'asshole', 'burn'
+								gs 'pain', 8, 'hips', 'tear'
+								spafinloc = 3
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man3.jpg"></center>'
+								'Cock buried in your ass and without stop raping you, the man swallow a pill and smoke something the woman passed him...'
+								nl
+								'"MEETTTHHH!!!!! ....Assassassass!..."'
+								nl
+								'"...Is she tighter than me honey?" The couple dialogue as if all this is normal...'
+								nl
+								'"....Ass ass....Ass ass..."'
+								nl
+								'It''s not a proper dialogue and the man is more focused on destroy your butt... "...Please stop...please..." ...'
+								wait 6000
+								nl
+								'"ASSSSSSSSSSSS!!!!!!"'
+								nl
+								'"See...? He finished... ." ...You feel another load filling you... . You barely have the strenght to speak...'
+								wait 8000
+								act '"...B-b..."': 
+									*clr & cla
+									gs 'arousal', 'end'
+									gs 'cum_manage'
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+									'"...astard..."'
+									nl
+									'"Slut. Do you think you can lead your life without problem? I''ve got mine and i find my solutions; as the matter of fact you are one: he will not ravish me tonight."'
+									nl
+									'"...y-you bitch...you will pay..."'
+									nl
+									'"No. You are the bitch; the free one...and you can do nothing: who dare to listen a whore? Uh?" The woman is right, you cannot go to the police... "Stay free, so i will not pay next time. See you slut... . Oh! almost forget...take this, i''m not sure you will be able to tollerate the pain...." '
+									wait 8000
+									act '"...."': 
+										*clr & cla
+										mosolmaz = 20
+										painkiller = 20
+										siga = 20
+										pcs_stam = 1
+										pcs_willpwr = 1
+										meth_man = 1
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+										'Before leaving the woman left a pack on the ground... .You can only adjust yourself and leave. The bastard unhumanly ravished you almost to the faint, you have to recover. At least your money are safe; you look at the pack the woman left. It has some painkiller cigarettes and an ointment cream...they all are newly and not opened apparantly...they should be safe to use. It can be your last chance to live...'
+										act 'Go away': gt $loc, $loc_arg
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif meth_man = 1:
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			'The man was faster than you this time...''...how the fuck was that possible?...''...'
+		else
+			'You stumble due to your dress: it wasn''t a good idea ...''...shit!...''...'
+		end
+		wait 3000
+		'"Slut!!!Slut!!!Slut!!!"'
+		act '"Asshole! Where is that bitch?"': 
+			cla
+			gs 'stat'
+			'"Slut?"'
+			wait 2000
+			'There is no way to have a clear answer from him... . You look around to see if the woman is on sight, but you weren''t able to see her.'
+			act '"I''m going away do not try to force me...did you hear me?"': 
+				cla
+				gs 'stat'
+				'"Slut?Slut?"'
+				wait 2000
+				'The man looks like is brain fucked ...still last time he was the one who fucked you. You don''t think it''s a good idea to stay with him one more second. '
+				act 'Move away': 
+					*clr & cla
+					gs 'pain', 9, 'throat', 'hit'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+					'You made to go away that you feel some hands strangling you from behind....".BitchhhhhGGGHHH!!!". You were caught on surprise...; you were not able to see the woman and you lower your guards; soon you will lose your consciousness... "Good evening slut; just faint a little so i can prepare you easily..."'
+					wait 2000
+					'...'
+					act '...': 
+						*clr & cla
+						$orgasm_or = 'no'
+						pcs_stam = pcs_stam / 10
+						pcs_willpwr = pcs_willpwr / 10
+						gs 'pain', 5, 'throat', 'hit'
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+						else
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+						end
+						'Again you find your self with your hands bouded and the man that is pounding your pussy...harder than last time; you don''t know how much time passed, and your pussy is on fire. ...."...Pussypussypussy....Fuckfuckfuck..."'
+						nl
+						'"Fuck you asshole! You are killing me! ....Somebody help!!! Help!!!!" You keep louding for help but you receive no answer; the man is raping you another time...'
+						nl
+						'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...as the last time he start discarging a big load of cum into your womb...'
+						nl
+						'"...Somebody help!!! Please!!!! He''s raping me!!! Help!!!..."...'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'"...Useless. There''s no one around."... . The woman of the last time comes sit next to you..."Sorry i went to pee... .How many time did he cum?"'
+						act '"You!...Bitch!"': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man4.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressvag0.jpg"></center>'
+							end
+							' "Nope...you are the one, remember?" She move toward you.... "Yes...that''s oozing cum; he spurt at least one...Here let me free you..."...and free your hands...'
+							nl
+							'"Fuck you!...Shit!!! Bastard!...I swear...."'
+							nl
+							'"...I wonder if you really like it...you still are free... ."'
+							nl
+							'"...Fuck you bitch! What the fuuuckrrrghhgghhh....do you want from me?"'
+							nl
+							'"...Well...not many woman can tollerate Motya when he''s on high; viagru and meth are quite..."exagerate" on him...but i''m grateful toward you: you made me spare at least 800 rubles...i really should change my vaz so...thank you."'
+							nl
+							'"...Let me go! Let me go!...Let me go!!!..." ...but he doesn''t...'
+							wait 4000
+							gs 'cum_manage'
+							nl
+							'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+							act '"I swear i..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'anal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'asshole', 'burn'
+								gs 'pain', 8, 'hips', 'tear'
+								spafinloc = 3
+								gs 'stat'
+								if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+								else
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+								end
+								'"...and twice." He pass to fuck your ass and you are slowly losing your last strenght...the man is a fucking insane sex machine that continue pistoning you non-stop. '
+								nl
+								'"...Fuck...you...bastard..." You are nearly to faint...'
+								nl
+								'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+								nl
+								'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+								wait 3000
+								gs 'cum_manage'
+								act '"...Please..."': 
+									*clr & cla
+									pcs_stam = pcs_stam / 5
+									pcs_willpwr = pcs_willpwr / 5
+									gs 'arousal', 'anal', 20, 'rough', 'rape'
+									gs 'pain', 8, 'asshole', 'burn'
+									gs 'pain', 8, 'hips', 'tear'
+									spafinloc = 3
+									gs 'stat'
+									if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal1.jpg"></center>'
+									end
+									'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+									nl
+									'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+									nl
+									'"....Ass ass... ."'
+									nl
+									'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...but it seems that he''s obeying the woman''s order.'
+									act '"...W-why..."': 
+										*clr & cla
+										gs 'cum_manage'
+										gs 'arousal', 'end'
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+										'"...What have i done to you?...bastards..."'
+										nl
+										'"Nothing. I told you: you are making a favour to me staying free from control...Motya can fuck you for free that way: i spare money, he fuck you and he doesn''t broke my hips... ."'
+										nl
+										'"...y-you will pay..."'
+										nl
+										'"Nope... unless you are not free anymore...hehehe. See you slut... . Oh!...shit! again i almost forget... . I need you...so take this...is a bonus... ." '
+										act '"...."': 
+											*clr & cla
+											mosolmaz = 20
+											painkiller = 20
+											siga = 20
+											pcs_stam = 1
+											pcs_willpwr = 1
+											meth_man = 2
+											gs 'stat'
+											if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+											else
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+											end
+											'The couple left...and the woman left another pack before leaving. You can only adjust yourself... . The bastard unhumanly ravished you almost to the faint, you have to recover. At least they didn''t want to robber you... . The pack is on the ground...it was useful last time...'
+											act 'Go away': gt $loc, $loc_arg
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif meth_man >= 2 and Krestovoz_pimp_protection = 1:
+		if meth_wife_rules < 1:
+			*clr & cla
+			meth_wife_rules += 1
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+			'"Me? Nothing. But Motya would like to fuck..."'
+			nl
+			'"You dare to speak after what you have done to me?" ...It seems the protection works with them...'
+			nl
+			'"...Listen, i know my way is rather unsual...but not every bitch is willing to fuck with Motya... . Free bitches are a lifesafe for me, and you were one...but it seems you are not free anymore."'
+			nl
+			'"I''ll ask you another time: WHAT THE FUCK DO YOU WANT FROM ME?"'
+			nl
+			'"I told you: nothing. But if you are willing...Motya need to fuck...i paid well."'
+			act '"I should kill both of you."':
+				cla
+				gs 'stat'
+				'"...But you are a street worker, and you like money as everyone... . And since you are under protection we both are simply clients."'
+				nl
+				'"Are you serious? You should stay in jail...your "Motya" raped me several times!"'
+				nl
+				'"...No one believe a whore. But i''ll warn you: if you are willing you''ll perform the first round bounded...i cannot risk to break him free before you lose your strenght. I will be the nearest avaible hole if that happens..."'
+				nl
+				'"GO TO HELL!!!!"'
+				nl
+				'"Think about it: i pay well....when you are protected of course... . Anyway if you want to make me really happy stay out from protection, so i''ll spare some other rubles...hehehe... . Now: if you want you can work, otherwise you can go wherever you want... ."'
+				act '"There are no money to give me back what you stole from me sicko!"':
+					*clr & cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+					'"...Hey...what do you want? Some formal apologize? I''m pretty sure we were not the first who abused you...i''m offerimg you money for your service..."'
+					nl
+					'"Why don''t you go to be fucked ...by your "Motya"? No better: why don''t you both go fuck your self away from me?"'
+					nl
+					'"...Well i do...but i cannot afford him alone when he''s on high. I thought that was clear... . But i cannot stay here for much longer to speak with you, Motya will need release soon...if you are willing you can help me lowering his lust otherwise..." The woman pause for a brief momnent "...i''ll bring him back home..."'
+					nl
+					'"..." You look at the woman in disbelieve...'
+					nl
+					'"Money money..." The woman swing back and forth a money roll as to invite you...'
+					
+					act '"Money first. Do not try any jokes, and only one fuck."': 
+						cla
+						gs 'stat'
+						'"...I''m sorry to disappoint you, but the fuck has to be at lest two...and remember, the first one bounded...no matter what, it''s something i cannot deal on."'
+						nl
+						'"Everytime he raped...me...after the first..." You made a pause, try to not think about your past "encounter" with Motya, but it''s not easy to forget what you passed..."It burned as hell!!!!"'
+						nl
+						'"...I left you a cream last time...i hope it helped you... ."'
+						nl
+						'"...That''s doesn''t matter..." ...'
+						nl
+						'"Well...there are not many solutions avaible with Motya. Every pussy he fuck when he''s on high cannot produce enough juice...he dry it almost immediately...he start to return almost normal after the second round... . The same for lube: gel, oil, cream...all of them. Basically he cook them with the heat and all lost their function..." ...'
+						nl
+						'"...He cook the pussy too!" ...'
+						nl
+						'"...That''s why i pay well... . Are you agree or not? I cannot stay too much..."'
+						act 'Take a big breath..."...1000. Now."': gt 'mod_iwhore_methbang', 'meth_man'
+						act '"NO!"': gt $loc, $loc_arg
+					end
+					act '"NO!"': gt $loc, $loc_arg
+				end
+			end
+		else
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/ready.jpg"></center>'
+			if meth_wife_rules = 1:
+				'You agree to be bounded for the first round..."You better not made mistakes..."'
+				nl
+				'"I know i know...i care about my life, do you know?...Just to have things clear between us: if you are not under protection i''ll consider you a free meat...ok?"'
+				nl
+				'"But i''m not so pay attention."'
+				nl
+				'"I told: just to be clear...ok done."'
+			else
+				'You agree and accept to be bound..."...Ok...there we go...Butt on the air please..."'
+			end
+			act '...On all fours...':
+				*clr & cla
+				gs 'stat'
+				if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client0.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client1.jpg"></center>'
+				end
+				if meth_wife_rules = 1:
+					'"Where do you want to fuck? Pussy or ass?"'
+					nl
+					'"Shouldn''t be "Motya" the one who chose?"'
+					nl
+					'"Well normally...but it will not different for him till the fourth or fifth fuck: he need a hole and eveything is good. So i let you choose where do you prefer to be fucked. Oh...one last thing...he will not unstuck till the second fuck so you cannot change...believe me...i''ve tried..."'
+				else
+					'"...As usual...any preferences?"'
+				end
+				act 'As...':
+					*clr & cla
+					$orgasm_or = 'no'
+					pcs_stam = pcs_stam / 10
+					pcs_willpwr = pcs_willpwr / 10
+					gs 'arousal', 'anal', 20, 'rough', 'prostitution', 'maso'
+					gs 'pain', 8, 'asshole', 'burn'
+					gs 'pain', 8, 'hips', 'tear'
+					spafinloc = 3
+					gs 'stat'
+					if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+					end
+					if meth_wife_rules = 1:
+						'"AHHHH!!!!" You didn''t finished to say your choice that the man start pounding your ass with fury... . '
+						nl
+						'"AHHHH!!! Stop!Stop! He''s raping me!!!!" '
+						nl
+						'"Nope...you are paid... . Can you see why i have to bound you?" The woman is right; there''s no real difference from the time he rape you...and your butt is quickly painful; but the man doesn''t care and continue his pistoning...'
+						wait 3000
+						gs 'cum_manage'
+						nl
+						'"Assassass! Fuckfuckfuck....FUUUUUU!!!!" The first load was discharged...'
+						nl
+						'"Time to free you..." The woman come next to you to free your hands; but Motya has no intention to stop...'
+					else
+						'"AHHHH!!!!" You didn''t finished to say your choice that the man start pounding your ass with fury... . '
+						nl
+						'"Fuckuckuck....Assassass...slutslutslut..." '
+						nl
+						'"...I know..." ...'
+						wait 3000
+						gs 'cum_manage'
+						nl
+						'"Assassass! Fuckfuckfuck....FUUUUUU!!!!" The first load was discharged...'
+						nl
+						'"Time to free you..." The woman come next to you to free your hands; of course Motya has no intention to stop...'
+					end
+					act '"SHIT DO SOMETHING!!!!!"':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_help.jpg"></center>'
+						if meth_wife_rules = 1:
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'anal', 20, 'rough', 'prostitution', 'maso'
+							gs 'pain', 8, 'asshole', 'burn'
+							gs 'pain', 8, 'hips', 'tear'
+							spafinloc = 3
+							gs 'stat'
+							'"....Uhmmm...ok...let me think something...." Once she free your hands the woman remove her pants and spread her legs right in front of you... . '
+							nl
+							'"AHHHH!!! What the fuck are you doing!!!!!" '
+							nl
+							'"You can lick me if you want...maybe it distract you from pain...." ...'
+							nl
+							'"AHHHH!!! Are you fooling me? SHITTTTT!!!!" '
+							nl
+							'"Hey you asked for help... ." ...'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'"Assassass! Fuckfuckfuck....FUUUUUU!!!!" The second one too...'
+							nl
+							'"Oh!...You don''t need my help anymore. Motya...stop!" As the woman speak the man immediately stop ruining your pussy... .'
+							act 'Stand up':
+								*clr & cla
+								if meth_wife_rules = 1: meth_wife_rules += 1
+								gs 'arousal', 'end'
+								gs 'stat'
+								if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+								else
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+								end
+								'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+								nl
+								'"Do you need help?" '
+								nl
+								'"Just...leave me alone." ...'
+								nl
+								'"Ok...well thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+								nl
+								'"...just..." ...'
+								act '....': gt $loc, $loc_arg
+							end	
+						else
+							gs 'arousal', 'anal', 10, 'rough', 'prostitution', 'maso'
+							gs 'pain', 5, 'asshole', 'burn'
+							gs 'pain', 5, 'hips', 'tear'
+							gs 'stat'
+							'"Here...feel free..." The woman remove her pants and spread her legs right in front of you... . '
+							nl
+							'"Slutslutslut!...Assassass...fuckfuckfuck..."...'
+							act 'Lick her':
+								*clr & cla
+								pcs_stam = pcs_stam / 4
+								pcs_willpwr = pcs_willpwr / 4
+								gs 'arousal', 'anal', 10, 'rough', 'prostitution', 'maso', 'lesbian', 'group', 'gangbang'
+								gs 'pain', 4, 'asshole', 'burn'
+								gs 'pain', 4, 'hips', 'tear'
+								spafinloc = 3
+								wait 3000
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/mag1.mp4"></video></center>'
+								'"..."'
+								act 'It''s finished....':
+									*clr & cla
+									gs 'arousal', 'end'
+									gs 'stat'
+									if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end0.jpg"></center>'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+									end
+									'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+									nl
+									'"Do you need help?" '
+									nl
+									'"...Just....leave me alone" ...'
+									nl
+									'"Ok...well thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+									nl
+									'"...just..." ...'
+									act 'Leave': gt $loc, $loc_arg
+								end	
+							end	
+							act '...Endure...':
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'anal', 1, 'rough', 'prostitution', 'maso'
+								gs 'pain', 1, 'asshole', 'burn'
+								gs 'pain', 1, 'hips', 'tear'
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/mag0.jpg"></center>'
+								'"...As you wish..."'
+								act '...Endure...':
+									*clr & cla
+									gs 'arousal', 'anal', 10, 'rough', 'prostitution', 'maso'
+									gs 'pain', 5, 'asshole', 'burn'
+									gs 'pain', 5, 'hips', 'tear'
+									spafinloc = 3
+									gs 'stat'
+									if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man'+rand(4,6)+'.jpg"></center>'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal1.jpg"></center>'
+									end
+									''
+									'"..." The woman understand that''s not what you want and left you to your duties...'
+									wait 3000
+									gs 'cum_manage'
+									nl
+									'"Slutslutslut!...Assassass...fuckfuckfuck...FUUUUUU!!!!"...'
+									nl
+									'"Motya... Stop!"...The man stop immediately at the woman order'
+									act '...Recover...':
+										*clr & cla
+										gs 'arousal', 'end'
+										gs 'stat'
+										if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end0.jpg"></center>'
+										else
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+										end
+										'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+										nl
+										'"Do you need help?" '
+										nl
+										'"...Just....leave me alone" ...'
+										nl
+										'"As you wish... thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+										nl
+										'"...just..." ...'
+										act '....': gt $loc, $loc_arg
+									end
+								end
+							end	
+						end
+					end	
+					act '...Endure...':
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'anal', 20, 'rough', 'prostitution', 'maso'
+						gs 'pain', 8, 'asshole', 'burn'
+						gs 'pain', 8, 'hips', 'tear'
+						spafinloc = 3
+						gs 'stat'
+						if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man'+rand(4,6)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal1.jpg"></center>'
+						end
+						if meth_wife_rules = 1:
+							'"...Try to not move...i don''t want to hurt you..."'
+							nl
+							'"...AHHHAAAHH!!! How the fuck i''n supposed to not MOVEEE!!!AHHH!!!..." ...the woman managed to free your hands...'
+							nl
+							'"...Well..next time try to relax more your asshole...train it...those kind of things could help. It''s not useful with the friction, but it could be worst if your ass is tight..."'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'".....FUUUU!!!!!.....Assassassass..."'
+							nl
+							'"No Motya! Stop!"...The man stop immediately at the woman order'
+						else
+							'"...Almost...and....done!..." The woman managed to free your hands...'
+							nl
+							'"...SHIT! It won''t stop!!!!!..." ...'
+							nl
+							'"...Relax...he will..."'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'".....FUUUU!!!!!.....Assassassass..."'
+							nl
+							'"No Motya! Stop!"...The man stop immediately at the woman order'
+						end
+						act '"...."':
+							*clr & cla
+							if meth_wife_rules = 1: meth_wife_rules += 1
+							gs 'arousal', 'end'
+							gs 'stat'
+							if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+							end
+							'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+							nl
+							'"Do you need help?" '
+							nl
+							'"...Just....leave me alone" ...'
+							nl
+							'"As you wish... thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+							nl
+							'"...just..." ...'
+							act '....': gt $loc, $loc_arg
+						end	
+					end	
+				end	
+				act 'Pu...':
+					*clr & cla
+					$orgasm_or = 'no'
+					pcs_stam = pcs_stam / 10
+					pcs_willpwr = pcs_willpwr / 10
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+					else
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+					end
+					if meth_wife_rules = 1:
+						'"AHHHH!!!!" You didn''t finished to say your choice that the man start pounding with fury... . '
+						nl
+						'"AHHHH!!! Stop!Stop! He''s raping me!!!!" '
+						nl
+						'"Nope...you are paid... . Can you see why i have to bound you?" The woman is right; there''s no real difference from the time he rape you...and your butt is quickly painful; but the man doesn''t care and continue his pistoning...'
+						wait 2500
+						gs 'cum_manage'
+						nl
+						'"Pussypussypussy! Fuckfuckfuck....FUUUUUU!!!!" The first load was discharged...'
+						nl
+						'"Time to free you..." The woman come next to you to free your hands; but Motya has no intention to stop...'
+					else
+						'"AHHHH!!!!" You didn''t finished to say your choice that the man start pistoning you with fury... . '
+						nl
+						'"Fuckuckuck....Pussypussypussy!...slutslutslut..." '
+						nl
+						'"...I know..." ...'
+						wait 2500
+						gs 'cum_manage'
+						nl
+						'"Pussypussypussy! Fuckfuckfuck....FUUUUUU!!!!" The first load was discharged...'
+						nl
+						'"Time to free you..." The woman come next to you to free your hands; of course Motya has no intention to stop...'
+					end
+					act '"SHIT DO SOMETHING!!!!!"':
+						*clr & cla
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_help.jpg"></center>'
+						if meth_wife_rules = 1:
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'"....Uhmmm...ok...let me think something...." Once she free your hands the woman remove her pants and spread her legs right in front of you... . '
+							nl
+							'"AHHHH!!! What the fuck are you doing!!!!!" '
+							nl
+							'"You can lick me if you want...if you like girls too you can produce more juice...maybe...." ...'
+							nl
+							'"AHHHH!!! Are you fooling me? SHITTTTT!!!!" '
+							nl
+							'"Hey you asked for help... ." ...'
+							wait 2500
+							gs 'cum_manage'
+							nl
+							'"Pussypussypussy!! Fuckfuckfuck....FUUUUUU!!!!" The second one too...'
+							nl
+							'"Oh!...You don''t need my help anymore. Motya...stop!" As the woman speak the man immediately stop ruining your pussy... .'
+							act 'Stand up':
+								*clr & cla
+								gs 'arousal', 'end'
+								if meth_wife_rules = 1: meth_wife_rules += 1
+								gs 'stat'
+								if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+								else
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+								end
+								'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+								nl
+								'"Do you need help?" '
+								nl
+								'"Just...." ...'
+								nl
+								'"Ok...well thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+								nl
+								'"...Leave alone..." ...'
+								act '....': gt $loc, $loc_arg
+							end	
+						else
+							gs 'arousal', 'vaginal', 10, 'rough', 'rape'
+							gs 'pain', 5, 'vaginal', 'burn'
+							gs 'pain', 5, 'pubic', 'ache'
+							mosol += 25
+							gs 'stat'
+							'"Here...feel free..." The woman remove her pants and spread her legs right in front of you... . '
+							nl
+							'"Slutslutslut!...Pussypussypussy!...fuckfuckfuck..."...'
+							act 'Lick her':
+								*clr & cla
+								pcs_stam = pcs_stam / 4
+								pcs_willpwr = pcs_willpwr / 4
+								gs 'arousal', 'vaginal', 10, 'rough', 'prostitution', 'maso', 'lesbian', 'group', 'gangbang'
+								gs 'pain', 4, 'vaginal', 'burn'
+								gs 'pain', 4, 'pubic', 'ache'
+								mosol += 15
+								spafinloc = 0
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/mag1.mp4"></video></center>'
+								'"..."'
+								wait 3000
+								gs 'cum_manage'
+								act 'It''s finished....':
+									*clr & cla
+									gs 'arousal', 'end'
+									gs 'stat'
+									if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+									end
+									'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+									nl
+									'"Do you need help?" '
+									nl
+									'"...Just....leave me alone" ...'
+									nl
+									'"Ok...well thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+									nl
+									'"...just..." ...'
+									act 'Leave': gt $loc, $loc_arg
+								end	
+							end	
+							act '...Endure...':
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'vaginal', 1, 'rough', 'rape'
+								gs 'pain', 1, 'vaginal', 'burn'
+								gs 'pain', 1, 'pubic', 'ache'
+								mosol += 1
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/mag0.jpg"></center>'
+								'"...As you wish..."'
+								act '...Endure...':
+									*clr & cla
+									gs 'arousal', 'vaginal', 1, 'rough', 'rape'
+									gs 'pain', 5, 'vaginal', 'burn'
+									gs 'pain', 5, 'pubic', 'ache'
+									mosol += 25
+									spafinloc = 0
+									gs 'stat'
+									if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man'+rand(4,6)+'.jpg"></center>'
+									else
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressvag1.jpg"></center>'
+									end
+									'"..," The woman understand that''s not what you want, and left you to your duties...'
+									wait 3000
+									gs 'cum_manage'
+									nl
+									'"Slutslutslut!...Pussypussypussy!...fuckfuckfuck...FUUUUUU!!!!"...'
+									nl
+									'"Motya... Stop!"...The man stop immediately at the woman order'
+									act '...Recover...':
+										*clr & cla
+										gs 'arousal', 'end'
+										gs 'stat'
+										if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+										else
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+										end
+										'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+										nl
+										'"Do you need help?" '
+										nl
+										'"...Just....leave me alone" ...'
+										nl
+										'"As you wish... thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+										nl
+										'"...just..." ...'
+										act '....': gt $loc, $loc_arg
+									end
+								end
+							end	
+						end
+					end	
+					act '...Endure...':
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man'+rand(4,6)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressvag1.jpg"></center>'
+						end
+						if meth_wife_rules = 1:
+							'"...Try to not move...i don''t want to hurt you..."'
+							nl
+							'"...AHHHAAAHH!!! How the fuck i''n supposed to not MOVEEE!!!AHHH!!!..." ...the woman managed to free your hands...'
+							nl
+							'"...Well..next time try to not squeeze your cunt...train it...those kind of things could help. It''s not useful with the friction, but it could be worst if your pussy is tight..."'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'".....FUUUU!!!!!.....Pussypussypussy!..."'
+							nl
+							'"No Motya! Stop!"...The man stop immediately at the woman order'
+						else
+							'"...Almost...and....done!..." The woman managed to free your hands...'
+							nl
+							'"...SHIT! It won''t stop!!!!!..." ...'
+							nl
+							'"...Relax...he will..."'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'".....FUUUU!!!!!.....Pussypussypussy!..."'
+							nl
+							'"No Motya! Stop!"...The man stop immediately at the woman order'
+						end
+						act '"...."':
+							*clr & cla
+							if meth_wife_rules = 1: meth_wife_rules += 1
+							gs 'arousal', 'end'
+							gs 'stat'
+							if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client_end1.jpg"></center>'
+							end
+							'You try to rise yourself..."...Shit..." but almost immediately you fall. You have to move slowly for a while...'
+							nl
+							'"Do you need help?" '
+							nl
+							'"...Just....leave me alone" ...'
+							nl
+							'"As you wish... thanks i guess. See you...and try to stay free ok? It''s more funny and cheap for sure..." ...'
+							nl
+							'"...just..." ...'
+							act 'Leave': gt $loc, $loc_arg
+						end	
+					end	
+				end	
+			end	
+		end
+	elseif meth_man >= 2 and Krestovoz_pimp_protection ! 1:
+		if meth_man = 2:
+			meth_man = 3
+			if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+				if meth_fastest = 0:
+					*clr & cla
+					$orgasm_or = 'no'
+					pcs_stam = pcs_stam / 10
+					pcs_willpwr = pcs_willpwr / 10
+					gs 'pain', 5, 'throat', 'hit'
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+					'...You were awaken by the heat that comes from your pussy that the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+					nl
+					'"I''m so happy! 1500 and 600 made 2200...no! it''s 2100... plus 600 made 2700... uhhmmm...i was thinking about pink...but then i said to myself: too much girly! No no no...i need something more classy...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+					nl
+					'"..." Your thought were about leading you to call help, but you decide to spare some energy...'
+					nl
+					'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...as the last time he start discarging a big load of cum into your womb...'
+					nl
+					'"Oh! My favourite slut is awake...and the first load is come out..."...'
+					wait 3000
+					gs 'cum_manage'
+					act '"...You..."': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man4.jpg"></center>'
+						'The woman move toward you..."Black!... Do you like black? Classy is classy but... Here let me free you..."...and free your hands..."Maybe too much classy: i just imagine the comments ''Hey! Did you see her? She lack of fantasy!'' ...No...i need another one"'
+						nl
+						'"...I swear...."'
+						nl
+						'"...Hey! Just to be clear: Motya is mine do not have bad idea did you understand me?"'
+						nl
+						'"...leave me alone...let me go...take away your Motya...who want to live with a monster?..."'
+						nl
+						'"Hey! Watch your mouth. My husband is wonderful person. Mppphff! I''ll let it pass this time...you are really useful. I didn''t have too much hope on having you for free...still...well thanks again i guess."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+						act '"...shit!..."': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'anal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'asshole', 'burn'
+							gs 'pain', 8, 'hips', 'tear'
+							spafinloc = 3
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+							'"...Come on honey, you can do it. He almost done."'
+							nl
+							'"...b-bastards..." You are nearly to faint...'
+							nl
+							'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+							nl
+							'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+							wait 3000
+							gs 'cum_manage'
+							act '"...Please..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+								'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+								nl
+								'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+								nl
+								'"....Ass ass... ."'
+								nl
+								'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+								nl
+								'"I''m so happy sweety! You are a resistant one i have to say... . Let me help you adjust yourself."'
+								act '"LEAVE ME ALONE !!!! GO AWAYYYYYYY!!!!"': 
+									*clr & cla
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+									'You put all your last strenght yelling at her... "..."'
+									nl
+									'"...Slut?...Slut?..."'
+									nl
+									'"It''s ok Motya... . She will be good...she just need her time...and some protection maybe... ."'
+									nl
+									'"... "'
+									nl
+									'"...Here take this... It help me a lot with Metthy and i have tons...see you next time."'
+									act '"DO NOT TOUCH ME!!!"': 
+										*clr & cla
+										pcs_stam = 1
+										pcs_willpwr = 1
+										gs 'arousal', 'end'
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+										'The couple left; before going away the woman left a tube falls near you... . You can only adjust yourself and leave... . You take some time to recover... .'
+										act 'Go away': gt $loc, $loc_arg
+									end
+								end
+							end
+						end
+					end
+				else
+					*clr & cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+					wait 2000
+					'"Slut!"'
+					wait 4000
+					act '"I''m pretty sure she''s somewhere...."': 
+						*clr & cla
+						gs 'pain', 6, 'throat', 'hit'
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+						'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+						wait 2000
+						'...'
+						act '...': 
+							*clr & cla
+							$orgasm_or = 'no'
+							pcs_stam = pcs_stam / 10
+							pcs_willpwr = pcs_willpwr / 10
+							gs 'pain', 5, 'throat', 'hit'
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+							'Again you find your self with your hands bounded with the man that is pounding your pussy...there''s no way a woman could find this pleasurable; the heat the friction made is near to be a pain..."...Pussypussypussy....Fuckfuckfuck..."'
+							nl
+							'"I''m so happy! 1500 and 600 made 2200...no made 2100 plus 600 made 2700... uhhmmm...i was thinking about pink...but then i said to myself: too much girly! No no no...i need something more classy...." The man is raping you another time...while the woman is telling nonsense... . '
+							nl
+							'"..." Your thought were about leading you to call help, but you decide to spare some energy...'
+							wait 3000
+							gs 'cum_manage'
+							nl
+							'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...as the last time he start discarging a big load of cum into your womb...'
+							nl
+							'The woman move toward you..."I can free my favourite slut!..."...'
+							act '"...You..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'vaginal', 'burn'
+								gs 'pain', 8, 'pubic', 'ache'
+								mosol += 40
+								spafinloc = 0
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_4.jpg"></center>'
+								'"Black!... Do you like black? Classy is classy but... Here let me free you..."...and free your hands..."Maybe too much classy: i just imagine the comments ''Hey! Did you see her? She lack of fantasy!'' ...No...i need another one"'
+								nl
+								'"...I swear...."'
+								nl
+								'"...Hey! Just to be clear: Motya is mine do not have bad idea did you understand me?"'
+								nl
+								'"...leave me alone...let me go...take away your Motya...who want to live with a monster?..."'
+								nl
+								'"Hey! Watch your mouth. My husband is wonderful person. Mppphff! I''ll let it pass this time...you are really useful. I didn''t have too much hope on having you for free...still...well thanks again i guess."'
+								wait 4000
+								gs 'cum_manage'
+								nl
+								'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+								act '"...shit!..."': 
+									*clr & cla
+									pcs_stam = pcs_stam / 5
+									pcs_willpwr = pcs_willpwr / 5
+									gs 'arousal', 'anal', 20, 'rough', 'rape'
+									gs 'pain', 8, 'asshole', 'burn'
+									gs 'pain', 8, 'hips', 'tear'
+									spafinloc = 3
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+									'"...Come on honey, you can do it. He almost done."'
+									nl
+									'"...b-bastards..." You are nearly to faint...'
+									nl
+									'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+									nl
+									'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+									wait 4000
+									gs 'cum_manage'
+									act '"...Please..."': 
+										*clr & cla
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+										'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+										nl
+										'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+										nl
+										'"....Ass ass... ."'
+										nl
+										'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+										nl
+										'"I''m so happy sweety! You are a resistant one i have to say... . Let me help you adjust yourself."'
+										act '"LEAVE ME ALONE !!!! GO AWAYYYYYYY!!!!"': 
+											*clr & cla
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+											'You put all your last strenght yelling at her... "..."'
+											nl
+											'"...Slut?...Slut?..."'
+											nl
+											'"It''s ok Motya... . She will be good...she just need her time...and some protection maybe... ."'
+											nl
+											'"... "'
+											nl
+											'"...Here take this... It help me a lot with Metthy and i have tons...see you next time."'
+											act '"DO NOT TOUCH ME!!!"': 
+												*clr & cla
+												pcs_stam = 1
+												pcs_willpwr = 1
+												gs 'stat'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+												'The couple left; before going away the woman left a tube falls near you... . You can only adjust yourself and leave... . You take some time to recover... .'
+												act 'Go away': gt $loc, $loc_arg
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			else
+				*clr & cla
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+				wait 2000
+				'"Slut!"<br>"...Shit!..."<br>"Slut!Slut!"'
+				wait 4000
+				act '"I''m pretty sure she''s somewhere...."': 
+					*clr & cla
+					gs 'pain', 7, 'throat', 'hit'
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+					'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+					wait 2000
+					'...'
+					act '...': 
+						*clr & cla
+						$orgasm_or = 'no'
+						pcs_stam = pcs_stam / 10
+						pcs_willpwr = pcs_willpwr / 10
+						gs 'pain', 5, 'throat', 'hit'
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+						'Again you find your self with your hands bounded with the man that is pounding your pussy...there''s no way a woman could find this pleasurable; the heat the friction made is near to be a pain..."...Pussypussypussy....Fuckfuckfuck..."'
+						nl
+						'"I''m so happy! 1500 and 600 made 2200...no made 2100 plus 600 made 2700... uhhmmm...i was thinking about pink...but then i said to myself: too much girly! No no no...i need something more classy...." The man is raping you another time...while the woman is telling nonsense... . '
+						nl
+						'"..." Your thought were about leading you to call help, but you decide to spare some energy...'
+						wait 3000
+						gs 'cum_manage'
+						nl
+						'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...as the last time he start discarging a big load of cum into your womb...'
+						nl
+						'The woman move toward you..."I can free my favourite slut!..."...'
+						act '"...You..."': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wifed.jpg"></center>'
+							'"Black!... Do you like black? Classy is classy but... Here let me free you..."...and free your hands..."Maybe too much classy: i just imagine the comments ''Hey! Did you see her? She lack of fantasy!'' ...No...i need another one"'
+							nl
+							'"...I swear...."'
+							nl
+							'"...Hey! Just to be clear: Motya is mine do not have bad idea did you understand me?"'
+							nl
+							'"...leave me alone...let me go...take away your Motya...who want to live with a monster?..."'
+							nl
+							'"Hey! Watch your mouth. My husband is wonderful person. Mppphff! I''ll let it pass this time...you are really useful. I didn''t have too much hope on having you for free...still...well thanks again i guess."'
+							wait 4000
+							gs 'cum_manage'
+							nl
+							'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+							act '"...shit!..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'anal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'asshole', 'burn'
+								gs 'pain', 8, 'hips', 'tear'
+								spafinloc = 3
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+								'"...Come on honey, you can do it. He almost done."'
+								nl
+								'"...b-bastards..." You are nearly to faint...'
+								nl
+								'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+								nl
+								'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+								wait 4000
+								gs 'cum_manage'
+								act '"...Please..."': 
+									*clr & cla
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal0.jpg"></center>'
+									'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+									nl
+									'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+									nl
+									'"....Ass ass... ."'
+									nl
+									'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+									nl
+									'"I''m so happy sweety! You are a resistant one i have to say... . Let me help you adjust yourself."'
+									act '"LEAVE ME ALONE !!!! GO AWAYYYYYYY!!!!"': 
+										*clr & cla
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+										'You put all your last strenght yelling at her... "..."'
+										nl
+										'"...Slut?...Slut?..."'
+										nl
+										'"It''s ok Motya... . She will be good...she just need her time...and some protection maybe... ."'
+										nl
+										'"... "'
+										nl
+										'"...Here take this... It help me a lot with Metthy and i have tons...see you next time."'
+										act '"DO NOT TOUCH ME!!!"': 
+											*clr & cla
+											pcs_stam = 1
+											pcs_willpwr = 1
+											gs 'stat'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+											'The couple left; before going away the woman left a tube falls near you... . You can only adjust yourself and leave... . You take some time to recover... .'
+											act 'Go away': gt $loc, $loc_arg
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		else
+			if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+				if meth_man = 3:
+					meth_man = 4
+					if meth_fastest = 0:
+						*clr & cla
+						$orgasm_or = 'no'
+						pcs_stam = pcs_stam / 10
+						pcs_willpwr = pcs_willpwr / 10
+						gs 'pain', 5, 'throat', 'hit'
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+						'...You were awaken by the heat that comes from your pussy ... the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+						nl
+						'"I''m so happy! Just the right time... plus 750 and... uhhmmm... No no no...i need something more classy...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+						nl
+						'"...SHIIITTTT!!!...." ... and pain start to come...'
+						wait 3000
+						gs 'cum_manage'
+						nl
+						'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+						nl
+						'"Oh! My favourite slut is awake...and the first load is come out..."...'
+						act '"...You!..."': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man4.jpg"></center>'
+							'The woman move toward you..."Here let me free you..."...and free your hands...'
+							'"...Shit!...(Coff coff)....Did you really have to hIIIIIIIITTTTTHHHHH.... me?..."'
+							nl
+							'"...Yes. That way you wont struggle...and i will spare time."'
+							nl
+							'"...Stiiiiiillllll! Fuck!..."'
+							nl
+							'"Hey...don''t worry i''m a pro... . I will never damage my favourite free slut..."'
+							wait 4000
+							gs 'cum_manage'
+							nl
+							'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+							act '"...shit!..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'anal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'asshole', 'burn'
+								gs 'pain', 8, 'hips', 'tear'
+								spafinloc = 3
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+								'"...Come on honey, you can do it. He almost done."'
+								nl
+								'"...." You are nearly to faint...'
+								nl
+								'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+								nl
+								'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+								wait 3000
+								act '"...f..."': 
+									*clr & cla
+									gs 'cum_manage'
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+									'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+									nl
+									'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+									nl
+									'"....Ass ass... ."'
+									nl
+									'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+									nl
+									'"I''m so happy sweety! Let me help you adjust yourself."'
+									act '"...u..."': 
+										*clr & cla
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+										'No need to use the strengh to speak... "..."'
+										nl
+										'"...Slut?...Slut?..."'
+										nl
+										'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+										nl
+										'"... "'
+										nl
+										'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+										act '"..."': 
+											*clr & cla
+											pcs_stam = 1
+											pcs_willpwr = 1
+											gs 'arousal', 'end'
+											gs 'stat'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+											'You take some time to recover. . You can only adjust yourself and leave... .'
+											act 'Go away': gt $loc, $loc_arg
+										end
+									end
+								end
+							end
+						end
+					else
+						*clr & cla
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+						wait 2000
+						'"Slut!"'
+						wait 4000
+						act '"I''m pretty sure she''s somewhere...."': 
+							*clr & cla
+							gs 'pain', 7, 'throat', 'hit'
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+							'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+							wait 2000
+							'...'
+							act '...': 
+								*clr & cla
+								$orgasm_or = 'no'
+								pcs_stam = pcs_stam / 10
+								pcs_willpwr = pcs_willpwr / 10
+								gs 'pain', 5, 'throat', 'hit'
+								gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'vaginal', 'burn'
+								gs 'pain', 8, 'pubic', 'ache'
+								mosol += 40
+								spafinloc = 0
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+								'...You were awaken by the heat that comes from your pussy ... the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+								nl
+								'"I''m so happy! Just the right time... uhmmmh...plus 750 and... uhhmmm... No no no...i need something more classy...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+								nl
+								'"...SHIIITTTT!!!...." ... and pain start to come...'
+								nl
+								'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+								nl
+								'"Oh! My favourite slut is awake...and the first load is come out..."...'
+								wait 3000
+								gs 'cum_manage'
+								act '"...You..."': 
+									*clr & cla
+									pcs_stam = pcs_stam / 5
+									pcs_willpwr = pcs_willpwr / 5
+									gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+									gs 'pain', 8, 'vaginal', 'burn'
+									gs 'pain', 8, 'pubic', 'ache'
+									mosol += 40
+									spafinloc = 0
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_4.jpg"></center>'
+									'The woman move toward you..."Here let me free you..."...and free your hands...'
+									'"...Shit!...(Coff coff)....Did you really have to stranglEEEEHHHHHH..... me?..."'
+									nl
+									'"...Yes. That way you wont struggle...and i will spare time."'
+									nl
+									'"...Stiiiiiillllll! Fuck!..."'
+									nl
+									'"Hey...don''t worry i''m a pro... . I will never damage my favourite free slut..."'
+									wait 4000
+									gs 'cum_manage'
+									nl
+									'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+									act '"...shit!..."': 
+										*clr & cla
+										pcs_stam = pcs_stam / 5
+										pcs_willpwr = pcs_willpwr / 5
+										gs 'arousal', 'anal', 20, 'rough', 'rape'
+										gs 'pain', 8, 'asshole', 'burn'
+										gs 'pain', 8, 'hips', 'tear'
+										spafinloc = 3
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+										'"...Come on honey, you can do it. He almost done."'
+										nl
+										'"...." You are nearly to faint...'
+										nl
+										'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+										nl
+										'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+										wait 3000
+										act '"...f..."': 
+											*clr & cla
+											gs 'stat'
+											gs 'cum_manage'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+											'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+											nl
+											'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+											nl
+											'"....Ass ass... ."'
+											nl
+											'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+											nl
+											'"I''m so happy sweety! Let me help you adjust yourself."'
+											act '"...u..."': 
+												*clr & cla
+												gs 'stat'
+												'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+												'No need to use the strengh to speak... "..."'
+												nl
+												'"...Slut?...Slut?..."'
+												nl
+												'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+												nl
+												'"... "'
+												nl
+												'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+												act '"..."': 
+													*clr & cla
+													pcs_stam = 1
+													pcs_willpwr = 1
+													gs 'arousal', 'end'
+													gs 'stat'
+													'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+													'You take some time to recover.... . You can only adjust yourself and leave... . .. .'
+													act 'Go away': gt $loc, $loc_arg
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				else
+					*clr & cla
+					$orgasm_or = 'no'
+					pcs_stam = pcs_stam / 10
+					pcs_willpwr = pcs_willpwr / 10
+					gs 'pain', 5, 'throat', 'hit'
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+					'...You were awaken by the heat that comes from your pussy ... the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+					nl
+					'"I''m so happy! Just the right time... take a deep breath ...plus 750 and...and plus 545... . No no no...vintage that''s it...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+					nl
+					'"...SHIIITTTT!!!...." ... and pain start to come...'
+					wait 3000
+					gs 'cum_manage'
+					nl
+					'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+					nl
+					'"Oh! My favourite slut is awake...and the first load is come out..."...'
+					act '"...You!..."': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'vaginal', 'burn'
+						gs 'pain', 8, 'pubic', 'ache'
+						mosol += 40
+						spafinloc = 0
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man4.jpg"></center>'
+						'The woman move toward you..."Here let me free you..."...and free your hands...'
+						'"...ummmpphh!....AAAAHHHHHH!!!!"'
+						nl
+						'"Hey, you are starting to tollerate him well..."'
+						nl
+						'"...Fuck...youUUUUUUU!!!!!"'
+						nl
+						'"Don''t worry i''m a pro... . I will never damage my favourite free slut..."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+						act '"...shit!..."': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'anal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'asshole', 'burn'
+							gs 'pain', 8, 'hips', 'tear'
+							spafinloc = 3
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+							'"...Come on honey, you can do it. He almost done."'
+							nl
+							'"...." You are nearly to faint...'
+							nl
+							'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+							nl
+							'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+							wait 3000
+							act '"...f..."': 
+								*clr & cla
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man6.jpg"></center>'
+								'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+								nl
+								'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+								nl
+								'"....Ass ass... ."'
+								nl
+								'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+								nl
+								'"I''m so happy sweety! Let me help you adjust yourself."'
+								act '"...u..."': 
+									*clr & cla
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+									'No need to use the strengh to speak... "..."'
+									nl
+									'"...Slut?...Slut?..."'
+									nl
+									'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+									nl
+									'"... "'
+									nl
+									'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+									act '"..."': 
+										*clr & cla
+										pcs_stam = 1
+										pcs_willpwr = 1
+										gs 'arousal', 'end'
+										gs 'stat'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+										'You take some time to recover. . You can only adjust yourself and leave... .'
+										act 'Go away': gt $loc, $loc_arg
+									end
+								end
+							end
+						end
+					end
+				end
+			else
+				if meth_man = 3:
+					meth_man = 4
+					*clr & cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+					wait 2000
+					'"Slut!"'
+					wait 4000
+					act '"I''m pretty sure she''s somewhere...."': 
+						*clr & cla
+						gs 'pain', 7, 'throat', 'hit'
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+						'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+						wait 2000
+						'...'
+						act '...': 
+							*clr & cla
+							$orgasm_or = 'no'
+							pcs_stam = pcs_stam / 10
+							pcs_willpwr = pcs_willpwr / 10
+							gs 'pain', 5, 'throat', 'hit'
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+							'...You were awaken by the heat that comes from your pussy ... the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+							nl
+							'"I''m so happy! Just the right time... uhmmmh...plus 750 and... uhhmmm... No no no...i need something more classy...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+							nl
+							'"...SHIIITTTT!!!...." ... and pain start to come...'
+							nl
+							'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+							nl
+							'"Oh! My favourite slut is awake...and the first load is come out..."...'
+							wait 3000
+							gs 'cum_manage'
+							act '"...You..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'vaginal', 'burn'
+								gs 'pain', 8, 'pubic', 'ache'
+								mosol += 40
+								spafinloc = 0
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wifed.jpg"></center>'
+								'The woman move toward you..."Here let me free you..."...and free your hands...'
+								'"...Shit!...(Coff coff)....Did you really have to stranglEEEEHHHHHH..... me?..."'
+								nl
+								'"...Yes. That way you wont struggle...and i will spare time."'
+								nl
+								'"...Stiiiiiillllll! Fuck!..."'
+								nl
+								'"Hey...don''t worry i''m a pro... . I will never damage my favourite free slut..."'
+								wait 4000
+								gs 'cum_manage'
+								nl
+								'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+								act '"...shit!..."': 
+									*clr & cla
+									pcs_stam = pcs_stam / 5
+									pcs_willpwr = pcs_willpwr / 5
+									gs 'arousal', 'anal', 20, 'rough', 'rape'
+									gs 'pain', 8, 'asshole', 'burn'
+									gs 'pain', 8, 'hips', 'tear'
+									spafinloc = 3
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+									'"...Come on honey, you can do it. He almost done."'
+									nl
+									'"...." You are nearly to faint...'
+									nl
+									'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+									nl
+									'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+									wait 3000
+									act '"...f..."': 
+										*clr & cla
+										gs 'stat'
+										gs 'cum_manage'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal1.jpg"></center>'
+										'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+										nl
+										'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+										nl
+										'"....Ass ass... ."'
+										nl
+										'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+										nl
+										'"I''m so happy sweety! Let me help you adjust yourself."'
+										act '"...u..."': 
+											*clr & cla
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+											'No need to use the strengh to speak... "..."'
+											nl
+											'"...Slut?...Slut?..."'
+											nl
+											'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+											nl
+											'"... "'
+											nl
+											'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+											act '"..."': 
+												*clr & cla
+												pcs_stam = 1
+												pcs_willpwr = 1
+												gs 'arousal', 'end'
+												gs 'stat'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+												'You take some time to recover.... . You can only adjust yourself and leave... . .. .'
+												act 'Go away': gt $loc, $loc_arg
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				else
+					*clr & cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+					wait 2000
+					'"Slut!"'
+					wait 4000
+					act '"Come out! I know you are here!... ."': 
+						*clr & cla
+						gs 'pain', 7, 'throat', 'hit'
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+						'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+						wait 2000
+						'...'
+						act '...': 
+							*clr & cla
+							$orgasm_or = 'no'
+							pcs_stam = pcs_stam / 10
+							pcs_willpwr = pcs_willpwr / 10
+							gs 'pain', 5, 'throat', 'hit'
+							gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'vaginal', 'burn'
+							gs 'pain', 8, 'pubic', 'ache'
+							mosol += 40
+							spafinloc = 0
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+							'...You were awaken by the heat that comes from your pussy ... the man that is pounding relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+							nl
+							'"I''m so happy! Yuo really are into strangling like me... uhmmmh...plus 850 and... uhhmmm...i have to cut something this month...." While the heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+							nl
+							'"...SHIIITTTT!!!...." ... and pain start to come...'
+							nl
+							'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+							nl
+							'"Oh! My favourite slut is awake...and the first load is come out..."...'
+							wait 3000
+							gs 'cum_manage'
+							act '"...You..."': 
+								*clr & cla
+								pcs_stam = pcs_stam / 5
+								pcs_willpwr = pcs_willpwr / 5
+								gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+								gs 'pain', 8, 'vaginal', 'burn'
+								gs 'pain', 8, 'pubic', 'ache'
+								mosol += 40
+								spafinloc = 0
+								gs 'stat'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wifed.jpg"></center>'
+								'The woman move toward you..."Here let me free you..."...and free your hands...'
+								'"...Shit!...(Coff coff)....I hate YOUAAAAHHHHH!!!..."'
+								nl
+								'"...Do you want to faint a little more?"'
+								nl
+								'"...FUCK!!!!!..."'
+								nl
+								'"Hey...don''t worry i''m a pro... . I will never damage my favourite free slut..."'
+								wait 4000
+								gs 'cum_manage'
+								nl
+								'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+								act '"...shit!..."': 
+									*clr & cla
+									pcs_stam = pcs_stam / 5
+									pcs_willpwr = pcs_willpwr / 5
+									gs 'arousal', 'anal', 20, 'rough', 'rape'
+									gs 'pain', 8, 'asshole', 'burn'
+									gs 'pain', 8, 'hips', 'tear'
+									spafinloc = 3
+									gs 'stat'
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+									'"...Come on honey, you can do it. He almost done."'
+									nl
+									'"...." You are nearly to faint from fucking...'
+									nl
+									'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+									nl
+									'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+									wait 3000
+									act '"...f..."': 
+										*clr & cla
+										gs 'stat'
+										gs 'cum_manage'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal1.jpg"></center>'
+										'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+										nl
+										'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+										nl
+										'"....Ass ass... ."'
+										nl
+										'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+										nl
+										'"I''m so happy sweety! Let me help you adjust yourself."'
+										act '"...u..."': 
+											*clr & cla
+											gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+											'No need to use the strengh to speak... "..."'
+											nl
+											'"...Slut?...Slut?..."'
+											nl
+											'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+											nl
+											'"... "'
+											nl
+											'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+											act '"..."': 
+												*clr & cla
+												pcs_stam = 1
+												pcs_willpwr = 1
+												gs 'arousal', 'end'
+												gs 'stat'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+												'You take some time to recover.... . You can only adjust yourself and leave... . .. .'
+												act 'Go away': gt $loc, $loc_arg
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end	
+		end	
+	else
+		''
+	end
+end
+
+
+
+
+--- mod_iwhore_methbang ---------------------------------

+ 814 - 0
locations/mod_iwhore_methman.qsrc

@@ -0,0 +1,814 @@
+# mod_iwhore_methman
+if $ARGS[0] = 'loser':
+	*clr & cla
+	music_loop = 0 & close all
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+	'"Fasterfatserfaster....Slut!!!! Stop!!!!"  A man is running toward you....'
+	act '"What the f..."':
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		'"Slut!"'
+		'The man, clearly on high, stop right next to you; it could be an easy money pack....or a bad idea...'
+		act 'Run!':
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_methd.mp4"></video></center>'
+			'....'	
+			act '...':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 60, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meths.mp4"></video></center>'
+				'"Go away!!!!!!"'
+				wait 2000
+				'"Faster!!!Faster!!!Faster!!! Slut stop!!!"'
+				act 'Never!':
+					*clr & cla
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+					'"Shit!!! Shit!!! Shit!!!....NOOOOO....." It was not a good idea to challenge the man with your dress...'	
+					wait 2000
+					gt 'mod_iwhore_methman', 'meth_bitch_meth'
+				end
+			end
+		end
+		act '"Ok ok!"...Stop and listen the man.': gt 'mod_iwhore_methman', 'meth_bitch_meth'
+	end
+end	
+
+if $ARGS[0] = 'meth_bitch_meth':
+	*clr & cla
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+	'"What do you want man?"'
+	wait 2000
+	'"Fuck fuck...fuck fuck..."....'
+	nl
+	'You decide to give the man a chance... "...250 pussy, 350 ass. Money first."'
+	wait 2000
+	'"Pussypussypussypussy...."....'
+	nl
+	'"..."'
+	wait 1000
+	nl
+	'"Pussypussypussypussy...."....'
+	
+	act 'Show him your pussy.': 
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/pusspark3.mp4"></video></center>'
+		'You rise your skirt to give the man a clear view of your intimate...."Happy?...Now my money."'
+		wait 3000
+		'"No!!!! Fuckfuckfuckfuck!!!!!"'
+		wait 2000
+		act '"That''s it. Look for someone else"': 
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+			'You made to go away that you feel some hands strangling you from behind...."AauuuhGGGHHH...". You were caught on surprise, and soon you lose your consciousness...'
+			wait 3000
+			'It take you some times to realize what''s happening...'
+			wait 2000
+			act '...': 
+				*clr & cla
+				$orgasm_or = 'no'
+				pcs_stam = pcs_stam / 10
+				pcs_willpwr = pcs_willpwr / 10
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'pain', 8, 'vaginal', 'burn'
+				gs 'pain', 8, 'pubic', 'ache'
+				mosol += 40
+				spafinloc = 0
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+				'You found yoursel with the hands cuffed with ropes and the man is pounding your pussy, you don''t know how much time passed, but your pussy is on fire. He keeps trust in you as if wasn''t even human...."...Pussypussypussy....Fuckfuckfuck..."'
+				nl
+				'"Please stop! You are killing me! Please help somebody help! Please!!!!"'
+				nl
+				'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!"The man discarge a big load of cum into your womb...'
+				wait 6000
+				gs 'cum_manage'
+				nl
+				'"...Fuckfuckfuck...Pussypussypussy..."...but he doesn''t stop and continue fucking you furiously...'
+				nl
+				'"...It''s useless, he cannot hear you. Be quiet, it''s your first time with him; you will recover soon."...You hear a voice...near you...'
+				wait 4000
+				act '"Please help...you have to help me...he''s raping me...please..."': 
+					*clr & cla
+					pcs_stam = pcs_stam / 5
+					pcs_willpwr = pcs_willpwr / 5
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wifed.jpg"></center>'
+					'"....What? And how am i supposed to sleep tonight? No way, i have to work tomorrow... " The woman walk to you and free your hands.... "There we are; no one can move after he finish his first round...these are useless now. " The woman is right; you are exausted and cannot move... '
+					nl
+					'"...please i beg you...you are a woman, you should... AAAAAAHHHH.....help me...."'
+					nl
+					'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!"'
+					nl
+					'"...Listen slut, you won''t fool me. From what i know you are free meat, and it''s dinner time for him...so: stop complain and take your daily cock. I cannot afford him when is on meth, think about it like a clarity gift..."'
+					nl
+					'"Please help me...i''m not a free meat...i''m a woman....please...AAAAAAHHHH..." The man discarge another load of cum into your womb...'
+					wait 6000
+					gs 'cum_manage'
+					nl
+					'"ASSSSSSSSSSSS!!!!!!"'
+					wait 2000
+					act '"NOOOO!!!!"': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'anal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'asshole', 'burn'
+						gs 'pain', 8, 'hips', 'tear'
+						spafinloc = 3
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+						'"Stop complaining fresh meat..."'
+						nl
+						'"...Assassassass....Fuckfuckfuck...FFFFUUUU!!!!....Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a first load inside.... and the man doesn''t stop...'
+						nl
+						'"...Sure honey. But this is the last one for today...."'
+						wait 5000
+						gs 'cum_manage'
+						wait 2000
+						act '"...Please!!!!"': 
+							*clr & cla
+							pcs_stam = pcs_stam / 5
+							pcs_willpwr = pcs_willpwr / 5
+							gs 'arousal', 'anal', 20, 'rough', 'rape'
+							gs 'pain', 8, 'asshole', 'burn'
+							gs 'pain', 8, 'hips', 'tear'
+							spafinloc = 3
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man2d.jpg"></center>'
+							'Cock buried in your ass and without stop raping you, the man swallow a pill and smoke something the woman passed him...'
+							nl
+							'"MEETTTHHH!!!!! ....Assassassass!..."'
+							nl
+							'"...Is she tighter than me honey?" The couple dialogue as if all this is normal...'
+							nl
+							'"....Ass ass....Ass ass..."'
+							nl
+							'It''s not a proper dialogue and the man is more focused on destroy your butt... "...Please stop...please..." ...'
+							wait 6000
+							nl
+							'"ASSSSSSSSSSSS!!!!!!"'
+							nl
+							'"See...? He finished... ." ...You feel another load filling you... . You barely have the strenght to speak...'
+							wait 8000
+							act '"...B-b..."': 
+								*clr & cla
+								gs 'arousal', 'end'
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+								'"...astard..."'
+								nl
+								'"Slut. Do you think you can lead your life without problem? I''ve got mine and i find my solutions; as the matter of fact you are one: he will not ravish me tonight."'
+								nl
+								'"...y-you bitch...you will pay..."'
+								nl
+								'"No. You are the bitch; the free one...and you can do nothing: who dare to listen a whore? Uh?" The woman is right, you cannot go to the police... "Stay free, so i will not pay next time. See you slut... . Oh! almost forget...take this, i''m not sure you will be able to tollerate the pain...." '
+								wait 8000
+								act '"...."': 
+									*clr & cla
+									mosolmaz = 20
+									painkiller = 20
+									siga = 20
+									pcs_stam = 1
+									pcs_willpwr = 1
+									meth_man = 1
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+									'Before leaving the woman left a pack on the ground... .You can only adjust yourself and leave. The bastard unhumanly ravished you almost to the faint, you have to recover. At least your money are safe; you look at the pack the woman left. It has some painkiller, cigarettes and an ointment cream...they all are newly and not opened apparantly...they should be safe to use. It can be your last chance to live...'
+									act 'Go away': gt $loc, $loc_arg
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'running_meth':
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	if meth_man < 1:
+		*clr & cla
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+		'"Fasterfatserfaster....Slut!!!! Stop!!!!"  A man is running toward you....'
+		act '"What the f..."':
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			'"Slut!"'
+			'The man, clearly on high, stop right next to you; it could be an easy money pack....'
+			act 'Listen the man.': gt 'mod_iwhore_methbang', 'meth_man'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meth.mp4"></video></center>'
+				'...or a bad idea... '	
+				act 'Run':
+					*clr & cla
+					fat -= rand(0, 3)
+					pcs_sweat += 10
+					gs 'exercise', 'tier1', 60, 'run_exp'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/escape_meths.mp4"></video></center>'
+					'"Catch me if you can!"'
+					wait 2000
+					'"Faster!!!Faster!!!Faster!!! Slut stop!!!"'
+					if rand(0,1) = 0:	
+						act 'Never!':
+							*clr & cla
+							fat -= rand(0, 3)
+							pcs_sweat += 10
+							gs 'exercise', 'tier1', 60, 'run_exp'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+							'"Catch me if you can!"'	
+							act '...': 
+								*clr & cla
+								pcs_sweat += 5
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkrunend.jpg"></center>'
+								'"Wow...i could never expected he could be so fast...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+								act 'Go away': gt $loc, $loc_arg
+							end
+						end
+					else
+						act 'Never!':
+							*clr & cla
+							meth_fastest = 1
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+							'..."SHIT!"...'	
+							wait 2000
+							act '"Let me go!"': gt 'mod_iwhore_methbang', 'meth_man'
+						end
+					end
+				end
+				act '"Ok ok!"...Stop and listen the man.': gt 'mod_iwhore_methbang', 'meth_man'
+			end
+		end
+		
+	elseif meth_man = 1:
+		*clr & cla
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'"Slut!"'
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act 'Fuck you bastard!':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				if rand (0,1) = 1:
+					act '"Catch me if you can!"': 
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 30, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+						act '...': 
+							*clr & cla
+							pcs_sweat += 5
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkrunend.jpg"></center>'
+							'"Wow...i could never expected he could be so fast...(pant pant)... . Supermotherfuckingasshole! Kiss my smack!"'	
+							act 'Go away': gt $loc, $loc_arg
+						end
+					end
+				else
+					act '"Catch me if you can!"': 
+						*clr & cla
+						pcs_sweat += 5
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'	
+						act '...': gt 'mod_iwhore_methbang', 'meth_man'
+					end
+				end
+			end
+		else	
+			act 'Fuck you bastard!':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				act '"Catch me if you can!"': 
+					*clr & cla
+					pcs_sweat += 5
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+					'"Shit!!! Shit!!! Shit!!!....NOOOOO....." It was not a good idea to challenge the man with your dress...'	
+					act '...': gt 'mod_iwhore_methbang', 'meth_man'
+				end
+			end
+		end
+	elseif meth_man >= 2 and Krestovoz_pimp_protection = 1:
+		if meth_wife_rules >= 1:
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			wait 2000
+			'"Slut!"'
+			act '"Ok...ok..."': gt 'mod_iwhore_methbang', 'meth_man'
+			act '"Nope..."': gt $loc, $loc_arg
+		else
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+			wait 2000
+			'Slut!'
+			act '"I''m curious...let see what he has to say..."': 
+				*clr & cla
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+				'You move toward the man when you notice that the mad woman sit on the bench. "Hi slut."'
+				act '"What do you want?"': gt 'mod_iwhore_methbang', 'meth_man'
+			end	
+			act 'RUN!!!':
+				*clr & cla
+				gs 'stat'
+				if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused1.mp4"></video></center>'
+				elseif PCloStyle = 4:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused0.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused2.mp4"></video></center>'
+				end
+				if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+					'..."What the fuck?"...The man pass you and point the mid finger to you... . He "won" the run ... . Then as nothing has happened he continue to run...'
+				elseif PCloStyle = 4:
+					'..."AAAHHHH!!!"...You stumble on the ground...and you just fear in anticipation what the man is used to do.... . But he pass you, point the mid finger to you... and then as nothing has happened, he continue to run...'
+				else
+					'..."AAAHHHH!!!"...You stumble on the ground...and you just fear in anticipation what the man is used to do.... . But he pass you, point the mid finger to you... and then as nothing has happened, he continue to run...'
+				end
+				
+				'"..."'
+				act '...':
+					*clr & cla
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/confused.jpg"></center>'
+					wait 2000
+					'You are at the park exit just above Pavlovsk stucked in your thought about the man... '
+					act '"Am i safe? I need to see clear on that..."': 
+						*clr & cla
+						gs 'stat'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/wife.jpg"></center>'
+						'You walk back where the man was...there''s the woman sitting on a bench. "Hi slut."'
+						act '"What do you want?"': gt 'mod_iwhore_methbang', 'meth_man'
+					end
+					act '"No way!"': gt $loc, $loc_arg
+				end
+			end
+		end
+	elseif meth_man >= 2 and Krestovoz_pimp_protection ! 1:
+		*clr & cla
+		meth_fastest = rand(0,1)
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+		wait 2000
+		'"Slut!"'
+		if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+			act '"Shit!"':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				if rand (0,1) = 1:
+					act '"Catch me if you can!"': 
+						*clr & cla
+						fat -= rand(0, 3)
+						pcs_sweat += 10
+						gs 'exercise', 'tier1', 30, 'run_exp'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/never.mp4"></video></center>'
+						'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>> never give up!...(pant pant)... . Asshole!"'	
+						act '...': 
+							*clr & cla
+							pcs_sweat += 5
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/parkrunend.jpg"></center>'
+							'"Wow...i could never expected he could be so fast...(pant pant)... . Supermotherfuckingasshole! Kiss my smack!"'	
+							act 'Go away': gt $loc, $loc_arg
+						end
+					end
+				else
+					act '"Catch me if you can!"': 
+						*clr & cla
+						pcs_sweat += 5
+						gs 'stat'
+						if meth_man = 2:
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'						
+							'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'							
+							act '...': gt 'mod_iwhore_methbang', 'meth_man'
+						else
+							if meth_fastest = 1:
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog1.mp4"></video></center>'
+								'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'
+								if meth_man > 3:
+									act '...':
+										*clr & cla
+										gs 'stat'
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man1.mp4"></video></center>'
+										wait 2000
+										'"Slut!"'
+										wait 4000
+										act '"I''m pretty sure she''s somewhere...Show yourself!...."': 
+											*clr & cla
+											gs 'pain', 7, 'throat', 'hit'
+											gs 'stat'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/loving_wife.jpg"></center>'
+											'...".BitchhhhhGGGHHH!!!". You were not able to find the woman...but she was. "What a nice surprise slut! Just faint as usual so i can prepare you..."'
+											wait 2000
+											'...'
+											act '...': gt 'mod_iwhore_methbang', 'meth_man'
+										end
+									end
+								else
+									act '...': gt 'mod_iwhore_methbang', 'meth_man'
+								end
+							else
+								gs 'pain', 7, 'neck', 'hit'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_failjog0.mp4"></video></center>'
+								'"Shit! He''s faster than the last time...(pant pant)... . But <<$pcs_nickname>>....AAAAAHHHHH!!!!...."'							
+								act '...': gt 'mod_iwhore_methbang', 'meth_man'
+							end
+						end
+					end
+				end
+			end
+		else	
+			act '"Shit!"':
+				*clr & cla
+				fat -= rand(0, 3)
+				pcs_sweat += 10
+				gs 'exercise', 'tier1', 30, 'run_exp'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man0.mp4"></video></center>'
+				'"..."'	
+				act '"Catch me if you can!"': 
+					*clr & cla
+					pcs_sweat += 5
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_faildress.mp4"></video></center>'
+					'"Shit!!! Shit!!! Shit!!!....NOOOOO....." It was not a good idea to challenge the man with your dress...'	
+					act '...': gt 'mod_iwhore_methbang', 'meth_man'
+				end
+			end
+		end
+		if meth_man >= 4:
+			act 'Ok ok...just...this time ok?': gt 'mod_iwhore_methman', 'surrender'
+		end
+!		act 'Ok ok...just...this time ok?': gt 'mod_iwhore_park', 'meth_surrender'
+	else	
+		''
+	end
+end
+
+!metkapointthat
+
+if $ARGS[0] = 'surrender':
+	if $clothingworntype = 'exercise' and $shoeworntype = 'trainers':
+		*clr & cla
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client0.jpg"></center>'
+		'...You undress and go an all fours... '
+		if meth_man = 4:
+			'"...See? I surrender just don''t hit me..."'
+			nl
+			'"...Slut? Slut?..."'
+			wait 4000
+			'"...Ummmphff! It''s not funny...but it''s ok i want to trust you..." The woman comes from a corner in the darkness...'
+			nl
+			'"...I won''t move..."'
+			nl
+			'"...Slut? Slut?..."'
+		else
+			'"...Slut? Slut?...Fuck? Fuck?..."'
+			nl
+			'"...Yes Motya...slutslut fuckfuck...call your wife, i won''t move..."'
+			nl
+			'"...Hey...it''s not easy to prepare ambushes, you know?" The woman comes from the darkness...'
+		end
+		act '...': 
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/ready.jpg"></center>'
+			if meth_man = 4:
+				'"...Is that...really..."'
+				nl
+				'"...Slut? Slut?..."'
+				nl
+				'"...Do not think your hands will stay free...you have to wait the first round. You know the rules... ."'
+				nl
+				'"...Ok ok...I won''t move...at least i will spare some throat pain..."'
+			else
+				'You present your hands to the woman'
+				nl
+				'"...Are you sure you don''t want me to strangle you a little?...Someone likes it after few times... ."'
+				nl
+				'"NO!...if i will ever want something like that i know who should i call..."'
+				wait 4000
+				nl
+				'"Done! Get ready."'
+			end
+			act '...': 
+				*clr & cla
+				$orgasm_or = 'no'
+				pcs_stam = pcs_stam / 10
+				pcs_willpwr = pcs_willpwr / 10
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'pain', 8, 'vaginal', 'burn'
+				gs 'pain', 8, 'pubic', 'ache'
+				mosol += 40
+				spafinloc = 0
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv0.mp4"></video></center>'
+				'As the woman give the ok, the man start to pound you relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+				nl
+				'"Think about it...if you faint you should not feel the pain...." The heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+				nl
+				'"...I said noooo...SHIIITTTT!!!...." ... and more pain start to come...'
+				nl
+				'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+				nl
+				'"Oh! the first load is come out..."...'
+				wait 3000
+				gs 'cum_manage'
+				act '"...."': 
+					*clr & cla
+					pcs_stam = pcs_stam / 5
+					pcs_willpwr = pcs_willpwr / 5
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man'+rand(2,6)+'.jpg"></center>'
+					'The woman move toward you..."Here let me free you..."...and free your hands...'
+					if meth_man = 4:
+						'"...Shit!...Did he really have to pull my haiiiIIIRRHHHHH...."'
+						nl
+						'"...I think it help him to keep his insane peace..."'
+						nl
+						'"...Stiiiiiillllll! Fuck!..."'
+						nl
+						'"Hey...don''t worry ...we are married from ten years and i''m not bald..."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+					else
+						'"...ummmpphh!....AAAAHHHHHH!!!!"'
+						nl
+						'"Hey, you are starting to tollerate him well..."'
+						nl
+						'"...Fuck...youUUUUUUU!!!!!"'
+						nl
+						'"...I appreciate you know?...You spare me some time...and time is money...."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+					end
+					act '"...shit!..."': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'anal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'asshole', 'burn'
+						gs 'pain', 8, 'hips', 'tear'
+						spafinloc = 3
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka0.mp4"></video></center>'
+						'"...Come on honey, you can do it. He almost done."'
+						nl
+						'"...." You are nearly to faint...'
+						nl
+						'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+						nl
+						'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+						wait 3000
+						act '"...f..."': 
+							*clr & cla
+							gs 'cum_manage'
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_dressanal0.jpg"></center>'
+							'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+							nl
+							'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+							nl
+							'"....Ass ass... ."'
+							nl
+							'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+							nl
+							'"I''m so happy sweety! Let me help you adjust yourself."'
+							act '"...u..."': 
+								*clr & cla
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+								'No need to use the strengh to speak... "..."'
+								nl
+								'"...Slut?...Slut?..."'
+								nl
+								'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+								nl
+								'"... "'
+								nl
+								'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+								act '"..."': 
+									*clr & cla
+									meth_man = 5
+									pcs_stam = 1
+									pcs_willpwr = 1
+									gs 'arousal', 'end'
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man9.jpg"></center>'
+									'You take some time to recover.... . You can only adjust yourself and leave... . .. .'
+									act 'Go away': gt $loc, $loc_arg
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	else
+		*clr & cla
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_client1.jpg"></center>'
+		'...You undress and go an all fours... '
+		if meth_man = 4:
+			'"...See? I surrender just don''t hit me..."'
+			nl
+			'"...Slut? Slut?..."'
+			wait 4000
+			'"...Ummmphff! It''s not funny...but it''s ok i want to trust you..." The woman comes from a corner in the darkness...'
+			nl
+			'"...I won''t move..."'
+			nl
+			'"...Slut? Slut?..."'
+		else
+			'"...Slut? Slut?...Fuck? Fuck?..."'
+			nl
+			'"...Yes Motya...slutslut fuckfuck...call your wife, i won''t move..."'
+			nl
+			'"...Hey...it''s not easy to prepare ambushes, you know?" The woman comes from the darkness...'
+		end
+		act '...': 
+			*clr & cla
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/ready.jpg"></center>'
+			if meth_man = 4:
+				'"...Is that...really..."'
+				nl
+				'"...Slut? Slut?..."'
+				nl
+				'"...Do not think your hands will stay free...you have to wait the first round. You know the rules... ."'
+				nl
+				'"...Ok ok...I won''t move...at least i will spare some throat pain..."'
+			else
+				'You present your hands to the woman'
+				nl
+				'"...Are you sure you don''t want me to strangle you a little?...Someone likes it after few times... ."'
+				nl
+				'"NO!...if i will ever want something like that i know who should i call..."'
+				wait 4000
+				nl
+				'"Done! Get ready."'
+			end
+			act '...': 
+				*clr & cla
+				$orgasm_or = 'no'
+				pcs_stam = pcs_stam / 10
+				pcs_willpwr = pcs_willpwr / 10
+				gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+				gs 'pain', 8, 'vaginal', 'burn'
+				gs 'pain', 8, 'pubic', 'ache'
+				mosol += 40
+				spafinloc = 0
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fuckv1.mp4"></video></center>'
+				'As the woman give the ok, the man start to pound you relentlessly...there''s no way a woman could find this pleasurable..."...Pussypussypussy....Fuckfuckfuck..."'
+				nl
+				'"Think about it...if you faint you should not feel the pain...." The heat is starting to becoming pain... the woman continue speaking, telling nonsense... . '
+				nl
+				'"...I said noooo...SHIIITTTT!!!...." ... and more pain start to come...'
+				nl
+				'"...Pussypussypussy....Fuckfuckfuck...FFFFUUUU!!!!" ...and so the man disharge a big load of cum into your womb...'
+				nl
+				'"Oh! the first load is come out..."...'
+				wait 3000
+				gs 'cum_manage'
+				act '"...."': 
+					*clr & cla
+					pcs_stam = pcs_stam / 5
+					pcs_willpwr = pcs_willpwr / 5
+					gs 'arousal', 'vaginal', 20, 'rough', 'rape'
+					gs 'pain', 8, 'vaginal', 'burn'
+					gs 'pain', 8, 'pubic', 'ache'
+					mosol += 40
+					spafinloc = 0
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man_wifed.jpg"></center>'
+					'The woman move toward you..."Here let me free you..."...and free your hands...'
+					if meth_man = 4:
+						'"...Shit!...Did he really have to pull my haiiiIIIRRHHHHH...."'
+						nl
+						'"...I think it help him to keep his insane peace..."'
+						nl
+						'"...Stiiiiiillllll! Fuck!..."'
+						nl
+						'"Hey...don''t worry ...we are married from ten years and i''m not bald..."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+					else
+						'"...ummmpphh!....AAAAHHHHHH!!!!"'
+						nl
+						'"Hey, you are starting to tollerate him well..."'
+						nl
+						'"...Fuck...youUUUUUUU!!!!!"'
+						nl
+						'"...I appreciate you know?...You spare me some time...and time is money...."'
+						wait 4000
+						gs 'cum_manage'
+						nl
+						'The man discarge another load of cum into your womb..."ASS!!!! Fuckfuckfuck!!!!"'
+					end
+					act '"...shit!..."': 
+						*clr & cla
+						pcs_stam = pcs_stam / 5
+						pcs_willpwr = pcs_willpwr / 5
+						gs 'arousal', 'anal', 20, 'rough', 'rape'
+						gs 'pain', 8, 'asshole', 'burn'
+						gs 'pain', 8, 'hips', 'tear'
+						spafinloc = 3
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_fucka1.mp4"></video></center>'
+						'"...Come on honey, you can do it. He almost done."'
+						nl
+						'"...." You are nearly to faint...'
+						nl
+						'"...Assassassass....Fuckfuckfuck.......Methmethmeth!!!! Givemegivemegiveme!!!!"...Tearing apart your rectum receive a load inside....'
+						nl
+						'"...Nope honey, this is the last one for today...we don''t want to lose this slut don''t we? I''ve got the feeling that she will be free fo no longer...and we''ll have to pay."'
+						wait 3000
+						act '"...f..."': 
+							*clr & cla
+							gs 'cum_manage'
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_man2d.jpg"></center>'
+							'"....FFFFUUUU!!!!....Aaaaaaasss!..."'
+							nl
+							'Cock buried in your ass the man load a blast of cum inside you, just before you pass out... .'
+							nl
+							'"....Ass ass... ."'
+							nl
+							'The man stop the insane fuck. Broken, you cannot rise your self, you cannot even move out from his cock that is still impaling you...'
+							nl
+							'"I''m so happy sweety! Let me help you adjust yourself."'
+							act '"...u..."': 
+								*clr & cla
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/rape/post_meth.mp4"></video></center>'
+								'No need to use the strengh to speak... "..."'
+								nl
+								'"...Slut?...Slut?..."'
+								nl
+								'"It''s ok Motya... . She will be good...she just need her time...and some protection ...maybe... ."'
+								nl
+								'"... "'
+								nl
+								'"...I wonder if you''ll ever be able to have an orgasm with the first two round... . "'
+								act '"..."': 
+									*clr & cla
+									meth_man = 5
+									pcs_stam = 1
+									pcs_willpwr = 1
+									gs 'arousal', 'end'
+									gs 'stat'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/rape/stories/meth_mandress9.jpg"></center>'
+									'You take some time to recover.... . You can only adjust yourself and leave... . .. .'
+									act 'Go away': gt $loc, $loc_arg
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end	
+
+
+--- mod_iwhore_methman ---------------------------------

+ 886 - 0
locations/mod_iwhore_nhighway.qsrc

@@ -0,0 +1,886 @@
+# mod_iwhore_nhighway
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!NIGHT!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'nbj':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me again slut"'
+	else
+		'You agree to blow him. You enter the car and lead him to a secluded area. "Show me your tits slut"' 
+	end
+	
+	act 'Show your tits':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_oral' 
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/4showct'+rand(0,11)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'			
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/bj'+rand(0,18)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway', 'nbjend'
+		end
+	end
+end
+
+if $ARGS[0] = 'nbjend':
+	cla
+	*clr
+	guy += 1
+	stat['bj'] += 1
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	pav_sex += rand(0,1)
+	if new_whore < 20: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown'	
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+	if nnak_car = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vfacial0.mp4"></video></center>'
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'arousal', 'end'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbj'+rand(0,1)+'.mp4"></video></center>'
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbj'+rand(0,1)+'.mp4"></video></center>'
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vfacial0.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'nvag':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "Show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/3showcp'+rand(0,14)+'.jpg"></center>'
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/vag/vag'+rand(0,16)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway', 'nvagend'	
+		end
+	end
+end
+
+if $ARGS[0] = 'nvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 20: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/vag/vvag'+rand(0,20)+'.mp4"></video></center>'
+	if nnak_car = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end	
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 1
+			spafinloc = 14
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvagout0.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvag'+rand(0,4)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 1
+				spafinloc = 14
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvagout0.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vvag'+rand(0,4)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'nanal':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "Show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal' 
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/1showca'+rand(0,10)+'.jpg"></center>'
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/anal/anal'+rand(0,17)+'.jpg"></center>'
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway' , 'nanalend'
+		end
+	end
+end
+
+if $ARGS[0] = 'nanalend':
+	cla
+	*clr
+	guy += 1
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 20: new_whore += 1
+	
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/anal/vanal'+rand(0,8)+'.mp4"></video></center>'
+	if nnak_car = 1:
+		'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbutt0.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vanal0.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vbutt0.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/car/vanal0.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'propose':
+	cla
+	*clr
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/carpropose'+rand(0,1)+'.jpg"></center>'
+	'The man stay in his car without speaking, you approach the car in a sensual manner. "Sweety, i''ve got all you need; just relax and enjoy me."'
+	minut += 1
+	propose = 1
+	gfy_rand = rand(0,10)
+	act 'Show tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcartit'+rand(0,2)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcartit0.mp4"></video></center>'
+		end
+		'"I know what you like..."'
+		act 'Deal': 			
+			if gfy_rand < 8: 
+				if pcs_inhib >= 30 and new_whore >= 20:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_nhighway', 'nbj' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_nhighway', 'nhbj' 
+					end	
+				else
+					gt 'mod_iwhore_nhighway', 'nbj'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end  
+		
+	end
+	act 'Show pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcarpuss'+rand(0,3)+'.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzcarpuss0.mp4"></video></center>'
+		end
+		'"I know what you like..."'
+		act 'Deal': 
+			if gfy_rand < 8: 
+				if pcs_inhib >= 30 and new_whore >= 20:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_nhighway', 'nvag' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_nhighway', 'nhvag' 
+					end	
+				else
+					gt 'mod_iwhore_nhighway', 'nvag'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end
+	end
+	act 'Show ass':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_rand < 8:
+			if analplugin = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/zzplug'+rand(0,1)+'.jpg"></center>'
+				'"I feel empty...you know?"'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzasscar'+rand(0,3)+'.mp4"></video></center>'
+				'"I know what you like..."'
+			end		
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzasscar'+rand(0,1)+'.mp4"></video></center>'
+			'"I know what you like..."'
+		end
+
+		
+		act 'Deal': 
+			if gfy_rand < 8: 
+				if pcs_inhib >= 30 and new_whore >= 20:
+					if gfy_rand < 4:
+						gt 'mod_iwhore_nhighway', 'nanal' 
+					elseif gfy_rand >=4:
+						gt 'mod_iwhore_nhighway', 'nhanal' 
+					end	
+				else
+					gt 'mod_iwhore_nhighway', 'nanal'
+				end
+			else
+				gt 'mod_iwhore_highway', 'gfy'
+			end
+		end 
+		
+	end
+	
+end
+
+if $ARGS[0] = 'nhbj':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to blow him. You enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"'
+	else
+		'You agree to blow him. You enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your tits slut"' 
+	end
+	
+	act 'Show your tits':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetwork/4showst'+rand(0,13)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/bj'+rand(0,15)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway', 'nhbjend'
+		end
+	end
+end
+
+if $ARGS[0] = 'nhbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['bj'] += 1
+	if new_whore < 40: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown' 
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/bj/vbj'+rand(0,13)+'.mp4"></video></center>'
+	if nnak_street = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/facial'+rand(0,4)+'.mp4"></video></center>'
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/bj'+rand(0,3)+'.mp4"></video></center>'
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/bj'+rand(0,3)+'.mp4"></video></center>'
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/facial'+rand(0,4)+'.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'nhvag':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetwork/3showsp'+rand(0,12)+'.jpg"></center>'
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vag'+rand(0,21)+'.jpg"></center>'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway', 'nhvagend'	
+		end
+	end
+end
+
+if $ARGS[0] = 'nhvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 40: new_whore += 1
+	gs 'arousal', 'vaginal', 15, 'prostitution', 'unknown' 
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/vag/vvag'+rand(0,13)+'.mp4"></video></center>'
+	if nnak_street = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,5)+'.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,5)+'.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'nhanal':
+	cla
+	*clr
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	if propose = 1:
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you enter the car and lead him to a secluded area. "I want fresh air, get out from the car and show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/streetwork/1showsa'+rand(0,9)+'.jpg"></center>'
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr		
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/anal'+rand(0,16)+'.jpg"></center>'
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_nhighway' , 'nhanalend'
+		end
+	end
+end
+
+if $ARGS[0] = 'nhanalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 40: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/street/anal/vanal'+rand(0,7)+'.mp4"></video></center>'
+	if nnak_street = 1:
+		'He decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/butt'+rand(0,3)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'   
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/anal'+rand(0,1)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.':   gt 'mod_iwhore_highway', 'start'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/butt'+rand(0,3)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start'  
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/anal'+rand(0,1)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_highway', 'start' 
+			end
+		end
+	end			
+end	
+
+if $ARGS[0] = 'nnakcar':
+	cla
+	*clr
+	nnak_car = 1
+	nnakcar_way = rand(0,10)
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	'"Let me see your body slut, i have to decide. And do not dance i''m not here for a show."' 
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/car/2showcb'+rand(0,12)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision."'		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/bj'+rand(0,18)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end	
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			if nnakcar_way = 10:
+				act 'Work the shaft':
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral' 
+					gt 'mod_iwhore_nhighway', 'nbjend'
+				end
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown' 
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if nnakcar_way =< 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_vag' 
+							gt 'mod_iwhore_nhighway', 'nvagend'
+						elseif nnakcar_way =< 9 and nnakcar_way > 4:
+							money += 30
+							gs 'mod_iwhore_dincollect', 'whore_check_anal' 
+							gt 'mod_iwhore_nhighway', 'nanalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'nakstreet':
+	cla
+	*clr
+	nnak_street = 1
+	nnakstreet_way = rand(0,10)
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zwork1.mp4"></video></center>'
+	'"Get out from the car and strip slut, i have to decide. And do not dance i''m not here for a show."'
+	
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/mainstreet/2showmb'+rand(0,15)+'.jpg"></center>'
+		'"Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes but start to cheer me up, i''ve made my decision." '
+		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/bj'+rand(0,18)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			end
+			if nnakstreet_way = 10:
+				act 'Work the shaft': gt 'mod_iwhore_nhighway', 'nhbjend'
+			else
+				act 'Work the shaft': 
+					cla
+					*clr
+					stat['bj'] += 1
+					gs 'arousal', 'bj', 5, 'prostitution', 'unknown' 
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+					'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "Get ready bitch."' 
+					act '...let him...':
+						if nnakstreet_way =< 4:
+							gt 'mod_iwhore_nhighway', 'nhvagend'
+						elseif nnakstreet_way =< 9 and nnakstreet_way > 4:
+							gt 'mod_iwhore_nhighway', 'nhanalend'
+						else
+							''
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_iwhore_nhighway ---------------------------------

+ 38 - 0
locations/mod_iwhore_notes.qsrc

@@ -0,0 +1,38 @@
+# mod_iwhore_notes
+
+!to check mainstreetw nakstreet-------car are done, miss the mainstreet 
+!strip and the acting part refer to night only...
+
+!workgh
+!workkru
+!workgroup
+!workhome
+!workbath---main/client
+!workstory
+!worksick
+!workcum
+
+!?????????????????????????????????????????????????????????
+!???????????????????ANDROID PROBLEM???????????????????????
+!?????????????????????????????????????????????????????????
+!Error
+!Location: mod_setting
+!Action: -1
+!Line: 96
+!Error number: 104
+!Description: File Not Found
+!?????????????????????????????????????????????????????????
+!???????????????????ANDROID PROBLEM???????????????????????
+!?????????????????????????????????????????????????????????
+!....ask iphone users cooperation
+!....experiments: delete the uninstall act from main mod_setting
+!										---see the output
+!....experiments: delete the install act from main mod_setting
+!										---see the output
+!										---look for other ways to install the mod
+!?????????????????????????????????????????????????????????
+!???????????????????ANDROID PROBLEM???????????????????????
+!?????????????????????????????????????????????????????????
+
+
+--- mod_iwhore_notes ---------------------------------

+ 901 - 0
locations/mod_iwhore_park.qsrc

@@ -0,0 +1,901 @@
+# mod_iwhore_park
+
+if $ARGS[0] = 'hooked':
+	
+	*clr & cla
+	minut += 3
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	gs 'stat'
+	
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/notgoodidea.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+	end
+
+	'"Looking for something, big boy?"'
+	if new_whore < 50:
+		if new_whore = 20 or new_whore = 30 or new_whore = 40 or new_whore = 44 or new_whore = 48: 
+			park_temp = 3 
+			new_whore += 1
+		else
+			if hour > 6 and hour < 18:
+				park_temp = rand(11,50)
+			else
+				park_temp = rand(11,60)		
+			end
+		end
+	else
+		if Krestovoz_pimp_protection ! 1:
+			if hour > 6 and hour < 18:
+				park_temp = rand(0,50)
+			else
+				park_temp = rand(0,60)		
+			end
+		else
+			if hour > 6 and hour < 18:
+				park_temp = rand(11,50)
+			else
+				park_temp = rand(11,60)		
+			end
+		end
+	end
+	act 'Let him decide':
+		if park_temp =< 10: gt 'mod_iwhore_hardlife', 'park_rape'
+		if park_temp > 10 and park_temp =< 20: gt 'mod_iwhore_parkw', 'parkbj'
+		if park_temp > 20 and park_temp =< 30: gt 'mod_iwhore_parkw', 'parkvag'
+		if park_temp > 30 and park_temp =< 40: gt 'mod_iwhore_parkw', 'parkanal'		
+		if park_temp > 40 and park_temp =< 50: gt 'mod_iwhore_park', 'parkpropose' 
+		if park_temp > 50 and park_temp =< 60: gt 'mod_iwhore_parkw', 'parknak' 
+	end
+	act 'I''m off': minut += 5 & gt $loc, $loc_arg	
+	
+end
+
+if $ARGS[0] = 'parkhooker':
+	cla
+	*clr
+	protect = 0
+	propose = 0
+	park_nak = 0
+!	killvar 'placec_ender'
+	killvar 'park_ender'
+	killvar 'park_temp'
+	killvar 'parknak_way'	
+	killvar 'gfy_park'
+	killvar 'gfy_rand'
+	minut += 2
+	gs 'stat'
+	hook_park = rand(0,40)
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/workp'+rand(0,2)+'.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/ppark'+rand(0,2)+'.jpg"></center>'
+	end
+	'It shouldn''t be difficult for you to catch attentions but it''s easier to see the light in the darkness...'
+	
+	act 'Stroll around':
+		cla
+		*clr
+		minut += 5 
+		gs 'stat'
+		if PCloStyle = 4:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zstrollwhore.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zmswork1.mp4"></video></center>'
+			end
+		else
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zstroll2.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zmswork0.mp4"></video></center>'
+			end
+		end	
+		if hour > 6 and hour < 18:
+			if hook_park =< 8:
+				act 'Turn': gt 'mod_iwhore_park', 'hooked'
+			else
+				act 'Catch some attention': minut += 2 & gt 'mod_iwhore_park', 'parkhooker'
+			end
+		else
+			if hook_park =< 12:
+				act 'Turn': gt 'mod_iwhore_park', 'hooked'
+			else
+				act 'Catch some attention': minut += 2 & gt 'mod_iwhore_park', 'parkhooker'
+			end
+		end
+	end
+
+	act 'Go away': minut += 5 & gt $loc, $loc_arg	
+end
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'parkpropose':
+	cla
+	*clr
+	minut += 2
+	gs 'stat'
+	if PCloStyle = 4:
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/prop0.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/prop0.jpg"></center>'
+		end
+	else
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/prop1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/proppark0.jpg"></center>'
+		end
+	end	
+	'The man stay in few meter from you without speaking; you approach him in a sensual manner. "I don''t bite sweety...you know? Come here, i''ve got all you need; just relax and enjoy me."'
+	propose = 1
+	gfy_park = rand(0,10)
+	
+	act 'Show tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_park < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/titpark'+rand(0,3)+'.mp4"></video></center>'		
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/titpark'+rand(0,3)+'.mp4"></video></center>'
+			end
+			if pcs_inhib >= 35 and gfy_park = 7:
+				act 'Deal': gt 'mod_iwhore_parkw', 'parknak' 
+			else
+				act 'Deal': gt 'mod_iwhore_parkw', 'parkbj'
+			end 
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/titpark0.mp4"></video></center>'
+			act 'Deal': 
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_park', 'dparkgfy'				
+				else
+					gt 'mod_iwhore_park', 'nparkgfy'
+				end
+			end
+		end
+		'"I know what you like..."' 		
+	end
+	
+	act 'Show pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_park < 8:
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/pusspark'+rand(0,4)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/pusspark'+rand(0,2)+'.mp4"></video></center>'
+			end
+			if pcs_inhib >= 35 and gfy_park = 7:
+				act 'Deal': gt 'mod_iwhore_parkw', 'parknak' 
+			else
+				act 'Deal': gt 'mod_iwhore_parkw', 'parkvag'
+			end 
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/pusspark'+rand(0,4)+'.mp4"></video></center>'
+			act 'Deal': 
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_park', 'dparkgfy'				
+				else
+					gt 'mod_iwhore_park', 'nparkgfy'
+				end
+			end
+		end
+		'"I know what you like..."' 		
+	end
+	
+	act 'Show ass':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if gfy_park < 8:
+			if analplugin = 1:
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/zzparkplug.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/zzparkplug0.mp4"></video></center>'
+				end
+				'"I feel empty...you know?"'
+			else
+				if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/asspark'+rand(0,5)+'.mp4"></video></center>'
+				else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/propose/asspark'+rand(0,3)+'.mp4"></video></center>'
+				end
+				'"I know what you like..."'
+			end
+			if pcs_inhib >= 35 and gfy_park = 7:
+				act 'Deal': gt 'mod_iwhore_parkw', 'parknak' 
+			else
+				act 'Deal': gt 'mod_iwhore_parkw', 'parkanal'
+			end 
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/propose/asspark'+rand(2,5)+'.mp4"></video></center>'
+			'"I know what you like..."'
+			act 'Deal': 
+				if hour > 6 and hour < 18:
+					gt 'mod_iwhore_park', 'dparkgfy'				
+				else
+					gt 'mod_iwhore_park', 'nparkgfy'
+				end
+			end			
+		end
+	end		
+end
+
+if $ARGS[0] = 'dparkgfy':
+	minut += 5 
+	gfy_rand = rand(0,10)
+	if gfy_rand = 0:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"What a news. Who on the earth work for free?"<br>"Ok honey what can i do for you? Do you know the prices?"'
+		wait 3000
+		'<br>"Mmmmh let me think...Fuck you!"'
+
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"Uh?"<br>"Fuck you!"...'
+
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 3000
+		'<br>"I''ve hear that you are the best fuck in town"<br>"Why don''t you try by yourself?"'
+		wait 3000
+		'<br>"Me? After the whole town has fucked you at least twice?...Fuck you!"'
+		
+	elseif gfy_rand = 3:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that... "'
+		wait 2000
+		'"The police! The police! Run bitch run!"...<br>"Yes yes whatever...uh?"'
+		
+	
+	elseif gfy_rand = 4:
+		'"Hey bitch...i want to fuck your bum!"<br>"I won''t work without money..."<br>"400 right? I hope you are good on that...give me 100, i''ve got a 500 paper..."'
+		wait 3000
+		'"..."<br>"WHORE!....Hahahahaha..."... '	
+
+	elseif gfy_rand = 5:
+		'"I think you lost something"<br>"Yes my time... . I won''t work without money, if you are going to ask."<br>"No no....something has fallen from your purse"'
+		wait 3000
+		'<br>"Uh???"'
+
+	elseif gfy_rand = 6:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"How much do you want?"<br>"200 mouth, 350 pussy, 400 ass honey; 50 bonus without condom and other 20 if you want to fill me daddy."'
+		wait 5000
+		'<br>"What? I can buy a yatch with those money"<br>"Go away..."'
+
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...let''s put that way..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."'	
+		wait 2000
+		'<br>"...Are you sure?..."... .<br>"Uh? Go away..."'
+
+	elseif gfy_rand = 8:
+		'"Psssh pshhh...!"<br>"I won''t work without money....."<br>"350 for a fuck...is this enough?"<br>"Sure honey follow me...uh?"'
+		wait 3000
+		'<br>"YOU! GO HOME IMMEDIATELY! ....AND YOU! I''LL TEACH YOU TO NOT STEAL SOMEONE ELSE HUSBAND!"'
+
+	elseif gfy_rand = 9:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m lost; have you seen a dog passing nearby? It''s quite the bastard..."<br>"Uh? No dogs...and no client. Go away i''m busy..."'
+		wait 5000
+		'<br>..."...".'	
+
+	elseif gfy_rand = 10:
+		'"Tsk tsk... ."<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"Tsk tsk... . "...<br>"Uh? Go away..."'
+		wait 3000
+		'<br>"..."... . The man scold his head and went away. '	
+	else
+		''	
+	end
+	
+	wait 1500
+	if gfy_rand =< 3:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfypark3.mp4"></video></center>'
+	elseif gfy_rand = 4 or gfy_rand = 5:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfypark2.mp4"></video></center>'
+	elseif gfy_rand = 6 or gfy_rand = 7:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfypark'+rand(0,1)+'.mp4"></video></center>'
+	elseif gfy_rand = 8:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfypark4.mp4"></video></center>'
+	elseif gfy_rand = 9:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfypark5.mp4"></video></center>'
+	elseif gfy_rand = 10:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/gfyparkno.mp4"></video></center>'
+	else		
+		''
+	end
+
+	
+	if gfy_rand = 4 or gfy_rand = 5:
+		*nl
+		'Who was probably a friend of the man, comes out from a blind corner and pull down your panties while you were looking in your purse.'
+	elseif gfy_rand = 6:		
+		spafinloc = 7
+		spafinloc = 8
+		spafinloc = 16
+		gs 'cum_manage'
+		*nl
+		'...The man left you alone. "Don''t he have something better to do? ....Uh?...."'
+	elseif gfy_rand = 7:
+		spafinloc = 11
+		spafinloc = 7
+		spafinloc = 8
+		spafinloc = 16
+		gs 'cum_manage'
+		*nl
+		'...The man left you alone. "Don''t he have something better to do? ....Uh?...."'
+	elseif gfy_rand = 8:
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+	elseif gfy_rand = 9:
+		wait 2000
+		*nl
+		'..."She didn''t see uh? Fuck you bitch!"...'
+	elseif gfy_rand = 10:
+		*nl
+		'...'
+	else		
+		*nl
+		'The man was here for some laugh; who was probably his friend comes out from a corner and pull down your skirt; you fall on the ground unable to chase him.'
+	end
+
+	if gfy_rand = 8:
+		wait 2000
+		act 'Recover': 
+			minut += 180 
+			gt 'mod_iwhore_park', 'parkhooker'
+		end
+	else
+		act 'Fuck you!': gt 'mod_iwhore_park', 'parkhooker'
+	end
+end
+
+if $ARGS[0] = 'nparkgfy':
+	minut += 5 
+	gfy_rand = rand(0,10)
+	if gfy_rand = 0:
+		'"My love...!"<br>"Uh? Do i know you?"<br>"No but soon we will make love and you will marry me! "<br>"Ok honey what can i do for you? Do you know the prices?"'
+		wait 3000
+		'<br>"What? Are you a bitch?"<br>"No honey, i''m your uncle.... . Go away...."<br>"....Fuck you bitch!"'
+
+	elseif gfy_rand = 1:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 2000
+		'<br>"Uh?"<br>"Fuck you!"...'
+
+	elseif gfy_rand = 2:
+		'"Hey...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that..."'
+		wait 3000
+		'<br>"I''ve hear that you are the worst fuck in town"<br>"Who told you that? That''s not true, i''m the best in what i do... . Why don''t you try by yourself?"'
+		wait 3000
+		'<br>"Me? After the whole town has fucked you at least twice?...Fuck you!"'
+		
+	elseif gfy_rand = 3:
+		'"Hey...you are famous!"<br>"Uh?"<br>"Yes yes...i saw you in...Brothodnik...Polivodnik.... "<br>"Oh you mean Provodnik... . Thank you honey... . Do you really think i look like Aleksandra Bortich?"'
+		wait 2000
+		'<br>"Of course not...you are a slut! ...Fuck you bitch!"'
+		
+	
+	elseif gfy_rand = 4:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that... "'
+		wait 2000
+		'"The police! The police! Run bitch run!"...<br>"Yes yes whatever...uh?"'	
+
+	elseif gfy_rand = 5:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"What about a cut on the prize?... "<br>"No."<br>"Come on...i''m poor...don''t you have an heart?"'
+		wait 3000
+		'<br>"I said no...go away."<br>"....Fuck you bitch!"'
+
+	elseif gfy_rand = 6:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"How much do you want?"<br>"200 mouth, 350 pussy, 400 ass honey; 50 bonus without condom and other 20 if you want to fill me daddy."'
+		wait 5000
+		'<br>"What? I can build a palace with those money"<br>"Go away..."'
+
+	elseif gfy_rand = 7:
+		'"Hey bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"No no, it''s not that...let''s put that way..."'
+		wait 2000
+		'"...is that cum on your face?"<br>"No sweety, i''m clean..."'	
+		wait 2000
+		'<br>"...Are you sure?..."... .<br>"Uh? Go away..."'
+
+	elseif gfy_rand = 8:
+		'"Come here bitch...!"<br>"I won''t work without money, if you are going to ask."<br>"350 for a fuck...is this enough?"'
+		wait 3000
+		'<br>"...Come with me hone..."'
+
+	elseif gfy_rand = 9:
+		'"Miss..."<br>"I won''t work without money, if you are going to ask."'
+		wait 2000
+		'"I''m sorry milady, i''m lost; have you seen a dog passing nearby? It''s quite the bastard..."<br>"Uh? No dogs...and no client. Go away i''m busy..."'
+		wait 5000
+		'<br>..."...".'	
+
+	elseif gfy_rand = 10:
+		'"Tsk tsk... ."<br>"I won''t work without money, if you are going to ask."'
+		wait 3000
+		'"Tsk tsk... . "...<br>"Uh? Go away..."'
+		wait 3000
+		'<br>"..."... . The man scold his head and went away. '	
+	else
+		''	
+	end
+	
+	wait 1500
+	if gfy_rand =< 2:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark2.mp4"></video></center>'
+	elseif gfy_rand = 3 or gfy_rand = 4:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark3.mp4"></video></center>'
+	elseif gfy_rand = 5 or gfy_rand = 6:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark'+rand(0,1)+'.mp4"></video></center>'
+	elseif gfy_rand = 7:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark6.mp4"></video></center>'
+	elseif gfy_rand = 8:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark4.mp4"></video></center>'
+	elseif gfy_rand = 9:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfypark5.mp4"></video></center>'
+	elseif gfy_rand = 10:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/gfyparkno.mp4"></video></center>'
+	else		
+		''
+	end
+
+	
+	if gfy_rand =< 2:
+		*nl
+		'Who was probably a friend of the man, comes out from a blind corner and pull down your panties while you were walking away; the man run away before you were able to manage your clothes being normally dressed...'
+	elseif gfy_rand = 3 or gfy_rand = 4:
+		*nl
+		'Who was probably a friend of the man, comes out from a blind corner and pull down your shirt ..."Asshole! Don''t you have something better to do?"...'
+	elseif gfy_rand = 5 or gfy_rand = 6:
+		spafinloc = 7
+		spafinloc = 8
+		spafinloc = 16
+		gs 'cum_manage'
+		*nl
+		'...The man left you alone. "Don''t he have something better to do? ...."'
+	elseif gfy_rand = 7:
+		spafinloc = 11
+		spafinloc = 7
+		spafinloc = 8
+		spafinloc = 16
+		gs 'cum_manage'
+		*nl
+		'...The man left you alone. "Don''t he have something better to do? ....Uh?...."'
+	elseif gfy_rand = 8:
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+		wait 2000
+		*nl
+		'.......................................................................'
+	elseif gfy_rand = 9:
+		wait 2000
+		*nl
+		'..."She didn''t see uh? Fuck you bitch!"...'
+	elseif gfy_rand = 10:
+		*nl
+		'...'
+	else		
+		*nl
+		'The man was here for some laugh; who was probably his friend comes out from a corner and pull down your skirt; you fall on the ground unable to chase him.'
+	end
+
+	if gfy_rand = 8:
+		wait 2000
+		act 'Recover': 
+			minut += 180 
+			gt 'mod_iwhore_park', 'parkhooker'
+		end
+	else
+		act 'Fuck you!': gt 'mod_iwhore_park', 'parkhooker'
+	end
+end
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'wender':
+	
+	*clr & cla	
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	gs 'arousal', 'massage', 5, 'prostitution', 'exhibitionism', 'unknown'
+	gs 'stat'
+	if Krestovoz_pimp_protection ! 1:
+		if hour > 6 and hour < 18:
+			park_temp = rand(0,30)
+		else
+			park_temp = rand(0,40)		
+		end
+	else
+		if hour > 6 and hour < 18:
+			park_temp = rand(2,30)
+		else
+			park_temp = rand(2,40)		
+		end
+	end
+	
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can. "...Really man? Can''t you wait? We almost arrived..." .'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace'+rand(0,1)+'.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can, but with the night favor you cannot stop him to constantly finger your pussy in the middle of the street...this will cost in time terms..."...Really man? Can''t you ...mmmmh....wait? We almost ....mmmmm..." .'
+	end		
+
+	act 'Finally...':
+		if park_temp =< 1: gt 'mod_iwhore_hardlife', 'park_rape_ender'
+		if park_temp > 1 and park_temp =< 20: gt 'mod_iwhore_parkw', 'parkbj'
+		if park_temp > 10 and park_temp =< 20: gt 'mod_iwhore_parkw', 'parkvag'
+		if park_temp > 20 and park_temp =< 30: gt 'mod_iwhore_parkw', 'parkanal'
+		if park_temp > 30 and park_temp =< 40: gt 'mod_iwhore_parkw', 'parknak' 
+	end
+end
+
+if $ARGS[0] = 'ender':
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	if Krestovoz_pimp_protection ! 1:
+		park_ender = rand(0,22)
+	else
+		park_ender = rand(0,20)
+	end
+	if park_ender =< 10:
+		cla
+		*clr
+		money += 30
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		if park_ender =< 9:
+			act '...': 
+				cla
+				*clr
+				stat['bj'] += 1
+				gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+				gs 'stat'
+
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+				end
+				'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. Finally you arrived; you don''t stop to blow him and wait for him to choose... .' 
+
+				if park_ender =< 4:
+					'"Show me your butt slut"'
+					act 'Bum bum':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_anal'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/1showpa'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/1showpa'+rand(0,9)+'.jpg"></center>'
+						end
+						'"Better for you if you lubed it enough...." He''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+						act 'Come here "big" boy!':
+							cla
+							*clr
+							gs 'arousal', 'foreplay', 2, 'prostitution'
+							gs 'stat'
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/anal/anal'+rand(0,13)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/anal/anal'+rand(0,11)+'.jpg"></center>'
+							end
+							gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+							gs 'stat'
+							act 'Work the shaft': gt 'mod_iwhore_parkw' , 'parkanalend'
+						end
+					end
+				elseif park_ender >= 5 or park_ender =< 8:
+					'"Time to fuck slut"'
+					act 'Show your pussy':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_vag'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/2showpp'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/3showpp'+rand(0,12)+'.jpg"></center>'
+						end
+						'You quickly pull apart you clothes and present your pussy to him. "Do you like it honey?"<br>"Shut up and spread you legs." he orders.'
+						act 'Come here "big" boy!':
+							cla
+							*clr
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/vag/vag'+rand(0,12)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/vag/vag'+rand(0,17)+'.jpg"></center>'
+							end
+							gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+							gs 'stat'
+							'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "Ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+							act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkvagend'	
+						end
+					end
+				else
+					'"Free your puppy whore, they need fresh air too ehehehe..."'
+					act 'Show your tits':
+						cla
+						*clr
+						gs 'mod_iwhore_dincollect', 'whore_check_oral'
+						$orgasm_or = 'no'
+						gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+						gs 'arousal', 'end'
+						gs 'stat'
+						if hour > 6 and hour < 18:
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/3showpt'+rand(0,10)+'.jpg"></center>'
+						else
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/3showpt'+rand(0,9)+'.jpg"></center>'
+						end
+						'"Do you like it honey?"<br>"Don''t keep me waiting" he orders. '
+						act 'Take it again':
+							cla
+							*clr
+							gs 'arousal', 'foreplay', 2, 'prostitution'
+							gs 'stat'
+							if hour > 6 and hour < 18:
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/bj/bj'+rand(0,15)+'.jpg"></center>'
+							else
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/bj'+rand(0,10)+'.jpg"></center>'
+							end
+							if protect = 1:
+								'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+							else
+								'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+							end
+							act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkbjend'
+						end
+					end
+				end
+			end	
+		else
+			!park_ender = 10
+			act '...': gt 'mod_iwhore_park', 'fastender'
+		end
+	elseif park_ender >= 11:
+		cla
+		*clr
+		money += 30
+		gs 'arousal', 'massage', 5, 'prostitution', 'unknown'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace2.mp4"></video></center>'
+		end
+		'For the whole trip the man continue to touch your legs reaching your crotch and rubbing your pussy; you let him do. Once arrived you both exit from the car; the man was really taken by the situation that he immediately unzip his pants...'
+		if park_ender =< 14 and park_ender >= 10:
+			'"Show me your butt slut"'
+			act 'Bum bum':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_anal'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/1showpa'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/1showpa'+rand(0,9)+'.jpg"></center>'
+				end
+				'"Better for you if you lubed it enough...." He''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+				act 'Come here "big" boy!':
+					cla
+					*clr
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					gs 'arousal', 'foreplay', 2, 'prostitution'
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/anal/anal'+rand(0,13)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/anal/anal'+rand(0,11)+'.jpg"></center>'
+					end
+					gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+					gs 'stat'
+				act 'Work the shaft': gt 'mod_iwhore_parkw' , 'parkanalend'
+				end
+			end
+		elseif park_ender >= 15 or park_ender =< 18:
+			'"Time to fuck slut"'
+			act 'Show your pussy':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_vag'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/2showpp1'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/3showpp7'+rand(0,12)+'.jpg"></center>'
+				end
+				'You quickly pull apart you clothes and present your pussy to him. "Do you like it honey?"<br>"Shut up and spread you legs." he orders.'
+				act 'Come here "big" boy!':
+					cla
+					*clr
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/vag/vag'+rand(0,12)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/vag/vag'+rand(0,17)+'.jpg"></center>'
+					end
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+					gs 'stat'
+					'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "Ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+					act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkvagend'	
+				end
+			end
+		else
+			'"Free your puppy whore, they need fresh air too ehehehe..."'
+			act 'Show your tits':
+				cla
+				*clr
+				gs 'mod_iwhore_dincollect', 'whore_check_oral'
+				$orgasm_or = 'no'
+				gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/3showpt'+rand(0,10)+'.jpg"></center>'
+				else
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/3showpt'+rand(0,9)+'.jpg"></center>'
+				end
+					'"Do you like it honey?"<br>"Don''t keep me waiting" he orders. '
+				act 'Start':
+					cla
+					*clr
+					gs 'mod_iwhore_dincollect' , 'prezik'
+					gs 'arousal', 'foreplay', 2, 'prostitution'
+					gs 'stat'
+					if hour > 6 and hour < 18:
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/bj/bj'+rand(0,15)+'.jpg"></center>'
+					else
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/bj'+rand(0,10)+'.jpg"></center>'
+					end
+					if protect = 1:
+						'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+					else
+						'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+					end
+					act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkbjend'
+				end
+			end
+		end
+	elseif park_ender = 21 or park_ender = 22:
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		act '...': gt 'mod_iwhore_hardlife', 'car_rape_ender'
+	end
+end
+
+if $ARGS[0] = 'fastender':
+
+	cla
+	*clr
+	guy += 1
+	pav_sex += 1
+	gs 'fame', 'pav', 'prostitute', rand(3,9)
+	stat['bj'] += 1
+	gs 'arousal', 'bj', 1, 'prostitution', 'unknown'
+	gs 'arousal', 'end'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		spafinloc = 11
+		gs 'cum_manage'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zfast.mp4"></video></center>'
+		'...."UUhhghh ....stupid bitch.....!....." While sucking the man''s cock, with your free hand you continue to jerk him...it seems you hit a sensible spot...' 
+	else		
+		spafinloc = 12
+		gs 'cum_manage'
+		gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zfast.mp4"></video></center>'
+		'...."UUhhghh ....stupid bitch.....!....." You don''t know how it was possible but as soon as you arrived you find your face covered in cum.... . That was fast... .' 
+	end
+		
+	act 'Collect money':		
+		cla
+		*clr	
+		gs 'mod_iwhore_dincollect', 'whore_check_fastender'	
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetdeal1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+		end
+		'"Do you need another round honey?... ."<br>"..."<br>The man, clearly embarassed, pass you your payment... . "You know where to find me... ." You give him a flying kiss and turn back to your occupations.'
+		act 'Leave': gt 'pav_park', 'start'
+	end
+end
+
+!'+rand(0,6)+'
+!gt 'mod_iwhore_pbath', 'start'
+
+!gt 'pav_park', 'park'
+
+
+!PCloStyle = 4
+
+
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!HOOKING RAND!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!	
+!	if PCloStyle = 4:
+!	d'approached'	hooked_walk = rand(0,50)--->[d 0,5]	(51)	ratio = 6/51 ---> 0,117
+!	d'work'			hooked_walk = 	  (5,50)--->[d 0,9]	(45)	ratio =	10/45---> 0,222
+!	n'approached'	hooked_walk = rand(0,50)--->[n 0,7] (51)  	ratio = 8/51 ---> 0,156 
+!	n'work'			hooked_walk = 	  (7,50)--->[n 0,12](43) 	ratio = 13/43 ---> 0,302	
+!	else
+!	d'approached'	hooked_walk = rand(0,70)--->[d 0,5]	(71)	ratio = 6/71 ---> 0,084
+!	d'work'			hooked_walk =     (5,70)--->[d 0,9]	(65)	ratio = 10/65---> 0,153
+!	n'approached'	hooked_walk = rand(0,70)--->[n 0,7]	(71) 	ratio = 8/71 ---> 0,112
+!	n'work'			hooked_walk =     (4,70)--->[n 0,12](58)  	ratio = 13/58---> 0,224	
+!	end
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+--- mod_iwhore_park ---------------------------------

+ 859 - 0
locations/mod_iwhore_parkw.qsrc

@@ -0,0 +1,859 @@
+# mod_iwhore_parkw
+
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+if $ARGS[0] = 'parkbj':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/proppark.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to blow him, so you lead him to a secluded area. "Show me again slut"'
+	else
+		'You agree to blow him, so you lead him to a secluded area. "Show me your tits slut"' 
+	end
+	
+	act 'Show your tits':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_oral'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/3showpt'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/4showpt'+rand(0,9)+'.jpg"></center>'
+		end
+		'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/bj/bj'+rand(0,15)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/bj'+rand(0,10)+'.jpg"></center>'
+			end
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkbjend'
+		end
+	end
+end
+
+if $ARGS[0] = 'parkbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['bj'] += 1
+	if new_whore < 30: new_whore += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/bj/vbj'+rand(0,7)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/vbj'+rand(0,14)+'.mp4"></video></center>'
+	end
+	if park_nak = 1:
+		'It seems the man was looking for a blowjob only....or maybe you are too much expert for him to resist...."UUhhghh ....stupid bitch.....!....."' 
+	else
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+	end
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/facial'+rand(0,2)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,5)+'.mp4"></video></center>'
+			end
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+			end
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+				end			
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+			else
+				cla
+				*clr
+				spafinloc = 11
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/facial'+rand(0,2)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,5)+'.mp4"></video></center>'
+				end
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'parkvag':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/proppark.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your pussy, so you lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your pussy, so you lead him to a secluded area. "Show me your pussy slut"' 
+	end
+	act 'Show your pussy':
+		cla
+		*clr
+		$orgasm_or = 'no'
+		gs 'mod_iwhore_dincollect', 'whore_check_vag'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/2showpp'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/3showpp'+rand(0,12)+'.jpg"></center>'
+		end
+		'Once alone you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/vag/vag'+rand(0,12)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/vag/vag'+rand(0,17)+'.jpg"></center>'
+			end
+			gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+			gs 'stat'
+			'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+			act 'Work the shaft': gt 'mod_iwhore_parkw', 'parkvagend'	
+		end
+	end
+end
+
+if $ARGS[0] = 'parkvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/vag/vvag'+rand(0,13)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/vag/vvag'+rand(0,19)+'.mp4"></video></center>'
+	end
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if park_nak = 1:
+		'The man was looking for a regular fuck. He doesn''t care of your pleasure; as he takes the peace control he pounds your pussy without pause for several minutes. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	end	
+
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/vagout'+rand(0,3)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/vagout'+rand(0,3)+'.mp4"></video></center>'
+			end
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/vagin'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/vag'+rand(0,3)+'.mp4"></video></center>'
+			end
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/street/vagout'+rand(0,3)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,3)+'.mp4"></video></center>'
+				end
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/vagin'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+				end
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'parkanal':
+	cla
+	*clr
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/proppark.jpg"></center>'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+	end
+	if propose = 1:
+		'You agree to let him fuck your ass, so you lead him to a secluded area. "Show me again slut"' 
+	else
+		'You agree to let him fuck your ass, so you lead him to a secluded area. "Show me your butt cheeck slut"' 
+	end
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect', 'whore_check_anal'
+		$orgasm_or = 'no'
+		gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+		gs 'arousal', 'end'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/park/1showpa'+rand(0,10)+'.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/1showpa'+rand(0,9)+'.jpg"></center>'
+		end
+		'"Do you like my bum honey?" You''re barely finished when you see he already has his cock out, rubbing his spit on it for lubrication as he strokes it. "Already?" You tease, but he''s not interested in prolonging this any longer. He turns you around and pulls you by the hips so your ass is sticking out. You can feel the tip pressing against your puckered hole and bite your lip anxiously as you wait for what''s to come.'
+		act 'Come here "big" boy!':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			if hour > 6 and hour < 18:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/anal/anal'+rand(0,13)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/anal/anal'+rand(0,11)+'.jpg"></center>'
+			end
+			gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': gt 'mod_iwhore_parkw' , 'parkanalend'
+		end
+	end
+end
+
+if $ARGS[0] = 'parkanalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	if new_whore < 30: new_whore += 1
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/park/anal/vanal'+rand(0,9)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/anal/vanal'+rand(0,5)+'.mp4"></video></center>'
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if park_nak = 1:
+		'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	else
+		'He doesn''t care as he takes the peace control, and for several minutes he pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+	end
+
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/butt'+rand(0,1)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/butt'+rand(0,2)+'.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			if hour > 6 and hour < 18:
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/anal'+rand(0,5)+'.mp4"></video></center>'
+			else
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/anal0.mp4"></video></center>'
+			end
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/butt'+rand(0,1)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/butt'+rand(0,2)+'.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':  gt 'mod_iwhore_park', 'parkhooker' 
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/anal'+rand(0,5)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/anal0.mp4"></video></center>'
+				end
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':  gt 'mod_iwhore_park', 'parkhooker'
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'parknak':
+	cla
+	*clr
+	park_nak = 1
+	parknak_way = rand(0,10)
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj0.jpg"></center>'
+	if propose = 1:
+		'"Not enough, i want to see everything."<br>"Come with me sweety, you will not regret it."' 
+	else
+		'"Let me see your body slut, i have to decide. And do not dance i''m not here for a show."<br>"Come with me sweety, you will not regret it."' 
+	end
+	act 'Strip':
+		cla
+		*clr
+		gs 'arousal', 'flash', 2, 'prostitution', 'exhibitionism', 'unknown'
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/2showpb'+rand(0,15)+'.jpg"></center>'
+		'You move with the man into a more secluded corner of the park, and show all about yourself to the client."Do you like it honey?" On the sight of your body he wastes no time unzipping to reveal his already hardening cock. <br>"Shut up bitch. Do what you want with your clothes and start to cheer me up, i''ve made my decision."'		
+		act 'Take it in mouth':
+			cla
+			*clr
+			gs 'mod_iwhore_dincollect' , 'prezik'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/bj'+rand(0,10)+'.jpg"></center>'
+			if protect = 1:
+				'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			else
+				'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+			end
+			gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+			gs 'stat'
+			act 'Work the shaft': 
+				cla
+				*clr
+				stat['bj'] += 1
+				gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/vbj'+rand(0,14)+'.mp4"></video></center>'
+				'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess.' 
+				
+				if parknak_way =< 4:
+					"Get ready bitch."
+					act '...let him...':
+						money += 30
+						gs 'mod_iwhore_dincollect', 'whore_check_vag'
+						gt 'mod_iwhore_parkw', 'parkvagend'
+					end
+				elseif parknak_way =< 9 and parknak_way > 4:
+					"Get ready bitch."
+					act '...let him...': 
+						money += 30
+						gs 'mod_iwhore_dincollect', 'whore_check_anal'
+						gt 'mod_iwhore_parkw', 'parkanalend'
+					end
+				elseif parknak_way = 10:
+					cla
+					*clr
+					guy += 1
+					gs 'fame', 'pav', 'prostitute', rand(1,5)
+					money += 30
+					gs 'mod_iwhore_dincollect', 'whore_check_oral'
+					gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+					gs 'stat'
+					'Continue suck slut'
+					act '...let him...':
+						if protect = 1:
+							act 'let him finish':		
+								cla
+								*clr
+								spafinloc = 11
+								gs 'cum_manage'
+								gs 'arousal', 'end'
+								gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+								gs 'stat'
+								if hour > 6 and hour < 18:
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/facial0.mp4"></video></center>'
+								else
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,5)+'.mp4"></video></center>'
+								end
+								'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+								act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 	
+							end
+						else
+							act 'Dry his balls':		
+								cla
+								*clr
+								spafinloc = 12
+								money += 20
+								gs 'cum_manage'
+								gs 'arousal', 'end'
+								gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+								gs 'stat'
+								if hour > 6 and hour < 18:
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+								else
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+								end
+								'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+								act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker' 
+							end
+							act '...':
+								if rand(0,2) < 2:
+									cla
+									*clr
+									spafinloc = 12
+									money += 20
+									gs 'cum_manage'
+									gs 'arousal', 'end'
+									gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+									gs 'stat'
+									if hour > 6 and hour < 18:
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+									else
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+									end			
+									'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+									act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+								else
+									cla
+									*clr
+									spafinloc = 11
+									gs 'cum_manage'
+									gs 'arousal', 'end'
+									gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+									gs 'stat'
+									if hour > 6 and hour < 18:
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/cum/park/facial0.mp4"></video></center>'
+									else
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,5)+'.mp4"></video></center>'
+									end
+									'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+									act 'Collect money and go away.': gt 'mod_iwhore_park', 'parkhooker'  
+								end			
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'jog_bj':
+	cla
+	*clr
+	gs 'mod_iwhore_dincollect', 'whore_check_oral'
+	gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/offerbj.jpg"></center>'
+	'You agree to blow him, so you lead him to a secluded area. ' 
+	
+	act 'Take it in mouth':
+		cla
+		*clr
+		guy += 1
+		pav_sex += rand(0,1)
+		gs 'fame', 'pav', 'prostitute', rand(1,5)
+		stat['bj'] += 1
+		gs 'mod_iwhore_dincollect' , 'prezik'
+!		if new_whore < 30: new_whore += 1
+		gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/vbj'+rand(15,16)+'.mp4"></video></center>'
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		if protect = 1:
+			act 'let him finish':		
+				cla
+				*clr
+				spafinloc = 11
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,1)+'.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man slip out the condom and finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. ..."Hey slut ... i heard that cum is good for sporty girl, why don''t you play a little?"'
+				act 'Go away.': gt $loc, $loc_arg
+				act 'Make the man happy':		
+					cla
+					*clr
+					spafinloc = 12	
+					gs 'cum_manage'
+					gs 'arousal', 'end'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/cumplay0.mp4"></video></center>'
+					'"Hehehe...shit girl, i could became a fan of this sport...hehehe..."'
+					act 'Collect money and go away.': gt $loc, $loc_arg	
+				end	
+			end
+		else
+			act 'Dry his balls':		
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'
+				'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+				act 'Go away.': gt $loc, $loc_arg
+			end
+			if rand(0,2) < 2:
+				act '...':
+					cla
+					*clr
+					spafinloc = 12
+					money += 20
+					gs 'cum_manage'
+					gs 'arousal', 'end'
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/bj'+rand(0,1)+'.mp4"></video></center>'		
+					'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+					act 'Go away.': gt $loc, $loc_arg 
+				end
+			else
+				act '...':
+					cla
+					*clr
+					spafinloc = 11
+					gs 'cum_manage'
+					gs 'arousal', 'end'
+					gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/facial'+rand(0,1)+'.mp4"></video></center>'
+					'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+					act 'Make the man happy':		
+						cla
+						*clr
+						money += 50
+						spafinloc = 12	
+						gs 'cum_manage'
+						gs 'arousal', 'end'
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/cumplay0.mp4"></video></center>'
+						'"Hehehe...shit girl, i could became a fan of this sport...hehehe..." The man let slip another 50 rubles on tha ground and left with a big grin on his face...'
+						act 'Collect money and go away.': gt $loc, $loc_arg	
+					end	
+					act 'Go away.': gt $loc, $loc_arg
+				end			
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'jog_slut':
+	cla
+	*clr
+	money += rand(20,40)
+	gs 'npcgeneratec', 0, 'the client', rand(18,45) & gs 'boyStat', $npclastgenerated 
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/night/work/park/4showppt'+rand(0,1)+'.jpg"></center>'
+	'You lead him to a secluded area and expose your brest to the man. "Listen baby, you are a running slut so you are in a rush and so i... . That''s for the beginning... ."  The man let fall some rubles on the ground; he expect you prepare him. You don''t lose your time and start preparing the man...' 
+	
+	act 'Take it in mouth':
+		cla
+		*clr
+		guy += 1
+		pav_sex += rand(0,1)
+		gs 'fame', 'pav', 'prostitute', rand(1,5)
+		stat['bj'] += 1
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if new_whore < 30: new_whore += 1
+		gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/bj/vbj'+rand(15,16)+'.mp4"></video></center>'
+		'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		
+		if rand (0,1) = 1:
+			act 'Wait for his decision':gt 'mod_iwhore_park', 'jog_vag'  
+		else
+			act 'Wait for his decision':gt 'mod_iwhore_park', 'jog_anal'  
+		end	
+	end
+end
+
+if $ARGS[0] = 'jog_vag':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vaginal'] += 1
+	gs 'mod_iwhore_dincollect', 'whore_check_vag'
+	if new_whore < 30: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/vag/vvag'+rand(17,23)+'.mp4"></video></center>'
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	'No time for foreplay...as you just were to be acquainted with him fucking your mouth he spread your legs and beging fuck you furiously. For several minutes he pounds your pussy, nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+
+
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/vagout'+rand(0,3)+'.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg  
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/vag'+rand(0,3)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vagout'+rand(0,3)+'.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/street/vag'+rand(0,3)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg  
+			end
+		end
+	end			
+end
+
+if $ARGS[0] = 'jog_anal':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	gs 'mod_iwhore_dincollect', 'whore_check_anal'
+	if new_whore < 30: new_whore += 1
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/park/anal/vanal'+rand(0,3)+'.mp4"></video></center>'
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	'No time for foreplay...as you just were to be acquainted with him fucking your mouth he spread your buttcheeck and beging fuck you with no mercy in the ass. For several minutes he pounds you hard your looseness asshhole that you tight around his girth; finally you start feeling yourself close to climax...and the man too...."Get ready bitch."' 
+
+	if protect = 1:
+		act 'Out big boy!':
+			cla
+			*clr
+			spafinloc = 4
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/butt'+rand(0,2)+'.mp4"></video></center>'
+			'He finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end
+	else
+		act 'Wrap your legs around him':
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/anal0.mp4"></video></center>'
+			'He finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end	
+		act 'Out big boy!':
+			if rand(0,3) < 3:
+				cla
+				*clr
+				spafinloc = 4
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/butt'+rand(0,2)+'.mp4"></video></center>'
+				'He finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':  gt $loc, $loc_arg
+			else
+				cla
+				*clr
+				money += 20
+				spafinloc = 3
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/cum/park/anal0.mp4"></video></center>'
+				'The man grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.':  gt $loc, $loc_arg
+			end
+		end
+	end			
+end
+--- mod_iwhore_parkw ---------------------------------

+ 1448 - 0
locations/mod_iwhore_pbath.qsrc

@@ -0,0 +1,1448 @@
+# mod_iwhore_pbath
+
+if $ARGS[0] = 'start':
+	cls
+	minut += 2
+	gs 'stat'
+	'<center><h4>Pavlovsk public restroom</h4></center>'
+	if hour > 7 and hour < 20:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/restrday.jpg"></center>'
+		if money > 5:
+			act 'ladies': money -= 5 & gt 'mod_iwhore_pbath', 'female'
+			act 'mens': money -= 5 & gt 'mod_iwhore_pbath', 'male'
+		else
+			act 'try anyway': gt 'mod_iwhore_pbath', 'bathfee'
+		end
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/restrnigh.jpg"></center>'	
+		if money > 5:
+			act 'ladies': money -= 5 & gt 'mod_iwhore_pbath', 'female'
+			act 'mens':gt 'mod_iwhore_pbath', 'male'
+		else
+			act 'try anyway': gt 'mod_iwhore_pbath', 'bathfee'
+		end
+	end
+	'Two clearly signs tell you where do you have to go...'
+	if new_whore = 6:
+		new_whore += 1
+		msg 'You can now start a "new" carreer. Use the right clothes and according to the right location you can work as a prostitute in Pavlovsk. Maybe one day, with the enough fame, you will be approached even out from the work.'
+	end
+	
+	act 'Return':minut += 1 & gt 'pav_residential'
+end
+
+if $ARGS[0] = 'bathfee':
+	cla
+	*clr
+	minut += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/noenter'+rand(0,1)+'.jpg"></center>'	
+	'The bath are not for free...I knew it!'
+	act'Leave the door': gt 'mod_iwhore_pbath', 'start'	
+	act 'Return':minut += 1 & gt 'pav_residential'
+end
+
+if $ARGS[0] = 'female':
+
+	$locM_arg = $ARGS[0]
+	$locM = 'mod_iwhore_pbath'
+	$locM_arg = 'female'
+	$loc_arg = $ARGS[0]
+	$loc = 'mod_iwhore_pbath'
+	$loc_arg = 'female'
+	$location_type = 'bathroom'	
+	cls	
+	minut += 1
+	gs 'stat'
+	'<center><h4>The ladies'' room</h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/female.jpg"></center>'
+	'You open the door to the ladies'' room and go in. There are sinks, <a href="exec:gt ''mirror'', ''start''">mirrors</a> and various stalls; the <a href="exec: middle_stall = 1 & gt ''mod_iwhore_pbath'', ''middle_stall''">middle</a> and the <a href="exec: middle_stall = 1 & gt ''mod_iwhore_pbath'', ''middle_stall''">last</a> ones'
+
+	act 'Leave':minut += 1 & gt 'mod_iwhore_pbath', 'start'
+	
+	if (cumloc[6] = 1 or cumloc[7] = 1):
+		act 'Wipe the cum off your clothes (0:10)':
+			cla
+			*clr
+			cumspclnt = 6
+			gs 'cum_cleanup'
+			minut += 10
+
+			'You wipe the cum off your clothes and thoroughly rinse out the stains with water.'
+
+			act 'Finish':gt 'mod_iwhore_pbath', 'female'
+		end
+	end
+	
+	gs 'mod_iwhore_dincollect' , 'client'
+	gs 'mod_iwhore_dincollect' , 'tampon'
+	gs 'mod_iwhore_dincollect' , 'quickwash'
+	gs 'mod_iwhore_dincollect' , 'wearpan'
+	gs 'mod_iwhore_dincollect' , 'removepan'
+	gs 'mod_iwhore_dincollect' , 'basin'
+	
+end
+
+if $ARGS[0] = 'male':
+
+	$locM = 'mod_iwhore_pbath'
+	$locM_arg = 'male'
+	$loc = 'mod_iwhore_pbath'
+	$loc_arg = 'male'
+	$locM_arg = $ARGS[0]
+	$loc_arg = $ARGS[0]
+	
+    $location_type = 'public_indoors'
+	cls
+	minut += 1
+	gs 'stat'
+	'<center><h4>The men''s room</h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/male_pic.jpg"></center>'
+	'You open the door to the men''s room and go in. There are <a href="exec:gt ''mirror'', ''start''">mirrors</a> that line the wall, as sinks rest under them.'
+
+
+	act 'Leave':minut += 1 & gt 'mod_iwhore_pbath', 'start'
+
+	if (cumloc[6] = 1 or cumloc[7] = 1):
+		act 'Wipe the cum off your clothes (0:10)':
+			cla
+			*clr
+			cumspclnt = 6
+			gs 'cum_cleanup'
+			minut += 10
+
+			'You wipe the cum off your clothes and thoroughly rinse out the stains with water.'
+
+			act 'Finish':gt 'mod_iwhore_pbath', 'male'
+		end
+	end
+
+	gs 'mod_iwhore_dincollect' , 'client'
+	gs 'mod_iwhore_dincollect' , 'tampon'
+	gs 'mod_iwhore_dincollect' , 'quickwash'
+	gs 'mod_iwhore_dincollect' , 'wearpan'
+	gs 'mod_iwhore_dincollect' , 'removepan'
+	gs 'mod_iwhore_dincollect' , 'basin'
+
+end
+
+if $ARGS[0] = 'clientfee':
+	*clr & cla	
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	killvar 'bath_ender'
+	minut += 1
+	gs 'stat'
+	protect = 0
+	if new_whore < 50:
+		if new_whore = 20 or new_whore = 30 or new_whore = 40 or new_whore = 44 or new_whore = 48:
+			want_stall = rand(21,22)
+			new_whore += 1
+		else
+			want_stall = rand(1,20)
+		end
+	else
+		if Krestovoz_pimp_protection ! 1:
+			want_stall = rand(1,22)
+		else
+			want_stall = rand(1,20)
+		end
+	end
+!	want_stall = rand(1,20)
+	if hour >= 18 or hour =< 6:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/restrnigh.jpg"></center>'
+	elseif hour < 18 and hour > 6:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/restrday.jpg"></center>'
+	else
+		''
+	end
+	'The client wait for you... .'
+	act 'Five or ten?...': 
+		if rand(0,2) = 2:
+			cla
+			*clr
+			if hour >= 18 or hour =< 6:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/10ruble'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/10rublen0.jpg"></center>'
+			end
+			'"For what?" The client ask... .<br>"To enter the bathroom honey"<br>"You are really cheap...let''s go!"<br>"Don''t be silly, you know the prices; it''s the fee for the bath: five to close a stall, ten to close the whole restroom."<br>"What? It''s on me? No way! I''ll pay for your service, not for a stupid locked fucking bath! You can pay for it!"'
+			if want_stall >=1 and want_stall =< 10:
+				act 'Pay for him and enter the male restroom': money -= 5 & gt 'mod_iwhore_pbath', 'male'
+				act 'Pay for him and enter the female restroom': money -= 5 & gt 'mod_iwhore_pbath', 'female'
+			elseif want_stall = 21 or want_stall = 22:
+				act 'Pay for him and enter the male restroom': money -= 5 & gt 'mod_iwhore_hardlife', 'bath_rape_male'
+				act 'Pay for him and enter the female restroom': money -= 5 & gt 'mod_iwhore_hardlife', 'bath_rape_female'
+			else
+				act 'Pay for him and enter the male restroom': money -= 10 & gt 'mod_iwhore_pbath', 'male'
+				act 'Pay for him and enter the female restroom': money -= 10 & gt 'mod_iwhore_pbath', 'female'
+			end
+			if you_blow_him = 1:
+				act 'Leave':
+					cla
+					*clr
+					you_blow_him = 0
+					gs 'mod_iwhore_dincollect', 'whore_check_fastender'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+					'"As you wish. You owe me half of a blowjob...quick." The man curse you with words but he doesn''t refuse to pay for your sevice; the next time he''ll think twice before leaving you to pay...his blue balls will be a great teacher.'
+					gt 'mod_iwhore_pbath', 'start'
+				end
+			else
+				act 'Leave':gt 'mod_iwhore_pbath', 'start'
+			end			
+		else
+			cla
+			*clr
+			if hour >= 18 or hour =< 6:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/10ruble'+rand(0,1)+'.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/10rublen0.jpg"></center>'
+			end
+			'"For what?" The client ask... .<br>"To enter the bathroom honey"<br>"You are really cheap...let''s go!"<br>"Don''t be silly, you know the prices; it''s the fee for the bath: five to close a stall, ten to close the whole restroom."<br>"It''s on me? Well i guess i''m the one who want some pricacy...ok, let''s go."'
+			if rand(0,5) = 5 and (want_stall = 21 or want_stall = 22):
+				act 'Enter the male restroom': gt 'mod_iwhore_hardlife', 'bath_rape_male'
+				act 'Enter the female restroom': gt 'mod_iwhore_hardlife', 'bath_rape_female'
+			else
+				act 'Enter the male restroom':gt 'mod_iwhore_pbath', 'male'
+				act 'Enter the female restroom':gt 'mod_iwhore_pbath', 'female'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'client':
+	cla
+	*clr
+	minut += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client.jpg"></center>'
+	'"I''m ready honey, what do you like to do to me?"'
+	if (want_stall >= 1 and want_stall =< 4) or (want_stall >= 11 and want_stall =< 14) or want_stall = 22:
+		'Let me see those ass of yours'
+		act 'Show': gt 'mod_iwhore_pbathw', 'bathanal'		
+	elseif (want_stall >= 5 and want_stall =< 8) or (want_stall >= 15 and want_stall =< 18) or want_stall = 21:
+		'Spread your pussy slut, i need a fuck.'
+		act 'Show':gt 'mod_iwhore_pbathw', 'bathvag'
+	else
+		'Show me your boobs, i want to see your puppies'
+		act 'Show':gt 'mod_iwhore_pbathw', 'bathbj'
+	end
+end
+
+
+if $ARGS[0] = 'wender':
+	cla
+	*clr
+	gs 'arousal', 'massage', 5, 'prostitution', 'exhibitionism', 'unknown'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can. "...Really man? Can''t you wait? We almost arrived..." .'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace'+rand(0,1)+'.mp4"></video></center>'
+		'For the whole walk the man doesn''t stop stripping and exposing your body; you try too keep your clothes on as much as you can, but with the night favor you cannot stop him to constantly finger your pussy in the middle of the street...this will cost in time terms..."...Really man? Can''t you ...mmmmh....wait? We almost ....mmmmm..." .'
+	end		
+
+	act 'Finally...': gt 'mod_iwhore_pbath', 'clientfee'
+end
+
+if $ARGS[0] = 'ender':
+	if inna_varvara_pimp >= 15: gs 'mod_iwhore_dincollect' , 'whore_check_pro'
+	if Krestovoz_pimp_protection ! 1:
+		bath_ender = rand(0,21)
+	else
+		bath_ender = rand(0,20)
+	end
+	if bath_ender =< 10:
+		cla
+		*clr
+		money += 30
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		if bath_ender =< 9:
+			act '...': 
+				cla
+				*clr
+				stat['bj'] += 1
+				gs 'arousal', 'bj', 5, 'prostitution', 'unknown'
+				gs 'stat'
+				you_blow_him = 1
+				if hour > 6 and hour < 18:
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/client/single/car/bj/vbj'+rand(0,17)+'.mp4"></video></center>'
+				else
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/client/single/car/bj/vbj'+rand(0,22)+'.mp4"></video></center>'
+				end
+				'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. Finally you arrived... . "Well ... bitch? I cannot exit the car with you sucking..."' 
+
+				act 'Stop sucking and go to the bath': gt 'mod_iwhore_pbath', 'clientfee'
+			end	
+		else
+		!bath_ender = 10
+			act '...': gt 'mod_iwhore_pbath', 'fastender'
+		end
+	elseif bath_ender >= 11 and bath_ender =< 20:
+		cla
+		*clr
+		gs 'arousal', 'massage', 2, 'prostitution', 'unknown'
+		gs 'arousal', 'vaginal_finger', 3, 'prostitution', 'unknown'
+		gs 'stat'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace0.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace2.mp4"></video></center>'
+		end
+		'For the whole trip the man continue to touch your legs reaching your crotch and rubbing your pussy; you let him do. Once arrived you both exit from the car..."Well ... bitch?"'
+		act 'Go to the bath': gt 'mod_iwhore_pbath', 'clientfee'
+	elseif bath_ender = 21:
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if hour > 6 and hour < 18:
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zplace1.mp4"></video></center>'
+		else
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zplace3.mp4"></video></center>'
+		end		
+		'"...right." You barely finish to tell him where both of you have to go that you find yourself sucking his cock... . Gently the man put your head on work; without any objection you continue with your duties... .'
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		act '...': gt 'mod_iwhore_hardlife', 'car_rape_ender'
+	end
+end
+
+if $ARGS[0] = 'fastender':
+
+	cla
+	*clr
+	guy += 1
+	pav_sex += 1
+	gs 'fame', 'pav', 'prostitute', rand(3,9)
+	stat['bj'] += 1
+	gs 'arousal', 'bj', 1, 'prostitution', 'unknown'
+	gs 'arousal', 'end'
+	gs 'stat'
+	if hour > 6 and hour < 18:
+		spafinloc = 11
+		gs 'cum_manage'
+		gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/day/work/zfast.mp4"></video></center>'
+		'...."UUhhghh ....stupid bitch.....!....." While sucking the man''s cock, with your free hand you continue to jerk him...it seems you hit a sensible spot...' 
+	else		
+		spafinloc = 12
+		gs 'cum_manage'
+		gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/street/night/work/zfast.mp4"></video></center>'
+		'...."UUhhghh ....stupid bitch.....!....." You don''t know how it was possible but as soon as you arrived you find your face covered in cum.... . That was fast... .' 
+	end
+		
+	act 'Collect money':		
+		cla
+		*clr	
+		gs 'mod_iwhore_dincollect', 'whore_check_fastender'	
+		if hour > 6 and hour < 18:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/streetdeal1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/street/day/work/rublepay.jpg"></center>'
+		end
+		'"Do you need another round honey?... ."<br>"..."<br>The man, clearly embarassed, pass you your payment... . "You know where to find me... ." You give him a flying kiss and turn back to your occupations.'
+		act 'Leave': gt $loc, $loc_arg 
+	end
+end
+
+!!!GDKCOPY!!!!
+
+if $ARGS[0] = 'middle_stall':
+	cls
+	minut += 1
+	gs 'stat'
+	'<center><b><font color="maroon">Middle Stall</font></b></center>'
+	if rand (0,5) = 5:
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sitting.jpg"></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/sit'+rand(0,7)+'.mp4"></video></center>'
+	end
+	if stat['bj'] = 0:
+		gs 'stat'
+		'You walk down to the middle stall and sit down, next to the toilet are rather large almost perfectly round holes. Puzzled, you wonder how it got there and why no one has fixed them.'
+	elseif stat['bj'] >= 1:
+		pcs_horny += 10
+		gs 'stat'
+		'You walk down to the middle stall. The large almost perfectly round holes is still there. You wonder how many women have used that hole. You feel a little excited as you contemplate your next move.'
+	end
+	
+	if pcs_horny >=40:
+		act 'Caress Yourself':
+			gs 'arousal', 'masturbate', 4
+			gs 'stat'
+			if pcs_inhib < 40:inhib_exp += rand(1,3)
+			cls
+			if rand (0,1) = 1:
+				cls
+				gs 'stat'
+				'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/caress1.mp4"></video></center>'
+				'Feeling a bit turned on, you close the door to the stall and you behind to reach down your underwear and start rubbing your clit.'
+				act 'Continue': gs 'mod_iwhore_dincollect', 'contmast'
+			else
+				cls
+				gs 'stat'
+				'<center><img <<$set_imgh>> src="images/shared/sex/mast/mastr.jpg"></center>'
+				'Feeling a bit turned on, you close the door to the stall and you sit down exposing your pussy and begin to run your clit.'
+				act 'Continue':
+					if new_gh_whore < 1 and rand(0,1) = 1:
+						gt 'mod_iwhore_pbath', 'mast_visit'
+					elseif new_gh_whore >= 2 and rand(0,20) =< 5:
+						gt 'mod_iwhore_pbath', 'mast_visit'
+					else
+						gs 'mod_iwhore_dincollect', 'contmast'
+					end
+				end
+			end
+		end
+	end
+	
+	act 'Pee': 
+		if new_gh_whore < 1 and rand(0,2) = 2:
+			gt 'mod_iwhore_pbath', 'pblc_pee_first'
+		elseif new_gh_whore >= 2 and rand(0,20) =< 2:
+			gt 'mod_iwhore_pbath', 'pee_visit'
+		else
+			gs 'mod_iwhore_dincollect', 'pblc_pee'
+		end
+	end
+	
+	act 'Look at the Hole': gt 'mod_iwhore_pbath', 'hole'
+	
+	if new_gh_whore >= 2 and rand(0,20) =< 2:
+		act 'Sign the wall': 
+			if rand(0,20) =< 2:
+				gt 'mod_iwhore_pbath', 'sign_visit'
+			else
+				gt 'mod_iwhore_pbath', 'sign_art_graffiti'
+			end
+		end
+	end
+	
+	act 'Get Up':
+		cla
+		minut += 1
+		gs 'stat'
+		'You decide not to look in the hole and leave.'
+		act 'Leave': gt $locM, $locM_arg
+	end
+end
+
+if $ARGS[0] = 'pblc_pee_first':
+
+	if rand(0,1) = 1:
+		*clr
+		cla
+		minut +=5
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0.jpg"></center>'
+		'"...at least it seems to be clean..."'
+		act '...':
+			*clr
+			cla
+			'<center><img <<$set_imgh>> src="images/pc/pee/pee-public/1.jpg"></center>'
+			gs 'stat'
+			'"...It doesn''t came out!...Maybe a little fart..."...(lewed sound)...."...Owww! That''s....owww...what did i ate yesterday?...owww..."'
+			act 'Concentrate...':
+				*clr
+				cla
+				'<center><img <<$set_imgh>> src="images/pc/pee/pee-public/' + rand(4,6) + '.jpg"></center>'
+				gs 'stat'
+				'"...Ooooh that''s it..."'
+				act 'Leave': gt $locM, $locM_arg
+			end
+		end
+	else
+		gs 'npcgeneratec', 0, 'unknown guy', rand(18,40)
+		gs 'boyStat', $npclastgenerated
+		minut +=5
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0base.jpg"></center>'
+		if stat['bj'] = 0:
+			gs 'stat'
+			if pcs_horny > 50:
+				'...''...I should take care of my kitten, i''m starting to see cocks everywhere...hey! it''s real...''...'
+			else
+				'...''...let it flow, let it flow, let it f...uh?...what...''...'
+			end
+		elseif stat['bj'] >= 1:
+			pcs_horny += 10
+			gs 'stat'
+			'"...Oh!...well...it''s not that i''m really surprised...yet..."'
+		end
+		gs 'mod_iwhore_dincollect' , 'gh_first'
+	end
+end
+
+if $ARGS[0] = 'pee_visit':
+
+	*clr
+	cla
+	gs 'npcgeneratec', 0, 'unknown guy', rand(18,40)
+	gs 'boyStat', $npclastgenerated
+	minut +=5
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/visit4.mp4"></video></center>'
+	'...''...let it flow, let it flow, let it f...uh?...what...''...'
+	
+	'"...Oh!...well...it''s not that i''m really surprised...yet..."'
+
+	act 'Blow Him': gt 'mod_iwhore_pbath', 'blowjob'
+	act 'Jerk Him': gt 'mod_iwhore_pbath', 'jerkoff'
+	act 'Leave': gt $locM, $locM_arg
+end
+
+if $ARGS[0] = 'mast_visit':
+
+	*clr
+	cla
+	gs 'npcgeneratec', 0, 'unknown guy', rand(18,40)
+	gs 'boyStat', $npclastgenerated
+	minut +=5
+	if new_gh_whore < 1:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/mastvisit0.mp4"></video></center>'
+		'...''...mmm...dripping...i had to try that...mmm....'' ...'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/mastvisit'+rand(0,3)+'.mp4"></video></center>'
+		'...''...mmm....mmm....OH!...they could wait a little at least...'' ...'
+	end
+	
+	wait 2000
+	'...''...That doesn''t help...or...'' ...'
+	if new_gh_whore < 1:
+		act 'Stop masturbate':
+			*clr
+			cla
+			minut +=5
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0base.jpg"></center>'
+			if stat['bj'] = 0:
+				gs 'stat'
+				if pcs_horny >=50:
+					'...''...why my pussy is twinching?...''...'
+				else
+					'...''...i''m scared...''...'
+				end
+			elseif stat['bj'] >= 1:
+				pcs_horny += 10
+				gs 'stat'
+				'...''...mmm, it seems he''s cool off a little...maybe...''...'
+			end
+			gs 'mod_iwhore_dincollect' , 'gh_first'
+		end
+	else
+		act 'Blow Him': gt 'mod_iwhore_pbath', 'mast_bj'
+		act 'Jerk Him': gt 'mod_iwhore_pbath', 'mast_hj'
+		act 'Leave': gt $locM, $locM_arg
+	end
+end
+
+if $ARGS[0] = 'sign_visit':
+
+	*clr
+	cla
+	minut +=5
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/visit'+rand(0,2)+'.mp4"></video></center>'
+	'...''...a little here...and there....'' ...'
+	wait 2000
+	'...''...mmm...what about...oooH!...'' ...'
+	act 'Blow Him': gt 'mod_iwhore_pbath', 'blowjob'
+	act 'Jerk Him': gt 'mod_iwhore_pbath', 'jerkoff'
+	act 'Leave': gt $locM, $locM_arg
+end
+
+if $ARGS[0] = 'sign_art_graffiti':
+
+	*clr
+	cla
+	minut +=5
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/sign.mp4"></video></center>'
+	'...''...a little here...and there....'' ...'
+	wait 2000
+	'...''...mmm...what about...or...maybe...'' ...'
+	wait 3000
+	act 'Done!':
+		cls
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/graffiti.jpg"></center>'
+		'You look at your wonderful draw...'
+		*nl
+		'"...Not bad...but....uhmmmm...it lack of something..."'	
+		act 'Leave': gt $locM, $locM_arg
+! 		to write
+!		act 'Blow Him': gt 'mod_iwhore_pbath', 'blowjob'
+	end
+end
+
+if $ARGS[0] = 'hole':
+	cls
+	gs 'npcgeneratec', 0, 'unknown guy', rand(18,40)
+	gs 'boyStat', $npclastgenerated
+	minut +=5
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghlooking.jpg"></center>'
+	wait 700
+	if new_gh_whore < 1:
+		act 'Sign the wall':
+			cls
+			gs 'stat'
+			'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghstartled.mp4"></video></center>'
+			'While looking through the hole you decided to write something on the wall just above it. While you were focused on writing, you didn''t notice the dick poking through the hole until the tip of it nearly went into your mouth. Startled you jerk away from the offending penis.'
+			act 'Stop painting':
+				*clr
+				cla
+				minut +=5
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/first0base.jpg"></center>'
+				if stat['bj'] = 0:
+					gs 'stat'
+					if pcs_horny >=50:
+						'...''...what the...mmmm....that''s a different kind of brush...''...'
+					else
+						'...''...what the...''...'
+					end
+				elseif stat['bj'] >= 1:
+					pcs_horny += 10
+					gs 'stat'
+					'...''...ummmm, it seems he cool off a little...maybe...or maybe not...''...'
+				end
+				act 'Touch the shaft':gt 'mod_iwhore_pbath', 'virgin'
+				act 'Quickly leave the stall':
+					cla
+					*clr
+					'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
+					'You shudder in disgust at the thought that some stranger''s dick was just practically in your mouth, you get up and quickly leave.'
+					act'Leave':gt $locM, $locM_arg
+				end
+				gs 'mod_iwhore_dincollect' , 'gh_first'
+			end
+		end
+	elseif new_gh_whore >= 1 and rand (0,50) < 10:
+		cls
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghseemen.jpg"></center>'
+		'You look through the hole and see several men with their backs to you, using the urinals.'
+		act 'Stick your finger in the hole':
+			cls
+			money += 100
+			minut += 10
+			gs 'stat'
+			if new_gh_whore = 1:
+				'<center><img <<$set_imgh>> src="images/shared/sex/gloryhole/ghfinger'+rand(1,5)+'.jpg"></center>'
+				'You put your finger in the hole hoping to entice a man to come over...'
+				'The man slips 100 <b>₽</b> into the hole, and then puts his erect cock through the hole.'
+				act 'Mmmm...that''s a good shape...': gt 'mod_iwhore_pbath', 'not_alone'
+				act 'Jerk Him': gt 'mod_iwhore_pbath', 'virgin'
+			elseif new_gh_whore > 1:
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ready.jpg"></center>'
+				'You poke your finger in the hole showing that you are ready to serve a man. Then you put your face close to the hole and open your mouth.'
+				'The stranger slips 100 <b>₽</b> into the hole, and then his erect cock pokes out of the hole.'
+				act 'Blow Him':
+					if pcs_horny >=60 and rand(0,2) = 2:
+						gt 'mod_iwhore_pbath', 'mast_bj'
+					else
+						gt 'mod_iwhore_pbath', 'blowjob'
+					end
+				end
+				act 'Jerk Him':	
+					if pcs_horny >=60 and rand(0,2) = 2:
+						gt 'mod_iwhore_pbath', 'mast_hj'
+					else
+						gt 'mod_iwhore_pbath', 'jerkoff'
+					end
+				end
+
+			end
+			act 'Stop':
+				cla
+				*clr
+				!Second thougth	LOOKFORSOMETHING			
+				'Seeing the dick poke through, you reconsider what you are about to do, do you really want to suck some strange man''s dick, through a hole in the bathroom for money?'
+				act 'Take his money and Leave':gt 'mod_iwhore_pbath', 'rape'
+				act 'Give back the money and Leave':
+					money -= 100
+					gt $locM, $locM_arg
+				end
+				act 'Blow Him': gt 'mod_iwhore_pbath', 'blowjob'
+			end
+		end
+		act 'Move away':
+			cla
+			'You move away from the hole reconsidering what you were about to do and quickly leave the stall.'
+			act 'Leave': gt $locM, $locM_arg
+		end
+	else
+		cls
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghseenomen.jpg"></center>'
+		'Looking through the hole, you can see a row of urinals on the other side. The hole must be to the men''s room next door. You don''t see any men currently in there.'
+		act 'Wait':
+			cla
+			'You decide stay and wait for someone to come.'
+			act 'Keep looking': gs 'mod_iwhore_pbath', 'hole'
+		end
+		act 'Leave': gt $locM, $locM_arg
+	end
+end
+
+if $ARGS[0] = 'virgin':
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/hj0.jpg"></center>'
+	if gloryhole = 0:
+		'You tentatively reach out and gently touch the dick, half afraid to, but also half wanting to.'
+	else
+		'You tentatively reach out and gently touch the dick...everytime your finger touch it the cock move up and down fully erected...''...maybe it''s painful staying that way...''...'
+	end
+	act 'Quickly leave the stall':
+		cls
+		'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
+		'You shudder in disgust at the thought that you were just touching some stranger''s dick. You get up and quickly leave.'
+		act'Leave': gt $locM, $locM_arg
+	end
+	act 'Grab it':
+		cls
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/hj1.jpg"></center>'
+		if gloryhole = 0:
+			'Biting your lip and deciding you want to feel it some more, you reach over again and grab it. You caress it with your hand, it is harder than you expected and warm to the touch, it almost feels like it is throbbing in your hand. Unexplained feelings of excitement run through your body. You hear through the wall the guy saying, "Stop playing with it and stroke it." "Huh?" You reply, not knowing why he wants you to stroke it. He replies, "Really, you don''t know? Just grab it with your hand and slide it up and down."'
+		else
+			'Biting your lip and deciding you want to feel it some more, you reach over again and grab it. You caress it with your hand, it is hard and is throbbing in your hand. Feelings of excitement run through your body...."Stop playing with it and stroke it." "..." ..."You cannot let me that way...at least grab it with your hand and slide it up and down."'
+		end
+		gs 'arousal', 'foreplay', 5, 'unknown'
+		gs 'stat'
+		act 'Slide your hand on his penis':
+			cls
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhj0.mp4"></video></center>'
+			if gloryhole = 0:
+				'You decide to gently slide your hand on his dick. You feel his hard penis throb as you continue to slide your hand up and down. To your surprise you are really enjoying stroking the dick, your pussy starts to itch from the experience. As you get more turned on, you grab it with both hands and stroke it.'
+			else
+				'You decide to gently slide your hand on his dick. You feel his hard penis throb as you continue to slide your hand up and down. Your pussy starts to itch from the experience; as you get more turned on, you grab it with both hands and stroke it.'
+			end
+			gs 'arousal', 'hj', 5, 'unknown'
+			gs 'stat'
+			act 'Continue Stroking':
+				cls
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhj0.mp4"></video></center>'
+				'"...You are a low starter...mmm...but when you begin...mmmm..." The man seems to appreciate your effort and your strokes becomes more furious; your top falls down but you don''t stop and continue stroke the man with your nipples now fully erected...'
+				act '...':
+					cls
+					spafinloc = 13
+					spafinloc = 11
+					minut +=5
+					gs 'arousal', 'end'
+					gs 'cum_manage'
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/facial0.jpg"></center>'
+					if gloryhole = 0:
+						'Just as you fall on your knees tired of the position, without any warning, hot white liquid start spurting out the tip of his penis and with a last stroke an heavy cum blast cover your face and exposed tits. You look at your hands, watching the sperm run down the back of your hand and down onto your arm. The man panting says, "That was," he takes another breath, "That was great."...  ...''...sniff sniff...at least it''s not on my top...sniff sniff...''... . You cannot avoid to smell the pungent scent of the man''s cum... '
+						act 'Curious as you are...':
+							cls
+							minut +=2
+							spafinloc = 12
+							gs 'cum_manage'
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/virgin0.mp4"></video></center>'
+							'You decide to lick a bit of the white liquid off your hand curiously wanting to know what it tastes like. It''s slimy and tastes tart.'
+							act 'Leave':  gt $locM, $locM_arg
+						end
+					else
+						'You move on your knees to continue jerk him off, but the man doesn''t last long and without any warning cum start spurting out the tip of his penis and with a last stroke an heavy cum blast cover your face and exposed tits. You look at your hands, watching the sperm run down the back of your hand and down onto your arm. The man panting says, "That was," he takes another breath, "That was great."...  ...''...at least it''s not on my top...''... '
+						act 'Lick it':
+							cls
+							minut +=2
+							spafinloc = 12
+							gs 'cum_manage'
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/virgin0.mp4"></video></center>'
+							'You decide to lick a bit of the white liquid off your hand before it dry '
+							act 'Leave':  gt $locM, $locM_arg
+						end
+					end
+					act 'Leave':  gt $locM, $locM_arg
+				end
+			end
+		end
+		act 'Stop':
+			cls
+			gs 'arousal', 'end'
+			gs 'stat'
+			'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
+			'You let go of him, wondering what possessed you to grab some stranger''s dick in the first place. You quickly leave the stall, you can hear the guy. "Hey why did you stop?... Hello? Are you still there? What the fuck!"'
+			act 'Quickly get out': gt $locM, $locM_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'not_alone':
+
+	*clr & cla
+	gs 'arousal', 'foreplay', 5, 'unknown'
+	gs 'stat'
+	'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhj0.mp4"></video></center>'
+	'You start stroking the man feeling the power you have on him; you begin with no mercy and soon the man ask you to go easy..."...Hey hey hey...it''s delicate!..."'
+	
+	act 'Lube it':
+		*clr & cla
+		gs 'arousal', 'bj', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/a0.mp4"></video></center>'
+		'Overwelmed by your sensations you don''t care anymore; not wanting to lose this shaft you decide to give him a little help; you glance his tip and put the man''s member in your mouth..."Happy?..." ....The man doesn''t answer but his body does...'
+		act 'Keep stroking':
+			*clr & cla
+			gs 'arousal', 'foreplay', 5, 'unknown'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhj2.mp4"></video></center>'
+			'..."Shit baby, you are good at this."... Excited by the man''s scent and situation you start to pinch your nipples and return to stroke him...'
+			wait 4000
+			act 'It starts to be dry again...':
+				*clr & cla
+				gs 'arousal', 'bj', 5, 'unknown'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/a3.mp4"></video></center>'
+				'You take again the man''s member in your mouth and with your free hand you start touching your crotch... . You bob your head up and down, blowing him while your soaked pussy start to drip..."...Keep going i''m near..."'
+				act '"Do not dare!"':
+					*clr & cla
+					gs 'arousal', 'foreplay', 5, 'unknown'
+					gs 'stat'
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/kru/aj/a2.mp4"></video></center>'
+					'You have not finished with your pussy and for sure you don''t want to leave unsatisfied... . You return to jerk the man, who''s a little disappointed..."...Shit girl...why you stop?...". You don''t care and keep to play with your kitten till you had enough; he has nothing to be disappointed: his hard cock is the prove he like it...'
+					act 'Show your skill':
+						*clr & cla
+						gs 'arousal', 'bj', 2, 'unknown'
+						gs 'stat'
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjpassion0.mp4"></video></center>'
+						'...but you crave for his cock right now, and you know what to do. You take his balls in your mouth and like a pro you lick all the lengh of his shaft finishing with his tips wrapped by your lips. "...That''s ... that''s ....owww...don''t stop don''t stop...owwww uuuuhhh!....that''s it!"'
+						act 'Work your money':
+							*clr & cla
+							gs 'arousal', 'bj', 3, 'unknown'
+							gs 'stat'
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjmast6.mp4"></video></center>'
+							'Time to put and end on this...of course your pussy need attention too...'
+							wait 5000
+							'..."...Anf anf ...i''m cuminggghh!!!!..."...'
+							act '...':
+								*clr & cla
+								spafinloc = 13
+								spafinloc = 12
+								spafinloc = 11
+								money += 100
+								minut +=5
+								new_gh_whore = 2
+								gs 'arousal', 'bj', 2, 'unknown'
+								gs 'cum_manage'
+								gs 'stat'
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa0.mp4"></video></center>'
+								'You made a great work, he discharge his load almost everywhere; you try to catch it with your mouth but you cannot avoid some spurts here and there. "UUuughhh!!!! Shit!!!...these are the best rubles i spent in my life."... ''...mmm ... tasty...''... . "Here take this i want you to have a bonus...you really earned it." The man slipped another 100 rubles into the hole that you let fall into the floor...you still have something in your hand.... "...Emmh...you can left the grip now..."'
+								wait 3000
+								act 'Leave':  gt $locM, $locM_arg
+							end
+						end
+					end
+				end
+			end
+		end
+	end	
+end
+
+if $ARGS[0] = 'blowjob':
+	cla
+	*clr
+	guy += 1
+	gloryhole += 1
+	pcs_throat += 1
+	gs 'mod_iwhore_dincollect' , 'prezik'
+	gs 'arousal', 'bj', 5, 'unknown'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/bj'+rand(0,6)+'.jpg"></center>'
+	'You wrap your lips around his dick and take his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock in your mouth and start to suck it, you suck the cock enthusiastically.'
+	
+	if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_iwhore_pbath', 'ghsex'
+	act 'Continue to Suck':
+		cla
+		*clr
+		gs 'arousal', 'bj', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbj'+rand(0,30)+'.mp4"></video></center>'
+		'You suck on his dick, bobbing your head, sometimes using your hands to stroke his shaft at the same time, other times your hands massage his balls. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Swallow':
+			cls
+			gs 'arousal', 'end'
+			swallow += 1
+			spafinloc = 12
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+			'Despite what he says you keep sucking his dick, you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You pull your mouth off his dick but keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'jerkoff':
+	cla
+	*clr
+	guy += 1
+	gs 'arousal', 'foreplay', 5, 'unknown'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/hj'+rand(2,8)+'.jpg"></center>'
+	'You spit on your hand and wrap it around his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock; you keep the peace and start to feel his throbbing...'
+	
+	if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_iwhore_pbath', 'ghsex'
+	act 'Continue to jerk':
+		cla
+		*clr
+		gs 'arousal', 'foreplay', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhj'+rand(0,12)+'.mp4"></video></center>'
+		'Your hands continue to stroke his shaft; some times your hands massage his balls, and you try to catch the moment the man reach his climax. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Point it to your face':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 13
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/hand'+rand(0,1)+'.mp4"></video></center>'
+			'You keep jerking him off, shortly later, hot spurts of cum start flying, the remnants slowly drip all over your hand.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+	
+	act 'Blow him':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		gs 'arousal', 'bj', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbj'+rand(0,30)+'.mp4"></video></center>'
+		'You decide that you want to taste the man and start sucking on his dick, bobbing your head, sometimes using your hands to stroke his shaft at the same time, other times your hands massage his balls. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Swallow':
+			cls
+			gs 'arousal', 'end'
+			swallow += 1
+			spafinloc = 12
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+			'Despite what he says you keep sucking his dick, you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You pull your mouth off his dick but keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'mast_bj':
+	cla
+	*clr
+	guy += 1
+	gloryhole += 1
+	pcs_throat += 1
+	gs 'mod_iwhore_dincollect' , 'prezik'
+	gs 'arousal', 'bj', 5, 'unknown'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/bj'+rand(0,8)+'.jpg"></center>'
+	'You wrap your lips around his dick and take his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock in your mouth and start to suck it, you suck the cock enthusiastically.'
+	
+	if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_iwhore_pbath', 'ghsex'
+	act 'Continue to Suck':
+		cla
+		*clr
+		gs 'arousal', 'bj', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbjmast'+rand(0,6)+'.mp4"></video></center>'
+		'You suck on his dick, bobbing your head, sometimes using your hands to stroke his shaft at the same time, other times your hands massage his balls. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Swallow':
+			cls
+			gs 'arousal', 'end'
+			swallow += 1
+			spafinloc = 12
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+			'Despite what he says you keep sucking his dick, you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You pull your mouth off his dick but keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'mast_hj':
+	cla
+	*clr
+	guy += 1
+	gs 'arousal', 'foreplay', 5, 'unknown'
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/hjmast'+rand(0,6)+'.jpg"></center>'
+	'You spit on your hand and wrap it around his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock; you keep the peace and start to feel his throbbing...'
+
+	
+	if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_iwhore_pbath', 'ghsex'
+	act 'Continue to jerk':
+		cla
+		*clr
+		gs 'arousal', 'foreplay', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/hj/vhjmast'+rand(0,2)+'.mp4"></video></center>'
+		'Your hands continue to stroke his shaft; some times your hands massage his balls, and you try to catch the moment the man reach his climax. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Point it to your face':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 13
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/hand'+rand(0,1)+'.mp4"></video></center>'
+			'You keep jerking him off, shortly later, hot spurts of cum start flying, the remnants slowly drip all over your hand.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+	
+	act 'Blow him':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		gs 'arousal', 'bj', 5, 'unknown'
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/bj/vbj'+rand(0,30)+'.mp4"></video></center>'
+		'You decide that you want to taste the man and start sucking on his dick, bobbing your head, sometimes using your hands to stroke his shaft at the same time, other times your hands massage his balls. Before to long you hear the guy moan in pleasure, "I''m coming."'
+		act 'Swallow':
+			cls
+			gs 'arousal', 'end'
+			swallow += 1
+			spafinloc = 12
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+			'Despite what he says you keep sucking his dick, you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Step back':
+			cls
+			gs 'arousal', 'end'
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			'You pull your mouth off his dick but keep jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			act 'Get up':  gt $locM, $locM_arg
+		end
+	end
+end
+
+if $ARGS[0] = 'ghsex':
+	cls
+	gs 'arousal', 'hj', 5, 'unknown'
+	gs 'stat'
+	'<center><b><font color="maroon">Stall</font></b></center>'
+	if rand (0,9) = 9:
+		'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghundress.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/undress'+rand(0,7)+'.mp4"></video></center>'
+	end
+	'You let go of him and quickly undress, once you are naked you start stroking him again while you line yourself up with his dick. You badly want to fuck him.'
+	
+	if stat['anal'] > 0:
+		act 'Ass':gt 'mod_iwhore_pbath', 'anal'
+	end
+	if stat['vaginal'] > 0:
+		act 'Pussy':gt 'mod_iwhore_pbath', 'pussy'
+	end
+end
+
+if $ARGS[0] = 'anal':
+	cla
+	*clr
+	gs 'arousal', 'masturbate', 5, 'unknown', 'sub'
+	gs 'arousal', 'anal', 5, 'unknown', 'sub'
+	minut += 5
+	gs 'stat'
+	if rand (0,16) = 16:
+		'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghintoass.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/insertion/vanal'+rand(0,14)+'.mp4"></video></center>'
+	end
+	'You rub your wet pussy and get your fingers nice and wet and then rub it on your asshole, you do the same to his dick, then you guide his <<npc_dick[$npclastgenerated]>>cm <<$npc_thdick[$npclastgenerated]>> cock into your ass. You feel his dick enter your tight ass, feelings of pain and pleasure rush through you.'
+	
+	act 'Keep Going':
+		cls
+		gs 'stat'
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/anal/vanal'+rand(0,38)+'.mp4"></video></center>'
+		if pcs_ass < 10:
+			pcs_ass += 2
+			agape = 2
+			'The pain doesn''t fade and instead it starts to hurt worse after a while and the pleasure starts to fade. You fuck his dick with your ass, at first taking him deeper and deeper, as you get faster and faster. As the pleasure fades and the pain gets worse you slow down and don''t take him as deep. you start to rub your clit to help with the sensation of pleasure. You consider stopping as the pain gets worse, but you can tell by the throbbing of his dick and ragged breathing he is about to cum and decided to keep it up so he can finish.'
+		elseif pcs_ass < 20:
+			pcs_ass += 1
+			agape = 1
+			'The pain fades slowly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
+		else
+			pcs_ass += 1
+			'The pain fades quickly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
+			gs 'arousal', 'anal', 5, 'unknown', 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+		end
+
+		act 'Let him cum in your ass':
+			cls
+			spafinloc = 3
+			gs 'cum_manage'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/anal/vanal'+rand(0,5)+'.mp4"></video></center>'
+			'You feel his dick throb as he shoots his load of sperm deep in your ass, filling it up. When you pull your ass off his dick, you feel the hot sperm spilling out of your gaping asshole.'
+			gs 'arousal', 'anal', 10, 'unknown', 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Let him cum all over your ass':
+			cls
+			spafinloc = 4
+			gs 'cum_manage'
+			if rand (0,1) = 1:
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghcumonass.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/anal/butt0.jpg"></center>'
+			end
+			'You pull your ass away, feeling his cock slip out of your asshole, just as you feel hot splashing of cum landing on your butt, coating your cheeks and running down the crack of your ass.'
+			gs 'arousal', 'anal', 10, 'unknown', 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Get up':  gt $locM, $locM_arg
+		end
+		act 'Turn around and kneel...':
+			*clr & cla
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/atm'+rand(0,2)+'.mp4"></video></center>'
+			'You pop out the man''s dick from your asshole and immediately squat in front of his manhood'
+			act 'Let him cum in your mouth':
+				cls
+				spafinloc = 12
+				swallow += 1
+				gs 'cum_manage'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+				'Once down on your knees you take his dick into your mouth and start sucking him, tasting your own ass on his dick. But you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+				gs 'arousal', 'bj', 10, 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+
+				act 'Get up':  gt $locM, $locM_arg
+			end
+			act 'Let him cum on your face':
+				cls
+				spafinloc = 11
+				facial += 1
+				gs 'cum_manage'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+				'You put your face near his dick and start jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+				gs 'arousal', 'hj', 10, 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+
+				act 'Get up':  gt $locM, $locM_arg
+			end
+		end	
+		act 'Stop':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/analpain.jpg"></center>'
+			'The pain gets to be to much and and you can''t take it anymore, on the verge of tears you stop and pull your ass off his dick. You quickly get dressed and leave, you wonder if it was supposed to hurt that much. You can hear the guy yelling at you for having stopped before he finished.'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Leave': gt $locM, $locM_arg
+		end
+	end
+end
+
+
+if $ARGS[0] = 'pussy':
+	cls
+	gs 'stat'
+	gs 'arousal', 'vaginal', 10, 'unknown', 'sub'
+	gs 'stat'
+	if rand (0,5) = 5:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/vag/vag'+rand(0,4)+'.jpg"></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/insertion/vvag'+rand(0,2)+'.mp4"></video></center>'
+	end
+	'You turn around and back up to the hole, you use one hand to guide his dick into your pussy. The <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock slides easily into your wet pussy, causing you to moan in pleasure as you move your hips back and forth. You start humping his dick with fast movements, taking the full length of him balls deep into you, which causes him to moan loudly. After several minutes, you hear him on the other side of the wall yell out, "I''m gonna come."'
+	
+	if protect ! 1:
+		act 'Allow him to cum inside':
+			cls
+			spafinloc = 0
+			gs 'cum_manage'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/vag/vvag'+rand(0,9)+'.mp4"></video></center>'
+			'Instead of pulling away, you moan "Inside me, please," and push yourself hard against the opening in the wall. You feel his hot sperm fill your pussy in spurt after spurt. When you finally pull yourself off him, you can feel the sperm leaking out of your pussy.'
+			gs 'cuminsidereact', 'an unknown guy from the gloryhole'
+			gs 'arousal', 'vaginal', 10, 'unknown'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Get dressed':  gt $locM, $locM_arg
+		end
+		act 'Splat your pussy':
+			cls
+			spafinloc = 14
+			spafinloc = 1
+			gs 'cum_manage'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/vag/vvagout'+rand(0,4)+'.mp4"></video></center>'
+			'You push yourself hard against the opening in the wall one last time before pulling him out. You feel his hot jizz splattering on your pussy spurt after spurt...you wonder if this is a waste...'
+			gs 'arousal', 'vaginal', 10, 'unknown'
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Get dressed':  gt $locM, $locM_arg
+		end
+	else
+		act 'Let him end':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/vag/vag'+rand(0,4)+'.jpg"></center>'
+			if sexcontra = 4:
+				spafinloc = 0
+				gs 'cum_manage'
+				gs 'cuminsidereact', 'an unknown guy from the gloryhole'
+				gs 'arousal', 'vaginal', 10, 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'You still are in extasy... <<$boydesc>> look at his dick and think, "Well it happens..."...it take some time to you to realize his cum is seeping into your pussy...'
+			elseif sexcontra = 5:
+				spafinloc = 0
+				gs 'cum_manage'
+				gs 'cuminsidereact', 'an unknown guy from the gloryhole'
+				gs 'arousal', 'vaginal', 10, 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'You still are in extasy... <<$boydesc>> look at his dick and think, "What the...whatever.."...it take some time to you to realize his cock has no condom on it while you start to feel a slimy liquid sensation inside your cunt.'
+			else
+				gs 'arousal', 'vaginal', 10, 'unknown'
+				gs 'arousal', 'end'
+				gs 'stat'
+				'You still are in extasy...<<$boydesc>> groaned and you realized that he came in the condom... . You feel the heat through the rubber, and your pussy start to clench. "Hey...leave the grip...you''ll vacuum the condom into your pussy if you continue..."'
+			end
+			sexcontra = 0
+			protect = 0
+			act 'Get dressed':  gt $locM, $locM_arg
+		end
+	end
+	
+	act 'Quickly turn around and get on your knees':
+		cla
+		*clr
+		act 'Let him cum in your mouth':
+			cls
+			spafinloc = 12
+			swallow += 1
+			gs 'cum_manage'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vswa'+rand(0,29)+'.mp4"></video></center>'
+			if protect ! 1:
+				'Once down on your knees you take his dick into your mouth and start sucking him. You are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			else
+				'Once down on your knees you pull out his condom and take his dick into your mouth and start sucking him. You are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
+			end
+
+			gs 'arousal', 'bj', 10, 'unknown'
+			gs 'arousal', 'end'
+			gs 'stat'
+			act 'Get dressed':  gt $locM, $locM_arg
+		end
+		act 'Let him cum on your face':
+			cls
+			spafinloc = 11
+			facial += 1
+			gs 'cum_manage'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/gh/single/cum/bj/vfacial'+rand(0,6)+'.mp4"></video></center>'
+			if protect ! 1:
+				'You put your face near his dick and start jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			else
+				'You pull out his condom and put your face near his dick jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
+			end
+
+			gs 'arousal', 'hj', 10, 'unknown'
+			gs 'arousal', 'end'
+			gs 'stat'
+			act 'Get dressed':  gt $locM, $locM_arg
+		end
+	end
+end
+
+
+if $ARGS[0] = 'rape':
+	cla
+	*clr
+	dick = rand(9, 25)
+	if rand(1, 20) > 12:
+		gs 'npcgeneratec', 0, 'rapist', rand(19,45)
+		gs 'boyStat', $npclastgenerated
+		'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape3.mp4"></video></center>'
+		'Just as you are leaving the women''s restroom a naked man storms out of the men''s restroom and grabs you by the hair and drags you inside the men''s room. He rips off your top and forces you down on your knees, shoving his dick in your mouth, forcing you to suck his dick.'
+		act 'Continue':
+			cls
+			'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape4.mp4"></video></center>'
+			'You bite down his dick, which makes him pull his dick out of your mouth. "Fine you little fucking cunt, we''ll do this the hard way." He lifts you up and forces you between two urinals with your face up against the wall. He roughly shoves his cock in your ass, the only lubrication is the bit of your saliva still on his dick. It feels like he is ripping your ass open, you cry and scream. He just jackhammers your ass balls deep, while holding you by the throat.'
+			gs 'arousal', 'anal', 10, 'unknown', 'sub', 'rough'
+			gs 'stat'
+			act 'Continue':
+				cls
+				'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape1.mp4"></video></center>'
+				'As you scream he reaches up and clamps a hand over your mouth to muffle your screams, he continues you pound your ass balls deep with his dick. Not relenting no matter how much you struggle or cry. "You think it''s funny bitch to steal a man''s hard earned money, well you won''t think it is so funny after I am done with you. I''m going to fuck your ass till it bleeds like your cunt."'
+				'He keeps ripping your ass up with his dick, the pain is unbearable, but there is nothing you can do about it. You really wish you hadn''t taken his money and kept it.'
+				gs 'arousal', 'anal', 10, 'unknown', 'sub', 'rough'
+				gs 'stat'
+				act 'Continue':
+					cls
+					spafinloc = 12
+					rape += 1
+					gs 'cum_manage'
+					if pcs_ass < 10:
+						pcs_ass += 3 & agape = 3
+					elseif pcs_ass < 20:
+						pcs_ass += 2 & agape = 3
+					else
+						pcs_ass += 2 & agape = 2 & pcs_horny += RAND(20,40)
+					end
+					'<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/cumspit.mp4"></video></center>'
+					'Finally he pulls the dick out of your ass and forces you back to your knees, he shoves his dick back in your mouth and you can taste your own ass on his dick. He says to you. "You fucking bite me again bitch and I will call everyone I know and we will train fuck your ass for days." Afraid he is serious you suck his dick until he finally shoots his load in your mouth.'
+					gs 'arousal', 'bj', 10, 'unknown', 'sub', 'rough'
+					gs 'arousal', 'end'
+					gs 'stat'
+					'With that he lets go of you and walks off in disgust.'
+					act '...recover... .': 
+						cla
+						*clr
+						money = 0
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/rape/zend1.jpg"></center>'
+						'As the man finish he turns to you..."Do not try anything stupid. Is that clear? IS THAT CLEAR???" You nod in fear, and calling the police is not an option... . "Good slut... ." You can do nothing when the man pick your purse and robber your money; your only hope is that''s the end. Finally he straight his jacket and made him way to the exit leaving you on the floor in your own piss that''s starting to flow. You take some time to recover, but it seems you are safe...'
+						act '...': gt $loc, $loc_arg
+					end
+				end
+			end
+		end
+!	elseif hour >= 20 and hour <= 23:
+		!To write: the man lock you in the bath till the next day. At the 7:00 the service comes to clean the bath...
+!		if music_on = 1:
+!			$track_loop = 'sound/komb.mp3'
+!			volume = 50
+!			music_loop = 1
+!			pl '<a href="exec: music_on = 0 & gt $loc">Turn off the music</a>'
+!		else
+!			music_loop = 0
+!			close all
+!			pl '<a href="exec: music_on = 1 & gt $loc">Play music</a>'
+!		end
+!		cla
+!		*clr
+!		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/club_yaho.jpg"></center>'
+!		'You run into the crowd and start dancing to blend in. You hear a man yell out, "Where''s that bitch that took my money?" He storms off and you feel like it''s your lucky day today.'
+!		act 'Dance':
+!			cla
+!			*clr
+!			minut +=10
+!			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/disco/club_dance.jpg"></center>'
+!			'You continue to dance until the man has left.'
+!			act 'Stop': gt 'gdkin'
+!		end
+	else
+		cla
+		*clr
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
+		'You run from the public restroom and don''t stop until you are back in the residential area'
+		act 'Catch your breath':
+			minut += 5
+			gt 'pav_residential'
+		end
+	end
+end
+
+!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!PEE!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!!!!!!!!!!!!!!!!
+!gs 'din_van', 'pblc_pee'-----gs 'din_van', 'pblc_pee_end'
+
+
+
+
+if $ARGS[0] = 'pblc_pee_end':
+	act 'Finish and wipe':
+		*clr
+		cla
+		'<center><img <<$set_imgh>> src="images/pc/pee/wiping/' + rand(1,9) + '.jpg"></center>'
+		rand_pee = rand(0,6)
+		if rand_pee = 0:
+			'Gathering some toilet paper from the roll, you reach down wipe your vagina clean from the last drops of pee leaking from you before dropping the paper into the toilet.'
+		elseif rand_pee = 1:
+			'Wrapping some toilet paper around your hand, you reach around and give your pussy and ass a quick wipe before letting the paper drop into the bowl.'
+		elseif rand_pee = 2:
+			'You take a wad of toilet paper in your fist before using it to gently pay your vagina dry. You toss the used material in the toilet and flush it down.'
+		elseif rand_pee = 3:
+			'You gather some of the rough, cheap toilet paper and use it to lightly wipe yourself, not wanting to irritate your sensitive skin. You drop it into the dirty toilet and use your foot to push the handle in order to flush.'
+		elseif rand_pee = 4:
+			'Looking over for the roll of toilet paper see that the roll has been used up. Noticing that the stall next to you seems occupied, you politely ask the stranger to help you out. The stranger chuckles a bit before kindly handing you a wad under the stall wall, which you happily use.'
+		else
+			*clr
+			'<center><img <<$set_imgh>> src="images/pc/pee/wiping/no' + rand(1,6) + '.jpg"></center>'
+			'Reaching out for toilet paper you sigh as you notice that the roll is empty. Annoyed, you wiggle your ass to shake the last few drops from your lady bits before pulling up your panties and walking out of the stall.'
+		end
+
+		act 'Finish':gt $loc, $loc_arg
+	end
+end
+--- mod_iwhore_pbath ---------------------------------

+ 350 - 0
locations/mod_iwhore_pbathw.qsrc

@@ -0,0 +1,350 @@
+# mod_iwhore_pbathw
+
+
+if $ARGS[0] = 'bathbj':
+	cla
+	*clr
+	gs 'mod_iwhore_dincollect', 'whore_check_oral'
+	$orgasm_or = 'no'
+	gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+	gs 'arousal', 'end'
+	gs 'stat'
+	if want_stall = 9 or want_stall = 10:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/tit'+rand(0,1)+'.jpg"></center>'
+		'You agree to blow him, so you lead him to the stall. "Show me your tits slut"'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/tit0.jpg"></center>'
+		'You agree to blow him... . "Show me your melons slut"'
+	end
+	'"Do you like it honey?" On the sight of your tits he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders. '
+	act 'Take it in mouth':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if want_stall = 9 or want_stall = 10:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/bj/bj'+rand(0,5)+'.jpg"></center>'
+			''
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/bj/bj'+rand(0,12)+'.jpg"></center>'
+			''
+		end
+		if protect = 1:
+			'You fall to your knees and wrap your lips around his member; with those modern condom there''s no real difference with bare skin... . You suck and run your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+		else
+			'You fall to your knees and wrap your lips around his member sucking and running your tongue along his shaft while your hands fondle his balls. "Don''t be shy, slut," he murmurs before pushing his cock further into your mouth. '
+		end
+		gs 'mod_iwhore_dincollect','oralsex',5,'prostitution', 'unknown'
+		gs 'stat'
+		act 'Work the shaft': gt 'mod_iwhore_pbathw', 'bathbjend'
+	end
+end
+
+if $ARGS[0] = 'bathbjend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['bj'] += 1
+	gs 'arousal', 'bj', 10, 'prostitution', 'unknown'
+	gs 'stat'
+	if want_stall = 9 or want_stall = 10:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/bj/vbj'+rand(0,7)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/bj/vbj'+rand(0,10)+'.mp4"></video></center>'
+	end
+	'Your eyes tear up and you start to gag, but he doesn''t care as he takes control and face fucks you until you''re a wet, slobbering mess. "I''m cumming and you better swallow every drop of it, bitch."' 
+
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 11
+			want_stall = 0	
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/facial'+rand(0,3)+'.mp4"></video></center>'
+			'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+			act 'Collect money and go away.': gt $loc, $loc_arg 	
+		end
+	else
+		act 'Dry his balls':		
+			cla
+			*clr
+			spafinloc = 12
+			money += 20
+			want_stall = 0
+			gs 'cum_manage'
+			gs 'arousal', 'end'
+			gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+			gs 'stat'
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbj'+rand(0,1)+'.mp4"></video></center>'
+			'You don''t leave the grip on his shaft... . The man release his hot spunk stright into your mouth and you eagerly swallow it.'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end
+		act '...':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 12
+				money += 20
+				want_stall = 0
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/facial'+rand(0,3)+'.mp4"></video></center>'		
+				'The man release his hot spunk stright into your mouth, even if you didn''t want it you have to swallow it entirely.'
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			else
+				cla
+				*clr
+				spafinloc = 11
+				want_stall = 0
+				gs 'cum_manage'
+				gs 'arousal', 'end'
+				gs 'mod_iwhore_dincollect' , 'venerasiakOral'
+				gs 'stat'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbj'+rand(0,1)+'.mp4"></video></center>'
+				'"Uuuuhh arrr bitch! " The man finish jerking by himself, but he wasn''t able to center your mouth; your face is covered in cum and you swallow the rare drop that fall on your tongue to avoid making your clothes dirty. '
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'bathvag':
+	cla
+	*clr
+	gs 'mod_iwhore_dincollect', 'whore_check_vag'
+	$orgasm_or = 'no'
+	gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+	gs 'arousal', 'end'
+	gs 'stat'
+	if want_stall >= 5 and want_stall =< 8:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/puss'+rand(0,1)+'.jpg"></center>'
+		'You agree to a fuck, so you lead him to the stall. "Show me your pussy slut"'
+		*nl
+		'Once closed the door stall you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/puss0.jpg"></center>'
+		'You agree to a fuck... . "Show me your pussy slut"'
+		*nl
+		'Once being sure the bath is closed you quickly pull apart you clothes and present your pussy to him. "Do you like it honey?" On the sight of your pussy he wastes no time unzipping to reveal his already hardening cock. <br>"Don''t keep me waiting," he orders.'
+	end
+	act 'Come here "big" daddy!':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if want_stall >= 5 and want_stall =< 8:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/vag/vag'+rand(0,12)+'.jpg"></center>'
+			''
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/vag/vag'+rand(0,12)+'.jpg"></center>'
+			''
+		end
+		gs 'mod_iwhore_dincollect','wantvaginal',5,'prostitution', 'unknown'
+		gs 'stat'
+		'You spread your legs and help his member with your hand to accomodate in the right place easily since you have no time to waste...you can have some pleasure from work too. "The bitch is ready uh? Keep going slut...it''s me who have to be pleased. Do not forget." '
+		act 'Work the shaft': gt 'mod_iwhore_pbathw', 'bathvagend'
+	end
+end
+
+if $ARGS[0] = 'bathvagend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['vag'] += 1
+	if want_stall >= 5 and want_stall =< 8:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/vag/vvag'+rand(0,17)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/vag/vvag'+rand(0,11)+'.mp4"></video></center>'
+	end
+	'He doesn''t care as he takes the peace control, and for several minutes he pounds your pussy. Nonetheless your own pleasure grows and you feel yourself close to climax..."Get ready bitch."' 
+	gs 'mod_iwhore_dincollect','vaginalsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	if protect = 1:
+		act 'Out big boy!':		
+			cla
+			*clr
+			spafinloc = 14
+			spafinloc = 1
+			want_stall = 0
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagout'+rand(0,4)+'.mp4"></video></center>'
+			'Finally the man slip out the condom, he grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg 	
+		end
+	else
+		act 'Wrap your legs around him':		
+			cla
+			*clr
+			spafinloc = 0
+			money += 20
+			want_stall = 0
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagin'+rand(0,4)+'.mp4"></video></center>'
+			'You wrap your legs around him to pull him deeper inside. Suddenly he moans and you feel the warmth of his cum filling you. With one last grunt, he pulls out and you can feel some of his load drip down your thigh. "Fuck, that was good," he sighs while zipping up. With a smile, he slaps your ass before handing you the money.'
+			gs 'mod_iwhore_dincollect', 'aftervaginal','pc'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end
+		act 'Out big boy!':
+			if rand(0,2) < 2:
+				cla
+				*clr
+				spafinloc = 0
+				money += 20
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagin'+rand(0,4)+'.mp4"></video></center>'
+				'He grunts and shoots his cum deep inside you. "Bastard! Stupid son of a...."<br>"Hahaha....what''s the problem "mom"?" After one final thrust, he pulls out and begins to zip up. "Hehehe....Good work, whore..." he smiles and slaps you on the ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			else
+				cla
+				*clr
+				spafinloc = 14
+				spafinloc = 1
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vvagout'+rand(0,4)+'.mp4"></video></center>'
+				'He grunts and shoots cum all over your stomach and thighs. Satisfied, he starts to clean himself up, going as far as to crudely wipe away the last dribbles of cum leaking from his cock on to your stomach. "That was fun, slut," He slaps your ass before handing you the money.'
+				gs 'mod_iwhore_dincollect', 'aftervaginal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			end			
+		end
+	end
+end
+
+if $ARGS[0] = 'bathanal':
+	cla
+	*clr
+	gs 'mod_iwhore_dincollect', 'whore_check_anal'
+	$orgasm_or = 'no'
+	gs 'arousal', 'flash', 1, 'prostitution', 'unknown'
+	gs 'arousal', 'end'
+	gs 'stat'
+	if want_stall >= 1 and want_stall =< 4:
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/ass'+rand(0,2)+'.jpg"></center>'
+		'You agree to let him fuck your ass, so you lead him to the stall. "Show me your butt slut"'
+	else
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/ass0.jpg"></center>'
+		'You agree to let him pound your butt... . "Show me your bum slut"'
+	end
+	'"Do you like it honey?" On the sight of your ass he wastes no time unzipping to reveal his already hardening cock. <br>"Better for you to be ready slut" he says...<br>"Always honey..."'
+	act 'Bum bum':
+		cla
+		*clr
+		gs 'mod_iwhore_dincollect' , 'prezik'
+		if want_stall >= 1 and want_stall =< 4:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/stall/anal/anal'+rand(0,7)+'.jpg"></center>'
+			'You lead him to the stall. "Spread your butt slut"'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/anal/anal'+rand(0,5)+'.jpg"></center>'
+			'"Open up bitch"'
+		end
+		gs 'mod_iwhore_dincollect','wantanal',5,'prostitution', 'unknown'
+		gs 'stat'
+		act 'Work the shaft': gt 'mod_iwhore_pbathw', 'bathanalend'
+	end
+end
+
+if $ARGS[0] = 'bathanalend':
+	cla
+	*clr
+	guy += 1
+	pav_sex += rand(0,1)
+	gs 'fame', 'pav', 'prostitute', rand(1,5)
+	stat['anal'] += 1
+	gs 'stat'
+	if want_stall >= 1 and want_stall =< 4:
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/anal/vanal'+rand(0,8)+'.mp4"></video></center>'
+	else
+		'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/main/anal/vanal'+rand(0,13)+'.mp4"></video></center>'
+	end
+	gs 'mod_iwhore_dincollect','analsex',15,'prostitution', 'unknown'
+	gs 'stat'
+	'The man decide to pounds your ass with no mercy. In an attempt to make it feel better, your fingers slip between your legs and you start to rub your clit. Eventually you start to loosen up and enjoy the sensations, a slight moan escaping your lips. His movements are getting faster now, telling you he''s close to cumming. ' 
+
+	if protect = 1:
+		act 'let him finish':		
+			cla
+			*clr
+			spafinloc = 4
+			want_stall = 0
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbutt'+rand(0,1)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg 	
+		end
+	else
+		act 'Wrap your legs':		
+			cla
+			*clr
+			spafinloc = 3
+			money += 20
+			want_stall = 0
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/anal'+rand(0,4)+'.mp4"></video></center>'
+			'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. With a final moan, he slips out of your abused hole. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+			gs 'mod_iwhore_dincollect', 'afteranal','pc'
+			gs 'arousal', 'end'
+			gs 'cum_manage'
+			gs 'mod_iwhore_dincollect' , 'venerasiak'
+			gs 'stat'
+			act 'Collect money and go away.': gt $loc, $loc_arg
+		end
+		act '...':
+			if rand(0,3) < 2:
+				cla
+				*clr
+				spafinloc = 4
+				money += 20
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/vbutt'+rand(0,1)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, and his cock pop up from your ass. He grunts and you feel spurts of cum on your butt while he finish cleaning the last drop on your butt cheeck. "Nice ass, whore." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			else
+				cla
+				*clr
+				spafinloc = 3
+				want_stall = 0
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/publicrest/bath/client/cum/anal'+rand(0,4)+'.mp4"></video></center>'
+				'For several minutes he pounds your ass until he finally stops, cock buried deep in your ass. He grunts and you feel spurts of cum fill you. "What''s wrong with you?"<br>With a final moan, he slips out of your abused hole. "Hehehe it''s not that i could make you preggy slut." He gives your ass a hard slap after zipping himself up. After a moment, he pulls out the cash he owes you.'
+				gs 'mod_iwhore_dincollect', 'afteranal','boy',$boydesc
+				gs 'mod_iwhore_dincollect' , 'venerasiak'
+				gs 'arousal', 'end'
+				gs 'cum_manage'
+				gs 'stat'
+				act 'Collect money and go away.': gt $loc, $loc_arg 
+			end			
+		end
+	end
+end
+
+
+
+--- mod_iwhore_pbathw ---------------------------------

+ 11 - 0
locations/mod_iwhore_readme.qsrc

@@ -0,0 +1,11 @@
+# mod_iwhore_readme
+!input your mod detail readme here. you can use msg or detailed structure, just make sure to create act 'return': gt 'mod_setting'
+*clr&cla
+act 'return': gt 'mod_setting'
+
+'<center><b><font color=red> IWhore3 Awakening</font></b></center>'
+'Original Author: Junjulaug75
+
+Updated & Continued by: Incognito12 // Inebris#6825'
+'adapted to Girl Life  0.8.5'
+--- mod_iwhore_readme ---------------------------------

ファイルの差分が大きいため隠しています
+ 832 - 0
locations/mod_iwhore_realstat.qsrc


ファイルの差分が大きいため隠しています
+ 798 - 0
locations/mod_iwhore_realtime.qsrc


+ 2016 - 0
locations/mod_iwhore_recovery.qsrc

@@ -0,0 +1,2016 @@
+# mod_iwhore_recovery
+
+if $ARGS[0] = 'room120':
+	$locM_arg = $ARGS[0]
+	$locM = $CURLOC
+	$loc_arg = $ARGS[0]
+	$loc = $CURLOC
+	$location_type = 'bathroom'	
+	cls	
+	if pcs_energy > 100:
+		fat += (pcs_energy - 100) / 4
+		pcs_energy = 100
+	end
+	gs 'mod_iwhore_realstat' , 'restoring'	
+	'<center><h4>Hospital room</h4></center>'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/room.jpg"></center>'
+	'Nurse: "I''m behind the curtain if you need me..."'
+	'<a href="exec:msg''<<$pcs_firstname>> <<$pcs_lastname>> female <<age>> years old; height: <<pcs_hgt>>cm, weight: <<salo>>. <br>Pain head = <<pain[''head'']>> <br>Pain ears = <<pain[''ears'']>>  <br>Pain eyes = <<pain[''eyes'']>> <br>Pain mouth = <<pain[''mouth'']>> <br>Pain neck = <<pain[''neck'']>>  <br>Pain eyebrows = <<pain[''eyebrows'']>>  <br>Pain back = <<pain[''back'']>>  <br>Pain legL = <<pain[''legL'']>> <br>Pain legR = <<pain[''legR'']>>  <br>Pain feet = <<pain[''feet'']>>   <br>Pain toes = <<pain[''toes'']>>  <br>Pain shoulders = <<pain[''shoulders'']>>  <br>Pain armL = <<pain[''armL'']>> <br>Pain armR = <<pain[''armR'']>> <br>Pain hands = <<pain[''hands'']>> <br>Pain fingers = <<pain[''fingers'']>> <br>Pain chest = <<pain[''chest'']>> <br>Pain ribs = <<pain[''ribs'']>>  <br>Pain tummy = <<pain[''tummy'']>>  ''">Pain status</a>'
+	act 'Talk to Lida':
+		cls
+		gs 'mod_iwhore_realstat' , 'restoring'
+		gs 'mod_iwhore_realstat' , 'lidamemo'
+		if minut < 45:
+			act 'Chit chat':gt 'mod_iwhore_recovery', 'lidachat'
+		else
+			gt 'mod_iwhore_recovery', 'schedule'
+		end	
+	end
+	if hour >= 8:
+		act 'Doctor Bogomolov''s office':
+			if hour = 8:
+				gt 'mod_iwhore_therapy', 'bogomolov'
+			else
+				gt 'mod_iwhore_recovery', 'boffice'
+			end
+		end
+		act 'Doctor Smirnitskaya''s office':
+			if hour = 9:
+				gt 'mod_iwhore_therapy', 'smirnitskaya'
+			else
+				gt 'mod_iwhore_recovery', 'soffice'
+			end
+		end
+	else
+		''
+	end
+	if body_healing >= 9:
+		act 'Have a shower':gt 'mod_iwhore_recovery', 'shower'
+	end
+	act 'Hallway':gt 'mod_iwhore_recovery', 'hallway'
+	if hour = 10:
+		act 'Pool':gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 17:
+		act 'Pool':gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 15:
+		act 'Exercise':gt 'mod_iwhore_therapy', 'exercise'
+	elseif hour = 14 and iskra_war >= 2:
+		act 'Ask about the girl.': gt 'mod_iwhore_recovery', 'room136'
+	elseif hour = 12 or hour = 19:
+		act 'Eat':gt 'mod_iwhore_recovery', 'lunch'
+	elseif hour = 13:
+		act 'Tooth replacement':gt 'mod_iwhore_therapy', 'tooth'
+	elseif hour = 21:
+		act 'Go to sleep':gt 'mod_iwhore_recovery', 'bed'
+	else
+		''
+	end
+	gs 'mod_iwhore_dincollect' , 'tampon'
+	gs 'mod_iwhore_dincollect' , 'basin'	
+end
+
+if $ARGS[0] = 'room136':
+	if hour = 14:
+		if body_healing = 9:
+			*clr & cla
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/vanya.jpg"></center>'
+			'Iskra: "...Ughhh!!! You stink!...But that means she made it! You earned the lithium....Ughhh...you relly stink!...I have to ask babushka to wash you....but first you need to heal...i should ask Lida...Uh???...." (sniff sniff)...."LIDA!!!"<br>Nurse Lida: "Yes yes...it''s me! Guess who''s with me?"<br>Iskra: ...(sniff sniff)..."...<<$pcs_nickname>>!"<br>..."...Hi...I heard about you...d-do you know me?"<br>Iskra: ..."...Of course...come here, i want to touch you..."<br>"..."<br>Nurse Lida: "Come on <<$pcs_nickname>>...go on, she won''t eat you..."<br>"...Y-you are...you cannot..."<br>Iskra: ..."...I told you i''m blind...but that doesn''t matter now; come to me...you are safe: Lida''s pudding was delicious today..."<br>Nurse Lida: "Both of you shouldn''t skip the therapy...no no no...rush rush"...'
+			act 'Approach the girl':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/hands.jpg"></center>'
+				'"Can i know your name?"<br>Iskra: "...My name is Iskra...you really have a problem with names..."<br>"...I...don''t..."<br>Iskra: "Give me your hands..."'
+				wait 8000
+				'"..."<br>You extend your hands to the girl...<br>Iskra: "...softness...and pain...that''s not right."<br>"...I...I..."<br>Nurse Lida: "She''s not hungry...i told you..."<br>...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/eye.jpg"></center>'
+				'"It''s not me..."'
+				wait 4000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'
+				'"...not this time."'
+				wait 5000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+				'...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/stop.jpg"></center>'
+				'Iskra: "Stop!"'
+				wait 9000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance0.jpg"></center>'
+				'Iskra:...''...<<$pcs_nickname>>...pull them out...they are for you...''...<br>...''...i can...hear...you...''...<br>Iskra:...''...come on, pull them out...''...'
+				wait 7000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance1.jpg"></center>'
+				'...''...that...that way?...''...<br>Iskra:...''...yes, pick up some more...''...'
+				wait 6000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance2.jpg"></center>'
+				'...''...they are wonderful...''...<br>Iskra: ...''...you are.''...'
+				wait 6000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance3.jpg"></center>'
+				'...''...what should i do?...''...<br>Iskra: ...''...Are you serious?...You should run...''...'
+				wait 6000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance4.jpg"></center>'
+				'Iskra:...''...before the water wet you...hehehe...''...<br>...''...''...'
+				wait 6000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/stop1.jpg"></center>'
+				'...''...i fell...good...''...<br>Iskra: "Hey! That''s a pimple!"<br>Nurse Lida: "...<<$pcs_nickname>>?  Are you with us?"<br>Iskra: "Give her a second Lida...she''s tired..."<br>Nurse Lida: "...Uh?...But she''s happy..."<br>Iskra: "...Because she won''t remember...for a short time... . From now on, it''s up to her..."<br>Nurse Lida: "...Uh?"<br>Iskra: "You should crush it!"<br>"I will; you can touch my hands if you want, you are a nice little girl...did i told you?"<br>Nurse Lida: "...Uh? But..."<br>Iskra: "Lida...can i ask you a favour?"<br>Nurse Lida: "...Yes of course..."<br>Iskra: "Can you help me with Vanya...i think he need help..."<br>Nurse Lida: "...You mean...sure let me see, just a moment: ...<<$pcs_nickname>>? Is everything all right?"<br>"...Hehehe...yes Lida thanks...Iskra is tickling me...hehehe..."<br>Iskra: "Ok...i''ll stop. We have to help Vanya...i know he stink, but he''s sick..."<br>"...Hehehe...can i do something?..."<br>Iskra: "Yes, you should listen Lida more often; you can learn from her..."'
+				act '"Ok!"':
+					*clr & cla
+					hour = 15
+					minut += rand(10,15)
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/vanya2.jpg"></center>'
+					'Iskra: "...What does he have?"<br>Nurse Lida: "...I think he''s hungry..."<br>Iskra: "...But he stop launching rockets from his arms!"<br>Nurse Lida: "...Uhmmm...in that case we should clean the barrel...assistant: pass me the bandages."<br>Iskra: "...Here!"<br>Nurse Lida: "...Uhmmm...i should evaluate your knowledge...no: this time you''ll made the work!"<br>Iskra: "...Yes miss Lida!"<br>Nurse Lida: "Good...good...I''ll check it later, for the moment he''s in your hands. Me and <<$pcs_nickname>> should go now... ."<br>Iskra: "I cannot talk! I have a task! Goodbye <<$pcs_nickname>>, goodbye Lida."<br>...''...i don''t want to go away...''...<br>Nurse Lida: "See you soon Iskra. ...We should really go now <<$pcs_nickname>>, you can pass visit her when you want but remember she need rest too..."<br>...''...Lida is right...''...<br>Nurse Lida: "Ready?"'
+					act '"...Goodbye...Iskra, see you soon..."': gt 'mod_iwhore_recovery', 'room120'
+				end
+			end
+		elseif body_healing = 10:
+			*clr & cla
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/vanya3.jpg"></center>'
+			'Iskra: "...Ughhh!!! You didn''t stop to stink!...I really have to ask babushka to wash you... . Let see your rockets...uhmmm ...Lida was right, i should ask her if she can help me with the laser too...Uh???...." (sniff sniff)...."LIDA!!!"<br>Nurse Lida: "Yes yes...it''s me! Guess who''s with me?"<br>Iskra: ...(sniff sniff)..."...<<$pcs_nickname>>!"<br>..."...Hi Iskra, how are you?"<br>Iskra: ..."...Doctor said i cannot access the pool yet..."<br>"...I''m sorry..."<br>Nurse Lida: "...She had to recover a little more before she will be able..."<br>"...I understand...you have to wait a little more Iskra..."<br>Iskra: ..."...I hope not too much i don''t want to stink like Vanya...uuuhhgg!"<br>Nurse Lida: "Hehehe...you don''t stink... . Just wait a little more, you are near to that time...if you force you may need more time and we don''t want that..."<br>Iskra: ..."...<<$pcs_nickname>>!<<$pcs_nickname>>! sit near to me.... there''s space for you too Lida..."<br>Nurse Lida: "Hehehe if i sit there will not be place for all of us.; <<$pcs_nickname>> can use my space she may be a little tired... thanks for the offer anyway..."'
+			act 'Sit next to Iskra':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/stop1.jpg"></center>'
+				'...''...i fell...good...when i sit next to her i feel good...''...<br>"Thanks Lida..."<br>Nurse Lida: "...not a problem..."<br>Iskra: "Hey! That''s the pimple you had last time!"<br>"...I didn''t have the time to take care of it..."<br>Iskra: "...I...like your face...but you have to crush it...or it will became bigger and bigger...and then all your face will be a big big big pimple...and then you cannot crush it otherwise you will not have a face anymore..."<br>Nurse Lida: "...Uhhhhghh Iskra...that''s gross... it''s worse than having a snail crawling over you..."<br>"...Ok ok ...message received..."<br>Iskra: "Hehehe...you are funny when you smile..."<br>"...Thanks Iskra...you are welcome..."<br>Iskra: "Lida...can i ask you something?"<br>Nurse Lida: "...Sure little flower..."<br>Iskra: ..."...Vanya cannot use the laser anymore... . Rockets are good now...but the laser...It''s all the day that i''m trying..."<br>Nurse Lida: "...Uhmmm we got a new task...what did he eat today?"<br>Iskra: "...Hospital food..."<br>Nurse Lida: "...I think you should share with him the food i bring to you...just a little, not too much. I''lL tell you a secret: i know when the hospital food is good and when not...you should avoid it till the day after tomorrow."<br>Iskra: "...I suspected the same..."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance4.jpg"></center>'
+					'...''...i...can think straight...''...<br>Nurse Lida: "...Uhmmm...let me check a little more: from where does he shoot with the laser?..."<br>Iskra: "...From his ears... . He charge the air with the electric plasma, then the charged air come back trough his nose...then he said: "It''s your last hour."...he put his hands on his head and shoot. I''ve tried...there''s nothing i can do..."<br>...''...i...can see her running in a beach...''...<br>Nurse Lida: "...Uhmmm...i''ll remove his last bandage...maybe..."<br>...''...she helped me...she''s helping me...''...<br>Iskra: "...''...you are on your way now...you are doing by your own...''...<br>Nurse Lida: "Got it!"'
+					act '...''...Iskra...''...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/lida1.jpg"></center>'
+						'Nurse Lida: "...Why don''t you try now?"<br>Iskra: "...Uhmmm...ok. I''ll keep it in the safety mode...i cannot destroy the hospital..."<br>(Click)..."It''s your last hour."...(Click)..."It''s your last hour."...(Click)..."It''s your last hour."...<br>Iskra: "...IT WORKS!"<br>Nurse Lida: "...Yes yes...the last bandages kept pushing the security button..."<br>Iskra: "...You are marvelous Lida! Thank you! Pool...wait for me, i''ll reach you soon!"<br>Nurse Lida: "That''s it... . Work hard and be a good girl."<br>You smile and feel light in the heart...those moments fill a little your emptied soul; you don''t want to go away, but you remind that even Iskra is recovering...you don''t want to be a weight for her.You quickly look at Lida, she gave you a sign; it''s time to go<br>"I have to go now Iskra...i hope i will be able to spend another visit to you...i''d really like it..."<br>Nurse Lida: "There should be the time...don''t worry..."<br>Iskra: "...I''d like that too...can i shoot the ceiling now? I want to try Vanya''s power..."<br>"Hehehe...maybe there is someone on the upper floor...don''t you think it would be better to try it in the open air?"<br>Iskra: "...Oh!..right...i should wait. Goodbye <<$pcs_nickname>>"<br>Nurse Lida: "Hehehe...are you ready <<$pcs_nickname>>?"'
+						act '"Yes, goodbye Iskra"':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hallway0.jpg"></center>'
+							'"...She has a strong spirit..."<br>Nurse Lida: "...She has, i hope her body will return quick to its original ability...at least as near as possible..."<br>"...Is she so weak?"<br>Nurse Lida: "...Four years, are not a joke... . Muscles lives of movements...we can do a little without the real movements to keep their functions...she has a long recovery phase to do... . "<br>"...I''m sorry for her...i''d like to be able to do something..."<br>Nurse Lida: "...You are doing it. I can tell you she likes your company...she made more movements too when you are near her...that''s one of the reason we should not disturb her too much. I''m pretty sure she''s sleeping right now..."<br>"..."<br>Nurse Lida: "...But i have to think about you too...care to show me how much you can move?"'
+							act '"I...I can try..."':
+								*clr & cla
+								hour = 15
+								minut += rand(10,15)
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/walking0.jpg"></center>'
+								'Nurse Lida: "...The left...and the right...use the stick to help you..."<br>"...Wait...do not left me..."<br>Nurse Lida: "...Few seconds <<$pcs_nickname>>...I''m here... . I only ask you to make few steps..."<br>"..."... You made few step, but at the end you feel your strengh fade away..."...L-Lida.."<br>Nurse Lida: "...Here!" The nurse walk over you and catch hold your body..."...And now we''ll go to the room again...don''t worry, i''ll hold you again...we cannot skip the exercise!"'
+								act '"...Thanks..."': gt 'mod_iwhore_recovery', 'room120'
+							end
+						end
+					end
+				end
+			end
+		elseif body_healing = 11:
+			*clr & cla
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/bleach0.jpg"></center>'
+			'Iskra: "...Ughhh!!! babushka ...is that bleach?"<br>Iskra''s grandmother: "...Uh? Did you said something my heart?..."<br><br>Nurse Lida: "...She has visit..."<br>..."...I...won''t disturb her...can...i stay here a couple of second to watch her without entereing?"<br>Nurse Lida: "...You cannot resist her...do you? I confess you something: neither i...a couple of minutes will be enough..."<br><br>Iskra: ..."...BABUSHKA!!! IS THAT BLEACH?"<br>Iskra''s grandmother: "...Uh? Witch? I saw no witch...uhmmm the price of the oil is rising...an no...it''s lowering..."<br>Iskra: ..."...BABUSHKA!!!"<br>Iskra''s grandmother: "...What''s up my love...i''m not deaf...i''m coming..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/tablet.jpg"></center>'
+				'Iskra: "...Ughhh!!! I hope that this smell it''s not bleach!"<br>Iskra''s grandmother: "...Uh? Bleach you said?...Uh..uhmmm...."<br><br>Nurse Lida: "..."<br>"..."<br><br>Iskra''s grandmother: "...Uhmmm...I don''t remember..."<br>Iskra: ..."...If i found that you used the bleach on Vanya...where''s is he?"<br><br>Nurse Lida: "...O-o..."<br>"...She''s in danger..."<br><br>Iskra''s grandmother: "...I know no Vanya! I''m not like your mother...Umphhh! I rised her to be a clean lady...and now...Uhmmphh!!! Don''t talk me about her, i won''t hear."<br>Iskra: "...You have to give it back to me...and what''s that thing you brought me?"<br>Iskra''s grandmother: "...Do you like it my heart?"<br>Iskra: "...I neither know what it is...it seems a mirror but heavier...i hope it''s not a mirror babushka...i cannot use it!"<br>Iskra''s grandmother: "It''s not a mirror! It''s a strange...technology ...thing..."<br>Iskra: "...Uhmmm...i remember something about smartphone...now that i think it seems a smartphone...but bigger...is this a smartphone? I cannot use it neither!"<br>Iskra''s grandmother: "...It''s not a smart phon... My little heart ...you know i understand nothing about that things...they called it table...fable...something like that...it cost a lot. They said it can do everything...i wonder if i can use it to wash the dishes too..."<br><br>Nurse Lida: "...If there someone who can survive her...it''s her grandma."<br>"...Agree..."<br>Nurse Lida: "...We should go now... ."'
+				act '"Thanks Lida, it''s the right thing."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/walking1.jpg"></center>'
+					'Nurse Lida: "...Her grandmother love her..."<br>"...I think she took some from her...they seems...similar...except for the blindness..."'
+					wait 6000
+					*clr & cla
+					hour = 15
+					minut += rand(10,15)
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/walking1.jpg"></center>'
+					'Iskra:<b><font size= 6>"BABUSHKA!!!"</font></b>'
+					wait 3000
+					'<br>Nurse Lida: "...she found it..."<br>"...it seems..."'
+					act '...': gt 'mod_iwhore_recovery', 'room120'
+				end
+			end
+		elseif body_healing = 12:
+			*clr & cla
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/bleach0.jpg"></center>'
+			'Iskra''s grandmother: "...Definitively is rising..."<br><br>Nurse Lida: "...She has visit..."<br>"...That''s...ok. We should go... . Could you send her my goodbye ...Lida?"<br>Nurse Lida: "...Of course...<<$pcs_nickname>>...i''m sorry, i''m sure she would have been happy to speak with you again..."<br><br>Iskra''s grandmother: "...Still...uhmmm...but if I turn it over...it lower..."<br><br>"...It would have been the same for me...but she has the right to stay with her family..."<br><br>Iskra: ..."...<<$pcs_nickname>>! That''s <<$pcs_nickname>>''s smell! <<$pcs_nickname>>! <<$pcs_nickname>>!"<br>Iskra''s grandmother: "...Uh? My heart...you have to decide...first it''s Vanya 2...then Luchik...and now <<$pcs_nickname>>...and it''s not even a male name...really: it have to learn one name and that will be forever..."<br>Iskra: ..."...BABUSHKA!!!"<br>Iskra''s grandmother: "...What''s up my heart?..."<br>Iskra: ..."...<<$pcs_nickname>>! Come here don''t be shy...i want you to present someone!"'
+			act '"May...may i enter?"':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/bleach0.jpg"></center>'
+				'Iskra''s grandmother: "...Sure my dear...leave it on the table, you know you will have to take it away do you? She eat only what the other nurse bring hers...."<br>Nurse Lida: "..."<br>"Good evening madam..."<br>Iskra''s grandmother: "Good evening to you too... . Nurses are polite in that place...few...but polite. I like it...i''d be glad to speak with you but you have your work to do; do as if i''m not here..."<br>Nurse Lida: "...Well...ehmmm..."<br>"...Hi Iskra...how are you?"<br>Iskra: "...I''m happy that you are here! Come here near me..."<br>"...Here i am..."'
+				act 'Sit next Iskra':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/stop1.jpg"></center>'
+					'"I passed to see you...and tell you that tomorrow i''ll leave that place..."<br>Iskra: "...I''m happy you are good now. Let me have one last memory of you."<br>"...Take all you want..."<br>Iskra: "...But you cannot leave without knowing Luchik..."<br>Iskra''s grandmother: "...Iskra...you should not disturb the nurses...they are working..."<br>Iskra: "...BABUSHKA!!!"<br>Iskra''s grandmother: "...Ok ok...i''m coming..."<br>Iskra: "...I''m sure you will like him..."<br>Iskra''s grandmother: "...Uh? You are not a nurse..."<br>"...G-good evening madam..."<br>Iskra: "...Finally you are aware...babushka this is <<$pcs_nickname>>, <<$pcs_nickname>> this is babushka."<br>Iskra''s grandmother: "...You have to excuse me miss <<$pcs_nickname>>..."<br>"...I''m the one who have to apologize, i didn''t warn that i will be passed to visit Iskra..."<br>Iskra''s grandmother: "...Iskra...not in the nose! Not everyone likes it... ."<br>"...It''s all but not a problem...it''s a pleasure for me..."<br>Iskra''s grandmother: "...Oh good evening miss Popov...she ate everything as always..."<br>Nurse Lida: "Good evening madam, i''m glad to hear that. Soon she will be able to eat everything...do not worry."<br>Iskra: "...Babushka...<<$pcs_nickname>> will leave tomorrow...i want her to know Luchik...could you please bring him to me?"<br>Iskra''s grandmother: "...Give me a moment my heart."'
+					act '"...Luchik...who is Luchik?"':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/squad.jpg"></center>'
+						'Iskra : "It''s Luchik!"<br>Luchik: "...Woof! Woof!..."<br>"...He''s..."<br>Iskra: "...Stinky?...I know..."<br>Iskra''s grandmother: "...I cannot wash it in the washing machine..."<br>Nurse Lida: "...Well...i guess so..."<br>Iskra''s grandmother: "...Finally someone who can understand me, i told her: he weight 5,8...and the machine can wash till 4,5...it''s impossible. But you know how young lady could be stubborn...isn''t it Iskra?"<br>Iskra: "...Babushka!"<br>"...Wonderful..."<br>Iskra: "...You can touch him if you want...you don''t fear him do you?"'
+						act '"...N-no...Iskra, i don''t fear him...thanks..."':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/luchik.jpg"></center>'
+							'Luchik: "...Woof! Woof!...Whine...Woof! Woof!"<br>Iskra: "...I knew it, he likes you!"<br>Iskra''s grandmother: "...It seems, but i''m worried you will stink..."<br>Nurse Lida: "..."<br>"...That''s not stink...that''s...life..."<br>Iskra''s grandmother: "...Youth...those days..."<br>Iskra: "...Babushka!"<br>"...You have to take care of him Iskra...do you know that?"<br>Iskra: "...I''ll do it, I never forget. And you have to take care of yourself..."<br>"...this is the same for you...so the deal is settled..."<br>Iskra''s grandmother: "...We''ll speak about that again when both of you will have my age...Anyway: not with my washing machine..."<br>...<br>Nurse Lida: "...<<$pcs_nickname>>..."<br>"...I understood Lida...goodbye madam, it''s time for me to go: it was a pleasure to make your knowledge, you have a wonderful granddaughter..."<br>Iskra''s grandmother: " Thanks for the visit, not everybody can see Iskra for what she is, i''m happy you are friends... .  "<br>"...Not everyone deserves his friendship..."<br>Iskra''s grandmother: "...and not everyone deserves my respect. It was the same for me little lady, i hope to see you again."<br>Iskra: "...Goodbye <<$pcs_nickname>>."<br>"...Goodbye Luchik...."<br>Luchik: "...Woof!..."'
+							act '"...Goodbye Iskra...."':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/walking0.jpg"></center>'
+								'...<br>...<br>...<br>...<br>Nurse Lida: "...<<$pcs_nickname>>?"<br>"...Yes Lida?"<br>Nurse Lida: "...You seems sad..."<br>"...It''s...it''s like i left a piece of my heart..."<br>Nurse Lida: "I''m sure that''s not what she want."'
+								act '"You are right."':
+									*clr & cla
+									hour = 15
+									minut += rand(10,15)
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/walking1.jpg"></center>'
+									'...'
+									act '"...Goodbye Iskra...."': gt 'mod_iwhore_recovery', 'room120'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	else
+		*clr & cla
+		if  body_healing >= 11:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/donotdisturb1.jpg"></center>'
+		else
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/donotdisturb.jpg"></center>'
+		end
+		'Nurse Lida: "...She''s sleeping..., we should not disturb her..."'
+		act '"You are right."': gt 'mod_iwhore_recovery', 'lift6'
+	end
+end
+
+if $ARGS[0] = 'hallway':
+	cls
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'restoring'	
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hallway.jpg"></center>'
+	'Nurse Lida: "You can go where you want, but when it will came the time we''ll move to the next step in the schedule. Don''t worry do as i''m not here...i''ll be your silent shadow...umhhh....no...that''s crepy...uhhmmm....your sock!...Yes your sock...Uh? Oh!...you have none...Uhhh...uhmmm....yes! Your walking stick!...Yes yes...your walking stick!..."'
+	act 'Talk to Lida':
+		cls
+		gs 'mod_iwhore_realstat' , 'restoring'
+		gs 'mod_iwhore_realstat' , 'lidamemo'
+		if minut < 45:
+			act 'Chit chat':gt 'mod_iwhore_recovery', 'lidachat'
+		else
+			gt 'mod_iwhore_recovery', 'schedule'
+		end	
+	end
+	if hour >= 8:
+		act 'Doctor Bogomolov''s office':
+			if hour = 8:
+				gt 'mod_iwhore_therapy', 'bogomolov'
+			else
+				gt 'mod_iwhore_recovery', 'boffice'
+			end
+		end
+		act 'Doctor Smirnitskaya''s office':
+			if hour = 9:
+				gt 'mod_iwhore_therapy', 'smirnitskaya'
+			else
+				gt 'mod_iwhore_recovery', 'soffice'
+			end
+		end
+	else
+		''
+	end
+	if hour = 10:
+		act 'Pool':gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 17:
+		act 'Pool':gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 15:
+		act 'Exercise':gt 'mod_iwhore_therapy', 'exercise'
+	elseif hour = 14 and iskra_war >= 2:
+		act 'Room 136':gt 'mod_iwhore_recovery', 'room136'
+	elseif hour = 12 or hour = 19:
+		act 'Eat':gt 'mod_iwhore_recovery', 'lunch'
+	elseif hour = 13:
+		act 'Tooth replacement':gt 'mod_iwhore_therapy', 'tooth'
+	else
+		''
+	end
+	if headquarter = 1 and hour > 11:
+		act 'Nurse station': gt 'mod_iwhore_recovery', 'nursestation'
+	end
+	if hour > 15 and iskra_war = 2:
+		act 'Toward the lift':gt 'mod_iwhore_recovery', 'lift5'
+	end
+	act 'Return to your room': gt 'mod_iwhore_recovery', 'room120'
+end
+
+if $ARGS[0] = 'nursestation':
+	cls
+	gs 'mod_iwhore_realstat' , 'restoring'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/nursestation.jpg"></center>'
+	if headquarter ! 1:
+		headquarter = 1
+		'Nurse Lida: "Tah dah! Welcome to my headquarter!"<br>"Oh you meant the nurse station..."<br>Nurse Lida: "Of course! What did you thought? I''m not cat woman...i''m blonde..."'
+		act '"Can...can i take something?"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+			'Nurse Lida: "Uh? Why did you think i led you there? Of course you can...you can take what you want, everything is paid...uhmmm...i mean to eat...you cannot take away the vendor machine..."'
+			act 'Ice cream': 
+				*clr & cla
+				if hour = 20: hour = 21
+				'<center><img <<$set_imgh>> src="images/shared/food/icecreem.jpg"></center>'
+				'Nurse Lida: "Umhhh...i should check your temperature...you are melting the ice cream... . When you finish it we''ll go, because it''s late..."'
+				act '"Thanks Lida...we can go"': gt 'mod_iwhore_recovery', 'room120'
+			end
+			act '"Thanks Lida...we can go"': gt 'mod_iwhore_recovery', 'room120'
+		end
+	else
+		'Nurse Lida:"Take what you want"'
+		act 'Ice cream': 
+			*clr & cla
+			minut += 3
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="images/shared/food/icecreem.jpg"></center>'
+			'Nurse Lida: "Umhhh...i should check your temperature...you are melting the ice cream... ."'
+			act '"Thanks Lida...we can go"': gt 'mod_iwhore_recovery', 'room120'
+			act 'Another one': gt 'mod_iwhore_recovery', 'nursestation'
+		end
+		act '"Thanks Lida...we can go"': gt 'mod_iwhore_recovery', 'room120'
+	end
+end
+
+if $ARGS[0] = 'purity':
+	cls
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+	'Nurse Lida: "...we can go visit her if you want..."'
+	act 'Yes':gt 'mod_iwhore_recovery', 'lift5'
+	act 'Return to your room':gt 'mod_iwhore_recovery', 'room120'
+end
+
+if $ARGS[0] = 'lift5':
+	cls
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/lift.jpg"></center>'
+	'Nurse Lida: "..."'
+	act 'Return to the hallway':gt 'mod_iwhore_recovery', 'hallway'
+	act 'Floor 6':gt 'mod_iwhore_recovery', 'lift6'
+end
+
+if $ARGS[0] = 'lift6':
+	cls
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/lift.jpg"></center>'
+	'Nurse Lida: "..."'
+
+	act 'Walk toward the rooms':
+		cls
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/rooms.jpg"></center>'
+		'Nurse Lida: "..."'
+		act 'Room 136': gt 'mod_iwhore_recovery', 'room136'
+		act 'Walk back': gt 'mod_iwhore_recovery', 'lift6'
+	end
+	act 'Plan 5':gt 'mod_iwhore_recovery', 'lift5'
+end
+
+if $ARGS[0] = 'lidachat':
+	*clr & cla
+	minut += 10
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+	'You had a little chat with Lida.'	
+	act 'Return to your room':gt 'mod_iwhore_recovery', 'room120'
+	act 'Hallway':gt 'mod_iwhore_recovery', 'hallway'
+	act 'Talk to Lida':
+		cls	
+		if (body_healing = 8 or body_healing = 9 or body_healing = 10 or body_healing = 11) and hour < 22 and hour > 6 and minut > 45:
+			gt 'mod_iwhore_recovery', 'schedule'
+		else
+			gs 'mod_iwhore_realstat' , 'restoring'
+			gs 'mod_iwhore_realstat' , 'lidamemo'
+		end
+	end
+end
+
+if $ARGS[0] = 'schedule':
+	cls
+	*clr & cla
+	minut = rand(10,22)
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+	if hour = 7:
+		'Nurse Lida: "...You cannot stay dirty..."'
+		act '...': hour = 8 & gt 'mod_iwhore_recovery', 'shower'
+	elseif hour = 8:
+		'Nurse Lida: "...We have to go to Dr Bogomolov..."'
+		act '...': hour = 9 & gt 'mod_iwhore_therapy', 'bogomolov'
+	elseif hour = 9:
+		'Nurse Lida: "...We have to go to Dr Smirnitskaya..."'
+		act '...': hour = 10 & gt 'mod_iwhore_therapy', 'smirnitskaya'
+	elseif hour = 10:
+		'Nurse Lida: "...Spa Time!"'
+		act '...': hour = 11 & gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 12:
+		'Nurse Lida: "...You are weak, you need to eat something..."'
+		act '...': hour = 13 & gt 'mod_iwhore_recovery', 'lunch'
+	elseif hour = 13:
+		'Nurse Lida: "Did you wash your mouth? No? Try this mouthfresh..."'
+		act '...': hour = 14 & gt 'mod_iwhore_therapy', 'tooth'
+	elseif hour = 14 and iskra_war >= 2:
+		'Nurse Lida: "Nothing planned isn''t it? You could always look for Iskra. I''ll put your socks in order later..."'
+		act '"Actually it''s not a bad idea"': hour = 15 & gt 'mod_iwhore_recovery', 'room136'
+		act '...': hour = 15 & gt 'mod_iwhore_recovery', 'hallway'
+		act 'Have a chat while Lida clean': hour = 15 & gt 'mod_iwhore_recovery', 'room120'
+	elseif hour = 14:
+		'Nurse Lida: "Nothing planned isn''t it? I know i can be boring with cleaning...but you cannot live in a messy room... ."'
+		act '...': hour = 15 & gt 'mod_iwhore_recovery', 'hallway'
+		act 'Have a chat while Lida clean': hour = 15 & gt 'mod_iwhore_recovery', 'room120'
+	elseif hour = 15:
+		'Nurse Lida: "...Hehehe...let Lida made her work!"'
+		act '...': hour = 16 & gt 'mod_iwhore_therapy', 'exercise'
+	elseif hour = 17:
+		'Nurse Lida: "...Spa bonus!"'
+		act '...': hour = 18 & gt 'mod_iwhore_therapy', 's_p_a'
+	elseif hour = 19:
+		'Nurse Lida: "...You are weak, you need to eat something..."'
+		act '...': hour = 20 & gt 'mod_iwhore_recovery', 'lunch'
+	elseif hour >= 20:
+		'Nurse Lida: "...You should rest. Tomorrow will be a wonderful day!"'
+		act '...': hour += 1 & gt 'mod_iwhore_recovery', 'bed'
+	else
+		''
+	end
+end
+
+if $ARGS[0] = 'bed':
+	pcs_hairbsh = 0
+	InSleep = 1
+	if StoryLine = 1 and $loc ! 'bedrPar' and SchoolAtestat = 0:
+		notathomesleep += 1
+	else
+		notathomesleep = 0
+	end
+	if body_healing ! 8:
+		hour = 22
+		gs 'mod_iwhore_realstat' , 'restoring'
+	else
+		''
+	end
+	if pcs_horny >= 90:
+		pcs_horny = 0
+		orgasm += 1
+		minut += 1
+		pcs_mood += 50
+!		gs 'mod_iwhore_recovery' , 'pain'
+		gs 'mod_iwhore_realstat' , 'restoring'
+		gs 'arousal', 'end'
+	end
+	pcs_sleep = 1
+	pcs_stam = 1
+	if body_healing = 8:
+		*clr & cla
+		pain['killer'] = 1
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+		'Nurse Lida: "It should have effect immediately, <<$pcs_nickname>>...i''ll let you sleep now. Good night, we''ll see tomorrow morning."'
+		act 'Sleep':
+			hour += 4
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			if was_awhore_son = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream0a.jpg"></center>'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream0.jpg"></center>'
+			end
+			'...''...to walk barefoot in the grass...i can hear the river...''...'
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream1.jpg"></center>'
+			'...''...n-no...i cannot move anymore...why?...''...'
+			wait 5000
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memories.mp4"></video></center>'
+			'...'
+			wait 8000
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/7.mp4"></video></center>'
+			'...'	
+			wait 6000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream2.jpg"></center>'
+			'<br><b><font size= 4>"DAMNED!"</font></b>'
+			wait 6000
+			*clr & cla
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+			'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+			wait 6000
+			'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+			wait 6000
+			'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+			wait 6000
+			'Nurse Lida: "<<$pcs_nickname>>!..."'
+			wait 6000
+			'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+			wait 6000
+			'Nurse Lida: "It was only a bad dream...let me help you..."'
+			wait 6000
+			'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+			act '...':
+				pcs_horny = 0
+				gs 'mod_iwhore_realstat' , 'restoring'
+				ADDOBJ	'<center><img width="85%" src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+				'Nurse Lida: "...This should help you sleep and stop you dreaming...at least the doctor said that..."'
+				'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+				wait 6000
+				'Nurse Lida: "...Come on come on make effect...I cannot allow you to be that way...come on stupid drug!..."'
+				'...''...damned damned damned damned damned damned damned damned damned damned damned damned...''...'
+				wait 6000
+				'Nurse Lida: "...Come on come on..."'
+				'...''...damned...damned...damned...damned...damned...''...'
+				wait 6000
+				'Nurse Lida: "...Come on come on..."'
+				'...''...damned... ...damned...''...'
+				wait 6000
+				cls
+				KILLOBJ
+				gs 'mod_iwhore_realstat' , 'restoring'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help0.jpg"></center>'
+				'Nurse Lida: "...thanks doctor...you saw right..."'
+				'...''...''...'
+				act '...':
+					gs 'mod_iwhore_realstat' , 'restoring'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+					'Nurse Lida: "...Here...good girl, Lida is here..." The drug had its effect and the nurse carefully bring you to bed; it''s not passed a minute that you fall asleep again... .'
+					act '...': gt 'mod_iwhore_recovery', 'morningcare'
+				end
+			end
+		end
+	elseif body_healing = 9:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox.jpg"></center>'
+		'Nurse Lida: "Ok <<$pcs_nickname>>...i''ll start the detoxification. Good night, we''ll see tomorrow morning."'
+		act 'Sleep':
+			*clr & cla
+			hour += 5
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			if was_awhore_son = 1:
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream3a.jpg"></center>'
+				'"Uh what''s that for?"<br>"...For the most beautiful woman...and...i know we''ll have someone else to take care of..."<br>"You shouldn''t snoop around the bath, do you know that?"<br>"...We should return home now, they are near to close."'
+			else
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream3.jpg"></center>'
+				'"Delicious..."<br>"...I knew you would like that place, but we should finish, they are closing."<br>"Then give me an hands..."<br>"..."'
+			end
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream4.jpg"></center>'
+				'"...They really shouldn''t kick us out...we got to cover ourself...."<br>"Wait...we never kissed under the rain..."<br>"...Only because you earned that, thanks for the evening...."'
+				if iskra_war = 2:
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream5.jpg"></center>'
+						'"...Finally it''s slowing down...we can walk now...we are just all wet...hey! where did you go?..."<br>"..."'
+						wait 6000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="images/shared/home/bedroom/dream/dream4.jpg"></center>'
+						'"...i don''t like that game, where are you?..."'
+						wait 5000
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+						'"Here."'
+						wait 7000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/trance0.jpg"></center>'
+						'"I told you to stop."'
+						wait 6000
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/7.mp4"></video></center>'
+						'...'	
+						wait 6000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream2.jpg"></center>'
+						'<br><b><font size= 4>"DAMNED!"</font></b>'
+						act '...':
+							*clr & cla
+							pcs_horny = 0
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+							'Nurse Lida: "...No no no...calm down <<$pcs_nickname>>...let me help you..."'
+							'...''...damned...damned...damned...damned...damned...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+							'Nurse Lida: "..."'
+							'...''...damned...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help1.jpg"></center>'
+							'Nurse Lida: "...Oh...thanks <<$pcs_nickname>>...let me stop it. ..."'
+							'...''...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help0.jpg"></center>'
+							'Nurse Lida: "..."'
+							'...''...''...'
+							act '...':
+								hour += 1
+								gs 'mod_iwhore_realstat' , 'restoring'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+								'Nurse Lida: "...Here...Lida is here...you were really good <<$pcs_nickname>>, i had to use less than half dose...why do you keep doing bad dreams? You can talk to Lida..." The drug had its effect and the nurse carefully bring you to bed; it''s not passed a minute that you fall asleep again... .'
+								act '...': gt 'mod_iwhore_recovery', 'morningcare'
+							end
+						end
+					end
+				else	
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream5.jpg"></center>'
+						'"...Finally it''s slowing down...we can walk now...we are just all wet...hey! where did you go?..."<br>"..."'
+						wait 6000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="images/shared/home/bedroom/dream/dream4.jpg"></center>'
+						'"...i don''t like that game, where are you?..."'
+						wait 5000
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+						'"Here."'
+						wait 7000
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream2.jpg"></center>'
+						'Nurse Lida: "...It''s starting again...<<$pcs_nickname>> you have to fight...i know you are strong..."'
+						wait 6000
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/beast/7.mp4"></video></center>'
+						'...'	
+						wait 6000
+						*clr & cla
+						pcs_horny = 0
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream2.jpg"></center>'
+						'<br><b><font size= 4>"DAMNED!"</font></b>'
+						act '...':
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware0.mp4"></video></center>'
+							'Nurse Lida: "...No no no...calm down <<$pcs_nickname>>...i''m here..."'
+							'...''...damned...damned...damned...damned...damned...damned...damned...damned...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+							'Nurse Lida: "..."'
+							'...''...damned...damned...damned...damned...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help1.jpg"></center>'
+							'Nurse Lida: "...My flower need rest...my flower earned her rest..."'
+							'...''...d...''...'
+							wait 6000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help0.jpg"></center>'
+							'Nurse Lida: "......you were good <<$pcs_nickname>>..."'
+							'...''...''...'
+							act '...':
+								hour += 1
+								gs 'mod_iwhore_realstat' , 'restoring'
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+								'Nurse Lida: "...Here...not in the floor... i didn''t had to use the whole dose...but you cannot continue that way...why do you keep doing bad dreams? You can talk to Lida..." The drug had its effect and the nurse carefully bring you to bed; it''s not passed a minute that you fall asleep again... .'
+								act '...': gt 'mod_iwhore_recovery', 'morningcare'
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif body_healing = 10:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox.jpg"></center>'
+		'Nurse Lida: "Ok <<$pcs_nickname>>...i''ll start the detoxification. Good night, we''ll see tomorrow morning."'
+		act 'Sleep':
+			hour += 6
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/sleep.jpg"></center>'
+			'...''...i have to forget...but how?...''...'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+				'...'
+				act '...''...how can i forget him?...''...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/joint0.jpg"></center>'
+					'Doc: "...Finally she''s gone..."<br>Woman: "..."<br>Mechislav: "...I think she''s sleeping."<br>Woman: "..."<br>Doc: "...And she seems...normal..."<br>Mechislav: "...They made a good work, that''s for sure..."<br>Woman: "..."<br>Doc: "...You are right, it''s hard to think she''s the same person of ten day ago ..."'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/joint1.jpg"></center>'
+						'Woman: "...Eleven. Are they ready?"<br>Mechislav: "...He finished the ink... . It should arrived tomorrow; two or three day more to wait and we should have the new ones."<br>Woman: "...Ufff...pityful."<br>Doc: "...We can use the 3000 rubles ones..."<br>Woman: "...Do not dare."<br>Doc: "...Right..."<br>Mechislav: "...We should go now..."<br>Woman: "...Lead the way mighty knight..."<br>Doc: "...Hahaha...mighty..."<br>Mechislav: "...Hey..."<br>Woman: "...Both of you:  s-h-u-t  u-p!"<br>Doc/Mechislav: "..."'
+						act '...''...how?...''...':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/fragments0.jpg"></center>'
+							'...''...i know that road...''...'
+							wait 5000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/body.jpg"></center>'
+							'...''...that road saw all my pain...''...'
+							wait 5000
+							'...''...and then nothing...the void...there''s nothing more...how...''...'
+							wait 5000
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help0.jpg"></center>'
+							'...''...did...i...''...'
+							wait 7000
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+							'...''...uuhhggggg! ...''...'
+							wait 5000
+							*clr & cla
+							pcs_horny = 0
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream2.jpg"></center>'
+							'..."...NOOOOOO!!!!!..."...'
+							act '...':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/aware1.mp4"></video></center>'
+								'"Damned..."...'
+								wait 5000
+								'<br>Nurse Lida: "...No no no no....i''m coming <<$pcs_nickname>>..."'
+								wait 5000
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/restless.jpg"></center>'
+								'Nurse Lida: "...No no no no....<<$pcs_nickname>>...no no no...here i...."'
+								wait 5000
+								'..."...am...???"...<br>"..."<br>Nurse Lida: "..."<br>"..."<br>Nurse Lida: "..."<br>"..."<br>Nurse Lida: "..."'
+								wait 5000
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/restless.jpg"></center>'
+								'Nurse Lida: "....<<$pcs_nickname>>...."...<br>"...I-it''s fine...Lida..."<br>Nurse Lida: "..."<br>"..."<br>Nurse Lida: "...let me help you..."'
+								act '..."I don''t want the drug...i don''t want to forget...not now."':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox1.jpg"></center>'
+									'Nurse Lida: "...I bet you neither want to awake thinking you made a mess not going to the bath... ."<br>"..."<br>Nurse Lida: "...you cannot skip the detox on the other side..."<br>"..."<br>Nurse Lida: "...Here...Can i do something else for you?..."<br>"...No Lida ...you made more than i could ever expect...thank you."<br>Nurse Lida: "...I''ll let you sleep... close your eyes, i''ll be there in any case."'
+									act 'Return to sleep':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+										'Nurse Lida: ...''...It would be great if you will be able to not use the drug tonight...continue on that way <<$pcs_nickname>>...you can do it...''... "Uh?"....(sniff sniff)...''...Oh! That woman scent!...she was here!...''..."...I should warn Dr..."<br>Dr. Ignatiy Bogomolov: "...Sssshhh... Let''s go out..."'
+										wait 7000
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day11.jpg"></center>'
+										'Nurse Lida: "...That woman..."<br>Dr. Ignatiy Bogomolov: "...First of all: let me check..."<br>Nurse Lida: "...Ok... that''s the schedule...i was resting, and the movement sensor called me; i entered ready to use the drugs...but..."<br>Dr. Ignatiy Bogomolov: "...but?..."<br>Nurse Lida: "...she controlled herself...that time."<br>Dr. Ignatiy Bogomolov: "...Go on..."<br>Nurse Lida: "...she didn''t want to use the drug...she wasn''t aware she pulled off the tubes...it was like..."<br>Dr. Ignatiy Bogomolov: "...If she''s trying to rebuild the order of the events..."<br>Dr. Ignatiy Bogomolov: "...I...i think so."<br>Dr. Ignatiy Bogomolov: "...uhmmm...it may be too early to skip a step in lowering the drug... but i think we should try. We are ready in any case..."<br>Nurse Lida: "...that woman..."<br>Dr. Ignatiy Bogomolov: "...I know: she was here, i saw her...she entered two minutes and she''s gone away..."<br>Nurse Lida: "...Did you talked to her?"<br>Dr. Ignatiy Bogomolov: "...No. They go straight to the exit, she probably suspected that i was following them; i think this is the last time we saw her..."<br>Nurse Lida: "...It seems you are sorry..."<br>Dr. Ignatiy Bogomolov: "...You should go to rest Lida, you can turn off the buzzer, i''ll open mine."<br>Nurse Lida: "...Wow...did i miss something? Is it the first day of the year?"<br>Dr. Ignatiy Bogomolov: "...Uhmmppf! Go before i changed my mind..."<br>Nurse Lida: "...Thanks Dr Balandin! You earned a kiss on the cheeck but i know how much Bogdana is jealous...good night Dr.!"<br>Dr. Ignatiy Bogomolov: "...Good night Lida."...''...Good night <<$pcs_nickname>>.''...'
+										act '...':
+											gs 'mod_iwhore_realstat' , 'restoring'
+											$track_loop = 'sound/mod/iwhore/jungle.mp3'
+											volume = 50
+											music_loop = 1
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4b.jpg"></center>'
+											'...''...who are you...''...'
+											act '...':
+												gs 'mod_iwhore_realstat' , 'restoring'
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4b.jpg"></center>'
+												'...''...did i saw you?...''...'
+												wait 7000
+												*clr & cla
+												music_loop = 0 & close all
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4c.jpg"></center>'
+												'Blue monkey: "NOT NOW!"<br>...''...are your real?...no...it''s just a dream...blu monkeys don''t exist...can i touch you? ...you are pretty...''...'
+												act '...': gt 'mod_iwhore_recovery', 'morningcare'
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif body_healing = 11:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox.jpg"></center>'
+		'Nurse Lida: "Ok <<$pcs_nickname>>...i''ll start the detoxification."<br>"...Lida..."<br>Nurse Lida: "Yes little flower?"<br>"...Good night..."<br>Nurse Lida: "Good night to you too...we''ll see tomorrow."'
+		act 'Sleep':
+			hour += 6
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream5.jpg"></center>'
+			'...''...it''s starting to rain...i should find a repair...''...'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="images/shared/home/bedroom/dream/dream4.jpg"></center>'
+				'...''...maybe inside a buildings...but they are closed...''...'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream6a.jpg"></center>'
+					'...''...a girl...she''s going away through the bridge...''...'
+					wait 5000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream6b.jpg"></center>'
+					'...''...where...who...''...'
+					act '"Who are you? There was a bridge here...and where is the umbrella? ...How did you enter my dream?"':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'
+						'"Let her go, she finished with you...for the moment."<br>"Who are you? Do i know you?<br>"..."<br>What are you doing here?...and how did you entered my dream?...I''ve got the impression..."<br>"I''m doing my work."'
+						act '"Your ...work? Is your work to enter in my dream?"':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'
+							'"Not exactly. I am the force She uses, but once I was like you."<br>"What do you mean?"<br>"I wait."<br>"You wait ...what?"<br>"I wait until She comes. After, I no longer serve."<br>"Why do you wait?"<br>"Because when I''m there, everybody invokes Her. But you do not have to worry about me right now, because I''m leaving too. You should think to something else."'
+							act '"Wait! Tell me your name..."':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/c0.jpg"></center>'
+								'"You know me well, <<$pcs_firstname>>."<br>"...I dont''t think so..."'
+								wait 5000
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/day4/eye.jpg"></center>'
+								'"I am Pain."'
+								wait 3000
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+								'....'
+								wait 7000
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/restless1.jpg"></center>'
+								'"...NO!...Always the same..."'
+								act 'Return to sleep':
+									gs 'mod_iwhore_realstat' , 'restoring'
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/restless1.jpg"></center>'
+									'...''...I have to close my eyes...and sleep...''...'
+									act '...':
+										gs 'mod_iwhore_realstat' , 'restoring'
+										$track_loop = 'sound/mod/iwhore/jungle.mp3'
+										volume = 50
+										music_loop = 1
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox1.jpg"></center>'
+										'Nurse Lida: ...''...Let me see... It''s normal....and she''s slepping... . Is it because i''m used to her awake in the middle of the night?...I sweared it sounds... . Ok...i should let her sleep in peace...uhmmm...another week, and i can rest at home again...assuming they will pay us finally...''...'
+										act '...':
+											gs 'mod_iwhore_realstat' , 'restoring'
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4b.jpg"></center>'
+											'...''...''...'
+											wait 7000
+											*clr & cla
+											music_loop = 0 & close all
+											'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4c.jpg"></center>'
+											'Blue monkey: "...Both of you:  s-h-u-t  u-p!"<br>...''...it speaks...oh right...i''m dreaming...''...'
+											act '...': gt 'mod_iwhore_recovery', 'morningcare'
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif body_healing = 12:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/detox.jpg"></center>'
+		'"...Lida..."<br>Nurse Lida: "Yes my flower? This is the last one..."<br>"...Wish me good night..."<br>Nurse Lida: "...Good night <<$pcs_nickname>>... that you can walk among your friends fields in bloom..."'
+		act '"...Thanks Lida...good night..."':
+			hour += 6
+			pain['killer'] = 1
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/gardener.jpg"></center>'
+			'...''...i''m sorry <<$pcs_nickname>>...it''s not ready yet...if only they paid us...you have to finish by yourself...''...'
+			act '...''...Lida?..''...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+				'....'
+				wait 7000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+				'"...Always the same..."'
+				act 'Return to sleep':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+					'...''...I have to close my eyes...and sleep...''...'
+					act '...':
+						$track_loop = 'sound/mod/iwhore/jungle.mp3'
+						volume = 50
+						music_loop = 1
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4b.jpg"></center>'
+						'..."...Is she speaking about us?"...<br>...''...uh?...they both speak...''...<br>."..It shouldn''t give her..."<br>...''...Weren''t they fight?...''...<br>"...I-i...i''m going to puke..."...<br>...''...That''s gross...hey don''t make my dream dirty!...''...'
+						wait 7000
+						act '...':
+							*clr & cla
+							music_loop = 0 & close all
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/help4c.jpg"></center>'
+							'Blue monkey: "...EAT IT!"<br>...''...ughhh! that''s worst!...hey! you have no right to be here!...''...<br>Blue monkey: "...that could help but..."<br>...''...shoo!...go away...i want to be alone!...''... '
+							act '...': gt 'mod_iwhore_recovery', 'morningcare'
+						end
+					end
+				end
+			end
+		end
+	else
+		''
+	end	
+
+end
+
+if $ARGS[0] = 'morningcare':
+	cls
+	*clr & cla
+	hour = 7
+	minut = 0
+	fcolor = rgb(0, 0, 0)
+	bcolor = rgb(255, 255, 255)
+	music_loop = 0 & close all
+	KILLOBJ
+	gs 'mod_iwhore_realstat' , 'starter'
+	if body_healing = 7:
+		PL '<<$weatherImage>>'
+		PL '<<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> <<$week[week]>> <<day>> <<$month>> <<year>>'
+		gs 'mod_iwhore_realstat' , 'day'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage0.jpg"></center>'
+		'Nurse Lida: "Good morning <<$pcs_nickname>>...i''ll made silently...i don''t want to awake you...not now...no more...no no no..."'
+		act '...':
+			cls
+			pain['killer'] = 1
+			vitaminday = daystart
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			gs 'mod_iwhore_realstat' , 'dailycare'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+			'Nurse Lida: "While we wait for Dr. Bogomolov i''ll adjust a little the pain therapy...soon you should be able to not use that anymore....there and there...oh and coffe, and tea...you earned it. And there and there...that''s him...i know his walking... . Good morning Dr Bogolyubov ... she''s sleeping...please be silent."'
+			act '...':
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/happynurse4.mp4"></video></center>'
+				'Dr. Ignatiy Bogomolov: "Bogomolov Miss Popov... How many time did i have to tell you?" <br>Nurse Lida: "Right Dr Blazhenov..."<br>Dr. Ignatiy Bogomolov: "You are killing my hope..."<br>Nurse Lida: "Uh? Dr Brusilov...don''t say things like that...there''s always hope."<br>Dr. Ignatiy Bogomolov: "...You are a killer, a professional killer...you have a role in the conspiracy... Don''t you?"<br>Nurse Lida: "Uh? Is that a new film? I didn''t hear about it..."<br>Dr. Ignatiy Bogomolov: "Arrghh...at least i''ve slept two hours... . Hi <<$pcs_nickname>>, how are you? You will understand for sure, i have to start the check. We''ll continue later."...'
+				act '...':
+					*clr & cla
+					recovering_old_stat = 1
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/wash0.jpg"></center>'
+					'Nurse Lida: "...And done...from now on she should be able to do her routine by herself...is there something to note?"'
+					if was_awhore_son = 1:
+						'<br>Dr. Ignatiy Bogomolov:"...Nothing Lida. It could be hard to imagine but she made it. You...should go and call Filippa Lida...please. I''ll wait here..."<br>Nurse Lida: "Y-yes..."'
+					else
+						'<br>Dr. Ignatiy Bogomolov:"...Nothing Lida. It could be hard to imagine but she made it. You can go Lida, i''ll wait for her to wake up...without worries this time."<br>Nurse Lida: "I''m on my way!"'
+					end
+					act '...': gt 'mod_iwhore_limbus1', 'updated'
+				end
+			end
+		end
+	elseif body_healing = 8:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage0.jpg"></center>'
+		'Nurse Lida: "Good morning <<$pcs_nickname>>...i''m sorry for the last night...hope today will be better."'
+		act '...':
+			pain['killer'] = 1
+			vitaminday = daystart
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+			'Nurse Lida: "...Let''s take care of the pain. Good morning Dr Bezukladnikov  ... she''s still sleeping...the drug had effect..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+				'Dr. Ignatiy Bogomolov: "Bogomolov Lida...just one time..." <br>Nurse Lida: "Ummmh ...right Dr. Barbolin..." <br>"Where...am..."'
+				act '"...I?..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+					'Dr. Ignatiy Bogomolov: "Good morning <<$pcs_nickname>>..."<br>"...I...don''t...remember..."<br>Dr. Ignatiy Bogomolov: "It''s a little collateral effect of the drugs we gave you yesterday...don''t worry, few minutes from the awake and your memory should be good."<br>Nurse Lida: "Yes yes...the doctor is always right. Good morning <<$pcs_nickname>>."<br>"...I...remember you. You were with me yesterday..."<br>Dr. Ignatiy Bogomolov: "Good, memories are starting to came back... . Lida is assigned to you, so she spent the last day with you...and the same will be today. I''d like to talk again to you today, but for the moment i have to had a little check up if you don''t mind..."<br>"..." <br>You nod; you have no reason to stop his checking. <br>Nurse Lida:...''...she''s awake...uhmmm...that means...''...'
+					act '...':
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/happynurse5.mp4"></video></center>'
+						'Nurse Lida:...''...superthrilling!...''...<br>Dr. Ignatiy Bogomolov: "It will not take too much...you can try rest a little more if you want..."<br>"...It''s...ok...i think..."'
+						act '...':
+							*clr & cla
+							minut = 15
+							InSleep = 0
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/wash2.jpg"></center>'
+							'Nurse Lida: "Hehehe...but it''s better to stop right now....hehehe."<br>Dr. Ignatiy Bogomolov: "...Our goal is to restore you completely, that''s why i ask you to came to my office when ready...."<br>"..."<br>The doctors continue his check with the help of the nurse, till it''s time for him to go away...'
+							act '...': gt 'mod_iwhore_recovery', 'room120'
+						end
+					end
+				end
+			end
+		end
+	elseif body_healing = 9:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/stage0.jpg"></center>'
+		'Nurse Lida: "Good morning <<$pcs_nickname>>...hey! Don''t try to fool me...i know you are are awake...hehehe....how things are going?"'
+		act '...':
+			pain['killer'] = 1
+			vitaminday = daystart
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+			'"...Good ...morning ...Lida..."<br>Nurse Lida: "You should stop scaring me at night..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+				'"...I...don''t remember..." <br>Nurse Lida: "Ummmh ...that''s an effect of the drug i had to use to let you sleep..." <br>...'
+				act '"...Drug?..."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+					'Dr. Ignatiy Bogomolov: "Yes, drug. Good morning <<$pcs_nickname>>...good morning Lida... . Lida has instruction from me to use a drug that let you sleep; one of the unwanted effect it''s a memory loss for recents events and dreams suppression in particular... . From what i can see in your case it''s not a real unwanted effect: you keep awake during the sleep...it could be a vivid bad dream that you made, a memory that find its way on the surface... . It''s understandable... and it''s one of the thing we have to deal with."<br>Nurse Lida: "Good morning Dr Bulygin... . Yes yes...he''s right. But i cutted the dose...and you were good tonight...uhmmm...at least i think so... ."<br>Dr. Ignatiy Bogomolov: "...She was. Don''t worry <<$pcs_nickname>>, few minutes from the awake and your memory should be good...as the matter of fact i told you that yesterday, you should remember shortly...and you remember about Lida that time... "<br>"...I...oh...and you are..."<br>Dr. Ignatiy Bogomolov: "Yes...'
+					act '"...Good morning Dr Bulygin..."':
+						*clr & cla
+						minut = 15
+						InSleep = 0
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt1.jpg"></center>'
+						'Nurse Lida: ...''...hehehe...''...<br>Dr. Ignatiy Bogomolov: "...Bogomolov <<$pcs_nickname>>, do not worry, i told you need a little time to restore again your memory...assuming Lida won''t made a mess with it..."<br>Nurse Lida: "...Uh? ..." ...''...hehehe...''...<br>Dr. Ignatiy Bogomolov: "...Anyway, there''s nothing i had to check physically at the moment on you, but as usual you should came to my office when you finish your daily care. Lida will be here for everything."<br>"...Thanks Dr Bogomolov..."'
+						act '...': gt 'mod_iwhore_recovery', 'room120'
+					end
+					act '"...Good morning Dr Bogomolov..."':
+						*clr & cla
+						minut = 15
+						InSleep = 0
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt2.jpg"></center>'
+						'Nurse Lida: "..."<br>Dr. Ignatiy Bogomolov: "...Anyway, there''s nothing i had to check physically at the moment on you, but as usual you should came to my office when you finish your daily care. Lida will be here for everything."<br>"...Thanks Dr Bogomolov..."'
+						act '...': gt 'mod_iwhore_recovery', 'room120'
+					end
+				end
+			end
+		end
+	elseif body_healing = 10:
+		*clr & cla
+		gs 'mod_iwhore_realstat' , 'restoring'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+		'Nurse Lida: "Good morning <<$pcs_nickname>>...you made it! No drugs tonight!"'
+		act '..."..."...':
+			pain['killer'] = 1
+			vitaminday = daystart
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/drugfood.jpg"></center>'
+			'Nurse Lida: "Dr Bogomolov himself watch over you tonight...do you know it? Ok...a little shot for the pain...and i''ll set you free..."'
+			act '..."..."...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day10.jpg"></center>'
+				'Nurse Lida: "What''s that sadness...you should be happy, no sleeping drugs means a great improvements..."'
+				act '"...and memories."':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+					'Nurse Lida: "..."<br>"..."<br>Nurse Lida: "...do you know what will made your day better?"'
+					act '"...Nothing..."':
+						*clr & cla
+						minut = 15
+						InSleep = 0
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/bedrise0.jpg"></center>'
+						'Nurse Lida: "...a wonderful warm shower!"'
+						act '"...Nothing...will clean me..."': gt 'mod_iwhore_recovery', 'shower'
+					end
+				end
+			end
+		end
+	elseif body_healing = 11:
+		*clr & cla
+		gs 'mod_iwhore_realstat' , 'restoring'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+		'"Hi Lida"<br>Nurse Lida: "Good morning <<$pcs_nickname>>...great day isn''t it?  Let me relief the pain...and it will be wonderful!"'
+		act '"...No... ."':
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+			'Nurse Lida: "Uh? What...?"<br>"No drugs...today. I have to see... . Please Lida, help me...the morning is always difficult to stand up..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/bedrise0.jpg"></center>'
+				'Nurse Lida: "...are you sure?..."<br>"Yes..."<br>Nurse Lida: "...But...that will affect your mood..."<br>"...I know, but i have to, and you are here with me. I''m sure i will be able to deal with it."<br>Nurse Lida: "..."'
+				act '"...i know."':
+					*clr & cla
+					minut = 15
+					InSleep = 0
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+					'Nurse Lida: "..."<br>"..."<br>Nurse Lida: "...do you know what will made your day better?"'
+					act 'Have a shower': gt 'mod_iwhore_recovery', 'shower'
+				end
+			end
+		end
+	elseif body_healing = 12:
+		*clr & cla
+		minut = 15
+		gs 'mod_iwhore_realstat' , 'restoring'
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/dream7.jpg"></center>'
+		'...''...i''m ready...''...'
+		act 'Wake up':
+			*clr & cla
+			body_healing += 1
+			gs 'mod_iwhore_realstat' , 'lidalove'
+			InSleep = 0
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/rise.jpg"></center>'
+			'Nurse Lida: "Hi <<$pcs_nickname>>"'
+			act '"Good morning Lida."':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+				'Nurse Lida: "...Let me help you..."<br>"Thanks Lida there''s no need...first or later i''ll have to deal with rising from bad on my own: i should start now...don''t you agree?"<br>Nurse Lida: "...In that case i''ll wait for you to finish. Call me if you need something...my eyes are still watching over you."<br>"...I have no doubts about that...thanks."<br>Nurse Lida: "..."'
+				act 'Have a shower':gt 'mod_iwhore_recovery', 'shower'
+			end
+		end
+	else
+		''
+	end	
+end
+
+if $ARGS[0] = 'shower':
+	*clr & cla
+	gs 'mod_iwhore_realstat' , 'restoring'
+	if hour = 7 or hour = 8:
+		if body_healing = 9:
+			$track_loop = 'sound/mod/iwhore/shower1.mp3'
+			volume = 50
+			music_loop = 1
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower1bh9a.jpg"></center>'
+			'You enter into a random stall, and the water start to flow...'
+			act '...a scene in your head...': 
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memories.mp4"></video></center>'
+				'...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower1bh9.jpg"></center>'
+				'...a scene you cannot delete...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower1bh9a.jpg"></center>'
+				'...You tried to scream...but no sound escape from your mouth. The noise you made can only echoing into your soul...'
+				wait 3000
+				'...Nurse Lida: ..."...<<$pcs_nickname>>...if you won''t finish soon..."'
+				wait 3000
+				'...'
+				wait 3000
+				'Nurse Lida: ..."..."'
+				wait 3000
+				'Nurse Lida: ..."...That''s it!"'
+				wait 8000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida0.mp4"></video></center>'
+				'Nurse Lida: ..."...What...?"'
+				wait 6500
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1.jpg"></center>'
+				'You have no reactions your eyes are fixed on a point...you don''t speak. <br>Nurse Lida: ..."...My little flower..."...She doesn''t need to strip your clothes this time...'
+				act '...': 
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+					'Nurse Lida: ..."...Hold on me...use my shoulders...they are strong..."... . '
+					wait 3000
+					'Nurse Lida: ..."...Why don''t you tell me what''s weakening you? I can try to do something..."... .<br>You have nothing to lose...<br>"...I...I..."<br>Nurse Lida: "...I''m here, let it flow...nothing will harm you...it''s a promise."...'
+					wait 6000
+					'..."...W-when...when the drug...finish...it starts..."...<br>Nurse Lida: "...Do you feel pain?"<br>"...I-it...it''s...inside...it won''t let me go...."...'
+					wait 6000
+					'Nurse Lida: "...Be the one who let it go...you are here now, whatever it is it will not harm you...not now. You have to recover, and that''s the main thing...do no left your grip and tighten me hard..."'
+					wait 3000
+					'...You tight Lida, with all your strengh...you have not much, but enought to let Lida relief...'
+					wait 3000
+					'Nurse Lida: "..."'
+					wait 6000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+					'Nurse Lida: "...You were really really good <<$pcs_nickname>>...now i want you to be ready to go and see the doctors: if i were able to help you a little, Dr. Bogomolov and Dr. Smirnitskaya will do much more."<br>"..."<br>Nurse Lida: "Do you trust me?"<br>You nod, since you have neither the will to regret, neither a good reason to say no...<br>Nurse Lida: "...Then, when you want, try to stand up with your hands on the wall; that way you have to think less about staying in balance... "'
+					act '...':
+						*clr & cla
+						$track_loop = 'sound/mod/iwhore/shower1.mp3'
+						volume = 50
+						music_loop = 1
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1a.mp4"></video></center>'
+						'...Nurse Lida: ..."...Keep that way...you have to last a little more"...'
+						act '...':
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1b.mp4"></video></center>'
+							'Nurse Lida: "..."....<br>The diligent nurse keeps cleaning your body, you cannot do too much things all together...she is of a great help...'
+							act '...':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1c.mp4"></video></center>'
+								'Nurse Lida: "...now the back...and we''ve done...you are doing really well, i''m proud of you..."'
+								act '...':
+									*clr & cla
+									pcs_hairbsh = 1
+									music_loop = 0 & close all
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+									'As the nurse finish to clean she dry your body and led you to your room; she made you sit on the bed and wear her d uniform. You look at the clothes disposed on the bed on line; it takes some time to you before you decide to speak as if you were recovering from a trance status...just before you start..."Yes yes...i''ll help you wear them...i wear mine and you have to wear yours... . We cannot go out naked...isn''t it?..."'
+									act '...': 	gt 'mod_iwhore_therapy', 'bogomolov'
+								end
+							end
+						end
+					end
+				end
+			end
+		elseif body_healing = 10:
+			$track_loop = 'sound/mod/iwhore/shower1.mp3'
+			volume = 50
+			music_loop = 1
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower2bh10.jpg"></center>'
+			'You enter into a random stall, and the water start to flow...'
+			act '...a scene in your head...': 
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/memoriesalt.mp4"></video></center>'
+				'...'
+				wait 7000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower2bh10a.jpg"></center>'
+				'...a scene you can only try to slow...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower1bh9a.jpg"></center>'
+				'...but you will never be able to delete...'
+				wait 3000
+				'...Nurse Lida: ..."...<<$pcs_nickname>>...if you won''t finish soon..."'
+				wait 3000
+				'...'
+				wait 3000
+				'Nurse Lida: ..."..."'
+				wait 3000
+				'Nurse Lida: ..."...That''s it!"'
+				wait 8000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida0.mp4"></video></center>'
+				'Nurse Lida: ..."...What...?"'
+				wait 6500
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1.jpg"></center>'
+				'You hold your head with your hand; eyes are fixed to the floor, you tried to stop your mind...you wasn''t able.<br>Nurse Lida: ..."...My little flower..."...She doesn''t need to strip your clothes this time...'
+				act '...': 
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+					'"...."<br>Nurse Lida: ..."...Hold on me...use my shoulders...they are strong..."... . '
+					wait 3000
+					'"...."<br>Nurse Lida: "...I''m here, let it flow...nothing will harm you...it''s a promise."...'
+					wait 6000
+					'"...I-i...."<br>Nurse Lida: "...Press me hard as if i''m the enemy you want to break..."'
+					wait 6000
+					'Nurse Lida: "..."'
+					wait 3000
+					'...You tight Lida, with all your strengh...you feel the reality coming back to its place...'
+					wait 3000
+					'Nurse Lida: "...That''s it my flower...that''s it..."'
+					wait 6000
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+					'Nurse Lida: "...Now i want you to be ready to go and see the doctors...."<br>"...Do...do not left me alone...p-please..."<br>Nurse Lida: "...Alone?..."<br>You nod without repeating your words...<br>Nurse Lida: "...My little flower, i cannot left you alone; with me it''s like you are with fifthy person... ."<br>Heat... you can clearly feel Lida''s heat rigth now; it let you feel alive...<br>Nurse Lida: "...But every flower need water...and...a shower...no no no...i''m not meaning you stink...i want you to be beautiful...are you with me?"<br>You nod...<br>Nurse Lida: "...Then let me clean you..."<br>You nod...'
+					act '...':
+						*clr & cla
+						$track_loop = 'sound/mod/iwhore/shower1.mp3'
+						volume = 50
+						music_loop = 1
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1c.mp4"></video></center>'
+						'...Nurse Lida: ..."...Yes yes...a wonderful flower..."...'
+						act '...':
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1b.mp4"></video></center>'
+							'The diligent nurse keeps cleaning your body...'
+							act '...':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1c.mp4"></video></center>'
+								'Nurse Lida: "...and now the back...i''m proud of you..."<br>"...thanks...Lida...i''m sorry...i wish...i can do...that...alone...i''m sor..."<br>Nurse Lida: "...no no no...flowers don''t speak... . Do not spend your strengh."<br>"..." You follow Lida''s advice...'
+								act '...':
+									*clr & cla
+									pcs_hairbsh = 1
+									music_loop = 0 & close all
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+									'The diligent nurse help you return to you to your room...<br>Nurse Lida: "...Do you think you can try to put your dress by your self?"<br>You nod...<br>Nurse Lida: "...We cannot go out naked...isn''t it?...I know we are in the reanimation floor, and that there are a people that await to awake from a deep sleep like you...but we cannot awake all together...shouldn''t we? Hehehe..."<br>...and Lida was able to steal a little smile.'
+									act '...': 	gt 'mod_iwhore_therapy', 'bogomolov'
+								end
+							end
+						end
+					end
+				end
+			end
+		elseif body_healing = 11:
+			$track_loop = 'sound/mod/iwhore/shower1.mp3'
+			volume = 50
+			music_loop = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/waterflow.mp4"></video></center>'
+			'...'
+			act '...''...there''s no water that will clean me...''...': 
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower2bh10.jpg"></center>'
+				'...''...and that smell...''...'
+				wait 7000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'
+				'...''...that smell...''...'
+				wait 8000
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/help/breathless.jpg"></center>'
+				'...''...it''s me...''...'
+				wait 3000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/waterflow.mp4"></video></center>'
+				'...Nurse Lida: ..."...<<$pcs_nickname>>...if you won''t finish soon..."'
+				wait 3000
+				'...'
+				wait 3000
+				'Nurse Lida: ..."..."'
+				wait 3000
+				'Nurse Lida: ..."...That''s it!"'
+				wait 4000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida.mp4"></video></center>'
+				'"....Leave me Lida...i''m a monster..."<br>"Nurse Lida: ..."...What...?...Why would you say that?..."'
+				wait 10000
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3.jpg"></center>'
+				'"....That smell...it''s me...i''m rotting... . Leave me..."<br>Nurse Lida: "...Non sense. Touch my hand..."<br>"...I don''t want to make you dirty..."<br>"Nurse Lida: "If i thought you will made me dirty, would i ever asked you to touch me?...Touch my hand...<<$pcs_nickname>>..."<br>"..."<br>The nurse was stubborn...and while she was holding your arms you finally touch her hand.<br>"Nurse Lida: "...This hand is a working hand. Even if you were dirty my duty wouldn''t have changed; on the contrary, if for some reason you are dirty that would be all my fault...because my flowers has to be cleaned, or i should stop being your gardener. You didn''t use the sleeping drugs...that''s a big improvement but also a great shock...you need time...trust me. You may see yourself ugly...or think that you stink for whatever reason in that moment...i''m not your doctor, i don''t know why... . I''m a gardener, your gardener...and you are a clean fresh flower, one of the most beautiful i ever seen."<br>"..."<br>"Nurse Lida: "...That''s true...i have no reason to not tell you the true...and honestly i''m not really good in telling lie... . You stopped to use the sleeping drug...at least for the moment; if you''ll stay on that way you won''t have many reason to prolong your recovery phase... . You should be free to go soon...and i''ll miss the time i spent with you..."<br>"...I..."<br>"Nurse Lida: " ...Wait no...no no no...i''m not saying i''d like you to come back here...no no no...that''s would be bad...."'
+				act 'Tighten Lida': 
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+					'"...."<br>Nurse Lida: ..."...W-wait you''ll make me cr...no. ...It''s ok (sniff sniff)...i''m not crying...keep holding me, i''m here for you..."<br>You nod feeling the heat coming from Lida, the sensation of another body tight to yours...and something more...you may not be aware but your nipple are poking Lida...and hers you... you didn''t stop hugging her.<br>Nurse Lida: ..."...W-we...i...uhmmm...clean...yes ...i-i.. should clean you now... Is...is it better?"<br>You nod, as reality start to coming back into you...<br>"...Y-yes..."<br>Nurse Lida: ..."...Then i''m ready to take care of my flower..."'
+					act 'Nod':
+						*clr & cla
+						$track_loop = 'sound/mod/iwhore/shower1.mp3'
+						volume = 50
+						music_loop = 1
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2a.mp4"></video></center>'
+						'"...Thanks Lida..."<br>Nurse Lida: "...Flowers don''t speak...ok you may be an exception..."'
+						act '...':
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1a.mp4"></video></center>'
+							'"...You...I...in the morning... . It''s hard to awake for me...."<br>Nurse Lida: "...You need time <<$pcs_nickname>>... . I was surprised you didn''t need the drug...but you have to be careful, i don''t want you to start again the therapy from the beginning because you rush through things..."<br>"..."<br>Nurse Lida: "...Almost done..."<br>"...Lida..."<br>Nurse Lida: "...Tell me..."'
+							act '"...May i return you the favour? Can...can i wash you?"':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2b.mp4"></video></center>'
+								'"..."<br>Nurse Lida: "...Do you want...?...Ok...but do not rush..." You want to repair Lida for all her attentions... . If you feel better it''s due for all the care you had... . You take the spoon and kneel in front of Lida, while that water keep wetting both of you....'
+								act '...':
+									*clr & cla
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2c.mp4"></video></center>'
+									'"...The back..."<br>Nurse Lida: "...Oh...yes...right...but do not escape from the water...you''ll cool down otherwise..."<br>"...and the front again..."'
+									act '...':
+										*clr & cla
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2d.mp4"></video></center>'
+										'Nurse Lida: ..."...ok...but we have to finish...remember?..."<br>"...Hehehe..."<br>Nurse Lida: "...What?...What now?...Do i have the soap in my face? Tell me tell me..."<br>"...Your nipples..."<br>Nurse Lida: "...What with my nipples?..."<br>"...Are they always ... so hard?..."<br>Nurse Lida: "......<font size= 1>Ummmhh....ehmmm...Y-yes</font>......"<br>"...Is ...this my fault?..."<br>Nurse Lida: "...<font size= 1>Ummmhh....ehmmm...well...you may have a role</font>..."<br>"...Does this bother you?"<br>Nurse Lida: "...<font size= 1>That''s...not the right word</font>...is...isn''t the water too much hot ?...ufff...ufff..."<br>"...Maybe not...hehehe...they are really hard...now..."<br>Nurse Lida: "...yes...no! No no...we''ve done...ufff..."<br>You are a little disappointed, as a child whom toy were taken away; but you are not a child anymore, and you understand that''s the time to finish...'
+										act '...':
+											*clr & cla
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2e.mp4"></video></center>'
+											'"...Are you mad with me?"<br>Nurse Lida: "...Ufff...no.....ufff...i''m not..."<br>"...Thanks Lida..."<br>Nurse Lida: "...Uh?..."<br>"...I''m weak...and...you didn''t take advantage of me...in all this time..."<br>Lida paused for a moment and squeeze the spoon to remove that remaining water...<br>Nurse Lida: "...I...worked to see your smile... . It couldn''t be same if i would taken advantage of you... . And now you are paying back...yes yes. You should be me to see your smile right now... . Now: to change ourself! Deal?"<br>You can do nothing else than keep smiling and nod... . Your memory are gone for the moment...you don''t want to think at the moment they will come back...'
+											act '...':
+												*clr & cla
+												pcs_hairbsh = 1
+												music_loop = 0 & close all
+												pcs_mood += 1
+												'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+												'You both retured tothe room refreshened from the shower Lida put on her uniform...and look for you.<br>Nurse Lida: "...?"<br>You nod, understanding that you have to dress trying by your self.<br>Nurse Lida: "...Hehehe...simply great...."<br>Finally you are ready to continue your schedule.'
+												act '...': 	gt 'mod_iwhore_therapy', 'bogomolov'
+											end
+										end
+									end
+								end
+							end
+							act '"...Nothing..."':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2e.mp4"></video></center>'
+								'Lida finish your cleaning with her usual devotion. You think what it would be if another person would replace her...no...no one will be able to replace Lida.<br>"...Thanks Lida..."<br>Nurse Lida: "...Uh?..."<br>"...I''m weak...and...you didn''t take advantage of me...in all this time..."<br>Lida paused for a moment and squeeze the spoon to remove that remaining water...<br>Nurse Lida: "...I...worked to see your smile... . It couldn''t be same if i would taken advantage of you... . And now you are paying back...yes yes. You should be me to see your smile right now... . Now: to change ourself! Deal?"<br>You can do nothing else than keep smiling and nod... . Your memory are gone for the moment...you don''t want to think at the moment they will come back...'
+								act '...':
+									*clr & cla
+									pcs_hairbsh = 1
+									music_loop = 0 & close all
+									pcs_mood += 1
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+									'You both retured tothe room refreshened from the shower Lida put on her uniform...and look for you.<br>Nurse Lida: "...?"<br>You nod, understanding that you have to dress trying by your self.<br>Nurse Lida: "...Hehehe...simply great...."<br>Finally you are ready to continue your schedule.'
+									act '...': 	gt 'mod_iwhore_therapy', 'bogomolov'
+								end
+							end
+						end
+						
+					end
+				end
+			end
+		elseif body_healing = 12:
+			$track_loop = 'sound/mod/iwhore/shower1.mp3'
+			volume = 50
+			music_loop = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/waterflow.mp4"></video></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/waterflow.mp4"></video></center>'
+				'...Nurse Lida: ..."...<<$pcs_nickname>>...if you won''t finish soon..."'
+				wait 3000
+				'...'
+				wait 3000
+				'Nurse Lida: ..."..."'
+				wait 3000
+				'Nurse Lida: ..."...That''s it!"'
+				wait 4000
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3a.mp4"></video></center>'
+				'Nurse Lida: ..."...What?..."'
+				wait 7300
+				*clr & cla
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3b.mp4"></video></center>'
+				'Nurse Lida: "...Oh...ehhmm...yes...well...hehehe...uhmmm....i wasn''t spying...i swear!"<br>"...I know...i was lost in thought..."<br>Nurse Lida: "...Oh...ehhmm...ok...i should go..."'
+				act '"No."': 
+					*clr & cla
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2a.mp4"></video></center>'
+					'You ask Lida to stay...it was the routine afterall...'
+					act '...':
+						*clr & cla
+						'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida1a.mp4"></video></center>'
+						'She carefully took care of your body'
+						act '...':
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2b.mp4"></video></center>'
+							'...You asked her to return the favor. Lida gently hand over you the spoon, and you kneel in front of her to her front...'
+							act '"..."':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2c.mp4"></video></center>'
+								'...You made her turn and offer her back; you started to clean her...'
+								act '...':
+									*clr & cla
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3c.mp4"></video></center>'
+									'...and her marvelous back...'
+									act '...':
+										*clr & cla
+										'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3d.mp4"></video></center>'
+										'...You fall into temptation and let your hands wondering on Lida''s privates... <br>Nurse Lida: "...Mmmm...that''s....mmm....done...mmm...i...i...think..."'
+										act '"Don''t you like it?"':
+											*clr & cla
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3e.mp4"></video></center>'
+											'...You ask her with a sensual voice...<br>Nurse Lida: "....I...i...mmmm..."<br>...your hands can fell her...ready to receive your love... .<br>Nurse Lida: "...No...<<$pcs_nickname>>...n-no..."'
+											wait 6000
+											'...But somethings comes up to your mind...<br>Nurse Lida: "...<<$pcs_nickname>>...p-please...mmmm...w-we...shouldn''t...mmmm..."<br>You were taking something you didn''t ask the permission...'
+											act '..."I''m sorry..."':
+												*clr & cla
+												'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3f.mp4"></video></center>'
+												'Nurse Lida: "....ufff...here...ufff...we should....ufff...dry....ufff...and cool off..."<br>"I...don''t know what...took me..."<br>Nurse Lida: "...D-don''t worry...ufff...i can understand...ufff...it''s easy to be lead by instincts...ufff..."'
+												act '"..."':
+													*clr & cla
+													hour = 8
+													minut = 23
+													pcs_hairbsh = 1
+													music_loop = 0 & close all
+													'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida0.jpg"></center>'
+													'Once returned you both dressed....Nurse Lida: "...I-i...i didn''t want to be rude..."<br>"...You weren''t Lida...it''s me who had to excuse. I shouldn''t have done something that you don''t like...and...force you..."<br>Nurse Lida: "...You didn''t forced me...you left me when i asked you to stop..."<br>"...Still..."<br>Nurse Lida: "...It''s not that...it''s that...uhmmm...well...uhmmm...it''s not that i did...or...something that ...well...uhmmm...it''s more complicated than i thought... . We...we should go now...yes...we should go..."'
+													act '"...Yes...we should go... . Don''t worry Lida, i can do by my self."': gt 'mod_iwhore_recovery', 'room120'
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+				act '"..."': 
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower3.jpg"></center>'
+					'...'
+					act 'Finish shower':
+						*clr & cla
+						hour = 8
+						minut = 2
+						pcs_hairbsh = 1
+						music_loop = 0 & close all
+						pcs_mood += 1
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+						'Nurse Lida: ..."...are you sure you want to go alone?..."<br>"Yes Lida...don''t worry i know the way..."'
+						act '...': 	gt 'mod_iwhore_recovery', 'room120'
+					end
+				end
+			end
+		elseif body_healing = 13:
+			$track_loop = 'sound/mod/iwhore/shower1.mp3'
+			volume = 50
+			music_loop = 1
+			'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/waterflow.mp4"></video></center>'
+			'You open the shower and let the water flow...'
+			act '...': 
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower3.jpg"></center>'
+				'...''...I finished here, my old life is coming back. Lida was used to come and help me...all the days, no matter what...''...'
+				act 'Wash yourself': 
+					*clr & cla
+					'<center><video autoplay loop src="images/shared/home/bathroom/dush.mp4"></video></center>'
+					'...'
+					act 'Nod':
+						*clr & cla
+						hour = 8
+						minut = 0
+						pcs_hairbsh = 1
+						music_loop = 0 & close all
+						pcs_mood += 1
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+						'Nurse Lida: ..."...are you sure you want to go alone?..."<br>"Yes...I''ll never forget what you made for me...thanks Lida, from the deep of my heart..."<br>Nurse Lida: "Goodbye <<$pcs_nickname>>..."'
+						act '"Goodbye Lida..."': 	gt 'mod_iwhore_therapy', 'bogomolov'
+					end
+				end
+				act '...': 
+					*clr & cla
+					gs 'mod_iwhore_realstat' , 'restoring'
+					SHOWSTAT 0
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower3.jpg"></center>'
+					'...Nurse Lida: ..."...<<$pcs_nickname>>...is everything all right?..."'
+					wait 3000
+					'...'
+					wait 3000
+					'Nurse Lida: ..."..."'
+					wait 3000
+					'Nurse Lida: ..."...That''s it!"'
+					wait 4000
+					*clr & cla
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3a.mp4"></video></center>'
+					'Nurse Lida: ..."...What?..."'
+					wait 7300
+					*clr & cla
+					music_loop = 0 & close all
+					'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida3b.mp4"></video></center>'
+					'"...You are here..."<br>Nurse Lida: "...Oh...ehhmm...yes...well...i''m sorry...i was worried..."<br>"...I knew it..."<br>Nurse Lida: "...Ehmmm...well...you are fine...i...should go now..."<br>"...Lida..."<br>Nurse Lida: "...Uh?..."<br>"...I need to feel alive..."<br>Nurse Lida: "...????..."'
+					wait 8500
+					act '...': 
+						*clr & cla
+						$orgasm_or = 'no'
+						gs 'arousal', 'kiss', 2, 'lesbian' 
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4a.jpg"></center>'
+						'You made your move, and kiss Lida... . You caught her on surprise. There was innocence in your kiss...<br>Nurse Lida: "...<<$pcs_nickname>>...we shouldn''t..."<br>"Should i stop? Because if you don''t stop me now...Do you want me stop?..."<br>Nurse Lida: "...I-i...N-no..."'
+						act '...':
+							*clr & cla
+							$orgasm_or = 'no'
+							gs 'arousal', 'kiss', 2, 'lesbian' 
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4a.mp4"></video></center>'
+							'You need this...'
+							wait 9000
+							*clr & cla
+							'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4b.mp4"></video></center>'
+							'Your hands keep exploring your body... . Lida is smooth and soft... . She feel the same about you...'
+							act '...':
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4c.mp4"></video></center>'
+								'...Both of your tongues and lips are occupied in a long passionate kiss...'
+								wait 9000
+								*clr & cla
+								'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4d.mp4"></video></center>'
+								'...But Lida doesn''t forget you need to wash yourself too...and she managed to open the water again without stopping giving you the attentions you need...'
+								wait 9000
+								*clr & cla
+								$orgasm_or = 'no'
+								gs 'arousal', 'kiss', 2, 'vaginal_finger_give', 'lesbian' 
+								$track_loop = 'sound/mod/iwhore/shower1.mp3'
+								volume = 50
+								music_loop = 1
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4e.jpg"></center>'
+								'Nurse Lida: "...<<$pcs_nickname>>...wait..."<br>"..."<br>Lida stopped you for a moment...you need all but not stopping right now; you hope you didn''t rush too much...<br>Nurse Lida: "...I''m going mad...you need to remove the cream from me...please..."<br>"..."<br>You wonder for a second about her request but it doesn''t matter...if that will let her feel good you have no reason to not listen at her...<br>Nurse Lida: "...Please..."'
+								act '...':
+									*clr & cla
+									$orgasm_or = 'no'
+									gs 'arousal', 'kiss', 2, 'vaginal_finger_give', 'lesbian' 
+									'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4e.mp4"></video></center>'
+									'...As you point the water on Lida''s pussy...she explode into a powerful orgasm...<br>...''...Wow...she needed it''...<br>She''s ready to continue...'
+									act '...':
+										*clr & cla
+										$orgasm_or = 'no'
+										gs 'arousal', 'kiss', 2, 'lesbian' 
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4e.jpg"></center>'
+										'...You return to kiss each other in a no ending kiss...'
+										act '"...Take me..."':
+											*clr & cla
+											pcs_horny = 0
+											orgasm += 1
+											minut += 1
+											pcs_mood += 40
+											gs 'arousal', 'kiss', 1, 'vaginal_finger', 'lesbian' 
+											gs 'arousal', 'end'
+											gs 'mod_iwhore_realstat' , 'restoring'
+											gs 'stat'
+											!gs 'stat'
+											'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4f.mp4"></video></center>'
+											'...She made you cum finally...but it''s not enough for your awaken appetite...'
+											act '...':
+												*clr & cla
+												$orgasm_or = 'no'
+												pcs_horny += 100
+												gs 'mod_iwhore_realstat' , 'restoring'
+												gs 'arousal', 'kiss', 2, 'vaginal_finger', 'vaginal_finger_give', 'lesbian'
+												'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4g.mp4"></video></center>'
+												'..."...Don''t stop...."...<br>Nurse Lida: "...I don''t want..." . '
+												wait 7500
+												*clr & cla
+												'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4h.mp4"></video></center>'
+												'..."...."...<br>Nurse Lida: "..."<br>None of you want to stop... '
+												wait 7500
+												act 'You feel it coming...':
+													*clr & cla
+													pcs_horny = 0
+													orgasm += 1
+													minut += 1
+													pcs_mood += 40
+													!gs 'mod_iwhore_realstat' , 'restoring'
+													gs 'arousal', 'kiss', 2, 'vaginal_finger', 'vaginal_finger_give', 'lesbian' 
+													gs 'mod_iwhore_realstat' , 'restoring'
+													gs 'arousal', 'end'
+													gs 'stat'
+													'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida4i.mp4"></video></center>'
+													'..."...."...<br>Nurse Lida: "..."<br>None of you want to stop... '
+													act '...':
+														*clr & cla
+														hour = 8
+														minut = 34
+														pcs_hairbsh = 1
+														music_loop = 0 & close all
+														SHOWSTAT 1
+														gs 'mod_iwhore_realstat' , 'restoring'
+														'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+														'But you know that everything has an ends.... .<br>Nurse Lida: "..."<br>"...Goodbye Lida and...thanks... ."<br>Nurse Lida: "...There''s no need <<$pcs_nickname>>...i needed that too..."<br>"...Still..."<br>Nurse Lida: "...No no no...I don''t like sad moments. They ruin my the mood..."<br>"...I hope to see you again... ."<br>Nurse Lida: "...I hope that too, but you now have to goo and see the doctors for your dismissions... . Goodbye <<$pcs_nickname>>."'
+														act 'Collect your last things.':
+															*clr & cla
+															'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/room.jpg"></center>'
+															'...'
+															act 'Go and see the doctor.': gt 'mod_iwhore_therapy', 'bogomolov'
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+				
+			end
+		else
+			''
+		end
+	else
+		$track_loop = 'sound/mod/iwhore/shower1.mp3'
+		volume = 50
+		music_loop = 1
+		if body_healing = 9:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower1bh9a.jpg"></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+				'The dutyful nurse help you...'
+				act '...': 	gt 'mod_iwhore_recovery', 'room120'
+			end
+		elseif body_healing = 10:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower2bh10a.jpg"></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2.jpg"></center>'
+				'The dutyful nurse help you...'
+				act '...': 	gt 'mod_iwhore_recovery', 'room120'
+			end
+		elseif body_healing = 11:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower2bh10.jpg"></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2e.mp4"></video></center>'
+				'The dutyful nurse help you and reassure you; you feel better...'
+				act '...': 	gt 'mod_iwhore_recovery', 'room120'
+			end
+		elseif body_healing = 12:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower4.jpg"></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2e.mp4"></video></center>'
+				'No matter how many time the burse have to shower with you; everytime you take too much time she came to assure you are safe...'
+				act '...': 	gt 'mod_iwhore_recovery', 'room120'
+			end
+		elseif body_healing = 13:
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/shower4.jpg"></center>'
+			'...'
+			act '...': 
+				*clr & cla
+				music_loop = 0 & close all
+				'<center><video autoplay loop src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/showerlida2e.mp4"></video></center>'
+				'...'
+				act '...': 	gt 'mod_iwhore_recovery', 'room120'
+			end
+		else
+			''
+		end
+	end
+end
+
+if $ARGS[0] = 'boffice':
+	cls
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/officeb.jpg"></center>'
+	'Dr. Ignatiy Bogomolov: "Good evening...please have a seat. If you wish you can take a look around...doctor''s offices are not really comfortable from the patients point of view... it should rise your confidence with the environment."'
+	act 'Have a chat':
+		*clr & cla
+		minut += 10
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/ignatiy2.jpg"></center>'
+		'You have a little chat with Dr Bogomolov...'
+		act '"Thanks doctor..."': gt 'mod_iwhore_recovery', 'hallway'
+		
+	end
+	act '"Sorry, i won''t bother you,"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/access/alt2.jpg"></center>'
+		'Dr. Ignatiy Bogomolov: "Do not worry, if i have the time i''m glad to spend some minutes chatting."'
+		act '...': gt 'mod_iwhore_recovery', 'hallway'
+	end
+end
+
+if $ARGS[0] = 'soffice':
+	cls
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hospital/offices.jpg"></center>'
+	'Dr. Filippa Smirnitskaya: "Good evening...please have a seat. If you wish you can take a look around...doctor''s offices are not really comfortable from the patients point of view... it should rise your confidence with the environment. Is there something i could do for you?"'
+	act 'Have a chat':
+		*clr & cla
+		minut += 10
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/filippasess.jpg"></center>'
+		'You have a little chat with Dr Smirnitskaya'
+		act '"Thanks doctor..."': gt 'mod_iwhore_recovery', 'hallway'
+	end
+	act '"Sorry, i won''t bother you,"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/filippa.jpg"></center>'
+		'Dr. Filippa Smirnitskaya: "Do not worry, if i have the time i''m glad to spend it chatting with you."'
+		act '...': gt 'mod_iwhore_recovery', 'hallway'
+	end
+end
+
+if $ARGS[0] = 'lunch':
+	pain['killer'] = 1
+	minut += rand(0,5)
+	if body_healing = 8 and iskra_war = 1:
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day10.jpg"></center>'
+		'...''...''...'
+		act '...':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'
+			'...''...he dragged me there...''...'
+			wait 9000
+			'Nurse Lida: "...<<$pcs_nickname>>..."'
+			wait 5000
+			'...''...he left me to die...''...'
+			wait 5000
+			'Nurse Lida: "..."'
+			wait 5000
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day11.jpg"></center>'
+			'Nurse Lida: "...Dr Balsunov..."...<br>Dr. Ignatiy Bogomolov: "...Lida..."<br>Nurse Lida: "...<<$pcs_nickname>>...doesn''t eat..."<br>Dr. Ignatiy Bogomolov: "...Uhmmm...if that will last for too much we should turn back to the artificial feeding. We have to avoid this at any price..."<br>Nurse Lida: "...Can i look at her food restriction?..."<br>Dr. Ignatiy Bogomolov: "...Here, take a look..."<br>Nurse Lida: "...Perfect!..."<br>Dr. Ignatiy Bogomolov: "...Uh?..."<br>Nurse Lida: "...I''ve got the solution!..."<br>Dr. Ignatiy Bogomolov: "...Care to share your idea?..."<br>Nurse Lida: "...Triple!..."<br>Dr. Ignatiy Bogomolov: "...Oh!...Ok. You can try."'
+			act '...In the meantime...':
+				gs 'mod_iwhore_realstat' , 'restoring'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/lunch.jpg"></center>'
+				'Iskra: "I can smeel you. Go away."<br>"Iskra... ."<br>Iskra: "Go away. You won''t ruin what Lida made for me. GO AWAY."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/mother1.jpg"></center>'
+					'"Iskra...please...i''m here for you."<br>Iskra: "GO AWAY!!!" ...all the food that was made with love was trowed away...<br>"Iskra...please...i''m you mother...don''t do that way..."'
+					wait 9000
+					'<br><b><font size= 6>"GO AWAY!"</font></b>'
+					wait 3000
+					$track_loop = 'sound/mod/iwhore/buzzer.mp3'
+					volume = 50
+					music_loop = 1
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day11.jpg"></center>'
+					'Dr. Ignatiy Bogomolov: "...N-no...no no no!!!..."<br>Nurse Lida: "..."<br>Dr. Ignatiy Bogomolov: "...Return to <<$pcs_nickname>>...she cannot stay alone!"<br>Nurse Lida: "...Dr..."<br>Dr. Ignatiy Bogomolov: "...136..."<br>Nurse Lida: "...N-no..."'
+					act '...':
+						music_loop = 0 & close all
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/mother.jpg"></center>'
+						'Dr. Ignatiy Bogomolov: "...Filippa..."<br>"What''s on my daughter doctor?"<br>Dr Filippa Smirnitskaya: "...It''s ok...it was a little shock...she''s sleeping now, as if she has no more strengh."<br>Dr. Ignatiy Bogomolov: "Did something happened, whe she was eating?"<br>"...I-i...don''t know...she started scream..."<br>Dr. Ignatiy Bogomolov: "To who?<br>"...I-i...i was talk to her...and then...""<br>Dr. Ignatiy Bogomolov: "I had to ask all to go out, parents included. She need rest..."<br>"But..."<br>Dr. Ignatiy Bogomolov: "Now."'
+						act '...':
+							gs 'mod_iwhore_realstat' , 'restoring'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day10.jpg"></center>'
+							'...''...i have no value...''...<br>Nurse Lida: "...<<$pcs_nickname>>...you had to react... . As the matter of fact i brought you something that cannot fail...here it is. You had to eat...do not worry i''ll come back in a minute...you can start without me..."'
+							act '...':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/lidawatch.jpg"></center>'
+								'Nurse Lida: ...''...oh thanks... . It doesn''t matter Iskra i''ll made another for you... . But now i have to take care of <<$pcs_nickname>>...i''m sure you understand...''...'
+								act '...':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day12.jpg"></center>'
+									'...''...i''m n...''...<br>Nurse Lida: "...No...no no no...just in time... . You have to excuse me...i had to know... . But now i''m here and the triple bomb will not fail!"'
+									act '...':
+										*clr & cla
+										hour = 17
+										minut = 0
+										pcs_energy += 300
+										gs 'mod_iwhore_realstat' , 'restoring'
+										'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day13.jpg"></center>'
+										'Nurse Lida: "...Say "AH"..."<br>...''...why you care about me, you are losing your time...''...<br>Nurse Lida: "...Again: "AH"..."<br>...''...she doesn''t left me...''...<br>Nurse Lida: "..."AH"..."<br>...''...she''s stubborn...''...<br>Nurse Lida: "...Yes yes...another..."AH"..."<br>...''...she''s strong...''...<br>Nurse Lida: "..."AH"..."<br>...''...i''m weak...''...<br>Nurse Lida: "...You are weak...you need energy...simple isn''t it? Again..."AH"..."<br>...''...did she hear me?...''...<br>Nurse Lida: "..."AH"..."<br>...''...this...''...<br>Nurse Lida: "...as soon as the chocolate drops melt in your mouth you will hear a thousand explosions of flavors, one stronger than the previous..."AH"..."<br>...''...what''s that?...''...<br>Nurse Lida: "...I knon i know...it''s a fit killer..."AH"..."<br>...''...chocolate?...''...<br>Nurse Lida: "..."AH"..."<br>...''...it''s...good...''...<br>Nurse Lida: "..."AH"..."<br>...'
+										act '...': gt 'mod_iwhore_therapy', 'exercise'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	elseif body_healing = 8 and iskra_war ! 1:
+		*clr & cla
+		act '...':
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/newborn/c2.jpg"></center>'
+			'...''...he dragged me there...''...'
+			wait 6000
+			'Nurse Lida: "...<<$pcs_nickname>>..."'
+			wait 4000
+			'...''...he left me to die...''...'
+			wait 3000
+			'Nurse Lida: "..."'
+			wait 3000
+			gs 'mod_iwhore_realstat' , 'restoring'
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day11.jpg"></center>'
+			'Nurse Lida: "...Dr Balsunov..."...<br>Dr. Ignatiy Bogomolov: "...Lida..."<br>Nurse Lida: "...<<$pcs_nickname>>...doesn''t eat..."<br>Dr. Ignatiy Bogomolov: "...Uhmmm...if that will last for too much we should turn back to the artificial feeding. We have to avoid this at any price..."<br>Nurse Lida: "...Can i look at her food restriction?..."<br>Dr. Ignatiy Bogomolov: "...Here, take a look..."<br>Nurse Lida: "...Perfect!..."<br>Dr. Ignatiy Bogomolov: "...Uh?..."<br>Nurse Lida: "...I''ve got the solution!..."<br>Dr. Ignatiy Bogomolov: "...Care to share your idea?..."<br>Nurse Lida: "...Triple!..."<br>Dr. Ignatiy Bogomolov: "...Oh!...Ok. You can try."'
+			act '...':
+				gs 'mod_iwhore_realstat' , 'restoring'
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day10.jpg"></center>'
+				'...''...i have no value...''...<br>Nurse Lida: "...<<$pcs_nickname>>...you had to react... . As the matter of fact i brought you something that cannot fail...here it is. You had to eat...do not worry i''ll watch over you...you can start..."'
+				act '...':
+					gs 'mod_iwhore_realstat' , 'restoring'
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day12.jpg"></center>'
+					'...''...i''m n...''...<br>Nurse Lida: "...No...no no no...<<$pcs_nickname>>, i''m here and the triple bomb will not fail!"'
+					act '...':
+						hour = 17
+						minut = 0
+						pcs_energy += 300
+						gs 'mod_iwhore_realstat' , 'restoring'
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day13.jpg"></center>'
+						'Nurse Lida: "...Say "AH"..."<br>...''...why you care about me, you are losing your time...''...<br>Nurse Lida: "...Again: "AH"..."<br>...''...she doesn''t left me...''...<br>Nurse Lida: "..."AH"..."<br>...''...she''s stubborn...''...<br>Nurse Lida: "...Yes yes...another..."AH"..."<br>...''...she''s strong...''...<br>Nurse Lida: "..."AH"..."<br>...''...i''m weak...''...<br>Nurse Lida: "...You are weak...you need energy...simple isn''t it? Again..."AH"..."<br>...''...did she hear me?...''...<br>Nurse Lida: "..."AH"..."<br>...''...this...''...<br>Nurse Lida: "...as soon as the chocolate drops melt in your mouth you will hear a thousand explosions of flavors, one stronger than the previous..."AH"..."<br>...''...what''s that?...''...<br>Nurse Lida: "...I knon i know...it''s a fit killer..."AH"..."<br>...''...chocolate?...''...<br>Nurse Lida: "..."AH"..."<br>...''...it''s...good...''...<br>Nurse Lida: "..."AH"..."<br>...'
+						act '...': gt 'mod_iwhore_therapy', 'exercise'
+					end
+				end
+			end
+		end
+	elseif body_healing = 9:
+		if hour = 12 or hour = 13:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day20.jpg"></center>'
+			'Nurse Lida: "...Here we are...you should try to eat..."<br>"...i''m not hungry..."<br>Nurse Lida: "...Uhmmm...no no no...wait me here..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day10.jpg"></center>'
+				'Nurse Lida: "...uh?...did you eat the food?...Oh...no you trowh it away..."<br>"...i''m not hungry..."<br>Nurse Lida: "...I bet you don''t want an icy spear neither..."'
+				act '...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day13.jpg"></center>'
+					'Nurse Lida: "...Hehehe....say "AH"..."<br>"...no...wai"<br>Nurse Lida: "..."AH"..."....'
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/room.jpg"></center>'
+						'Nurse Lida: "...and now you have to wash your teeth...rush rush."'
+						act '...':
+							*clr & cla
+							pcs_energy += 300
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/mirror0.jpg"></center>'
+							'...''...this is killing me...i''m trying to forget, but Dr smirnitskaya...remind me...everything...''...'
+							act 'Leave the bathroom': hour = 13 & gt 'mod_iwhore_recovery', 'room120'
+						end
+					end
+				end
+			end
+		else	
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day20.jpg"></center>'
+			'Nurse Lida: "...Here we are...you should try to eat..."<br>"...i''m not hungry..."<br>Nurse Lida: "...No no no...no excuse, also you have to try your new tooth..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day20.jpg"></center>'
+				'"...That''s...neither an excuse..."<br>Nurse Lida: "...You are wrong: it is..."<br>"...But..."<br>Nurse Lida: "...Do you prefer to be a fat cow?..."<br>"..."<br>Nurse Lida: "...I like to play the airplane game, do you know it?..."<br>"..."<br>Nurse Lida: "...I can stay here all the night..."'
+				act '..."...Ok...ok..."...':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day13.jpg"></center>'
+					'Nurse Lida: "..."AH"..."<br>"...no...wait...i said ok!"<br>Nurse Lida: "...Uh? Don''t worry this is for me...i cannot let it melt...could i? no no no..."....'
+					act 'Eat the dinner':
+						*clr & cla
+						minut = 30
+						pcs_energy += 100
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day21.jpg"></center>'
+						'Nurse Lida: "...Maybe you prefer another triple bomb afterall, but you really have to return to a normal food...you cannot live with ice cream only...we need proteins, fat, sugar, vitamins, palm oil...a lot of things..."<br>"..."<br>Nurse Lida: "...Ok ok...if you will be fast we''ll jump quickly to my headquarter...if you want of course..."....'
+						act 'End dinner': hour = 20 & gt 'mod_iwhore_recovery', 'room120'
+					end
+				end
+			end
+		end
+	elseif body_healing = 10:
+		if hour = 12 or hour = 13:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day20.jpg"></center>'
+			'Nurse Lida: "...Here we are...you should try to eat...wait me here..."<br>"..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day21.jpg"></center>'
+				'The words of Dr Filippa Smirnitskaya return to your mind...''..."...Days and nights were the same things for me...foods had no savour... i stopped to take care of me; it was killing me day by day ... . The look of who passed visit me was a the look of who is looking someone going to die..."...''...<br>Nurse Lida: "...uh?...What are you doing?..."<br>"...i''m...eating..."<br>Nurse Lida: "...Nahhhhh..."'
+				act '..."Uh?"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day31.jpg"></center>'
+					'Nurse Lida: "...Lida''s recipe!"<br>"...You...made this...for me?..."<br>Nurse Lida: "...Yes yes...less talking more eating..."...<br>"...It looks good..." .<br>Nurse Lida: "...That''s because you didn''t tasted it yet...less watching more eating..."<br>"...Thanks Lida...really."<br>Nurse Lida: "...I would never been able to let you eat what they cocked today...no no no." You ate your lunch...there are other savour than chocolate...'
+					act 'Finish':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/room.jpg"></center>'
+						'Nurse Lida: "...and now you have to wash your teeth...rush rush."'
+						act '...':
+							*clr & cla
+							pcs_energy += 100
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/mirror0.jpg"></center>'
+							'...''...i have to try to forget...''...'
+							act 'Leave the bathroom': hour = 13 & gt 'mod_iwhore_recovery', 'room120'
+						end
+					end
+				end
+			end
+		else
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day31.jpg"></center>'
+			'Nurse Lida: "...Lida''s recipe!"<br>"...You...made the dinner too?..."<br>Nurse Lida: "...Of course...basically the problem it''s that the chef are different from day to day..."...<br>"...It looks really good... . Thanks Lida...really...I..."<br>Nurse Lida: "...Hehehe...less talking more eating..." ...'
+			act 'Finish':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/help1.jpg"></center>'
+				'"What''s that for?"<br>Nurse Lida: "...This one? I''m just preparing the detox for the night. Have you finished?"<br>"Yes..."<br>Nurse Lida: "...then you have to wash your teeth...rush rush."'
+				act '...':
+					*clr & cla
+					minut = 30
+					pcs_energy += 100
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/mirror0.jpg"></center>'
+					'...Again Filippa''s words  return to your mind...''..."...If there was something that was trying to kill me day by day...on the other side i had whom was working for the the opposite..."... ...''...'
+					act 'Leave the bathroom': hour = 20 & gt 'mod_iwhore_recovery', 'room120'
+				end
+			end
+		end
+	elseif body_healing = 11:
+		if hour = 12 or hour = 13:
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day31.jpg"></center>'
+			'Nurse Lida: "...Here we are..."<br>"...Lida, really...there''s no need... . You should stop bringing me the lunch..."<br>Nurse Lida: "...Uh? Don''t you like my recipe?"<br>"...On the contrary; but if i have to habit to the daily life...well...hospital food is what i should eat...don''t take me bad..."<br>Nurse Lida: "...I won''t. I can see you are on the right way..."'
+			act 'End the lunch and wash your teeth':
+				*clr & cla
+				pcs_energy += 100
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/mirror0.jpg"></center>'
+				'...''...it''s a mess...but i have to get out of here...''...'
+				act 'Leave the bathroom': hour = 13 & gt 'mod_iwhore_recovery', 'room120'
+			end
+		else
+			*clr & cla
+			minut = 30
+			pcs_mood -= 2
+			pcs_energy += 100
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day51.jpg"></center>'
+			'Nurse Lida: "...Are you sure <<$pcs_nickname>>?"<br>"...Yes, i don''t want to be a weight for you...also, it''s not that i will eat in the restaurant everyday. If i want to return to my daily routine it''s something i should do..."<br>Nurse Lida: "..."<br>"...It doesn''t seems so bad..."<br>You were recovering good and not feel a real disgust in food anymore...still...<br>Nurse Lida: "...Nighty ice cream?"<br>"...That''s...that''s a bad day in kitchen...isn''t it?"<br>Nurse Lida: "Nighty ice cream."'
+			act 'Leave the bathroom': hour = 20 & gt 'mod_iwhore_recovery', 'room120'
+		end
+	elseif body_healing = 12:
+		*clr & cla
+		pcs_energy += 100
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/day51.jpg"></center>'
+		if hour = 12 or hour = 13:
+			hour = 13
+			'...''...I need energy...''...'
+		else
+			hour = 20
+			minut = 30
+			'...''...All the energy i can take...''...'
+		end
+		act 'Finish': gt 'mod_iwhore_recovery', 'room120'
+	else
+		''
+	end
+end
+
+if $ARGS[0] = 'vanya':
+	act 'Ask Lida about the teddy bear': gt 'mod_iwhore_recovery', 'agirl_named_iskra'
+end
+
+if $ARGS[0] = 'agirl_named_iskra':
+	*clr & cla
+	pain['killer'] = 1
+	gs 'mod_iwhore_realstat' , 'restoring'
+	'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/roomv.jpg"></center>'
+	'Nurse Lida: "You found it? It was the whole day... . Does it have its own life?...Whatever, i should return it...thanks, <<$pcs_nickname>>...your room will be free tomorrow..."<br>"Who''s the owner?"'
+	act '...':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+		'Nurse Lida: "...Oh a little shini love! She cared about you, do you know?...Since she awake she ask me about you, she told me to not worry that soon you would came back."...<br>"Do...i know her?"<br>Nurse Lida: "...Uhhmmm...I think so...she seems like an old friend for you...well...not really old...uhmmm...no not old...nothing at all...I don''t know maybe a cousin, but this link doesn''t appear in our database..."'
+		act '"Can i see her?"':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/lida1.jpg"></center>'
+			'Nurse Lida: "...I don''t know...i mean it''s late and you should rest...and the same for her... . Rest is part of the therapy...and we shouldn''t skip a regular way to sleep..."<br>"...I-i''d like to return her teddy bear..."<br>Nurse Lida: "...I don''t know if this is the right thing...both of you will spend some time here, you should wait till tomorrow..."<br>"...Is she recovered here?..."<br>Nurse Lida: "...Yes...she''s...like you...i mean she was...like you...or...you were like her...uhmmm..."<br>"...Please..."<br>Nurse Lida: "..."<br>"..."<br>Nurse Lida: "You have to promise me two things: first, if she''s sleeping we will return here immediately...it was an hard day for her. Second you will work harder tomorrow, and you will try to eat; ...triple bomb...is a fit killer...i like delicate flowers, not fat plants... ."<br>"...Thanks Lida...i''ll try..."'
+			act '...':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hallway0.jpg"></center>'
+				'Nurse Lida: "...Step by step...do not rush, there''s no need..."<br>"Did you take it?"<br>Nurse Lida: "Yes yes, i''ve got it with me don''t worry, we''ll give it her back as soon as we arrive...but if she''s sleeping, please do not touch her...i don''t want you to pull out some of the tube she have...please."<br>"...Don''t worry...i promised...thanks Lida..."<br>Nurse Lida: "...and do not rush...we need all but not you to fall..."'
+				act 'Room 136':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/donotdisturb.jpg"></center>'
+					'Nurse Lida: "...Wait here, she''s sleeping..."<br> A bear return to her owner. '
+					act '...':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/girl/donotdisturb.jpg"></center>'
+						'"She...is...a...child..."<br>Nurse Lida: "...Yes."<br>"...I-i...have never thought...is...is she safe?...what happened to her?..."<br>Nurse Lida: "...We think she''s safe, but she''s really weak right now...It was a car accident."<br>"...I cannot see any wounds on her...how could it be she''s weak?"<br>Nurse Lida: "...Her wounds were healed...a lot of time ago."<br>"...But..."<br>Nurse Lida: "...She slept...for more than four year. I made my best...but without movements the body suffer..."<br>"..."<br>Nurse Lida: "...We saw her growing <<$pcs_nickname>>...but now we''ll work harder! She deserve more from life...It''s my promise."<br>"..."<br>Nurse Lida: "...And the same for you. You could pass visit her, i''m sure she will be happy to receive you ...but you have to sleep now, we should really go now."<br>"...Y-yes."'
+						act '...':
+							iskra_war = 2
+							pain['killer'] = 0
+							hour = 23
+							minut = rand (28,34)
+							gs 'mod_iwhore_realstat' , 'restoring'
+							'<center><img <<$set_imgh>> src="mod/iwhore/images/locations/pavlovsk/events/fight/care/recovery/hallway0.jpg"></center>'
+							'"...NNGGGHH!"<br>Nurse Lida: "...<<$pcs_nickname>>! We should stop! Stand here..."<br>"...I-it''s nothing...thanks Lida..."<br>Nurse Lida: "..."'
+							act '"Nngh!...Let''s...go..."': gt 'mod_iwhore_recovery', 'bed'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+!gs 'clothing', 'wear_last_worn'
+!gs 'stat'
+
+!gs 'clothing', 'strip'
+!gs 'stat'
+--- mod_iwhore_recovery ---------------------------------

+ 31 - 0
locations/mod_iwhore_setup.qsrc

@@ -0,0 +1,31 @@
+# mod_iwhore_setup
+!input basic mod information here. 
+!this location must be the first one
+
+$mod_info[0] = 'iWhore'
+!0=mod name, saved to $mod_name[i] array 
+
+$mod_info[1] = '100'
+!1=mod version
+!this will be displayed as version 1.2, fix3.
+!if you input 40500, will be showen as version 4.5
+
+$mod_info[2] = 'Orig: Junjulaug75'
+!2=mod author
+
+$mod_info[3] = 'Ability to freely whore yourself in and around Pavlovsk...adapted to Girl Life  0.8.5'
+!3=mod description, input a short brief here.
+
+
+if $curloc = 'mod_<<$mod_info[0]>>_setup':
+	usehtml = 1
+	!this will be only showed if you exec mod file. This location should be only called by gs, so this line will not trigger on normal mod playing
+	'<center><h1><font color=red>ACCESS DENIED</font></h1></center>'
+	'<<$mod_info[0]>> is a mod for <b>Girl Life - English Community Version</b>, and can not be played individually.'
+	''
+	'You can find the main game in <a href="https://www.tfgamessite.com/index.php?module=viewgame&id=597">Tfgames site</a> (external link)'
+	''
+	'Our forum: <a href="https://tfgamessite.com/phpbb3/viewforum.php?f=70">Tfgames site</a> (external link)'
+end
+
+--- mod_iwhore_setup ---------------------------------

ファイルの差分が大きいため隠しています
+ 71 - 0
locations/mod_iwhore_therapy.qsrc


+ 36 - 0
mod_iwhore.qproj

@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<QGen-project version="4.0.0 beta 1">
+	<Structure>
+	<Location name="mod_iwhore_setup"/>
+	<Location name="mod_iwhore_readme"/>
+	<Location name="mod_iwhore"/>
+	<Location name="mod_iwhore_dincollect"/>
+	<Location name="mod_iwhore_begin"/>
+	<Location name="mod_iwhore_highway"/>
+	<Location name="mod_iwhore_dhighway"/>
+	<Location name="mod_iwhore_nhighway"/>
+	<Location name="mod_iwhore_mainstreet"/>
+	<Location name="mod_iwhore_mainstreetw"/>
+	<Location name="mod_iwhore_park"/>
+	<Location name="mod_iwhore_parkw"/>
+	<Location name="mod_iwhore_pbath"/>
+	<Location name="mod_iwhore_pbathw"/>
+	<Location name="mod_iwhore_fountain"/>
+	<Location name="mod_iwhore_methman"/>
+	<Location name="mod_iwhore_methbang"/>
+	<Location name="mod_iwhore_hardlife"/>
+	<Location name="mod_iwhore_jenna"/>
+	<Location name="mod_iwhore_limbus"/>
+	<Location name="mod_iwhore_limbus1"/>
+	<Location name="mod_iwhore_limbusdraw"/>
+	<Location name="mod_iwhore_limbusbattle"/>
+	<Location name="mod_iwhore_realtime"/>
+	<Location name="mod_iwhore_realstat"/>
+	<Location name="mod_iwhore_recovery"/>
+	<Location name="mod_iwhore_therapy"/>
+	<Location name="mod_iwhore_innapt"/>
+	<Location name="mod_iwhore_innapodz"/>
+	<Location name="mod_iwhore_notes"/>
+	<Location name="mod_iwhore_autofight"/>
+	</Structure>
+</QGen-project>

+ 31 - 0
tools/check_consistency.py

@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# checks to make sure that mod_wlife.qproj is in sync with the location files
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+import os.path
+
+# read the project xml file first
+tree = ET.parse('mod_wlife.qproj')
+root = tree.getroot()
+
+
+xml_locations = []
+os_locations = os.listdir("locations")
+
+print "Locations missing from ./locations/:"
+for location in root.iter('Location'):
+    name = location.attrib['name'].replace("$","_")
+    xml_locations.append(name)
+    
+    if name not in os_locations:
+        print name
+
+
+print "Locations missing from .qproj:"
+for name in os_locations:
+    if name not in xml_locations:
+        print name

+ 36 - 0
tools/check_images.py

@@ -0,0 +1,36 @@
+#!/usr/bin/env python
+
+import io
+import os
+import re
+import sys
+
+#path = os.getcwd()
+#print path
+
+startpattern = """mod/public_WC/"""
+imgFormats = ['jpg','jpeg','gif','png','mp4']
+
+images = []
+
+ifile = io.open(
+    "mod_wlife.txt",
+    mode='rt',
+    encoding='utf-16'
+)
+text = ifile.read()
+for match in re.finditer(r"mod/public_WC/.+?[.](gif|jpg|jpeg|png|mp4)", text, flags=re.U):
+    imgfile = match.group().encode("utf-8")
+    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()
+
+for image in images:
+    if not re.search(r"[<$]", image) and not os.path.isfile(image):
+        print "Image not found:", image
+

+ 39 - 0
tools/check_imageso.py

@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+
+import io
+import os
+import re
+
+#path = os.getcwd()
+#print path
+
+startpattern = """images/"""
+imgFormats = ['jpg','gif']
+
+infile = io.open('mod_wlife.txt',mode='r',encoding='utf-16')
+lines = infile.readlines()
+
+images = []
+
+for name in os.listdir("locations"):
+    ifile = io.open(
+        os.path.join("locations", name),
+        mode='rt',
+        encoding='utf-8'
+    )
+    text = ifile.read()
+    for match in re.finditer(r"images.+?[.](gif|jpg|png)", text, flags=re.U):
+        imgfile = match.group().encode("utf-8")
+        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()
+
+
+for image in images:
+    if not re.search(r"[<$]", image) and not os.path.isfile(image):
+        print "Image not found:", image

BIN
tools/txt2gam.exe


+ 44 - 0
tools/txtmerge.py

@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+# usage: txtmerge.py <input_dir> <output_file_name> 
+# does the exact opposite of txtsplit.py
+
+import os
+import sys
+import re
+import io 
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 4, "usage:\ntxtmerge.py <input_file_name> <input_dir> <output_file_name>"
+iname = str(sys.argv[1])
+idir = str(sys.argv[2])
+oname = str(sys.argv[3])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+tree = ET.parse(iname)
+root = tree.getroot()
+
+ofile = io.open(oname, 'w', encoding='utf-16', newline='\r\n')
+
+for location in root.iter('Location'):
+    iname = location.attrib['name']
+    iname = iname.replace("$","_")
+
+    try:
+        ifile = io.open(os.path.join(idir,iname + '.qsrc'), 'rt', encoding='utf-8')
+        text = ifile.read()
+
+        # make sure there's a line at the end of file
+        # (why wouldn't there be one? WINDOWS!
+        if text[-1] != u'\n':
+            text += u'\n\n'
+
+        ofile.write(text)
+        ifile.close()
+    except IOError:
+        print("WARNING: missing location %s" % iname)
+        pass
+
+ofile.close()
+    
+        

+ 46 - 0
tools/txtsplit.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+# usage: txtsplit.py <input_file_name> <output_dir>
+# splits a txt2gam file into individual location files
+# encoded in utf-8, for git to better handle
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 3, "usage:\ntxtsplit.py <input_file_name> <output_dir>"
+iname = str(sys.argv[1])
+odir = str(sys.argv[2])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+"""
+tree = ET.parse(iname)
+root = tree.getroot()
+"""
+
+ifile = io.open(iname, 'rt', encoding='utf-16')
+
+counter = 1
+
+oname = None
+firstline = ifile.readline().replace(u'\ufeff','')
+match = re.search(ur'^#\s(\$?[_.\w]+)$', firstline)
+if match:
+    oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+    counter += 1
+assert oname, "file is in the wrong format, must start with a location name"
+
+ofile = io.open(oname, 'w', encoding='utf-8')
+ofile.write(firstline)
+
+for line in ifile:
+    match = re.search(ur'^#\s(\$?[_.\w]+)$', line)
+    if match:
+        ofile.close()
+        oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+        counter += 1
+        ofile = io.open(oname, 'w', encoding='utf-8')
+    ofile.write(line)
+        

+ 46 - 0
tools/txtsplit3.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python3
+# usage: txtsplit.py <input_file_name> <output_dir>
+# splits a txt2gam file into individual location files
+# encoded in utf-8, for git to better handle
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 3, "usage:\ntxtsplit.py <input_file_name> <output_dir>"
+iname = str(sys.argv[1])
+odir = str(sys.argv[2])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+"""
+tree = ET.parse(iname)
+root = tree.getroot()
+"""
+
+ifile = io.open(iname, 'rt', encoding='utf-16')
+
+counter = 1
+
+oname = None
+firstline = ifile.readline().replace(u'\ufeff','')
+match = re.search('^#\s(\$?[_.\w]+)$', firstline)
+if match:
+    oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+    counter += 1
+assert oname, "file is in the wrong format, must start with a location name"
+
+ofile = io.open(oname, 'w', encoding='utf-8')
+ofile.write(firstline)
+
+for line in ifile:
+    match = re.search('^#\s(\$?[_.\w]+)$', line)
+    if match:
+        ofile.close()
+        oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+        counter += 1
+        ofile = io.open(oname, 'w', encoding='utf-8')
+    ofile.write(line)
+        

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません