Browse Source

Invalid quotes in strings:
Fixed hanging quotes.
Fixed missing double quote ('') for apostrophe.
Convert (`) to double quote ('') for consistency.

Image Paths:
Corrected errors in image paths
Moved tatvag6.jpg to image\body
Commented missing images except 'images\img\house\g*.jpg' and 'images\toilet\*.jpg'

Created Autohotkey scripts to validate images 'Get Image Paths.ahk' and 'Move Image File.ahk'

Wonder Dog 8 years ago
parent
commit
b1d610dbdb
98 changed files with 909 additions and 364 deletions
  1. 377 0
      Get Image Paths.ahk
  2. BIN
      Image List - Missing.txt
  3. BIN
      Image List - Used.txt
  4. 87 0
      Move Image Files.ahk
  5. BIN
      glife.txt
  6. 13 7
      locations/Alphabet
  7. 1 0
      locations/BDSM
  8. 5 5
      locations/BMloc
  9. 1 1
      locations/BurgerTip
  10. 2 1
      locations/Club2
  11. 2 2
      locations/EvBoyBuh
  12. 2 1
      locations/Goteladmin
  13. 1 1
      locations/Gshveyfab
  14. 2 1
      locations/KatjaHomeTalk
  15. 1 1
      locations/LCwork
  16. 2 1
      locations/Mall
  17. 2 1
      locations/Prostitute
  18. 4 2
      locations/RimmaSexQW
  19. 1 0
      locations/TimofeiMetro
  20. 2 1
      locations/WorkHosp
  21. 2 1
      locations/_clothing_image
  22. 2 1
      locations/_clothing_name
  23. 2 1
      locations/_face_image
  24. 1 1
      locations/agentned
  25. 5 4
      locations/albinaEv
  26. 2 2
      locations/albinahome
  27. 2 1
      locations/artemEv
  28. 3 3
      locations/bed
  29. 2 1
      locations/bedrPar
  30. 2 1
      locations/bedrPar2
  31. 1 1
      locations/billiard
  32. 1 1
      locations/blackjack
  33. 13 13
      locations/bobka
  34. 1 1
      locations/bouling
  35. 3 3
      locations/brosh
  36. 1 1
      locations/brother
  37. 0 0
      locations/budgetclothes
  38. 3 2
      locations/clothing
  39. 1 1
      locations/dinSex
  40. 1 1
      locations/enemy
  41. 4 4
      locations/etoexhib
  42. 1 1
      locations/family
  43. 1 1
      locations/fbDormD
  44. 7 7
      locations/fitgirl
  45. 1 1
      locations/furi
  46. 1 1
      locations/gaptek
  47. 2 2
      locations/generation
  48. 2 2
      locations/gevent
  49. 5 5
      locations/gkafe
  50. 1 1
      locations/gopnik_house
  51. 1 1
      locations/gor_exh
  52. 1 1
      locations/gor_mirror
  53. 3 3
      locations/gschool
  54. 1 1
      locations/gschool2
  55. 2 2
      locations/gskver
  56. 1 1
      locations/hairsalon
  57. 2 1
      locations/kafe
  58. 3 3
      locations/kafedinamic
  59. 1 1
      locations/katjaEv
  60. 2 1
      locations/katspalnya
  61. 2 1
      locations/kid
  62. 1 1
      locations/kikbox
  63. 5 4
      locations/klofdomhouse
  64. 5 3
      locations/klofdomhouse1
  65. 2 2
      locations/korrPar
  66. 2 1
      locations/kuhrPar
  67. 1 1
      locations/mother
  68. 12 6
      locations/mqroom
  69. 1 1
      locations/narkopriton
  70. 4 4
      locations/nastja
  71. 1 1
      locations/npc
  72. 125 121
      locations/onobjsel
  73. 1 1
      locations/park
  74. 10 5
      locations/party
  75. 1 1
      locations/placer_gop_orgy
  76. 1 1
      locations/placer_gskver
  77. 1 1
      locations/placer_sex
  78. 1 1
      locations/podval_rape
  79. 9 4
      locations/poli
  80. 4 2
      locations/pornstudio
  81. 1 1
      locations/portmirror
  82. 9 9
      locations/ratinglist
  83. 5 5
      locations/salon
  84. 17 4
      locations/seeporn
  85. 8 7
      locations/sexshop
  86. 20 20
      locations/sister
  87. 18 18
      locations/sisterQW
  88. 6 6
      locations/sistersleep
  89. 5 4
      locations/sitrPar
  90. 1 0
      locations/sny
  91. 9 8
      locations/stat
  92. 0 1
      locations/subkid
  93. 5 2
      locations/svidboy
  94. 1 1
      locations/torgcentr
  95. 8 4
      locations/univer
  96. 2 1
      locations/vanrPar
  97. 2 2
      locations/vokzalGin
  98. 8 4
      locations/young_shop

+ 377 - 0
Get Image Paths.ahk

@@ -0,0 +1,377 @@
+/*
+ *		-- Get image paths from glife.txt  --
+ *
+ *		Requires images subfolder to exist in current directory
+ *		
+ *		OutAllFile 	- List of All unprocessed file names from glife.txt
+ *		OutUsedFile - List of Found file names from glife.txt and Auto List
+ *		OutMissFile	- List of Missing file names from glife.txt that do not exist
+ *		OutAutoFile	- List of file paths from glife.txt that were added to Output file
+ *		OutManFile	- List of file paths from glife.txt that will have to be added manualy Output file
+ *          
+ *
+ *      WD: Jul 2015
+ *
+ *
+ */
+  
+  
+
+#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
+; #Warn  ; Enable warnings to assist with detecting common errors.
+SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
+SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
+
+
+SourceFile 		= glife.txt
+OutAllFile		= Image List - All.txt
+OutUsedFile		= Image List - Used.txt
+OutMissFile		= Image List - Missing.txt
+OutAutoFile		= Image Paths - Auto List.txt
+OutManFile		= Image Paths - Manual List.txt
+SearchRegEx		= i)<img\s+src\s*=\s*"(.*?)"
+CommentRegEx 	= ^\s*!
+
+
+FileEncoding, UTF-16
+
+;-- backup files  and delete --
+IfNotExist %SourceFile%
+{
+	MsgBox, 16, Get Image Paths, Unable to locate "%SourceFile%" in "%A_WorkingDir%", 10
+	Exit
+}
+
+ifExist %OutAllFile%					;; Backup File		
+{
+	FileMove, %OutAllFile%, %OutAllFile%.bak, 1	
+	FileDelete, %OutAllFile%
+}
+
+ifExist %OutUsedFile%				;; Backup File		
+{
+	FileMove, %OutUsedFile%, %OutUsedFile%.bak, 1	
+	FileDelete, %OutUsedFile%
+}
+
+ifExist %OutMissFile%				;; Backup File		
+{
+	FileMove, %OutMissFile%, %OutMissFile%.bak, 1	
+	FileDelete, %OutMissFile%
+}
+
+ifExist %OutAutoFile%				;; Backup File 
+{
+	FileMove, %OutAutoFile%, %OutAutoFile%.bak, 1
+	FileDelete, %OutAutoFile%
+}
+
+ifExist %OutManFile%				;; Backup File 
+{
+	FileMove, %OutManFile%, %OutManFile%.bak, 1
+	FileDelete, %OutManFile%
+}
+
+
+; -- load data from file --
+FileRead, Source, %SourceFile%
+
+; Optimize by vars has plenty of space to work with.
+VarSetCapacity(OutAll, 4194304)				;; 4mb
+VarSetCapacity(OutUsed, 4194304)			;; 4mb
+VarSetCapacity(OutMiss, 4194304)			;; 4mb
+VarSetCapacity(OutMiss, 1048576)			;; 1mb
+VarSetCapacity(OutMiss, 1048576)			;; 1mb
+
+
+; -- Parse data one line at a time --
+Loop, Parse, Source, `n, `r  			; Specifying `n prior to `r allows both Windows and Unix files to be parsed.
+{
+	
+	; -- Skip if Comment --
+	FoundCmntPos := RegExMatch(A_LoopField, CommentRegEx)				;; Ignore Line Comment
+	if (ErrorLevel)
+	{
+		MsgBox, 48, Get Image Paths, RegExMatch runtime error: %ErrorLevel%`n`nFound searching string: %A_LoopField%`n`nusing search: %CommentRegEx%
+		break
+	}
+	if (FoundCmntPos)													;; Skip if comment found
+	{
+		Continue
+	}
+
+	
+	; -- Find Image File Path --
+	FoundPos := RegExMatch(A_LoopField, SearchRegEx, Match)					;; Search for image path
+	if (ErrorLevel)
+	{
+		MsgBox, 48, Get Image Paths, RegExMatch runtime error: %ErrorLevel%`n`nFound searching string: %A_LoopField%`n`nusing search: %SearchRegEx%
+		break
+	}
+	
+	if (FoundPos)															;; Found File
+	{	
+		Match1 := StrReplace(Match1, "/", "\")								;; Use correct Win path seperator
+		OutAll .= Match1 . "`n"
+		; -- Image Path Contains Code --
+		if inStr(Match1, "<<")												;; Manual file paths to be checked
+		{
+			
+			if inStr(Match1, "FUNC('$face_image'")							;; Hairstyle images
+			{
+				if GetImageFiles("images\body\hairstyles", "hcol*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\body\hairstyles\*\hcol*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\body\hairstyles\*\hcol*.jpg'`n"
+				}
+				
+			}
+			else if inStr(Match1, "FUNC('$clothing_image'")					;; Clothing images
+			{
+				if GetImageFiles("images\clothes", "vatnik.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\vatnik.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\vatnik.jpg'`n"
+				}
+				; GetImageFiles("images\clothes\newclo", "131.jpg", OutUsed)	;; Dupe See below	
+				
+				if GetImageFiles("images\clothes", "jeans*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\jeans*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\jeans*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "yoga*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\yoga*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\yoga*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "sarafan*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\sarafan*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\sarafan*.jpg'`n"
+				}
+
+
+				if GetImageFiles("images\clothes", "short*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\short*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\short*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "skirt*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\skirt*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\skirt*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "dress*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\dress*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\dress*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "profi*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\profi*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\profi*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "pants*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\pants*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\pants*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "latex*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\latex*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\latex*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "hooker*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\hooker*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\hooker*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes", "k*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\k*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\k*.jpg'`n"
+				}
+
+				if GetImageFiles("images\clothes\newclo", "*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\clothes\newclo\*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\clothes\newclo\*.jpg'`n"
+				}
+
+				if GetImageFiles("images\img\dress", "ero*.jpg", OutUsed)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\img\dress\ero*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\img\dress\ero*.jpg'`n"
+				}
+			}
+			
+			else if inStr(Match1, "FUNC")										;; Unknown Function - Manual
+			{
+				OutMan	.= Match1 . "`n"
+			}
+			
+			else if inStr(Match1, "<<$loc>>")									;; Use Location String - Manual
+			{
+				OutMan	.= Match1 . "`n"
+			}
+			
+			else if inStr(Match1, "images\qwest\card")								;; Playingcard Images
+			{
+				if GetImageFiles("images\qwest\card", "*.jpg", Output)
+				{
+					OutAuto	.= Match1 . "`t`t`t- Found 'images\qwest\card\*\*.jpg'`n"
+				}
+				else
+				{
+					OutMan	.= Match1 . "`t`t`t- no files found in 'images\qwest\card\*\*.jpg'`n"
+				}				
+			}
+			
+			else if not GetImagefromPath(Match1, OutUsed)						;; Try to find images
+			{
+				OutMan	.= Match1 . "`n"
+			}
+		}
+		
+		; -- Image path is just a file name --
+		else
+		{
+			IfExist %Match1%
+			{
+				OutUsed	.= Match1 . "`n"										;; Normal file found
+			}
+			else
+			{
+				OutMiss	.= Match1 . "`n"										;; Normal file Not found
+			}
+		}
+	}	
+}
+
+
+; -- Set path to use / seperators --
+OutAll	:= StrReplace(OutAll, "\", "/")
+OutUsed	:= StrReplace(OutUsed, "\", "/")
+OutMiss	:= StrReplace(OutMiss, "\", "/")
+OutAuto	:= StrReplace(OutAuto, "\", "/")
+OutMan	:= StrReplace(OutMan, "\", "/")
+
+
+; -- sort filenames and remove dupes --
+Sort, OutAll, U
+Sort, OutUsed, U
+Sort, OutMiss, U
+Sort, OutAuto, U
+Sort, OutMan, U
+
+
+;-- save files --
+FileAppend, %OutAll%, %OutAllFile%
+FileAppend, %OutUsed%, %OutUsedFile%
+FileAppend, %OutMiss%, %OutMissFile%
+FileAppend, %OutAuto%, %OutAutoFile%
+FileAppend, %OutMan%, %OutManFile%
+
+Exit
+
+; ########## Functions ##########
+GetImageFiles(FilePath, FileName, ByRef Output)
+{	;; Get image paths in filepath using filepattern FileName
+	
+	IfNotExist, %FilePath%
+	{
+		MsgBox, 48, Get Image Paths, Error in GetImageFiles()`n`nUnable to locate "%FilePath%" folder, Filename '%FileName%'.`n`nCurrent working dir is "%A_WorkingDir%"
+		return false		
+	}
+	
+	SaveWorkDir := A_WorkingDir
+	Setworkingdir, %FilePath%
+	
+	found := false
+	Loop, Files, %FileName%, FR						;; Find files in FilePath  using Filepattern FileName
+	{
+		fp := FilePath  . "\" . A_LoopFileFullPath
+		Output .= fp . "`n"
+		found := true
+	}
+	
+	Setworkingdir, %SaveWorkDir%
+	return found
+
+}
+
+GetImagefromPath(FilePath, ByRef Output)
+{	;; Try to get Images from path 
+
+	FindRegEx 	:= "<<.*?>>"
+	ReplaceStr	:=	"*"
+
+	fp			:= StrReplace(FilePath, "/", "\") 
+	fp 			:= RegExReplace(fp, FindRegEx, ReplaceStr)
+	
+	splitpath, fp, FileName, Dir, Ext
+
+	;; -- Manual if wildcard in path --
+	if inStr(Dir, "*")
+	{
+		; MsgBox, 64, Get Image Path, GetImageFromPath() error: Path contains wildcard`n `nPath : '%fp%'`nDir :  '%Dir%'
+		return false
+	}
+	
+	return GetImageFiles(Dir, FileName, Output)
+}

BIN
Image List - Missing.txt


BIN
Image List - Used.txt


+ 87 - 0
Move Image Files.ahk

@@ -0,0 +1,87 @@
+/*
+ *		-- Move Image Files using 'Image Files List.txt'--
+ *
+ *		Requires images subfolder to exist in current directory
+ *		
+ *		ImageFileList		- List of file names from glife.txt and Auto List
+ *		UsedImageFolder		- Folder to move images in ImageFileList
+ *		UnUsedImageFolder	- Folder to move images not in ImageFileList
+ *		SourceFolder		- Folder with images
+ *          
+ *
+ *      WD: Jul 2015
+ *
+ *
+ */
+  
+  
+
+#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
+; #Warn  ; Enable warnings to assist with detecting common errors.
+SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
+SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
+
+ImageFileList		= Image List - Used.txt
+UsedImageFolder		= Images, Used
+UnUsedImageFolder	= Images, Un-Used
+SourceFolder		= images
+
+FileEncoding, UTF-16
+
+;-- backup files  and delete --
+IfNotExist %ImageFileList%
+{
+	MsgBox, 16, Move Image Files, Unable to locate "%ImageFileList%" in "%A_WorkingDir%", 10
+	Exit
+}
+
+IfNotExist %UsedImageFolder%
+{
+	FileCreateDir, %UsedImageFolder%
+}
+
+IfNotExist %UnUsedImageFolder%
+{
+	FileCreateDir, %UnUsedImageFolder%
+}
+
+; -- load data from file --
+FileRead, Images, %ImageFileList%
+Images := StrReplace(Images, "/", "\")								;; Use correct Win path seperator
+
+; -- Parse data one line at a time --
+Loop, Parse, Images, `n, `r  			; Specifying `n prior to `r allows both Windows and Unix files to be parsed.
+{
+	IfExist, %A_LoopField%
+	{
+		SplitPath, A_LoopField, FileName, FileDir
+		IfNotExist  %UsedImageFolder%\%FileDir%
+		{
+			FileCreateDir, %UsedImageFolder%\%FileDir%
+			if (ErrorLevel)
+			{
+				MsgBox, 48, Move Image File, FileCreateDir Error:`n`nFailed to create '%UsedImageFolder%\%FileDir%'`n`nErrorLevel: '%ErrorLevel%'`nLastError: '%A_LastError%'	
+			}
+		}
+		
+		
+		FileMove, %A_LoopField%, %UsedImageFolder%\%FileDir%
+		if (ErrorLevel)
+		{
+			MsgBox, 48, Move Image File, FileMove Error:`n`nFailed to move '%A_LoopField%' to '%UsedImageFolder%\%FileDir%'`n`nErrorLevel: '%ErrorLevel%'`nLastError: '%A_LastError%'	
+		}
+	}
+	else
+	{
+		MsgBox, 64, Move Image Files, Unable to locate file : '%A_LoopField%', 5
+	}
+}
+
+IfExist %SourceFolder%
+{
+	FileMoveDir, %SourceFolder%, %UnUsedImageFolder%\%SourceFolder%
+		if (ErrorLevel)
+		{
+			MsgBox, 48, Move Image File, FileMoveDir Error:`n`nFailed to move '%SourceFolder%' to '%UnUsedImageFolder%\%SourceFolder%'`n`nErrorLevel: '%ErrorLevel%'`nLastError: '%A_LastError%'	
+		}
+}

BIN
glife.txt


+ 13 - 7
locations/Alphabet

@@ -4,14 +4,20 @@ act 'Go to the corridor':gt 'floor'
 clr
 gs 'stat'
 '<center><b>Dorm room</b></center>'
-'<center><img src="images/etogame/obskom.jpg"></center>'
-'Narrow room with a single window, wooden floor, three <a href="exec:gt ''Beds'', ''choice''">beds</a>, small <a href="exec:gt ''A narrow room with a single window, a wooden floor, three <a href="exec:gt ''Beds'', ''choice''">beds</a>, a small <a href="exec:gt ''table''">table</a> and a few chairs. At the entrance stands an old <a href="exec:gt ''cupboard''">wardrobe</a> attached to which is an old <a href="exec:gt ''zerkaloO''">mirror</a>.'
+! Fix missing Image ".../etogame/obskom.jpg" use place holder
+'<center><img src="images/etogame/dorm.jpg"></center>'
+'Narrow room with a single window, wooden floor, three <a href="exec:gt ''Beds'', ''choice''">beds</a>, a small <a href="exec:gt ''table''">table</a> and a few chairs. At the entrance stands an old <a href="exec:gt ''cupboard''">wardrobe</a> attached to which is an old <a href="exec:gt ''zerkaloO''">mirror</a>.'
+
+
 
 if palto = 1:'Near the entrance hangs a simple, long-sleeved velvet jacket'
-if palto = 2:'Near the entrance hangs a woman's winter coat'
-if palto = 3:'Near the entrance hangs an old-fashioned lady's coat'
+if palto = 2:'Near the entrance hangs a woman''s winter coat'
+if palto = 3:'Near the entrance hangs an old-fashioned lady''s coat'
 if daystart = 0:daystart = 1
-if house = 1 and student = 0:house = 0 & 'You are being evicted from the dormitory. You found yourself looking through the computer ads for a place to stay,knowing that you will remain without a roof over your head as soon as you pass the dormitory's exit.'
+if house = 1 and student = 0:
+	house = 0
+	'You are being evicted from the dormitory. You found yourself looking through the computer ads for a place to stay,knowing that you will remain without a roof over your head as soon as you pass the dormitory''s exit.'
+end
 
 act 'Roommate Vicky':
 	cla
@@ -31,7 +37,7 @@ act 'Roommate Vicky':
 
 			talkrand = rand(0, 18)
 
-			if talkrand = 0:'You started talking with Vicky, and she tells you about the boys she's met, about parties she's been in, and about the latest in fashion and cosmetics.'
+			if talkrand = 0:'You started talking with Vicky, and she tells you about the boys she''s met, about parties she''s been in, and about the latest in fashion and cosmetics.'
 			if talkrand = 1:'Vicky told you about the time she was in a cafe and a guy invited her to dance after paying for her bill.'
 			if talkrand = 2:'Vicky told you that she used to work as a waitress at a strip bar, which is quite a lucrative job for students, although customers are often perverts.'
 			if talkrand = 3:'Vicky told you that several groups of beautiful girls who were running at the college sports competitions, went on a European level sports competition and earned big money, but of course she has heard rumors of their laziness so they must have fucked to win.'
@@ -41,7 +47,7 @@ act 'Roommate Vicky':
 			if talkrand = 7:'Vicky told you about that one winter she went outside without a coat and got a bad cold.'
 			if talkrand = 8:'Vicky tells you about a girlfriend who did not know how to lose weight, then started going to the sauna and lost weight. True, it was costly but worth it!'
 			if talkrand = 9:'Vicky told you that she used to be very fond of diets, but they deteriorated skin and caused acme, and generally started to cause more harm than good. Now Vicky eats three full meals a day and has only become more beautiful for it.'
-			if talkrand = 10:'Vicky said that she used to go to dances and strip live on the Internet, even managed to get into a nightclub's live sex show, but she quickly got tired of it.'
+			if talkrand = 10:'Vicky said that she used to go to dances and strip live on the Internet, even managed to get into a nightclub''s live sex show, but she quickly got tired of it.'
 			if talkrand = 11:'Vicky said that one time in the park, she accidentally went to a gloryhole and was offered money for sex, but she did not want to ruin her reputation. Besides, a large number of partners from early will only age you faster!'
 			if talkrand = 12:'Vicky told you how she was filmed naked in studio once, not a dirty job exactly, but her reputation suffered anyway when the movie went public.'
 			if talkrand = 13:'Vicky told you of a friend, one that everyone perceived as a slut, who arranged several parties in the cafe at her own expense, in an attempt to improve her image.'

+ 1 - 0
locations/BDSM

@@ -114,6 +114,7 @@ act 'Begin participating in the shooting':
 									money = money + vnesh * 500
 									actr = 0
 									gs 'stat'
+									! Fix missing Image ".../studia/dvd-disс.jpg" Cyrillic?
 									'<center><img src="images/studia/dvd-disс.jpg"></center>'
 									'You spent 9 hours on filming'
 									'and received <<vnesh * 500>> rubles in cash'

+ 5 - 5
locations/BMloc

@@ -12,7 +12,7 @@ act 'Dance':
 			if bmBJ[Tboynum] > 0:$text2 = 'You took me in her mouth'
 			if bmSEX[Tboynum] > 0:$text2 = 'we have to sleep with you'
 			if bmANAL[Tboynum] > 0:$text2 = 'I took you in the ass'
-			if bmGANG[Tboynum] > 0:$text2 = 'I`ll fuck with a friend'
+			if bmGANG[Tboynum] > 0:$text2 = 'I''ll fuck with a friend'
 
 			'<<$niknameboy>> tells you "Remember me, <<$text2>>. I''m <<$bmNane[Tboynum]>>"'
 		else
@@ -36,15 +36,15 @@ act 'Dance':
 		cls
 		boynumBlock = 1
 
-		if bmTip[Tboynum] = 0:gt'EvBoyBuh'
-		if bmTip[Tboynum] = 1:gt'EvgopBuh'
-		if bmTip[Tboynum] = 2:gt'EvOtelMan'
+		if bmTip[Tboynum] = 0:gt 'EvBoyBuh'
+		if bmTip[Tboynum] = 1:gt 'EvgopBuh'
+		if bmTip[Tboynum] = 2:gt 'EvOtelMan'
 	end
 
 	act 'Refuse':
 		cls
 		willpower += rand(0, 1)
-		gt'gdkin'
+		gt 'gdkin'
 	end
 end
 

+ 1 - 1
locations/BurgerTip

@@ -417,7 +417,7 @@ $burger_work_din = {
 		end
 
 		if gossipBU >= 10:
-			'Lady you looked contemptuously and angrily opened the door to Anatoly Borisovich, you heard her shrill voice, "Tolia, I know all about your adventures with his sekretutkoy, and if you do not immediately vygonish this slut from work, then I myself leave you, you understand? " Anatoly Borisovich zabubnil "Yes, dear, you know, I just love you." He was red in the face out of the office and you threw the paper on the table, ''Write on his own! "'
+			'Lady you looked contemptuously and angrily opened the door to Anatoly Borisovich, you heard her shrill voice, "Tolia, I know all about your adventures with his sekretutkoy, and if you do not immediately vygonish this slut from work, then I myself leave you, you understand? " Anatoly Borisovich zabubnil "Yes, dear, you know, I just love you." He was red in the face out of the office and you threw the paper on the table, "Write on his own!"'
 
 			act 'Write a statement of resignation':
 				cls

+ 2 - 1
locations/Club2

@@ -172,4 +172,5 @@ dynamic "
 end
 ",$ARGS[0],$ARGS[1]
 
---- Menu.{Treatment} ---------------------------------
+--- Menu.{Treatment} ---------------------------------
+

+ 2 - 2
locations/EvBoyBuh

@@ -87,7 +87,7 @@ $d_gorodok_boy_hj={
 			cls
 			minut += 5
 			sub += 1
-			gs'tboyopr'
+			gs 'tboyopr'
 			bmHJ[Tboynum] += 1
 			gs 'stat'
 			evhjrand = rand(0, 1)
@@ -151,7 +151,7 @@ if GorSlut = 0:
 
 							if boynumBlock = 0:boy += 1
 
-							gs'tboyopr'
+							gs 'tboyopr'
 							bmSEX[Tboynum] += 1
 							$boy = $bname3
 

+ 2 - 1
locations/Goteladmin

@@ -4,7 +4,8 @@ $loc = $CURLOC
 clr
 gs 'stat'
 '<center><h4>Receptionist</h4></center>'
-'<center><img src="imagespic/Goteladmin.jpg"></center>'
+! Fix missing Image "...pic/Goteladmin.jpg"
+'<center><img src="images/pic/Goteladmin.jpg"></center>'
 'At the table sat a man of thirty with a small, in an expensive suit and tie.'
 
 !!if GotelWork = 0:end

+ 1 - 1
locations/Gshveyfab

@@ -7,6 +7,6 @@ gs 'stat'
 '<center><img src="images/pic/Gshveyfab.jpg"></center>'
 'near <a href="exec:minut += 15 & gt ''gorodok''">the front door</a> is communicating factory which sits protection.'
 
-act 'Get_Away':gt'gorodok'
+act 'Get_Away':gt 'gorodok'
 
 --- Gshveyfab ---------------------------------

+ 2 - 1
locations/KatjaHomeTalk

@@ -27,7 +27,8 @@ if sweat > 0:
 				if frost > 0:frost = 0
 
 				gs 'stat'
-				'<center><img src="images/dush.jpg"></center>'
+				! Fix missing Image ".../dush.jpg"
+				'<center><img src="images/pics/dush.jpg"></center>'
 				'You kicked out of the shower and Katja closed the door. You got into the shower and began to lather your body washcloth. After washed off the soap and washed her hair with shampoo. Rinse off the shampoo you become completely clean.'
 
 				act 'Get out of the shower':gt $curloc

+ 1 - 1
locations/LCwork

@@ -125,7 +125,7 @@ if $ARGS[0] = 'start4':
 
 	act '...':
 		cls
-		gs'stat'
+		gs 'stat'
 		'<center><img src="images/LakeCafe/LakeWork/4b.jpg"></center>'
 		'You went out of their apartment and came to the house. For this you got <<randLCpay>> rubles.'
 

+ 2 - 1
locations/Mall

@@ -4,7 +4,8 @@ horny += 1
 clr
 gs 'stat'
 '<center><b>Market</b></center>'
-'<center><img src="images/etogame/rinok2.jpg"></center>'
+! Fix missing Image ".../etogame/rinok2.jpg"
+'<center><img src="images/etogame/rinok.jpg"></center>'
 'Bustling market, you can buy in the market place to buy clothes or for 30,000 rubles and receive income from the outlet, but for the purchase and delivery of course need to have a car. You can trade yourself or hire a saleswoman.'
 
 if car = 0:

+ 2 - 1
locations/Prostitute

@@ -371,7 +371,8 @@ if $ARGS[0] = 'work2':
 							'You obediently lay naked in the back seat until your dick hole logged.'
 							gs 'orgazm', 'start'
 						else
-							'<center><img src="images/img/img/prost/sexcar2.jpg"></center>'
+							! Fix missing Image ".../img/img/prost/sexcar2.jpg"
+							'<center><img src="images/img/prost/sexcar2.jpg"></center>'
 							'Standing on all fours, you felt like you were planting confident movement on the penis.'
 							gs 'orgazm', 'start'
 						end

+ 4 - 2
locations/RimmaSexQW

@@ -40,7 +40,8 @@ $rimmasexdi = {
 			cls
 			minut += 30
 			gs 'stat'
-			'<center><img src="images/zoo/rimma23.jpg"></center>'
+			! Fix missing Image ".../zoo/rimma23.jpg" use place holder
+			'<center><img src="images/zoo/rimma.jpg"></center>'
 			''
 
 			act 'Hold it':gt 'korr'
@@ -56,7 +57,8 @@ $rimmasexdi = {
 			cls
 			minut += 30
 			gs 'stat'
-			'<center><img src="images/zoo/rimma22.jpg"></center>'
+			! Fix missing Image ".../zoo/rimma22.jpg" use place holder
+			'<center><img src="images/zoo/rimma.jpg"></center>'
 			''
 
 			act 'Hold it':gt 'korr'

+ 1 - 0
locations/TimofeiMetro

@@ -2,6 +2,7 @@
 minut += 1
 sosedMetroDay = day
 gs 'stat'
+! Missing Image
 !!'<center><img src="images/qwest/sosed.jpg"></center>'
 'Timothy saw you and said hello, "Hello <<$name>>."'
 

+ 2 - 1
locations/WorkHosp

@@ -47,7 +47,8 @@ if $ARGS[0] = 'start':
 				horny = 0
 				orgasm += 1
 				picrand = 11
-				'<center><img src="images/img/mastr/mastr<<picrand>>.jpg"></center>'
+				! Fix Missing Image ".../img/mastr/mastr<<picrand>>.jpg"
+				'<center><img src="images/inBed/mastr11.jpg"></center>'
 				'You masturbated.'
 				'Gradually a pleasant warmth and pulsation increases in the lower abdomen, then descend to the feeling you and your entire body covered hot waves of orgasm'
 			end

+ 2 - 1
locations/_clothing_image

@@ -20,4 +20,5 @@ if $ARGS[0] = 'newclo':$RESULT = 'images/clothes/newclo/<<ARGS[1]>>.jpg'
 if $ARGS[0] = 'ero':$RESULT = 'images/img/dress/ero<<ARGS[1]>>.jpg'
 end
 
---- $clothing_image -------
+--- $clothing_image -------
+

+ 2 - 1
locations/_clothing_name

@@ -473,4 +473,5 @@ end
 
 if $RESULT = '':$RESULT = 'Missing clothing name for <<$ARGS[0]>> <<ARGS[1]>>'
 
---- $clothing_name ----------
+--- $clothing_name ----------
+

+ 2 - 1
locations/_face_image

@@ -68,4 +68,5 @@ $RESULT += '/'
 !! color
 $RESULT += 'hcol<<hcol>>.jpg'
 
---- face_image --------
+--- face_image --------
+

+ 1 - 1
locations/agentned

@@ -1,7 +1,7 @@
 # agentned
 gs 'stat'
 '<center><b><font color="maroon">Real Estate Agency</font></b></center>'
-!!'<center><img src="images/pic/bank.jpg" ></center>'
+!!'<center><img src="images/etogame/bank.jpg" ></center>'
 
 act 'Leave':gt 'down'
 

+ 5 - 4
locations/albinaEv

@@ -6,7 +6,8 @@ $din_albina_get_over_car = {
 		cls
 		albinaCar = 1
 		gs 'stat'
-		'<center><img src="images/qwest/alter/grab.jpg"></center>'
+		! Fix missing Image ".../qwest/alter/grab.jpg" use place holder
+		'<center><img src="images/qwest/alter/Ev/grab.jpg"></center>'
 	end
 }
 
@@ -50,14 +51,14 @@ if albinaCar = 0:
 							'<center><img src="images/qwest/alter/BMW.jpg"></center>'
 
 							if agil >= 100:
-								'You deftly jumped behind the wheel of a car. Fortress was at the hood, as long guy rushed to the driver`s door, What would you get.'
+								'You deftly jumped behind the wheel of a car. Fortress was at the hood, as long guy rushed to the driver''s door, What would you get.'
 
 								act 'Switch into reverse gear':
 									cls
 									minut += 1
 									gs 'stat'
 									'<center><img src="images/qwest/alter/BMW.jpg"></center>'
-									'You dramatically stopped and handed back almost concrete fence. Before your hood you see as the burly running to you. A driver`s door to the long runs.'
+									'You dramatically stopped and handed back almost concrete fence. Before your hood you see as the burly running to you. A driver''s door to the long runs.'
 								end
 
 								act 'Put the pedal to the metal':
@@ -68,7 +69,7 @@ if albinaCar = 0:
 									'You abruptly thrust gear and pull the clutch abruptly moved forward. Fortress with a bang flopped down on the hood and fell off the machine. Ahead you see the bushes, the gateway to which you moved Albina are to the right of you. From left to you is factory building brick wall.'
 								end
 							elseif agil < 100:
-								'You jumped behind the wheel of a car, but tangled legs between the seat and the gear lever. The driver`s door stuck his hands long man.'
+								'You jumped behind the wheel of a car, but tangled legs between the seat and the gear lever. The driver''s door stuck his hands long man.'
 
 								dynamic $din_albina_get_over_car
 							end

+ 2 - 2
locations/albinahome

@@ -33,7 +33,7 @@ if hour < 20:
 					alko += 2
 					gs 'stat'
 					'<center><img src="images/qwest/alter/albina/drunk.jpg"></center>'
-					'You shake your head in amazement "You still speak of his father?" Albina suddenly sobered and evil hissed "How can I apply to it? Okay, you want to get into a tangle of snake, please. My dad fucked me from an early age, I do not even remember when it all began. I lived my whole life his litter. My mother, when she learned, My bastard father went to Durkee. Yes, he even had the influence it. The truth is now the scum losing ground one after the other. All his life he was a senior cop, but now retired, and as it turned out, This kid can just money complain. All his business went bankrupt, whatever the context, it do not connect. Political career is his last chance to jump into the passing train." She poured wine into glasses, and it was noticeable how her hands were shaking. "You see this rich house? Guard at the entrance, All this luxury? It`s all a chimera. My father is not something that on the verge of bankruptcy, He is already far beyond. None of my business, we would have gone begging."'
+					'You shake your head in amazement "You still speak of his father?" Albina suddenly sobered and evil hissed "How can I apply to it? Okay, you want to get into a tangle of snake, please. My dad fucked me from an early age, I do not even remember when it all began. I lived my whole life his litter. My mother, when she learned, My bastard father went to Durkee. Yes, he even had the influence it. The truth is now the scum losing ground one after the other. All his life he was a senior cop, but now retired, and as it turned out, This kid can just money complain. All his business went bankrupt, whatever the context, it do not connect. Political career is his last chance to jump into the passing train." She poured wine into glasses, and it was noticeable how her hands were shaking. "You see this rich house? Guard at the entrance, All this luxury? It''s all a chimera. My father is not something that on the verge of bankruptcy, He is already far beyond. None of my business, we would have gone begging."'
 
 					act 'Ask her how she knows there is no business going on':
 						cls
@@ -49,7 +49,7 @@ if hour < 20:
 							alko += 2
 							gs 'stat'
 							'<center><img src="images/qwest/alter/albina/drunk.jpg"></center>'
-							'You murmured "I have it all in my head does not fit" Albina smirked "What is there to be laid. Daddy pedophile fucked me from childhood. His influence that would be enough to cover their tracks." She paused and added, "The most worthless, he made me a monster. I just have not had a chance to grow up normal. I understand all this head, but nothing I can not do already. I like to fuck, and with whom pohrenu. I`m down and out, and pervert quite capable of being a normal mother and wife." We always cold and ironic Albina had tears in her eyes and she began to pour wine into glasses.'
+							'You murmured "I have it all in my head does not fit" Albina smirked "What is there to be laid. Daddy pedophile fucked me from childhood. His influence that would be enough to cover their tracks." She paused and added, "The most worthless, he made me a monster. I just have not had a chance to grow up normal. I understand all this head, but nothing I can not do already. I like to fuck, and with whom pohrenu. I''m down and out, and pervert quite capable of being a normal mother and wife." We always cold and ironic Albina had tears in her eyes and she began to pour wine into glasses.'
 
 							act 'Drink':
 								cls

+ 2 - 1
locations/artemEv

@@ -15,7 +15,8 @@ $din_artem_bj = {
 		dick = 16
 		artempower -= 1
 		gs 'stat'
-		'<center><img src="images/qwest/alter/Ev/artemBJ.jpg"></center>'
+		! Fix Missing image artemBJ.jpg
+		'<center><img src="images/qwest/alter/Ev/artomBJ.jpg"></center>'
 		dynamic $dinrandbj
 		dynamic $dinrandswallow
 

+ 3 - 3
locations/bed

@@ -201,17 +201,17 @@ if $ARGS[0] = 'fin':
 		end
 
 		housrA = 0
-		gt'bedr'
+		gt 'bedr'
 	end
 
 	if houseob = 1:
 		houseob = 0
-		gt'obroom','start'
+		gt 'obroom','start'
 	end
 
 	if tanhouse1 = 1:
 		tanhouse1 = 0
-		gt'spalnya'
+		gt 'spalnya'
 	end
 	'!
 end

+ 2 - 1
locations/bedrPar

@@ -10,7 +10,8 @@ fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)
 lcolor = rgb(106, 90, 205)
 '<center><b><font color="maroon">Your bedroom</font></b></center>'
-'<center><img src="images/qwest/alter/<<$loc>>.jpg"></center>'
+! Fix Missing Image ".../qwest/alter/<<$loc>>.jpg"
+'<center><img src="images/qwest/alter/bedrPar.jpg"></center>'
 'Small room in which hardly squeezed <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">cabinet</a>, your <a href="exec:gt ''bedPar''">bed</a>, <a href="exec:gt ''stolPar''">desk</a> bed and sisters.'
 gs 'family'
 

+ 2 - 1
locations/bedrPar2

@@ -12,7 +12,8 @@ fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)
 lcolor = rgb(106, 90, 205)
 '<center><b><font color="maroon">Master bedroom</font></b></center>'
-'<center><img src="images/qwest/alter/<<$loc>>.jpg"></center>'
+! Fix Missing Image ".../qwest/alter/<<$loc>>.jpg"
+'<center><img src="images/qwest/alter/bedrPar2.jpg"></center>'
 'The room in which the parents live. In the center stands a double bed and a large clowall.'
 gs 'family'
 

+ 1 - 1
locations/billiard

@@ -103,7 +103,7 @@ if $ARGS[0] = 'randwin':
 		money += 300
 		'You won and received 300 rubles.'
 
-		act 'Get_Away':gt'billiard'
+		act 'Get_Away':gt 'billiard'
 	elseif billwin <= 10 and billvar = 0:
 		money -= 1000
 		'You lost and paid 1,000 rubles.'

+ 1 - 1
locations/blackjack

@@ -22,7 +22,7 @@ end
 
 num += 1
 
-if num < 10:jump'markcard'
+if num < 10:jump 'markcard'
 
 sumcard = nomcard[1]+nomcard[2]
 '<center><img src="images/qwest/card/<<$papkacard[1]>>/<<$papkacard[1]>><<numcard[1]>>.jpg"><img src="images/qwest/card/<<$papkacard[2]>>/<<$papkacard[2]>><<numcard[2]>>.jpg"></center>'

+ 13 - 13
locations/bobka

@@ -36,7 +36,7 @@ if bobrand = 0:
 	bj += 1
 	swallow += 1
 	cumlip += 1
-	gs'stat'
+	gs 'stat'
 
 	dynamic $venerasiak
 	dynamic $bobka_bj
@@ -44,7 +44,7 @@ if bobrand = 0:
 elseif bobrand = 1:
 	minut += 5
 	bj += 1
-	gs'stat'
+	gs 'stat'
 
 	dynamic $venerasiak
 	dynamic $bobka_bj
@@ -67,7 +67,7 @@ elseif bobrand = 1:
 elseif bobrand = 2:
 	minut += 5
 	bj += 1
-	gs'stat'
+	gs 'stat'
 
 	dynamic $venerasiak
 	dynamic $bobka_bj
@@ -79,7 +79,7 @@ elseif bobrand = 2:
 		dick = 16
 		silavag = 1
 		cumanus += 1
-		gs'stat'
+		gs 'stat'
 		'<center><img src="images/qwest/sosed/anal.jpg"></center>'
 		dynamic $sexstart
 		dynamic $analsex
@@ -89,7 +89,7 @@ elseif bobrand = 2:
 	end
 elseif bobrand = 3:
 	minut += 10
-	gs'stat'
+	gs 'stat'
 	$tempval = 'You'
 	$tempval2 = ''
 
@@ -103,7 +103,7 @@ elseif bobrand = 3:
 elseif bobrand = 4:
 	minut += 5
 	pee += 1
-	gs'stat'
+	gs 'stat'
 	$tempval = 'You'
 	$tempval2 = ''
 
@@ -121,7 +121,7 @@ if $ARGS[0] = 'rimming2':
 	cls
 	minut += 5
 	'<center><img src="images/qwest/sosed/rimming2.jpg"></center>'
-	'You looked at him pleadingly, but do nothing, breaking unbearable and you doomed kneels. Clasping hands buttocks, you are a little bit lit them and slightly tongue hanging out timidly licked his hairy point. From the terrible smell and taste you almost puked, but willpower you discreet and began to drive sluggish tongue around his hole. - «You Th zhopolizka, sleep there? Let`s normal operating your fucking tongue» - He yelled at you, reinforcing its claim slap in the face. Tears gushed out of your eyes and you, fearfully looking up at him, become hard to handle every inch of his dirty ass, do not forget to kiss and suck periodically covered with sweat eggs. «That`s better» - Bobka and grinned suddenly with the force of your face pressed to his ass. «Now zasun his foul language there, where he belongs»'
+	'You looked at him pleadingly, but do nothing, breaking unbearable and you doomed kneels. Clasping hands buttocks, you are a little bit lit them and slightly tongue hanging out timidly licked his hairy point. From the terrible smell and taste you almost puked, but willpower you discreet and began to drive sluggish tongue around his hole. - «You Th zhopolizka, sleep there? Let''s normal operating your fucking tongue» - He yelled at you, reinforcing its claim slap in the face. Tears gushed out of your eyes and you, fearfully looking up at him, become hard to handle every inch of his dirty ass, do not forget to kiss and suck periodically covered with sweat eggs. «That''s better» - Bobka and grinned suddenly with the force of your face pressed to his ass. «Now zasun his foul language there, where he belongs»'
 
 	act 'Moo and working language.':gt 'bobka', 'rimming4'
 end
@@ -132,7 +132,7 @@ if $ARGS[0] = 'rimming3':
 	minut += 5
 
 	'<center><img src="images/qwest/sosed/rimming3.jpg"></center>'
-	'understanding, useless to argue that you knelt down and began to polish his hole hard, not forgetting about the neighborhood. You were like a cat, lick his balls. Language quickly tired of this hard work, nasty taste and smell of shit made ​​you wince, but you patiently continued to clean his unwashed hairy mezhduzhopie, not forgetting pripadat juicy lips and kissed each corner. «Ha yes you inborn zhopolizka, seen love this thing» - Bobka laughed and suddenly pressed his face into your own ass. «It`s time for you to stick your dirty language there, where it should be» - grinned Bobka.'
+	'understanding, useless to argue that you knelt down and began to polish his hole hard, not forgetting about the neighborhood. You were like a cat, lick his balls. Language quickly tired of this hard work, nasty taste and smell of shit made ​​you wince, but you patiently continued to clean his unwashed hairy mezhduzhopie, not forgetting pripadat juicy lips and kissed each corner. «Ha yes you inborn zhopolizka, seen love this thing» - Bobka laughed and suddenly pressed his face into your own ass. «It''s time for you to stick your dirty language there, where it should be» - grinned Bobka.'
 
 	act 'Moo and working language.':gt 'bobka', 'rimming4'
 end
@@ -142,7 +142,7 @@ if $ARGS[0] = 'rimming4':
 	cls
 	minut += 5
 	SUB += 1
-	gs'stat'
+	gs 'stat'
 
 	'<center><img src="images/qwest/sosed/rimming4.gif"></center>'
 	'Your face is so hard pressed to reeking of sweat and stale than the crotch Bobkov, hair with his pubes intertwined with your nose. Slightly swollen lips flattened ring of sphincter. you choke, plaintively mychite and the last effort diligently pushed her tired tongue in his anus. «I want to, that you thoroughly cleaned me out there, otherwise, then you know that for a long time DO NOT wash, hot water nebilo, and why, when there are zhopolizki» - mockingly said Bobka understanding, nadrachivat continuing his already hard standing member. By throat again drove com nausea, but the idea, you can not get drugs even worse and you, with tears in his eyes, suppressing the urge, courageously continued to move his tongue in the ass. «If only he quickly finished» - Beats you up with the idea, in those moments, when you are with smeared makeup and language in the ass, slurred mychite and pleading look at him from under the eggs.'
@@ -156,7 +156,7 @@ if $ARGS[0] = 'rimming5':
 	minut += 5
 	cumlip += 1
 	cumface = cumface + 1
-	gs'stat'
+	gs 'stat'
 	'<center><img src="images/qwest/sosed/rimming5.jpg"></center>'
 	'At_Last, unable to bear it with a muffled rattle became abundantly finish, watering your face and hair hearty sperm, you stand in a humiliating position with his eyes closed and his head down. In teeth stuck several hard black hairs. «Hey Shmarev, and who will clean?» - Bobka, poked you flaccid penis under his breath. You meekly took in his mouth and brushed his fallen body, otliza anus after the taste of semen was almost pleasant, and with hope looked at him, waiting dose. «Th such acidic? Get_used_to_it, zhopolizka, heroin whores should not be squeamish». - With these words and nasty smile Bobka you threw a syringe.'
 	dynamic $bobka_inject
@@ -167,7 +167,7 @@ if $ARGS[0] = 'peeface':
 	cls
 	minut += 5
 	'<center><img src="images/qwest/sosed/peeface.jpg"></center>'
-	'Bobka took his flaccid cock and hot stream of urine dramatically splattered on your face. You`re a little twitch. "Do not you turn away and turn a blind eye, I look into the eyes of a bitch."- he shouted at you'
+	'Bobka took his flaccid cock and hot stream of urine dramatically splattered on your face. You''re a little twitch. "Do not you turn away and turn a blind eye, I look into the eyes of a bitch."- he shouted at you'
 
 	act 'Look in your eyes':gt 'bobka', 'peeface2'
 end
@@ -209,7 +209,7 @@ if $ARGS[0] = 'peeswallow2':
 	cls
 	minut += 5
 	'<center><img src="images/qwest/sosed/peeswallow2.gif"></center>'
-	'Bobka wait until you coughed again and open your mouth, and then continued to urinate. Your mouth quickly filled with warm adverse moisture, you take a drink, suppressed a gag reflex, again and then, but the flow has not dried up. From the corner of his mouth and ran down his chin excess, «Slurp every drop, and you will not get money, creature» severely scolded you dope dealer. realizing, do not have time to swallow all, You open your mouth wider, making it in the manner of the urinal. In the mouth you immediately zazhurchal and even seemed to foam bubbles, you`ve done a few sips, and then, his head thrown back, just passed urine flows directly into the stomach, without swallowing. Your stomach filled quickly, and treacherously swollen belly.'
+	'Bobka wait until you coughed again and open your mouth, and then continued to urinate. Your mouth quickly filled with warm adverse moisture, you take a drink, suppressed a gag reflex, again and then, but the flow has not dried up. From the corner of his mouth and ran down his chin excess, «Slurp every drop, and you will not get money, creature» severely scolded you dope dealer. realizing, do not have time to swallow all, You open your mouth wider, making it in the manner of the urinal. In the mouth you immediately zazhurchal and even seemed to foam bubbles, you''ve done a few sips, and then, his head thrown back, just passed urine flows directly into the stomach, without swallowing. Your stomach filled quickly, and treacherously swollen belly.'
 
 	act 'Diligently to swallow':gt 'bobka', 'peeswallow3'
 end
@@ -245,6 +245,6 @@ if $ARGS[0] = 'peewhore':
 	'<center><img src="images/qwest/sosed/peewhore.jpg"></center>'
 	'Even washing you greedily grabbed a syringe with foolishness and it stuck itself in a vein shaking hands. Man with a smile looking at you.'
 
-	act 'Leave':minut += 10 & gt'street'
+	act 'Leave':minut += 10 & gt 'street'
 end
 --- bobka ---------------------------------

+ 1 - 1
locations/bouling

@@ -66,7 +66,7 @@ if $ARGS[0] = 'randwin':
 		money += 300
 		'You won and received 300 rubles.'
 
-		act 'Get_Away':gt'torgcentr'
+		act 'Get_Away':gt 'torgcentr'
 	elseif boulwin > 10 and boulvar = 1:
 		money += 2000
 		'You won and received 2,000 rubles.'

+ 3 - 3
locations/brosh

@@ -14,7 +14,7 @@ if evgentipe = 0:
 			cls
 			bj += 1
 			sub += 1
-			gs'stat'
+			gs 'stat'
 			'<center><img src="images/qwest/alter/ev2/bs.jpg"></center>'
 			'You sat on his haunches and Zhendos got dick out of his pants pulling your face to its members, You dutifully wrapped around his lips and began to suck.'
 
@@ -24,7 +24,7 @@ if evgentipe = 0:
 				cumlip += 1
 				swalllow += 1
 				!cumfrot += 1
-				gs'stat'
+				gs 'stat'
 				'<center><img src="images/qwest/alter/ev2/bscum.jpg"></center>'
 				'Zhendos did not last long , you started quickly swallow.'
 				dynamic $din_sekondparturok
@@ -45,7 +45,7 @@ elseif evgentipe = 1:
 			cls
 			bj += 1
 			sub += 1
-			gs'stat'
+			gs 'stat'
 			'<center><img src="images/qwest/alter/ev2/bs1.jpg"></center>'
 			'You sat on his haunches and Mishan got dick out of his pants pulling your face to its members, You dutifully wrapped around his lips and began to suck.'
 

+ 1 - 1
locations/brother

@@ -45,7 +45,7 @@ if $loc = 'gschool':
 	end
 
 	if evgenQW >= 4:
-		'Guys poshushukavshis together tell you "Yup, Well it this Soccer, Let`s go watch porn."'
+		'Guys poshushukavshis together tell you "Yup, Well it this Soccer, Let''s go watch porn."'
 
 		act 'Go watch porn':minut += 5 & gt 'seeporn'
 	else

File diff suppressed because it is too large
+ 0 - 0
locations/budgetclothes


+ 3 - 2
locations/clothing

@@ -131,7 +131,7 @@ if $ARGS[0] = 'view_clothing_item':
 	!! ARGS 4 - price for shop
 	
 	cla
-	'<center><img src="' + FUNC('$clothing_image', $ARGS[2], ARGS[3]) + '"></center>'
+	'<center><img src="<<FUNC('$clothing_image', $ARGS[2], ARGS[3])>>"></center>'
 	FUNC('$clothing_name', $ARGS[2], ARGS[3])
 	
 	if $ARGS[1] ! 'shop' and $ARGS[2] ! 'vatnik' and $ARGS[2] ! 'sforma' and $ARGS[2] ! 'ero':
@@ -312,4 +312,5 @@ if $ARGS[0] = 'wear_last_worn':
 	gs 'clothing', 'wear', $lastwornclothingtype, lastwornclothingnumber
 end
 
---- clothing -------------
+--- clothing -------------
+

+ 1 - 1
locations/dinSex

@@ -882,7 +882,7 @@ $sexcum = {
 
 		if prezrand = 0:
 			'Pulling out of you and looking at his dick, <<$boy>> said "Hmm, condom burst"'
-			gs'preg'
+			gs 'preg'
 		end
 	end
 

+ 1 - 1
locations/enemy

@@ -1,5 +1,5 @@
 # enemy
-!!Calculation of the enemy`s attack
+!!Calculation of the enemy''s attack
 if $ARGS[0] = 'start':
 	cla
 	!in this block is selected on the basis of the variable program enemy attacks

+ 4 - 4
locations/etoexhib

@@ -1292,7 +1292,7 @@ if $ARGS[0] = 'pos40':
 	if gor_dorm = 2:act 'Search commandant':gt 'comendant', 'pos3'
 	if gor_dorm >= 3:act 'Inspect the barn':gt 'etoexhib', 'pos43'
 
-	act 'Get_Away':gt'gorodok'
+	act 'Get_Away':gt 'gorodok'
 end
 
 if $ARGS[0] = 'pos41':
@@ -1816,7 +1816,7 @@ if $ARGS[0] = 'pos90':
 	cla
 	*clr
 	minut += 5
-	gs'stat'
+	gs 'stat'
 
 	'<center><img src="images/etogame/memory.jpg"></center>'
 	'Your school magazine.'
@@ -1831,12 +1831,12 @@ if $ARGS[0] = 'pos90':
 			'<center><img src="images/etogame/ptu_tech.jpg"></center>'
 			'Once, biting in the teacher asked you to Eugene A., chemistry teacher.'
 			'- Sveta, you are always so attractive. There must be a lot of you know men.'
-			'- I think I understand what you`re? Want to someone-introduce a.'
+			'- I think I understand what you''re? Want to someone-introduce a.'
 			'- Do not get me wrong, I know soon 30, and married so no one takes. Yes, men in our backwoods.'
 			'- I_See, do so skinte mail me your most beautiful pictures, a bit of erotica will not prevent. And I will find you a good husband on a dating site.'
 			'- erotica! oh, you think, it is necessary?'
 			'- it is necessary, men at the sight of a beautiful female body lose their heads.'
-			'- Ok, I`ll try to take a picture as possible erotic.'
+			'- Ok, I''ll try to take a picture as possible erotic.'
 
 			act 'Finish':gt 'etoexhib', 'pos24'
 		end

+ 1 - 1
locations/family

@@ -90,7 +90,7 @@ if StoryLine = 1:
 				cls
 				minut += 5
 				gs 'stat'
-				'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_6_' + rand(1,7) + '.jpg"></center>'
+				'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_6_<<rand(1,7)>>.jpg"></center>'
 				'Drunk, disheveled Anja bursts into the room.'
 				'You notice that her hair, All clothes are smeared with sticky sperm.'
 				'In this form,, she falls on the bed and falls asleep instantly.'

+ 1 - 1
locations/fbDormD

@@ -381,7 +381,7 @@ $d_fbd_threesome = {
 						cumlip += 1
 						gs 'stat'
 						'<center><img src="images/qwest/alter/Ev/fbdrcum.jpg"></center>'
-						'Suddenly you hit on the lips warm, viscous liquid with a pungent odor and taste even sharper. The second guy started razryazhatsya your mouth. You`re standing on my knees smeared with sperm in the face and look up at the guys.'
+						'Suddenly you hit on the lips warm, viscous liquid with a pungent odor and taste even sharper. The second guy started razryazhatsya your mouth. You''re standing on my knees smeared with sperm in the face and look up at the guys.'
 						dynamic $d_fbd_end
 					end
 				end

+ 7 - 7
locations/fitgirl

@@ -5,7 +5,7 @@ $dintaniastart = {
 			cla
 			*clr
 			tanday = day
-			gs'stat'
+			gs 'stat'
 
 			'<center><img src="images/img/centr/razd1.jpg"></center>'
 			'You come to the girl and grabbed the buttocks with one hand deploy to face him'
@@ -20,17 +20,17 @@ $dintaniastart = {
 				act 'Take advantage of the confusion':
 					cla
 					*clr
-					gs'stat'
+					gs 'stat'
 
 					'<center><img src="images/img/centr/razd2.jpg"></center>'
-					'While she was trying to understand what`s going on, you pulled up her shirt and began licking her nipples, and now her hand stroking your buttocks'
+					'While she was trying to understand what''s going on, you pulled up her shirt and began licking her nipples, and now her hand stroking your buttocks'
 
 					act 'Further':tanznak = 1 & gt 'lezbsex', 'start'
 				end
 				
 				act 'Wait for her reaction':
 					cls
-					gs'stat'
+					gs 'stat'
 
 					if vnesh < 30:
 						'She smiles at you, but removes your hand, and leaves, I am sending you a kiss.'
@@ -53,7 +53,7 @@ $dintaniastart = {
 	end
 }
 
-gs'stat'
+gs 'stat'
 
 'She notices your look and smile turns. She undresses and toiletries are taking the shower.'
 
@@ -69,10 +69,10 @@ act 'Going into the shower behind a girl':
 	dynamic $showerdin
 
 	shovertania += 1
-	gs'stat'
+	gs 'stat'
 
 	'<center><img src="images/pics/dush.jpg"></center>'
-	'You are logged in shower. There`s no one, except this girl. She looked back and saw you smiling back turned.'
+	'You are logged in shower. There''s no one, except this girl. She looked back and saw you smiling back turned.'
 
 	dynamic $dintaniastart
 

+ 1 - 1
locations/furi

@@ -57,7 +57,7 @@ if trfatherQW = 1:
 		cls
 		minut += 5
 		trfatherQW = 2
-		gs'stat'
+		gs 'stat'
 
 		'<center><img src="images/qwest/alter/trfatherQW/trfatherQW_1.jpg"></center>'
 		'-Good afternoon! Do not remember, you have not previously worked for a man named Mikhail Kuznetsov?'

+ 1 - 1
locations/gaptek

@@ -520,7 +520,7 @@ if StoryLine = 1:
 			portion = input ("How many packages you want to buy? (One tube lasts for 5 uses)")
 
 			if portion <= 0:portion = 1
-			if portion > 10:portion = 10 & '"<<$nickname>>, I sell only 10 pieces, no longer brought, I`m_sorry."'
+			if portion > 10:portion = 10 & '"<<$nickname>>, I sell only 10 pieces, no longer brought, I''m_sorry."'
 
 			if portion * 300 <= money:
 				lubri += portion * 5

+ 2 - 2
locations/generation

@@ -8,7 +8,7 @@ x = 0
 x += 1
 turnirFighter[x] = rand(2, NPCrost)
 
-if x < 2:jump'markturnirotborz'
+if x < 2:jump 'markturnirotborz'
 
 if turnirFighter[1] = turnirFighter[2]:jump 'markturnirotbory'
 
@@ -18,6 +18,6 @@ gs 'Autofight'
 turnirFighter[1] = 0
 turnirFighter[2] = 0
 
-if y < 20:jump'markmonthfightx'
+if y < 20:jump 'markmonthfightx'
 
 --- generation ---------------

+ 2 - 2
locations/gevent

@@ -33,7 +33,7 @@ if $ARGS[0] = '1':
 			'Soon he began to pant, and then he took dick and crawled to your face, forcibly stuck in your mouth his cock and cum in it, you feel his hot cum, which swallowed. In the mouth, the bitterness remains disgusting.'
 		end
 
-		act' Swallow':
+		act 'Swallow':
 			cla
 			cls
 			sex += 1
@@ -172,7 +172,7 @@ if $ARGS[0] = '5':
 	cumass = 1
 	minut += 15
 	money += 100
-	gs'stat'
+	gs 'stat'
 	'<center><img src="images/gevent/5.jpg"></center>'
 	'The guy has got you into the woods, where a section of the tree and put in quick fuck, Cum on ass, and then gave you a hundred rubles, and left.'
 

+ 5 - 5
locations/gkafe

@@ -19,7 +19,7 @@ if mother_go = 1 and hour = 16:
 		gs 'stat'
 		'You walked around the cafe and suddenly you have come to the weak voices, closer to the wall cafe, you heard what that poor women moaning. Go behind the cafe you see old crates and on the wall a small window in which you can look if you stand on boxes.'
 
-		act 'Leave':gt'vokzalG'
+		act 'Leave':gt 'vokzalG'
 		act 'Peep through the window':
 			cls
 			minut += 5
@@ -33,7 +33,7 @@ if mother_go = 1 and hour = 16:
 				'You climbed on the boxes and looked through the small window. Behind the glass as you notice what that woman squatting in front of a man . And then before you came, it''s your mom does blowjob cafe owner. You surprise goggled, and my mother .'
 			end
 
-			act 'Leave':gt'vokzalG'
+			act 'Leave':gt 'vokzalG'
 
 			act 'View more':
 				cls
@@ -43,7 +43,7 @@ if mother_go = 1 and hour = 16:
 				'<center><img src="images/qwest/alter/placer/momslut2.jpg" ></center>'
 				'Your mother got to her feet and turned his big bare ass to the owner of the cafe. He came up from behind and abruptly drove his cock in her pussy. His movements were strong and flourish, your mother moaned and held on to the wall. Finally the owner of the cafe ass grabbing your mother groaned and finished it in her pussy.'
 
-				act 'Leave':gt'vokzalG'
+				act 'Leave':gt 'vokzalG'
 			end
 		end
 	end
@@ -70,7 +70,7 @@ else
 			health += 10
 			manna += 5
 			willpower += 5
-			gs'stat'
+			gs 'stat'
 			'<center><img src="images/pics/food.jpg"></center>'
 
 			if energy >= 30:
@@ -98,7 +98,7 @@ else
 			if razvrand > 7 and hour > 16 and hour < 20 and age < 18 and dyadyamishaevent = 0 and momslut = 1:
 				''
 				'Past your table is going to release an adult male, where you will find Uncle Misha, who lives in the house next door, who see you, suddenly stops and tells you:'
-				'Oh, <<$name>>, hello. I learned? See, what yes. Listen, here it is... We are your stepfather as it repaired the car late, and then lay down with me to overthrow ryumashki, and I stayed at the apartment of his luggage with tools. Help him to return? I`ll give a money for ice cream.'
+				'Oh, <<$name>>, hello. I learned? See, what yes. Listen, here it is... We are your stepfather as it repaired the car late, and then lay down with me to overthrow ryumashki, and I stayed at the apartment of his luggage with tools. Help him to return? I''ll give a money for ice cream.'
 
 				act 'Agree':gt 'gevent', '1'
 			elseif razvrand > 7 and hour > 16 and hour < 20 and dyadyamishaevent = 1 and dmishaday ! day:

+ 1 - 1
locations/gopnik_house

@@ -45,7 +45,7 @@ elseif gophouse = 1:
 
 	gs 'stat'
 
-	if ciklkm > 0:jump'markgophouserape'
+	if ciklkm > 0:jump 'markgophouserape'
 
 	'Finally it''s all over, you feel like someone you clothes and buttons you again somewhere drag.'
 

+ 1 - 1
locations/gor_exh

@@ -8,7 +8,7 @@ if $ARGS[0] = 'pos1':
 	if cloth_vid = 1:
 		'<center><img src="images/etogame/cloth_bimbo.jpg"></center>'
 	else
-		'<center><img src="' + FUNC('$face_image') + '"></center>'
+		'<center><img src="<<FUNC('$face_image')>>"></center>'
 	end
 
 	if $clothingworntype = 'nude':

+ 1 - 1
locations/gor_mirror

@@ -2,7 +2,7 @@
 if $ARGS[0] = 'start':
 	cla
 	clr
-	'<center><img src="' + FUNC('$face_image') + '"></center>'
+	'<center><img src="<<FUNC('$face_image')>>"></center>'
 	'<<$hair>> <<$mop>> <<$skin>> <<$vnesh>>'
 
 	if kosmetica > 0:'Cosmetics <<kosmetica>>'

+ 3 - 3
locations/gschool

@@ -13,8 +13,8 @@ act 'Leave':gt 'gorodok'
 if zverRageQW = 1:
 	cls
 	zverRageQW = 2
-	gs'stat'
-	gs'time'
+	gs 'stat'
+	gs 'time'
 	'You came to the school yard after school, vnezpno someone you flunked powerful Pendel in the ass, you dumbfounded turned and saw Christina Zverev contorted with rage face. She yelled at you "you ohuel, whether that bitch, about me any garbage chat? I''ll now break mug!"'
 	$nameV = 'Christina'
 	!!stats
@@ -44,7 +44,7 @@ if zverRageQW = 1:
 
 	round = 0
 
-	act 'fight':gt'fight','start'
+	act 'fight':gt 'fight','start'
 
 	exit
 end

+ 1 - 1
locations/gschool2

@@ -281,7 +281,7 @@ $din_bigperemena = {
 
 		act 'Go with Katja':
 			cls
-			gs'stat'
+			gs 'stat'
 			'<center><img src="images/qwest/alter/katja/petting.jpg" ></center>'
 			'Katja brought you into a small room where it was stored inventory for cleanup. She barely closed the door immediately dug into your lips on my lips and whispered passionately "<<$name>>, I want you."'
 

+ 2 - 2
locations/gskver

@@ -50,12 +50,12 @@ if sport > 0 and hour > 5 and hour < 22 and daybegskver ! daystart:
 		beg += rand(3, 6)
 		sweat += 2
 		daybegskver = daystart
-		gs'stat'
+		gs 'stat'
 
 		'<center><img src="images/pic/parkbeg.jpg"></center>'
 		'You are within an hour running through the square'
 
-		act 'Further':place = 1 & Frend_num = 0 & gt'placer'
+		act 'Further':place = 1 & Frend_num = 0 & gt 'placer'
 	end
 end
 act 'Get out of the park':minut += 5 & gt 'gorodok'

+ 1 - 1
locations/hairsalon

@@ -536,7 +536,7 @@ end
 
 if $ARGS[0] = 'mirror':
 	cls
-	'<center><img src="' + FUNC('$face_image') + '"></center>'
+	'<center><img src="<<FUNC('$face_image')>>"></center>'
 	'<center>You look at your new hairstyle in the mirror.</center>'
 	act 'Move away':gt 'hairsalon', 'start'
 end

+ 2 - 1
locations/kafe

@@ -754,7 +754,8 @@ if $ARGS[0] = 'workPred':
 					cls
 					pirsA = 1
 					pirsday = day
-					'<center><img src="images/body/pirs.jpg"></center>'
+					! Fix missing Image ".../body/pirs.jpg"
+					'<center><img src="images/body/pirsA.jpg"></center>'
 					'Beckons you to one of the clients, you come to the table and notice that in front of you are the real criminals.'
 					'When you come to the table, the leader called you closer to him, and when you come, it is very hard and painful grabbed you by the neck.'
 					'The leader told you - vaflersha, open your mouth. You obediently opened his mouth, he looked back and you slapped you podschechinu. I do not see a pierced tongue. Vaflersha should wear piercings that would be a decent person could immediately understand that before it chlenososka.'

+ 3 - 3
locations/kafedinamic

@@ -490,11 +490,11 @@ $iradin = {
 					act 'Enjoy a visit to Ira':gt 'IrinaRoom', 'first'
 				elseif Irina >= 100 and IrinaQW = 2:
 					if GiviSex >= 1 and Kavslut = 0:
-						$irinatalk = 'Irina mostly silent all the way, but mustered committed says he did not expect that he did not expect from you, In order that you not only sleep with men, but also with women. Trying to be polite , that`s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
+						$irinatalk = 'Irina mostly silent all the way, but mustered committed says he did not expect that he did not expect from you, In order that you not only sleep with men, but also with women. Trying to be polite , that''s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
 					elseif Kavslut > 0:
-						$irinatalk = 'Irina mostly silent all the way, but mustered determination says that from such a whore as you can of course it was all expected and tells you that you do loose. Trying to be polite , that`s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
+						$irinatalk = 'Irina mostly silent all the way, but mustered determination says that from such a whore as you can of course it was all expected and tells you that you do loose. Trying to be polite , that''s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
 					else
-						$irinatalk = 'Irina mostly silent all the way, but mustered committed says he did not expect that such a nice girl like you, actually lesbian. Trying to be polite , that`s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
+						$irinatalk = 'Irina mostly silent all the way, but mustered committed says he did not expect that such a nice girl like you, actually lesbian. Trying to be polite , that''s what it is not against sex minorities, but she did not want to sleep with women, they are so soft and nasty, just awful.'
 					end
 
 					$irinaend = 'Going to the door she says goodbye to you and leaves.'

+ 1 - 1
locations/katjaEv

@@ -399,7 +399,7 @@ act 'Go with Katja':
 
 								act 'Get out of the shower':
 									cls
-									gs'stat'
+									gs 'stat'
 									'<center><img src="images/qwest/alter/npc/14.jpg" ></center>'
 									'You came out of the shower and walked into the room to Katja. You have chatted and Katja said, what she was doing.'
 									act 'Say goodbye and go home':minut += 15 & gt 'gorodok'

+ 2 - 1
locations/katspalnya

@@ -7,7 +7,8 @@ if $ARGS[0] = 'start':
 	cls
 	gs 'stat'
 	'<center><b><font color="maroon">Guest Katie</font></b></center>'
-	'<center><img src="images/img/SleepingQuarter/Kathouse/bedroom.jpg"></center>'
+	! Fix missing Image ".../img/SleepingQuarter/Kathouse/bedroom.jpg"
+	'<center><img src="images/img/Kathouse/bedroom.jpg"></center>'
 
 	if hour >= 18 and hour < 23:'Sitting on the couch <a href="exec:gt ''katspalnya'', ''kat''">Kate</a> and watching television'
 	if hour >= 23 or hour < 6:'In bed asleep <a href="exec:gt ''katspalnya'', ''katslip''">Kate</a>.'

+ 2 - 1
locations/kid

@@ -14,7 +14,7 @@ if $ARGS[0] = 'start':
 			$kidPosPro[kidIteration] = 'his'
 		end
 
-		"Your child, a <<$polreb[kidIteration]>> named <<$kidname[kidIteration]>>. The child's date of birth is <<daykid[kidIteration]>>-<<monthkid[kidSelected]>>-<<yearkid[kidSelected]>>. The child's age is <<kidage[kidIteration]>>"
+		"Your child, a <<$polreb[kidIteration]>> named <<$kidname[kidIteration]>>. The child''s date of birth is <<daykid[kidIteration]>>-<<monthkid[kidSelected]>>-<<yearkid[kidSelected]>>. The child''s age is <<kidage[kidIteration]>>"
 		if kidage[kidIteration] < 1: '<<$kidname[kidIteration]>> is a baby lying in <<$kidPosPro[kidIteration]>> crib.'
 		if kidage[kidIteration] >= 1 and kidage[kidIteration] < 7:
 
@@ -50,3 +50,4 @@ end
 
 --- kid ---------------------------------
 
+

+ 1 - 1
locations/kikbox

@@ -167,7 +167,7 @@ if $ARGS[0] = 'sta':
 				end
 			end
 		elseif round > formula and sparing = 1:
-			act 'Leave the ring':gt'fit','start'
+			act 'Leave the ring':gt 'fit','start'
 		end
 	end
 end

+ 5 - 4
locations/klofdomhouse

@@ -377,9 +377,9 @@ if $ARGS[0] = 'ev19':
 	vagina += 1
 	picrand = rand(1, 3)
 
-	if picrand = 1:'<center><img src="images/klof/klof 21.jpg."></center>'
-	if picrand = 2:'<center><img src="images/klof/klof 22.jpg."></center>'
-	if picrand = 3:'<center><img src="images/klof/klof 23.jpg."></center>'
+	if picrand = 1:'<center><img src="images/klof/klof 21.jpg"></center>'
+	if picrand = 2:'<center><img src="images/klof/klof 22.jpg"></center>'
+	if picrand = 3:'<center><img src="images/klof/klof 23.jpg"></center>'
 
 	'Jora brutally fuck you in the mouth and pussy Cenya dryuchit'
 	horand = rand(1, 100)
@@ -467,7 +467,8 @@ end
 if $ARGS[0] = 'ev26':
 	cla
 	*clr
-	'<center><img src="images/klof/klof 26</center>.jpg"></center>'
+	! Fix Missing Image ".../klof/klof 26</center>.jpg"
+	'<center><img src="images/klof/klof 26.jpg"></center>'
 	'You showed your ass boss'
 	'Let''s pull off her dress! - He said'
 

+ 5 - 3
locations/klofdomhouse1

@@ -365,7 +365,7 @@ if $ARGS[0] = 'ev19':
 	cumpussy += 1
 	vagina += 1
 	picrand = rand(21, 23)
-	'<center><img src="images/klof/klof <<picrand>>.jpg."></center>'
+	'<center><img src="images/klof/klof <<picrand>>.jpg"></center>'
 	'Jora brutally fuck you in the mouth and pussy Cenya dryuchit'
 	horand = rand(1, 100)
 
@@ -449,7 +449,8 @@ end
 if $ARGS[0] = 'ev26':
 	cla
 	*clr
-	'<center><img src="images/klof/klof 26</center>.jpg"></center>'
+	! Fix Missing Image ".../klof/klof 26</center>.jpg"
+	'<center><img src="images/klof/klof 26.jpg"></center>'
 	'You pokazli his ass'
 
 	act 'Remove dress':gt 'klofdomhouse', 'ev27'
@@ -476,7 +477,8 @@ end
 if $ARGS[0] = 'ev28':
 	cla
 	*clr
-	'<center><img src="images/klof/1284364hjl.jpg)"></center>'
+	! Fix Missing Image ".../klof/1284364hjl.jpg)"
+	'<center><img src="images/klof/1284364hjl.jpg"></center>'
 	'You turned on its side and the boss showed their charms'
 
 	act 'Spin the ass before the boss':gt 'klofdomhouse', 'ev29'

+ 2 - 2
locations/korrPar

@@ -89,10 +89,10 @@ if hour >= 16 and hour <= 20 and indorf = 0:
 				cls
 				mothervideotalk = 1
 				minut += 5
-				gs'stat'
+				gs 'stat'
 				'<center><b><font color="maroon">A_Mother</font></b></center>'
 				'<center><img src="images/qwest/alter/mother.jpg"></center>'
-				'"Come on -come_on - call the father! I`ll tell you what his daughter! And who went!"'
+				'"Come on -come_on - call the father! I''ll tell you what his daughter! And who went!"'
 				'Mother is looking at you and spit on the floor leaves.'
 
 				act 'Move away':gt $curloc

+ 2 - 1
locations/kuhrPar

@@ -12,7 +12,8 @@ fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)
 lcolor = rgb(106, 90, 205)
 '<center><b><font color="maroon">Kitchen</font></b></center>'
-'<center><img src="images/qwest/alter/<<$loc>>.jpg"></center>'
+! Fix Missing Image ".../qwest/alter/<<$loc>>.jpg"
+'<center><img src="images/qwest/alter/korrPar.jpg"></center>'
 'The kitchen is next to the stove sink. Large refrigerator in the corner and kitchen table with chairs is against the wall.'
 gs 'family'
 

+ 1 - 1
locations/mother

@@ -499,7 +499,7 @@ if (cumlip > 1 or cumface > 0 or cumfrot > 0) and whoremday ! day:
 		'Mother looked sternly at you. You was noticeable sperm.'
 		'- <<$nickname>>, I certainly understand it all, but could you clean up the artistry of their fancy man? Quickly to the bathroom, yet who-something not seen!'
 
-		act 'Move away':gt'vanrPar'
+		act 'Move away':gt 'vanrPar'
 	end
 end
 

+ 12 - 6
locations/mqroom

@@ -30,7 +30,8 @@ act 'Put a roll on the floor and stamp his foot.':
 			volume = 100
 			$music_theme = 'orochimaru'
 			gs 'init_music'
-			'<center><img src="images/casino/oro.jpg"></center>'
+			! Fix missing Image ".../casino/oro.jpg"
+			'<center><img src= "images/picbat/orotimaru.jpg"></center>'
 			'Mother of God. Just thought you looked into her eyes. Deathly pale skin, cold and cruel snake eyes. Creature grinned.'
 			'(Creature) - "So you see my true face. Wonderful." Hissed the snake creature voice.'
 			'Looking into those eyes and you only managed to whisper, "Who are you?". Creature chuckled "Long story, you do not stand it and will soon die."'
@@ -40,7 +41,8 @@ act 'Put a roll on the floor and stamp his foot.':
 			act 'Look at the stranger.':
 				cla
 				*clr
-				'<center><img src="images/casino/tobi.jpg"></center>'
+				! Fix missing Image ".../casino/tobi.jpg"
+				'<center><img src="images/picbat/tobi.jpg"></center>'
 				'In the doorway stood a man in a black robe, on which were painted red clouds. His face covered with a mask slit for the eyes. You feel a huge force pervading space literally coming out of that eye. The masked man said dully, "Here we saw each other and Orochimaru. Again will flee?"'
 				'Zmeeglazoe creature with a female body and snake hissed angrily eyes:"What else can I do Toby? Tsukuyomi While you run, I can only escape. But believe me, I change everything very quickly. You hunter of becoming a victim."'
 				'Suddenly a man in a mask named Toby zmeeglazogo attacked, he rushed forward, trying to grab zmeeglazogo throat. At Orochimaru literally flew out of the sleeve snake toward Toby, but to your surprise snake flew through Toby and crashed into the door jamb.'
@@ -51,7 +53,8 @@ act 'Put a roll on the floor and stamp his foot.':
 				act 'Scream in panic.':
 					cla
 					*clr
-					'<center><img src="images/casino/oro.jpg"></center>'
+					! Fix missing Image ".../casino/oro.jpg"
+					'<center><img src= "images/picbat/orotimaru.jpg"></center>'
 					'Seeing the approaching ground, you panicked with the thought that now you die. But zmeeglazy hold you in my arms, landed on his feet, after breaking leg kick asphalt. You are seeing this strange creature in the face, it was cold and focused. Suddenly something crackled and looked down, you saw the legs zmeeglazogo turn into a snake''s tail.'
 					'Sitting in steel hands Orochimaru, you literally flew through the streets, winding alleys and flying fences. You flew over the ground with terrific speed, without having to even understand where you are. Very quickly, the city remained behind and swept Orochimaru using his snake tail has the fields and forests. You feel physically as reality collapses behind you. Your pursuer Toby did not let it, tearing reality teleported trying to overtake you.'
 					'With a busy person zmeeglazogo started dripping sweat. It hissed:"You too feel. He overtakes us. Remember, if I do not save, you will not save anybody. You''ll be dead soon." Suddenly you hear a thunderous voice "Shinra Tensei" and it was a feeling that you have flown on the wall. You where it was thrown and you rolling on the grass edge of the eye noticing that zmeeglazy also flew from the impact.'
@@ -59,7 +62,8 @@ act 'Put a roll on the floor and stamp his foot.':
 					act 'Raise your head.':
 						cla
 						*clr
-						'<center><img src="images/casino/pain.jpg"></center>'
+						! Fix missing Image ".../casino/pain.jpg"
+						'<center><img src= "images/picbat/pain.jpg"></center>'
 						'Near you stood a tall, thin man with bright red hair, covered with piercings. Even the figure could be seen that it is not one-eyed Toby. Although hoodie was exactly the same, black with red clouds drawings.'
 						'Orochimaru raised his head and hissed, "Payne!" Skinny guy walked slowly towards Orochimaru:"No one can just walk away from Dawn. Now I''m done with your immortal life."'
 						'Zmeeglazy opened his mouth, and from there flew sword blades. But even Payne did not blink, the blade before it reached him a few centimeters, shattering into pieces. "That''s all you can Orochimaru? Skedaddle from Toby right in my hands, and before his death show such miserable spell?"'
@@ -69,7 +73,8 @@ act 'Put a roll on the floor and stamp his foot.':
 						act 'Look at Orochimaru.':
 							cla
 							*clr
-							'<center><img src="images/casino/oro.jpg"></center>'
+							! Fix missing Image ".../casino/oro.jpg"
+							'<center><img src= "images/picbat/orotimaru.jpg"></center>'
 							'Orochimaru, holding your hands, grinning. But you feel his fear. You quickly flew into a black hole, located high in the sky and realized that once there, you with zmeeglazym perish.'
 							'Orochimaru hissed:"There is one last hope. I open my mouth, and you stick your hand in there, I have a scroll inside, you open it up and put her hand. Obey or we both die."'
 							'Zmeeglazy opened her mouth so that there is not that hand, and you could get through a whole. You fastidiously hand shoved in his mouth and essentially felt there scroll. Removing it you quickly scroll unfurled, freaked characters.'
@@ -80,7 +85,8 @@ act 'Put a roll on the floor and stamp his foot.':
 								*clr
 								cursed = 1
 								music_on = 0
-								'<center><img src="images/casino/oro.jpg"></center>'
+								! Fix missing Image ".../casino/oro.jpg"
+								'<center><img src= "images/picbat/orotimaru.jpg"></center>'
 								'You put a hand to scroll and scroll lightning burned. You embraced the same strange feeling that when approaching Toby. There was a feeling that reality has broken, but this time the center of this hole were you. The sensation you tore the fact that Orochimaru his teeth to you in the neck. You pierced stunning pain. Suddenly zmeeglazy let you go, and with all his strength hurled towards the ground away from the black hole. You understand that it is all spent force trying to save you from a devastating spell Payne.'
 								'You flew down against the force of the black hole, while watching the black hole reached Orochimaru and his body began to break apart. But Orochimaru smiled despite his terrible, deadly pain and agony of his dying body. Finally there was only from zmeeglazogo bloody mess that swallowed the hole. Momentum imparted to you last effort Orochimaru ended and you began again to draw a black hole. You flew to her side feeling as you gradually get out of reality, a little bit more and you will be far from this place.'
 								'But a black hole is close, you felt the impact of it, trying to tear you apart.'

+ 1 - 1
locations/narkopriton

@@ -99,7 +99,7 @@ elseif money < 1000 and SLomka > 0:
 										'<center><img src="images/qwest/sosed/crackwhore6.jpg"></center>'
 										'You have long ceased to take care of yourself, from the former beauty was gone, in the face, hair and clothes traces of dried semen, and his mouth all day and night it smells, suction after each rinse your long lazy. Substituting their broken-down holes or taking the cheek once you dick sometimes thinking - "Was there another way?"'
 
-										act '...':gt'gameover'
+										act '...':gt 'gameover'
 									end
 								end
 							end

+ 4 - 4
locations/nastja

@@ -443,7 +443,7 @@ if $ARGS[0] = 'pos23':
 	'After half-hours doorbell rings.'
 	'You see Nastya. Without makeup and in casual clothes, she looks so cute.'
 	'You Nastya is convenient to arrange a room on the couch, open a bottle of wine and start telling each other their secrets.'
-	'From the conversation , everyone thinks Nastya, just beautiful and you agree with them. She is a good student and is constantly looking for-something new in life. She has quite a strong character, You `ve seen how she argued with those who were older or more of its. Also, who_are, as it considers, below its status. however, this does not prevent her from making friends, whom she had a whole sea.'
+	'From the conversation , everyone thinks Nastya, just beautiful and you agree with them. She is a good student and is constantly looking for-something new in life. She has quite a strong character, You ''ve seen how she argued with those who were older or more of its. Also, who_are, as it considers, below its status. however, this does not prevent her from making friends, whom she had a whole sea.'
 	'Also, Nastya could not last long at any work. First, and then fired under various pretexts, or she goes, speaking, what_is "such work is not for me".'
 	'Do_You: - Is_Not_Clear, What you can not work, because the location is excellent?!'
 	'Nastya: - Yup,but_the...'
@@ -466,11 +466,11 @@ if $ARGS[0] = 'pos24':
 
 	'<center><img src="images/etogame/wines.jpg"></center>'
 	'In the meantime.'
-	'Do_You: - It would be necessary that-something to eat. Come `ll order pizza, reluctantly cook.'
+	'Do_You: - It would be necessary that-something to eat. Come ''ll order pizza, reluctantly cook.'
 	'(You call to order a pizza and order a large pizza hot.)'
 	''
 	'(you see, Nastya for a moment about what-then thought .)'
-	'Nastya: - Sveta, Let`s listen to fun too. I `ve seen on the Internet. Girl orders a pizza, and she throws a towel over his naked body, type of the shower ran. Well, towel "by_chance" flies down. I have long dreamed of such, but one house nizachto would not risk. And you is not scared.'
+	'Nastya: - Sveta, Let''s listen to fun too. I ''ve seen on the Internet. Girl orders a pizza, and she throws a towel over his naked body, type of the shower ran. Well, towel "by_chance" flies down. I have long dreamed of such, but one house nizachto would not risk. And you is not scared.'
 
 	act 'agree':gt 'nastja', 'pos26'
 	act 'Opt_Out':gt 'nastja', 'pos25'
@@ -533,7 +533,7 @@ if $ARGS[0] = 'pos28':
 
 	'<center><img src="images/etogame/towel.jpg"></center>'
 	'You give money and at this point the towel fall to the ground. "oh" you scream and stretch the money, but boy standing stock-still and staring at your body. Then you bend to pick up a towel and overlook your ass. At_Last, one hand holding a towel, and the other holding money. You say goodbye to a peddler.'
-	'- oh,oh, oh i`m sorry, how can it be!'
+	'- oh,oh, oh i''m sorry, how can it be!'
 	'- nothing, heh. This_Happens. You have a beautiful body...heh.'
 
 	act 'close the door':gt 'nastja', 'pos30'

+ 1 - 1
locations/npc

@@ -108,6 +108,6 @@ end
 irand = i
 gs 'namer'
 
-if i < NPCnum:jump'markgenernpc'
+if i < NPCnum:jump 'markgenernpc'
 
 --- npc ---------------------------------

+ 125 - 121
locations/onobjsel

@@ -26,13 +26,13 @@ $objdescrip = {
 	pl '<<$vnesh>>'
 	pl '<<$hair>>'
 	pl '<<$lip>>'
-	pl'<<$throat>>'
+	pl '<<$throat>>'
 	pl '<<$skin>>'
 	pl '<<$glaza>>'
 	pl '<<$mop>>'
 	pl '<<$leghair>>'
 	pl '<<$lobok>>'
-	pl'<<$vagina>>'
+	pl '<<$vagina>>'
 	nl
 
 	if salo = 0 and musle > 0 and dounspell = 0:pl '<b><font color="red">You are showing signs undernourishment. You should probably eat more and more often.</font></b>'
@@ -121,7 +121,7 @@ $objskills = {
 	if poledance > 0:pl 'Poledancing skilllevel- <<poledance>>'
 	if shoot > 0:pl 'Shooting Accuracy - <<shoot>>'
 	if kid = 1:pl 'You have a child, <<$polreb[1]>> name <<$kidname[1]>>. Born <<daykid[1]>>.<<monthkid[1]>>.<<yearkid[1]>>y. Age <<kidage[1]>>'
-	if workPTU > 1:pl'Reputation teachers <<teachlevel>>'
+	if workPTU > 1:pl 'Reputation teachers <<teachlevel>>'
 
 	if SchoolAtestat = 0 and StoryLine > 0:
 		if Suspeh >= 90:pl 'You are an A+ student.'
@@ -149,7 +149,7 @@ $objstatistika = {
 
 	if Win > 0 or Loss > 0:pl 'Wins in fights <<Win>>, losses in fights <<Loss>>' & nl
 	if KisameDead = 1:pl 'You killed Kisame.'& nl
-	if razradKik > 0:pl'<<$razradKik>>'
+	if razradKik > 0:pl '<<$razradKik>>'
 
 	if KikWinAm > 0 or KikLossAm > 0 or KikDrawAm > 0:
 		pl 'Amateur Kickboxing Record:Win (Victory KO) - Loss (Defeat KO) - Draw'
@@ -281,7 +281,7 @@ $objstatistika = {
 		nl
 	end
 
-	if orgasm > 0:pl'Experienced orgasm <<orgasm>> times.'
+	if orgasm > 0:pl 'Experienced orgasm <<orgasm>> times.'
 	if analorgasm > 0 :pl 'You''ve had <<analorgasm>> anal orgasms.'
 	if swallow > 0:pl 'Sperm swallowed <<swallow>> times.'
 	if facial > 0:pl 'You have taken <<facial>> facials.'
@@ -289,7 +289,7 @@ $objstatistika = {
 	if VAF > 0:pl 'Vaflizm <<VAF>>.'
 	if zoo > 0:pl 'Having sex with animals <<zoo>> times.'
 	if pee > 0:pl 'You pissing <<pee>> times.'
-	if swallowpee > 0:pl'You swallow urine <<swallowpee>> time.'
+	if swallowpee > 0:pl 'You swallow urine <<swallowpee>> time.'
 	!!!WD:FORMATING
 	if (slutty + pfilmSTOP + film + orgasm + analorgasm + swallow + facial + frot + VAF + zoo + pee) > 0:nl
 	!!!
@@ -436,39 +436,39 @@ $din_cheat_menu_look = {
 	pl ''
 	pl '<a href=>now you <<age>> years_old</a>'
 
-	if age >= 0:pl'<a href="exec:dynamic $din_cheat_age">change age</a>'
+	if age >= 0:pl '<a href="exec:dynamic $din_cheat_age">change age</a>'
 
 	pl '<a href=>You look for <<vidage>> years_old</a>'
 
-	if vidage >= 0:pl'<a href="exec:dynamic $din_cheat_agel">Change the visibility of age</a>'
+	if vidage >= 0:pl '<a href="exec:dynamic $din_cheat_agel">Change the visibility of age</a>'
 
 	pl ''
 	pl '<<$lip>>'
 
-	if lip < 4:pl'<a href="exec:lip += 1 & dynamic $din_cheat_menu_look">augment the lips</a>'
-	if lip > 0:pl'<a href="exec:lip -= 1 & dynamic $din_cheat_menu_look">reduce lips</a>'
+	if lip < 4:pl '<a href="exec:lip += 1 & dynamic $din_cheat_menu_look">augment the lips</a>'
+	if lip > 0:pl '<a href="exec:lip -= 1 & dynamic $din_cheat_menu_look">reduce lips</a>'
 
 	pl ''
 	pl '<<$skin>>'
 
-	if skin < 4:pl'<a href="exec:skin += 1 & dynamic $din_cheat_menu_look">improve the skin</a>'
-	if skin > 0:pl'<a href="exec:skin -= 1 & dynamic $din_cheat_menu_look">worsen the skin</a>'
-	if tan >= 0:pl'<a href="exec:tan += 10 & dynamic $din_cheat_menu_look">become sunburnt</a>'
-	if tan > 0:pl'<a href="exec:tan = 0 & dynamic $din_cheat_menu_look">remove tan</a>'
+	if skin < 4:pl '<a href="exec:skin += 1 & dynamic $din_cheat_menu_look">improve the skin</a>'
+	if skin > 0:pl '<a href="exec:skin -= 1 & dynamic $din_cheat_menu_look">worsen the skin</a>'
+	if tan >= 0:pl '<a href="exec:tan += 10 & dynamic $din_cheat_menu_look">become sunburnt</a>'
+	if tan > 0:pl '<a href="exec:tan = 0 & dynamic $din_cheat_menu_look">remove tan</a>'
 
 	pl ''
 	pl '<<$glaza>>'
 
-	if resnic < 2:pl'<a href="exec:resnic += 1 & dynamic $din_cheat_menu_look">Enlarge eyelashes</a>'
-	if resnic > 0:pl'<a href="exec:resnic -= 1 & dynamic $din_cheat_menu_look">reduce eyelashes</a>'
-	if glaraz < 3:pl'<a href="exec:glaraz += 1 & dynamic $din_cheat_menu_look">Increase the size of the eye</a>'
-	if glaraz > 0:pl'<a href="exec:glaraz -= 1 & dynamic $din_cheat_menu_look">Reduce the size of the eye</a>'
+	if resnic < 2:pl '<a href="exec:resnic += 1 & dynamic $din_cheat_menu_look">Enlarge eyelashes</a>'
+	if resnic > 0:pl '<a href="exec:resnic -= 1 & dynamic $din_cheat_menu_look">reduce eyelashes</a>'
+	if glaraz < 3:pl '<a href="exec:glaraz += 1 & dynamic $din_cheat_menu_look">Increase the size of the eye</a>'
+	if glaraz > 0:pl '<a href="exec:glaraz -= 1 & dynamic $din_cheat_menu_look">Reduce the size of the eye</a>'
 
 	pl ''
 
-	if salo ! fat:pl'<a href="exec:fat = salo & dynamic $din_cheat_menu_look">balance the fat</a>'
-	if salo > 0:pl'<a href="exec:salo -= 5 & fat = salo & dynamic $din_cheat_menu_look">reduce fat</a>'
-	if salo > 0:pl'<a href="exec:salo = 0 & fat = salo & dynamic $din_cheat_menu_look">reset fat</a>'
+	if salo ! fat:pl '<a href="exec:fat = salo & dynamic $din_cheat_menu_look">balance the fat</a>'
+	if salo > 0:pl '<a href="exec:salo -= 5 & fat = salo & dynamic $din_cheat_menu_look">reduce fat</a>'
+	if salo > 0:pl '<a href="exec:salo = 0 & fat = salo & dynamic $din_cheat_menu_look">reset fat</a>'
 
 	pl 'fat (<<salo>>): <a href="exec:salo += 5 & fat = salo & dynamic $din_cheat_menu_look">+5</a> <a href="exec:salo += 10 & fat = salo & dynamic $din_cheat_menu_look">+10</a> <a href="exec:salo += 25 & fat = salo & dynamic $din_cheat_menu_look">+25</a> <a href="exec:salo += 50 & fat = salo & dynamic $din_cheat_menu_look">+50</a>'
 	pl ''
@@ -477,7 +477,7 @@ $din_cheat_menu_look = {
 $din_cheat_menu_param = {
 	gs 'stat'
 	clr
-	pl'<center><a href="exec:dynamic $objcheat_menu"><b>Cheat menu</b></a> - <a href="exec:dynamic $din_cheat_menu_look"><b>Outward Appearance</b></a></center>'
+	pl '<center><a href="exec:dynamic $objcheat_menu"><b>Cheat menu</b></a> - <a href="exec:dynamic $din_cheat_menu_look"><b>Outward Appearance</b></a></center>'
 	pl ''
 	pl '<<strenbuf>> - strenbuf'
 	pl '<<vitalbuf>> - vitalbuf'
@@ -501,18 +501,18 @@ $din_cheat_menu_tatoo = {
 	pl '<center><a href="exec:dynamic $objcheat_menu"><b>cheat menu</b></a> - <a href="exec:dynamic $din_cheat_menu_look"><b>Outward Appearance</b></a></center>'
 	pl ''
 
-	if tatlip = 0:pl'You do not have tattoos on his lips</a>'
-	if tatlip >= 1:pl'<a href="exec:tatlip = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a tattoo of lips</a>'
-	if tatplech = 0:pl'You do not have tattoos on their shoulders</a>'
-	if tatplech >= 1:pl'<a href="exec:tatplech = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a shoulder tattoo</a>'
-	if tatback = 0:pl'You have not got a tattoo on her back</a>'
-	if tatback >= 1:pl'<a href="exec:tatback = 0 & dynamic $din_cheat_menu_tatoo">Flatten with the back tattoo</a>'
-	if tatupb = 0:pl'You do not have tattoos on the lower back</a>'
-	if tatupb >= 1:pl'<a href="exec:tatupb = 0 & dynamic $din_cheat_menu_tatoo">Reduce a tattoo with lumbar</a>'
-	if tatvag = 0:pl'You do not have a tattoo in the groin</a>'
-	if tatvag >= 1:pl'<a href="exec:tatvag = 0 & dynamic $din_cheat_menu_tatoo">Reduce a tattoo with groin</a>'
-	if tatleg = 0:pl'You do not have a tattoo on the ankle</a>'
-	if tatleg >= 1:pl'<a href="exec:tatleg = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a tattoo ankle</a>'
+	if tatlip = 0:pl 'You do not have tattoos on his lips</a>'
+	if tatlip >= 1:pl '<a href="exec:tatlip = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a tattoo of lips</a>'
+	if tatplech = 0:pl 'You do not have tattoos on their shoulders</a>'
+	if tatplech >= 1:pl '<a href="exec:tatplech = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a shoulder tattoo</a>'
+	if tatback = 0:pl 'You have not got a tattoo on her back</a>'
+	if tatback >= 1:pl '<a href="exec:tatback = 0 & dynamic $din_cheat_menu_tatoo">Flatten with the back tattoo</a>'
+	if tatupb = 0:pl 'You do not have tattoos on the lower back</a>'
+	if tatupb >= 1:pl '<a href="exec:tatupb = 0 & dynamic $din_cheat_menu_tatoo">Reduce a tattoo with lumbar</a>'
+	if tatvag = 0:pl 'You do not have a tattoo in the groin</a>'
+	if tatvag >= 1:pl '<a href="exec:tatvag = 0 & dynamic $din_cheat_menu_tatoo">Reduce a tattoo with groin</a>'
+	if tatleg = 0:pl 'You do not have a tattoo on the ankle</a>'
+	if tatleg >= 1:pl '<a href="exec:tatleg = 0 & dynamic $din_cheat_menu_tatoo">Flatten with a tattoo ankle</a>'
 }
 $din_cheat_menu_stats = {
 	gs 'stat'
@@ -579,29 +579,29 @@ $din_cheat_menu_reputation = {
 	pl ''
 
 	if nastjaQW >= 0:pl '<a href="exec:nastjaQW += 10 & dynamic $din_cheat_menu_reputation">Friendship with Nastya: <<nastjaQW>></a>'
-	if kat >= 0:pl'<a href="exec:kat += 10 & dynamic $din_cheat_menu_reputation">Friendship with Kate: <<kat>></a>'
-	if vika >= 0:pl'<a href="exec:vika += 10 & dynamic $din_cheat_menu_reputation">Friendship with Vika: <<vika>></a>'
-	if Irina >= 0:pl'<a href="exec:Irina += 10 & dynamic $din_cheat_menu_reputation">Friendship with Irina: <<Irina>></a>'
-	if Tamara >= 0:pl'<a href="exec:Tamara += 10 & dynamic $din_cheat_menu_reputation">Friendship with Tamara: <<Tamara>></a>'
-	if alla >= 0:pl'<a href="exec:alla += 10 & dynamic $din_cheat_menu_reputation">Friendship with Alla: <<alla>></a>'
-	if masha >= 0:pl'<a href="exec:masha += 10 & dynamic $din_cheat_menu_reputation">Friendship with Masha: <<masha>></a>'
-	if Givi >= 0:pl'<a href="exec:Givi += 10 & dynamic $din_cheat_menu_reputation">Friendship with Givi Karapetovich: <<Givi>></a>'
-	if Ashot >= 0:pl'<a href="exec:Ashot += 10 & dynamic $din_cheat_menu_reputation">Friendship with Ashot: <<Ashot>></a>'
-	if Dmitry >= 0:pl'<a href="exec:Dmitry += 10 & dynamic $din_cheat_menu_reputation">Friendship with Dima: <<Dmitry>></a>'
-	if afra >= 0:pl'<a href="exec:afra += 10 & dynamic $din_cheat_menu_reputation">Friendship with blacks: <<afra>></a>'
+	if kat >= 0:pl '<a href="exec:kat += 10 & dynamic $din_cheat_menu_reputation">Friendship with Kate: <<kat>></a>'
+	if vika >= 0:pl '<a href="exec:vika += 10 & dynamic $din_cheat_menu_reputation">Friendship with Vika: <<vika>></a>'
+	if Irina >= 0:pl '<a href="exec:Irina += 10 & dynamic $din_cheat_menu_reputation">Friendship with Irina: <<Irina>></a>'
+	if Tamara >= 0:pl '<a href="exec:Tamara += 10 & dynamic $din_cheat_menu_reputation">Friendship with Tamara: <<Tamara>></a>'
+	if alla >= 0:pl '<a href="exec:alla += 10 & dynamic $din_cheat_menu_reputation">Friendship with Alla: <<alla>></a>'
+	if masha >= 0:pl '<a href="exec:masha += 10 & dynamic $din_cheat_menu_reputation">Friendship with Masha: <<masha>></a>'
+	if Givi >= 0:pl '<a href="exec:Givi += 10 & dynamic $din_cheat_menu_reputation">Friendship with Givi Karapetovich: <<Givi>></a>'
+	if Ashot >= 0:pl '<a href="exec:Ashot += 10 & dynamic $din_cheat_menu_reputation">Friendship with Ashot: <<Ashot>></a>'
+	if Dmitry >= 0:pl '<a href="exec:Dmitry += 10 & dynamic $din_cheat_menu_reputation">Friendship with Dima: <<Dmitry>></a>'
+	if afra >= 0:pl '<a href="exec:afra += 10 & dynamic $din_cheat_menu_reputation">Friendship with blacks: <<afra>></a>'
 
 	pl ''
 
-	if GorSlut > 0:pl'In the town you are known as <<$gnikname>> (<<GorSlut>>)'
-	if GorSlut = 0:pl'You have a good reputation in the town (0)'
-	if GorSlut ! 1:pl'<a href="exec:GorSlut = 1 & dynamic $din_cheat_menu_reputation">Back reputation "davalka" (1)</a>'
-	if GorSlut ! 2:pl'<a href="exec:GorSlut = 2 & dynamic $din_cheat_menu_reputation">Back reputation "vaflersha" (2)</a>'
-	if GorSlut ! 3:pl'<a href="exec:GorSlut = 3 & dynamic $din_cheat_menu_reputation">Back reputation "Total huesoska" (3)</a>'
-	if GorSlut ! 4:pl'<a href="exec:GorSlut = 4 & dynamic $din_cheat_menu_reputation">Back reputation "Total hole" (4)</a>'
-	if GorSlut ! 5:pl'<a href="exec:GorSlut = 5 & dynamic $din_cheat_menu_reputation">Back reputation "lowered slut" (5)</a>'
-	if GorSlut ! 6:pl'<a href="exec:GorSlut = 6 & dynamic $din_cheat_menu_reputation">Back reputation "prostitute" (6)</a>'
-	if GorSlut > 0:pl'<a href="exec:GorSlut = 0 & dynamic $din_cheat_menu_reputation">Clear reputation in town (0)</a>'
-	if opusk > 0 or sipovka > 0 or rozetka > 0:pl'<a href="exec:opusk = 0 & sipovka = 0 & rozetka = 0 & dynamic $din_cheat_menu_reputation">Clear reputation with Gopnik</a>'
+	if GorSlut > 0:pl 'In the town you are known as <<$gnikname>> (<<GorSlut>>)'
+	if GorSlut = 0:pl 'You have a good reputation in the town (0)'
+	if GorSlut ! 1:pl '<a href="exec:GorSlut = 1 & dynamic $din_cheat_menu_reputation">Back reputation "davalka" (1)</a>'
+	if GorSlut ! 2:pl '<a href="exec:GorSlut = 2 & dynamic $din_cheat_menu_reputation">Back reputation "vaflersha" (2)</a>'
+	if GorSlut ! 3:pl '<a href="exec:GorSlut = 3 & dynamic $din_cheat_menu_reputation">Back reputation "Total huesoska" (3)</a>'
+	if GorSlut ! 4:pl '<a href="exec:GorSlut = 4 & dynamic $din_cheat_menu_reputation">Back reputation "Total hole" (4)</a>'
+	if GorSlut ! 5:pl '<a href="exec:GorSlut = 5 & dynamic $din_cheat_menu_reputation">Back reputation "lowered slut" (5)</a>'
+	if GorSlut ! 6:pl '<a href="exec:GorSlut = 6 & dynamic $din_cheat_menu_reputation">Back reputation "prostitute" (6)</a>'
+	if GorSlut > 0:pl '<a href="exec:GorSlut = 0 & dynamic $din_cheat_menu_reputation">Clear reputation in town (0)</a>'
+	if opusk > 0 or sipovka > 0 or rozetka > 0:pl '<a href="exec:opusk = 0 & sipovka = 0 & rozetka = 0 & dynamic $din_cheat_menu_reputation">Clear reputation with Gopnik</a>'
 }
 
 $din_cheat_menu_documents = {
@@ -610,14 +610,14 @@ $din_cheat_menu_documents = {
 	pl '<center><a href="exec:dynamic $objcheat_menu"><b>cheat menu</b></a></center>'
 	pl ''
 
-	if diplom = 0:pl'<a href="exec:diplom = 1 & dynamic $din_cheat_menu_documents">Get Diploma</a>'
-	if diplom = 1:pl'You already have a diploma'
-	if secrdiplom = 0:pl'<a href="exec:secrdiplom = 1 & dynamic $din_cheat_menu_documents">Get Secretarial Diploma</a>'
-	if secrdiplom = 1:pl'You already have a diploma Secretary'
-	if masash < 10:pl'<a href="exec:masash = 10 & dynamic $din_cheat_menu_documents">Get Certificate Masseur</a>'
-	if masash >= 10:pl'You already have a certificate masseur'
-	if prava = 0:pl'<a href="exec:prava = 1 & dynamic $din_cheat_menu_documents">Get the right</a>'
-	if prava = 1:pl'Do you already have rights'
+	if diplom = 0:pl '<a href="exec:diplom = 1 & dynamic $din_cheat_menu_documents">Get Diploma</a>'
+	if diplom = 1:pl 'You already have a diploma'
+	if secrdiplom = 0:pl '<a href="exec:secrdiplom = 1 & dynamic $din_cheat_menu_documents">Get Secretarial Diploma</a>'
+	if secrdiplom = 1:pl 'You already have a diploma Secretary'
+	if masash < 10:pl '<a href="exec:masash = 10 & dynamic $din_cheat_menu_documents">Get Certificate Masseur</a>'
+	if masash >= 10:pl 'You already have a certificate masseur'
+	if prava = 0:pl '<a href="exec:prava = 1 & dynamic $din_cheat_menu_documents">Get the right</a>'
+	if prava = 1:pl 'Do you already have rights'
 }
 
 $din_cheat_menu_time = {
@@ -677,70 +677,70 @@ $din_cheat_menu_magic = {
 	pl '<a href="exec:magik += 1 & dynamic $din_cheat_menu_magic">is_magical: <<magik>></a>'
 	pl ''
 
-	if spelltuman = 0:pl'<a href="exec:spelltuman = 1 & dynamic $din_cheat_menu_magic">Cover the area fog</a>'
-	if spellklon = 0:pl'<a href="exec:spellklon = 1 & dynamic $din_cheat_menu_magic">Substitute itself clone</a>'
-	if spellstun = 0:pl'<a href="exec:spellstun = 1 & dynamic $din_cheat_menu_magic">paralyze the enemy</a>'
-	if spellweap = 0:pl'<a href="exec:spellweap = 1 & dynamic $din_cheat_menu_magic">Invest in energy weapons (requires weapons)</a>'
-	if spellwind = 0:pl'<a href="exec:spellwind = 1 & dynamic $din_cheat_menu_magic">blow away the fog</a>'
-	if spellklon2 = 0:pl'<a href="exec:spellklon2 = 1 & dynamic $din_cheat_menu_magic">Substitute itself clones (3 pieces)</a>'
-	if spellenergo = 0:pl'<a href="exec:spellenergo = 1 & dynamic $din_cheat_menu_magic">Create weak energy shield</a>'
-	if spellinit = 0:pl'<a href="exec:spellinit = 1 & dynamic $din_cheat_menu_magic">Write a slight deceleration time</a>'
-	if spellhel = 0:pl'<a href="exec:spellhel = 1 & dynamic $din_cheat_menu_magic">Battle Heal</a>'
+	if spelltuman = 0:pl '<a href="exec:spelltuman = 1 & dynamic $din_cheat_menu_magic">Cover the area fog</a>'
+	if spellklon = 0:pl '<a href="exec:spellklon = 1 & dynamic $din_cheat_menu_magic">Substitute itself clone</a>'
+	if spellstun = 0:pl '<a href="exec:spellstun = 1 & dynamic $din_cheat_menu_magic">paralyze the enemy</a>'
+	if spellweap = 0:pl '<a href="exec:spellweap = 1 & dynamic $din_cheat_menu_magic">Invest in energy weapons (requires weapons)</a>'
+	if spellwind = 0:pl '<a href="exec:spellwind = 1 & dynamic $din_cheat_menu_magic">blow away the fog</a>'
+	if spellklon2 = 0:pl '<a href="exec:spellklon2 = 1 & dynamic $din_cheat_menu_magic">Substitute itself clones (3 pieces)</a>'
+	if spellenergo = 0:pl '<a href="exec:spellenergo = 1 & dynamic $din_cheat_menu_magic">Create weak energy shield</a>'
+	if spellinit = 0:pl '<a href="exec:spellinit = 1 & dynamic $din_cheat_menu_magic">Write a slight deceleration time</a>'
+	if spellhel = 0:pl '<a href="exec:spellhel = 1 & dynamic $din_cheat_menu_magic">Battle Heal</a>'
 
 	if spellfire0 = 0 or spellfire2 = 0 or spellfire3 = 0 or spellfire4 = 0 or spellfire5 = 0:
 		pl ''
 		pl '<b>Elements of Fire Spells:</b></a>'
 	end
 
-	if spellfire0 = 0:pl'<a href="exec:spellfire0 = 1 & dynamic $din_cheat_menu_magic">Flame</a>'
-	if spellfire2 = 0:pl'<a href="exec:spellfire2 = 1 & dynamic $din_cheat_menu_magic">The release of fire</a>'
-	if spellfire3 = 0:pl'<a href="exec:spellfire3 = 1 & dynamic $din_cheat_menu_magic">fire barrier</a>'
-	if spellfire4 = 0:pl'<a href="exec:spellfire4 = 1 & dynamic $din_cheat_menu_magic">firestorm</a>'
-	if spellfire5 = 0:pl'<a href="exec:spellfire5 = 1 & dynamic $din_cheat_menu_magic">Flame Shield</a>'
+	if spellfire0 = 0:pl '<a href="exec:spellfire0 = 1 & dynamic $din_cheat_menu_magic">Flame</a>'
+	if spellfire2 = 0:pl '<a href="exec:spellfire2 = 1 & dynamic $din_cheat_menu_magic">The release of fire</a>'
+	if spellfire3 = 0:pl '<a href="exec:spellfire3 = 1 & dynamic $din_cheat_menu_magic">fire barrier</a>'
+	if spellfire4 = 0:pl '<a href="exec:spellfire4 = 1 & dynamic $din_cheat_menu_magic">firestorm</a>'
+	if spellfire5 = 0:pl '<a href="exec:spellfire5 = 1 & dynamic $din_cheat_menu_magic">Flame Shield</a>'
 
 	if spellele0 = 0 or spellele2 = 0 or spellele3 = 0 or spellele4 = 0 or spellele5 = 0:
 		pl ''
 		pl '<b>Elements Lightning Spells:</b></a>'
 	end
 
-	if spellele0 = 0:pl'<a href="exec:spellele0 = 1 & dynamic $din_cheat_menu_magic">discharge</a>'
-	if spellele2 = 0:pl'<a href="exec:spellele2 = 1 & dynamic $din_cheat_menu_magic">lightning</a>'
-	if spellele3 = 0:pl'<a href="exec:spellele3 = 1 & dynamic $din_cheat_menu_magic">electric barrier</a>'
-	if spellele4 = 0:pl'<a href="exec:spellele4 = 1 & dynamic $din_cheat_menu_magic">Dance of thousands of birds</a>'
-	if spellele5 = 0:pl'<a href="exec:spellele5 = 1 & dynamic $din_cheat_menu_magic">dancing sphere</a>'
+	if spellele0 = 0:pl '<a href="exec:spellele0 = 1 & dynamic $din_cheat_menu_magic">discharge</a>'
+	if spellele2 = 0:pl '<a href="exec:spellele2 = 1 & dynamic $din_cheat_menu_magic">lightning</a>'
+	if spellele3 = 0:pl '<a href="exec:spellele3 = 1 & dynamic $din_cheat_menu_magic">electric barrier</a>'
+	if spellele4 = 0:pl '<a href="exec:spellele4 = 1 & dynamic $din_cheat_menu_magic">Dance of thousands of birds</a>'
+	if spellele5 = 0:pl '<a href="exec:spellele5 = 1 & dynamic $din_cheat_menu_magic">dancing sphere</a>'
 
 	if spellert0 = 0 or spellert2 = 0 or spellert3 = 0 or spellert4 = 0 or spellert5 = 0:
 		pl ''
 		pl '<b>Spells Earth Elements:</b></a>'
 	end
 
-	if spellert0 = 0:pl'<a href="exec:spellert0 = 1 & dynamic $din_cheat_menu_magic">quicksand</a>'
-	if spellert2 = 0:pl'<a href="exec:spellert2 = 1 & dynamic $din_cheat_menu_magic">active protection</a>'
-	if spellert3 = 0:pl'<a href="exec:spellert3 = 1 & dynamic $din_cheat_menu_magic">abyss</a>'
-	if spellert4 = 0:pl'<a href="exec:spellert4 = 1 & dynamic $din_cheat_menu_magic">absolute protection</a>'
-	if spellert5 = 0:pl'<a href="exec:spellert5 = 1 & dynamic $din_cheat_menu_magic">Sando</a>'
+	if spellert0 = 0:pl '<a href="exec:spellert0 = 1 & dynamic $din_cheat_menu_magic">quicksand</a>'
+	if spellert2 = 0:pl '<a href="exec:spellert2 = 1 & dynamic $din_cheat_menu_magic">active protection</a>'
+	if spellert3 = 0:pl '<a href="exec:spellert3 = 1 & dynamic $din_cheat_menu_magic">abyss</a>'
+	if spellert4 = 0:pl '<a href="exec:spellert4 = 1 & dynamic $din_cheat_menu_magic">absolute protection</a>'
+	if spellert5 = 0:pl '<a href="exec:spellert5 = 1 & dynamic $din_cheat_menu_magic">Sando</a>'
 
 	if spellwind0 = 0 or spellwind2 = 0 or spellwind3 = 0 or spellwind4 = 0 or spellwind5 = 0:
 		pl ''
 		pl '<b>Spells with wind energy:</b></a>'
 	end
 
-	if spellwind0 = 0:pl'<a href="exec:spellwind0 = 1 & dynamic $din_cheat_menu_magic">wind gust</a>'
-	if spellwind2 = 0:pl'<a href="exec:spellwind2 = 1 & dynamic $din_cheat_menu_magic">terrifying pressure</a>'
-	if spellwind3 = 0:pl'<a href="exec:spellwind3 = 1 & dynamic $din_cheat_menu_magic">vacuum sphere</a>'
-	if spellwind4 = 0:pl'<a href="exec:spellwind4 = 1 & dynamic $din_cheat_menu_magic">vacuum shells</a>'
-	if spellwind5 = 0:pl'<a href="exec:spellwind5 = 1 & dynamic $din_cheat_menu_magic">devouring vacuum</a>'
+	if spellwind0 = 0:pl '<a href="exec:spellwind0 = 1 & dynamic $din_cheat_menu_magic">wind gust</a>'
+	if spellwind2 = 0:pl '<a href="exec:spellwind2 = 1 & dynamic $din_cheat_menu_magic">terrifying pressure</a>'
+	if spellwind3 = 0:pl '<a href="exec:spellwind3 = 1 & dynamic $din_cheat_menu_magic">vacuum sphere</a>'
+	if spellwind4 = 0:pl '<a href="exec:spellwind4 = 1 & dynamic $din_cheat_menu_magic">vacuum shells</a>'
+	if spellwind5 = 0:pl '<a href="exec:spellwind5 = 1 & dynamic $din_cheat_menu_magic">devouring vacuum</a>'
 
 	if spellwater0 = 0 or spellwater2 = 0 or spellwater3 = 0 or spellwater4 = 0 or spellwater5 = 0:
 		pl ''
 		pl '<b>Water Elemental spells:</b></a>'
 	end
 
-	if spellwater0 = 0:pl'<a href="exec:spellwater0 = 1 & dynamic $din_cheat_menu_magic">creek manna</a>'
-	if spellwater2 = 0:pl'<a href="exec:spellwater2 = 1 & dynamic $din_cheat_menu_magic">flooding</a>'
-	if spellwater3 = 0:pl'<a href="exec:spellwater3 = 1 & dynamic $din_cheat_menu_magic">blister</a>'
-	if spellwater4 = 0:pl'<a href="exec:spellwater4 = 1 & dynamic $din_cheat_menu_magic">Water shark missile</a>'
-	if spellwater5 = 0:pl'<a href="exec:spellwater5 = 1 & dynamic $din_cheat_menu_magic">The Great Flood'
+	if spellwater0 = 0:pl '<a href="exec:spellwater0 = 1 & dynamic $din_cheat_menu_magic">creek manna</a>'
+	if spellwater2 = 0:pl '<a href="exec:spellwater2 = 1 & dynamic $din_cheat_menu_magic">flooding</a>'
+	if spellwater3 = 0:pl '<a href="exec:spellwater3 = 1 & dynamic $din_cheat_menu_magic">blister</a>'
+	if spellwater4 = 0:pl '<a href="exec:spellwater4 = 1 & dynamic $din_cheat_menu_magic">Water shark missile</a>'
+	if spellwater5 = 0:pl '<a href="exec:spellwater5 = 1 & dynamic $din_cheat_menu_magic">The Great Flood'
 }
 
 $din_cheat_dynamic = {
@@ -752,7 +752,7 @@ $din_cheat_dynamic = {
 $objcheat_menu = {
 	gs 'stat'
 	clr
-	pl '<center><a href="exec:gs''stat''"><b>Get out of the cheat menu</b></a></center>'
+	pl '<center><a href="exec:gs ''stat''"><b>Get out of the cheat menu</b></a></center>'
 	pl ''
 	pl '<a href="exec:dynamic $din_cheat_menu_permanent"><b>permanent</b></a>'
 	pl '<a href="exec:dynamic $din_cheat_menu_look"><b>Appearance</b></a>'
@@ -761,7 +761,7 @@ $objcheat_menu = {
 	pl '<a href="exec:dynamic $din_cheat_menu_documents"><b>documents</b></a>'
 	pl '<a href="exec:dynamic $din_cheat_menu_time"><b>manipulation of time</b></a>'
 
-	if StoryLine = 0:pl'<a href="exec:dynamic $din_cheat_menu_magic"><b>Magic</b></a>'
+	if StoryLine = 0:pl '<a href="exec:dynamic $din_cheat_menu_magic"><b>Magic</b></a>'
 
 	pl ''
 	pl '<a href="exec:health = vital * 10 + stren * 5 + 1000 & willpower = intel * 5 + will * 5 + 1000 & manna = (intel * magik) + magik * 100 + vital * 10 + rikudo & dynamic $objcheat_menu">Complete recovery, manna, reason.</a>'
@@ -837,20 +837,24 @@ $objbody = {
 		if bedra >= 120:view 'images/body/fit7.jpg'
 	else
 		!!bold type
-		if bedra < 60:view 'images/body/fat.jpg'
-		if bedra >= 60 and bedra < 65:view 'images/body/fat1.jpg'
-		if bedra >= 65 and bedra < 70:view 'images/body/fat2.jpg'
-		if bedra >= 70 and bedra < 75:view 'images/body/fat3.jpg'
-		if bedra >= 75 and bedra < 80:view 'images/body/fat4.jpg'
-		if bedra >= 80 and bedra < 85:view 'images/body/fat5.jpg'
-		if bedra >= 85 and bedra < 90:view 'images/body/fat6.jpg'
-		if bedra >= 90 and bedra < 95:view 'images/body/fat7.jpg'
-		if bedra >= 95 and bedra < 100:view 'images/body/fat8.jpg'
-		if bedra >= 100 and bedra < 105:view 'images/body/fat9.jpg'
-		if bedra >= 105 and bedra < 110:view 'images/body/fat10.jpg'
-		if bedra >= 110 and bedra < 115:view 'images/body/fat11.jpg'
-		if bedra >= 115 and bedra < 120:view 'images/body/fat12.jpg'
-		if bedra >= 120:view 'images/body/fat13.jpg'
+		! Updated to be consistent with current images 
+		if bedra < 60:
+			view 'images/body/fat.jpg'
+		elseif bedra < 70:
+			view 'images/body/fat1.jpg'
+		elseif bedra < 80:
+			view 'images/body/fat2.jpg'
+		elseif bedra < 90:
+			view 'images/body/fat3.jpg'
+		elseif bedra < 100:
+			view 'images/body/fat4.jpg'
+		elseif bedra < 110:
+			view 'images/body/fat5.jpg'
+		elseif bedra < 120:
+			view 'images/body/fat6.jpg'
+		else
+			view 'images/body/fat7.jpg'
+		end
 	end
 }
 
@@ -944,18 +948,18 @@ $objbloknot = {
 	pl '<center><b><font color="maroon">Diary</font></b></center>'
 	if housr > 0:pl 'I live in a two-room apartment in a residential area. Payment for the apartment is taken automatically in the amount of 3,000 rubles each 25e number. Plus a light bill.' & nl
 	if work > 0 or stripwork > 0 or workPTU > 2:pl '<center><font color="maroon">-- My Job --</font></center>'
-	if workPTU > 2:pl'I work as a teacher in the Lyceum. Working days Mon-Sat from 14.00 to 16.00. Salary 300 rubles / day. Dress code - office, strict. The road from the apartment to the Lyceum takes 2 hours and 10 minutes.' & nl
-	if (work = 1 or cheatWork = 1) and workKafe > 0:pl'I work as a waitress in a cafe. Need to come to work with 11 to 12 working days, Tuesday, Wednesday, Thursday. At work every day you get tips from customers and automatically transferred to the 25th salary number.' & nl
-	if (work = 1 or cheatWork = 1) and workhosp > 0:pl'I work as a nurse in the clinic. Need to come to work from 8 to 9 on weekdays. Salary is automatically transferred to the 25th number.' & nl
-	if (work = 1 or cheatWork = 1) and worksalon > 0:pl'I work as a masseuse in the cabin. Need to come to work from 9 to 10 working days, Monday, Wednesday and Friday. Salary is automatically transferred to the 25th number.' & nl
-	if (work = 1 or cheatWork = 1) and workhosp > 0:pl'I work as a secretary in the office. Need to come to work until 9 on weekdays. Salary is automatically transferred to the 25th number.' & nl
-	if (work = 1 or cheatWork = 1) and tanwork > 0:pl'I work as a governess at Tani. Salary is automatically transferred to the 25th number.' & nl
-	if (work = 1 or cheatWork = 1) and young_shop_work = 1:pl'I work in a store saleswoman Keys Pussy. Need to come to work in 15 workdays all except Saturday and Sunday. Salary is issued once a week on Fridays.' & nl
+	if workPTU > 2:pl 'I work as a teacher in the Lyceum. Working days Mon-Sat from 14.00 to 16.00. Salary 300 rubles / day. Dress code - office, strict. The road from the apartment to the Lyceum takes 2 hours and 10 minutes.' & nl
+	if (work = 1 or cheatWork = 1) and workKafe > 0:pl 'I work as a waitress in a cafe. Need to come to work with 11 to 12 working days, Tuesday, Wednesday, Thursday. At work every day you get tips from customers and automatically transferred to the 25th salary number.' & nl
+	if (work = 1 or cheatWork = 1) and workhosp > 0:pl 'I work as a nurse in the clinic. Need to come to work from 8 to 9 on weekdays. Salary is automatically transferred to the 25th number.' & nl
+	if (work = 1 or cheatWork = 1) and worksalon > 0:pl 'I work as a masseuse in the cabin. Need to come to work from 9 to 10 working days, Monday, Wednesday and Friday. Salary is automatically transferred to the 25th number.' & nl
+	if (work = 1 or cheatWork = 1) and workhosp > 0:pl 'I work as a secretary in the office. Need to come to work until 9 on weekdays. Salary is automatically transferred to the 25th number.' & nl
+	if (work = 1 or cheatWork = 1) and tanwork > 0:pl 'I work as a governess at Tani. Salary is automatically transferred to the 25th number.' & nl
+	if (work = 1 or cheatWork = 1) and young_shop_work = 1:pl 'I work in a store saleswoman Keys Pussy. Need to come to work in 15 workdays all except Saturday and Sunday. Salary is issued once a week on Fridays.' & nl
 
 	if workrin = 1:pl 'I work in a tent on the market Arthur clothing saleswoman. Work on Tuesdays, Thursdays and Saturdays, come at 8 o´clock. Salary depends on the sales.' & nl
 	if stripwork >= 1:pl 'I work as a stripper, schedule a free, on any day from 15 up to 2 nights. Salary only tip.' & nl
-	if bumtolik = 4:pl'Service for the Homeless is located in the Northern Region.' & nl
-	if bumtolik = 5:pl'You volunteer to help the homeless service. Office hours 9 prior_to 17, Weekend Saturday and Sunday.' & nl
+	if bumtolik = 4:pl 'Service for the Homeless is located in the Northern Region.' & nl
+	if bumtolik = 5:pl 'You volunteer to help the homeless service. Office hours 9 prior_to 17, Weekend Saturday and Sunday.' & nl
 
 	if husband > 0 or kid > 0 :'<center><font color="maroon">-- My Family --</font></center>'
 	if husband > 0:pl 'I ve been married for <<husbanday>> days. My husband <<$husName>> <<$husBody>> <<$husFat>> <<$husHair>>. Member <<husDick>> Relationships <<husband>>' & nl

+ 1 - 1
locations/park

@@ -268,7 +268,7 @@ if $ARGS[0] = 'luna':
 				'You paid 50 rubles and sat in the carousel.'
 				'You have a great ride, already dazzled.'
 
-				act 'move_away':gt'park','luna'
+				act 'move_away':gt 'park','luna'
 			end
 		end
 

+ 10 - 5
locations/party

@@ -196,7 +196,8 @@ if $ARGS[0] = 'result8':
 
 		if vikasex = 0:vikasex = 1 & sexf += 1
 
-		'<center><img src="images/picvag/tri.jpg"></center>'
+		! Fix missing Image ".../picvag/tri.jpg"
+		'<center><img src="images/picVA/tri.jpg"></center>'
 		'You kiss and fondle breasts Vicki, she is very excited and you have decided to give her to lick your pussy.'
 
 		if horny < 100:'You started to get tired of licking and wanted to continue'
@@ -207,14 +208,16 @@ if $ARGS[0] = 'result8':
 		act 'Watch':
 			cla
 			*clr
-			'<center><img src="images/picvag/tri4.jpg"></center>'
+			! Fix missing Image ".../picvag/tri4.jpg"
+			'<center><img src="images/picVA/tri4.jpg"></center>'
 			'Vick guy cums in her mouth. Vicki peremazanny lips in semen and it stretches to you that would have kissed her.'
 
 			act 'Kissing with Vika':
 				cla
 				*clr
 				cumlip += 1
-				'<center><img src="images/picvag/tri3.jpg"></center>'
+				! Fix missing Image ".../picvag/tri3.jpg"
+				'<center><img src="images/picVA/tri3.jpg"></center>'
 				'You''re kissing licking each other''s cum.'
 
 				act 'Leave':gt 'Loka'
@@ -227,14 +230,16 @@ if $ARGS[0] = 'result8':
 			sexm += 1
 			oral += 1
 			cumface += 1
-			'<center><img src="images/picvag/tri2.jpg"></center>'
+			! Fix missing Image ".../picvag/tri2.jpg"
+			'<center><img src="images/picVA/tri2.jpg"></center>'
 			'You fucked by dick together with Vika finally ends Perrin you on the face.'
 
 			act 'Kissing with Vika':
 				cla
 				*clr
 				cumlip += 1
-				'<center><img src="images/picvag/tri3.jpg"></center>'
+				! Fix missing Image ".../picvag/tri3.jpg"
+				'<center><img src="images/picVA/tri3.jpg"></center>'
 				'You''re kissing licking each other''s cum.'
 
 				act 'Leave':gt 'Loka'

+ 1 - 1
locations/placer_gop_orgy

@@ -40,7 +40,7 @@ act 'further':
 
 	gs 'stat'
 
-	if ciklkm > 0:jump'markgopgang'
+	if ciklkm > 0:jump 'markgopgang'
 
 	'The guys finally emptied their sperm reserves and continued to thump you interested in stopping.'
 

+ 1 - 1
locations/placer_gskver

@@ -18,7 +18,7 @@ elseif encounter = 1:
 	if encrand = 1 and cloth_vid = 1:
 		$textEvent='In a park on the sidewalk walking a lonely old man with a newspaper in his hand. The old man came up to you and said: "Look, young lady, I have something for you-whats is"'
 
-		act 'see':gt'parkBimbo','pos1'
+		act 'see':gt 'parkBimbo','pos1'
 	end
 
 	if encrand = 2:$textEvent = 'In the park on the sidewalk is a woman with shopping bags who decided to shorten the path passing through the square.'

+ 1 - 1
locations/placer_sex

@@ -37,7 +37,7 @@ elseif dormrape = 1:
 
 	gs 'stat'
 
-	if ciklkm > 0:jump'markdormrape'
+	if ciklkm > 0:jump 'markdormrape'
 
 	'Finally it''s all over, guys got dressed and left the room. You sluggishly began to brush up.'
 

+ 1 - 1
locations/podval_rape

@@ -38,7 +38,7 @@ elseif podvalrape = 1:
 
 	gs 'stat'
 
-	if ciklkm > 0:jump'markpodvalrape'
+	if ciklkm > 0:jump 'markpodvalrape'
 
 	'Finally it''s all over, guys got dressed and went out of the cellar.'
 

+ 9 - 4
locations/poli

@@ -232,7 +232,8 @@ if $ARGS[0] = 'start':
 				if abortrand >= 5:preg = 2
 			end
 
-			'<center><img src="images/etogame/abort.jpg"></center>'
+			! Fix missing Image ".../etogame/abort.jpg"
+			'<center><img src="images/add-on/abort.jpg"></center>'
 			'You spread out on a gynecological chair, the doctor entered your vagina tool and parts ripped out of you fruit.'
 
 			act 'Leave':gt 'poli', 'start'
@@ -255,7 +256,9 @@ if $ARGS[0] = 'start':
 			haprikid[numkid] = rand(0, 3)
 			glacol[numkid] = rand(0, 3)
 
-			!!'<center><img src="images/etogame/abort.jpg"></center>'
+
+			! Fix missing Image ".../etogame/abort.jpg"
+			!!'<center><img src="images/add-on/abort.jpg"></center>'
 			'You put on the bed and lit up. Began a terrible pain in the abdomen, you yelled with all the dope and finally gave birth.'
 			polkid[numkid] = rand(0, 1)
 
@@ -434,7 +437,8 @@ if $ARGS[0] = 'drPP':
 	act 'Login to Account':
 		cla
 		*clr
-		'<center><img src="images/add-on/drPP.jpg"></center>'
+		! Fix missing Image ".../add-on/drPP.jpg" use place holder
+		'<center><img src="images/etogame/poli.jpg"></center>'
 
 		if drPP = 0:'At the table sits an elderly bald man felicitous appearance. "Hello, sick. My name is Peter, I am your local therapist - he says, looking at you through his glasses."'
 		if drPP = 1:'Sit at the table Peter. He smiles at you and says, "Hello, sick."'
@@ -455,7 +459,8 @@ if $ARGS[0] = 'drPP':
 			act 'Follow the instructions of the doctor':
 				cla
 				minut += 20
-				'<center><img src="images/inBed/ninel03"></center>'
+				! Fix Missing Image ".../images/inBed/ninel03"
+				'<center><img src="images/inBed/ninel03.jpg"></center>'
 				'The doctor listened attentively your lungs, looked into his throat, gave a thermometer - to measure the temperature and finally concluded:'
 				'(Doctor) - Do not worry - common cold - SARS. Buy in a drugstore here these drugs, lie in bed a couple of days and everything will be alright. The main thing - do not supercool.'
 				'(You) - Thank you, Doctor. Goodbye.'

+ 4 - 2
locations/pornstudio

@@ -6,7 +6,8 @@ if $ARGS[0] = 'start':
 	*clr
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/studia/studiа_0.jpg"></center>'
+	! Fix missing Image ".../studia/studiа_0.jpg" Cyrillic characters
+	'<center><img src="images/studia/studia_0.jpg"></center>'
 
 	act 'Leave':gt 'down'
 
@@ -177,7 +178,8 @@ if $ARGS[0] = 'manager':
 	*clr
 	minut += 5
 	gs 'stat'
-	'<center><img src="images/studia/studiа_0.jpg"></center>'
+	! Fix missing Image ".../studia/studiа_0.jpg" Cyrillic characters
+	'<center><img src="images/studia/studia_0.jpg"></center>'
 	'Boss porn studio met you welcome and gestured you sit on the couch.'
 
 	if pfilmNO = 1:

+ 1 - 1
locations/portmirror

@@ -2,7 +2,7 @@
 $portmirror = {
 	cla
 	*clr
-	'<center><img src="' + FUNC('$face_image') + '"></center>'
+	'<center><img src="<<FUNC('$face_image')>>"></center>'
 	'<<$hair>> <<$mop>> <<$skin>> <<$vnesh>>'
 	if daystart < 10 and StoryLine = 0:'In the mirror, you looked quite strange woman''s face which is exactly copied all your actions. You hardly get to accept the idea that it is now is you.'
 	if daystart >= 10 and daystart < 30 and StoryLine = 0:'From the mirror looks at you a woman''s face, to which you have become accustomed to, but sometimes, no, no and yes flash the idea that it is not your face.'

+ 9 - 9
locations/ratinglist

@@ -524,7 +524,7 @@ if rating[num] = 2:$rat2 += $npc[num] + ''
 if rating[num] = 1:$rat1 += $npc[num] + ''
 if rating[num] = 0:$rat0 += $npc[num] + ''
 if rating[num] < 0:$ratMin += $npc[num] + ''
-if num < NPCnum:jump'markratingwrite'
+if num < NPCnum:jump 'markratingwrite'
 if $ratMax!'':'<<$ratMax>>'
 if $rat100!'':'<<$rat100>>'
 if $rat99!'':'<<$rat99>>'
@@ -657,8 +657,8 @@ act '<center><b>randomly fight</b></center>':
 	x += 1
 	turnirFighter[x] = rand(2, NPCnum)
 
-	if x < 2:jump'markturnirotbor'
-	if turnirFighter[1] = turnirFighter[2]:jump'markturnirotbor2'
+	if x < 2:jump 'markturnirotbor'
+	if turnirFighter[1] = turnirFighter[2]:jump 'markturnirotbor2'
 
 	a = turnirFighter[1]
 	i = turnirFighter[2]
@@ -679,8 +679,8 @@ act '<center><b>randomly 4 battlefield</b></center>':
 	x += 1
 	turnirFighter[x] = rand(2, NPCnum)
 
-	if x < 2:jump'markturnirotbor'
-	if turnirFighter[1] = turnirFighter[2]:jump'markturnirotbor2'
+	if x < 2:jump 'markturnirotbor'
+	if turnirFighter[1] = turnirFighter[2]:jump 'markturnirotbor2'
 
 	a = turnirFighter[1]
 	i = turnirFighter[2]
@@ -688,7 +688,7 @@ act '<center><b>randomly 4 battlefield</b></center>':
 	turnirFighter[1] = 0
 	turnirFighter[2] = 0
 
-	if y < 4:jump'markmonthfight1'
+	if y < 4:jump 'markmonthfight1'
 
 	act 'further':gt $curloc
 end
@@ -704,8 +704,8 @@ act '<center><b>randomly 10 fights</b></center>':
 	x += 1
 	turnirFighter[x] = rand(2, NPCnum)
 
-	if x < 2:jump'markturnirotborsss'
-	if turnirFighter[1] = turnirFighter[2]:jump'markturnirotborss'
+	if x < 2:jump 'markturnirotborsss'
+	if turnirFighter[1] = turnirFighter[2]:jump 'markturnirotborss'
 
 	a = turnirFighter[1]
 	i = turnirFighter[2]
@@ -713,7 +713,7 @@ act '<center><b>randomly 10 fights</b></center>':
 	turnirFighter[1] = 0
 	turnirFighter[2] = 0
 
-	if y < 10:jump'markmonthfights'
+	if y < 10:jump 'markmonthfights'
 
 	act 'further':gt $curloc
 end

+ 5 - 5
locations/salon

@@ -25,7 +25,7 @@ if $ARGS[0] = 'start':
 				hcol = 0
 
 				if salonrand = 0 and masha = 0:gt 'salon','0'
-				gs'stat'
+				gs 'stat'
 				'Do you dye your hair.'
 				act 'Leave':gt 'salon', 'start'
 			end
@@ -38,7 +38,7 @@ if $ARGS[0] = 'start':
 				hcol = 1
 
 				if salonrand = 0 and masha = 0:gt 'salon','0'
-				gs'stat'
+				gs 'stat'
 				'Do you dye your hair.'
 				act 'Leave':gt 'salon', 'start'
 			end
@@ -51,7 +51,7 @@ if $ARGS[0] = 'start':
 				hcol = 2
 
 				if salonrand = 0 and masha = 0:gt 'salon','0'
-				gs'stat'
+				gs 'stat'
 				'Do you dye your hair.'
 				act 'Leave':gt 'salon', 'start'
 			end
@@ -64,7 +64,7 @@ if $ARGS[0] = 'start':
 				hcol = 3
 
 				if salonrand = 0 and masha = 0:gt 'salon','0'
-				gs'stat'
+				gs 'stat'
 				'Do you dye your hair.'
 
 				act 'Leave':gt 'salon', 'start'
@@ -741,7 +741,7 @@ if $ARGS[0] = 'start':
 		browper = 1
 		gs 'stat'
 		'You have made a permanent tattoo eyebrows.'
-		act 'Leave':gt'salon','start'
+		act 'Leave':gt 'salon','start'
 	}
 
 	$sexloc = $CURLOC

+ 17 - 4
locations/seeporn

@@ -50,6 +50,7 @@ act 'watch':
 					cls
 					dom += 1
 					gs 'stat'
+					! Missing Image
 					!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 					'You indignantly rejected the proposal boys.'
 
@@ -76,7 +77,9 @@ act 'watch':
 				!!brotherrand = rand(3, 10)
 
 				if boyseeporn < 2:
-					'<center><img src="images/qwest/alter/ev2/seepornHJ.jpg"></center>'
+					! Use Gif
+					! '<center><img src="images/qwest/alter/ev2/seepornHJ.jpg"></center>'
+					'<center><img src="images/qwest/alter/ev2/seeporn.hand1,<<rand(0,2)>>.gif"></center>'
 					'You glide skin on both members of their handles, Zhendos rapidly groaned and of its members flew jet of sperm on your foot, immediately joined by Mishan and also finished on your foot.'
 
 					act 'vozmuschatsya':
@@ -91,7 +94,9 @@ act 'watch':
 				elseif boyseeporn >= 2:
 					bj += 1
 					evgenQW = 4
-					'<center><img src="images/qwest/alter/ev2/seepornfirst.jpg"></center>'
+					! Use Gif
+					! '<center><img src="images/qwest/alter/ev2/seepornfirst.jpg"></center>'
+					'<center><img src="images/qwest/alter/ev2/seepornbro0,<<rand(0,2)>>.gif"></center>'
 					'You glide skin on both members of their handles, your brother Kolka broke down and with a strangled groan. You have eyes widened by this turn of events. Zhendos rapidly groaned and of its members flew jet of sperm on your foot, immediately joined by Mishan and also finished on your foot.'
 
 					act 'Continue':
@@ -115,6 +120,7 @@ act 'watch':
 						cls
 						dom += 1
 						gs 'stat'
+						! Missing Image
 						!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 						'You angrily removes his hands and yelling angrily at the boys.'
 
@@ -145,7 +151,9 @@ act 'watch':
 
 						evgenQW = 3
 						gs 'stat'
-						'<center><img src="images/qwest/alter/ev2/seepornHJ.jpg"></center>'
+						! Use Gif
+						! '<center><img src="images/qwest/alter/ev2/seepornHJ.jpg"></center>'
+						'<center><img src="images/qwest/alter/ev2/seeporn.hand1,<<rand(0,2)>>.gif"></center>'
 						'You glide skin on both members of their handles, Zhendos rapidly groaned and of its members flew jet of sperm on your foot, immediately joined by Mishan and also finished on your foot.'
 
 						act 'vozmuschatsya':
@@ -163,6 +171,7 @@ act 'watch':
 						cls
 						dom += 1
 						gs 'stat'
+						! Missing Image
 						!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 						'You angrily removes his hands and yelling angrily at the boys.'
 
@@ -183,6 +192,7 @@ act 'watch':
 					cls
 					dom += 1
 					gs 'stat'
+					! Missing Image
 					!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 					'You angrily removes his hands from his priests Zhendosa.'
 
@@ -194,7 +204,8 @@ act 'watch':
 					sub += 1
 					evgenqw = 2
 					gs 'stat'
-					!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
+					! Fix Missing Image ".../qwest/alter/ev2/seepornHand.jpg" 
+					'<center><img src="images/qwest/alter/ev2/seeporn.jpg"></center>'
 					'You sit on the couch red as a lobster enjoying a nice touch to his priest.'
 
 					act 'Leave':gt 'gorodok'
@@ -212,6 +223,7 @@ act 'watch':
 					cls
 					dom += 1
 					gs 'stat'
+					! Missing Image
 					!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 					'You sent Zhendosa on dick with such conversations.'
 
@@ -223,6 +235,7 @@ act 'watch':
 					sub += 1
 					evgenQW = 1
 					gs 'stat'
+					! Missing Image
 					!!'<center><img src="images/qwest/alter/ev2/seepornHand.jpg"></center>'
 					'You swallowed and said nothing eyeing porn. Mishan chuckled "And she asks how flushed. It turns out the girls also like porn."'
 

+ 8 - 7
locations/sexshop

@@ -106,6 +106,7 @@ if $ARGS[0] = 'start':
 								act '......':
 									cla
 									*clr
+									! Fix missing Image ".../studia/dvd-disс.jpg" Cyrillic?
 									'<center><img src="images/studia/dvd-disс.jpg"></center>'
 									'Then on what I make money.'
 
@@ -176,7 +177,7 @@ if $ARGS[0] = 'start':
 			gs 'stat'
 			'You bought a porn magazine and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -204,7 +205,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 15cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -218,7 +219,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 20cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -232,7 +233,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 25cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -246,7 +247,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 30cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -260,7 +261,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 35cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 
@@ -274,7 +275,7 @@ if $ARGS[0] = 'start':
 			'<center><img src="images/etogame/kassa.jpg" ></center>'
 			'You bought a 40cm long dildo and paid the cashier.'
 
-			act 'Move away from the counter':gt'sexshop','start'
+			act 'Move away from the counter':gt 'sexshop','start'
 		end
 	end
 

+ 20 - 20
locations/sister

@@ -16,7 +16,7 @@ if $clothingworntype = 'nude':
 	if sisterLesb = 0:
 		'Sister looks at you eyes wide "<<$name>>, Here is the number of, Are not you ashamed to go naked? I do not smoglab.'
 	else
-		'Sister looks at you eyes wide "<<$name>>, you`re so liberated... I do not smoglab.'
+		'Sister looks at you eyes wide "<<$name>>, you''re so liberated... I do not smoglab.'
 	end
 end
 	
@@ -24,13 +24,13 @@ if pirsA >= 1 and pirsAsister = 0 and sisterpirsadaytalk ! daystart:
 	sisterrpirsadaytalk = daystart
 	if rand(1,100) >= 75:
 		'Sister looks you in the mouth: "<<$name>>, and what have you got there in the language?"'
-		act'Nothing':
+		act 'Nothing':
 			cla
 			'You shake your head. "Nothing." And then turn away, so that your sister did not see your pierced tongue.'
 			act 'Move away':gt $loc, $metka
 		end
 		
-		act'Show pierced tongue':
+		act 'Show pierced tongue':
 			cls
 			pirsAsister = 1
 			gs 'stat'
@@ -46,7 +46,7 @@ end
 if pirsB = 1 and pirsBsister = 0 and sisterpirsbdaytalk ! daystart:
 	sisterpirsadbytalk = daystart
 	'Sister looks at your lips, which appeared piercing: "Listen, and good vyshlyadit, I like!"'
-	act'Thank you':
+	act 'Thank you':
 		cls
 		pirsBsister = 1
 		gs 'stat'
@@ -64,7 +64,7 @@ end
 
 if pirsD = 1 and pirsDsister = 0:
 	pirsDsister = 1
-	'Sister looks a bit shocked at your nose ring: "Phew, Sveta, it`s that in the muck?"'
+	'Sister looks a bit shocked at your nose ring: "Phew, Sveta, it''s that in the muck?"'
 end
 
 if pirsE = 1 and pirsEsister=0:
@@ -123,8 +123,8 @@ if $ARGS[0] = 'home':
 		minut += 5
 		gs 'stat'
 		'<center><img src="images/qwest/alter/sisterQW/sisboyQW_24.jpg"></center>'
-		'You`re both embarrassed after what happened the night, and do not look into each other`s eyes, all-Anja still speaks with you:'
-		'-Sveta, smile tells you, Well, you`re a fool, I thought guys like me, and it is much more pleasant to handle your men.'
+		'You''re both embarrassed after what happened the night, and do not look into each other''s eyes, all-Anja still speaks with you:'
+		'-Sveta, smile tells you, Well, you''re a fool, I thought guys like me, and it is much more pleasant to handle your men.'
 		'You look at the blushing Anja, - Forgive me, I strongly started up, and does not control themselves, I do not know what came over me...'
 		'-Well, I do not mind, so you sometimes so lost control of himself..., He smiled slyly, You smiled at her...'
 
@@ -141,7 +141,7 @@ if $ARGS[0] = 'home':
 		'<center><b><font color = maroon>Anya</font></b></center>'
 		'<center><img src="images/qwest/alter/sobir.jpg"></center>'
 		'As the room goes, I am going to work, your sister Anja.'
-		'Anja, without turning to you, speaks: "Sveta, I`m so late, do not distract!"'
+		'Anja, without turning to you, speaks: "Sveta, I''m so late, do not distract!"'
 		act 'Move away':gt $loc, $metka
 		exit
 	end
@@ -203,21 +203,21 @@ if $ARGS[0] = 'home':
 					'You started talking with Anja, It tells you about the boys she met, about parties, about cosmetics.'
 				end
 			end
-			if sistalkrand = 1:'You`re talking and gossiping with your sister, She tells you about the new dress, which was brought to the store today.'
-			if sistalkrand = 2:'You`re talking and gossiping with your sister, you discuss with movie stars, and share your fantasies with any of them want to have sex.'
+			if sistalkrand = 1:'You''re talking and gossiping with your sister, She tells you about the new dress, which was brought to the store today.'
+			if sistalkrand = 2:'You''re talking and gossiping with your sister, you discuss with movie stars, and share your fantasies with any of them want to have sex.'
 			if sistalkrand = 3:'Anja talks about sports clubs in the House of Culture, and recognizes that sport is good for the figure, but she was too lazy to go there.'
 			if sistalkrand = 4:'Anja says that one of her friends flew from a guy who does not have time to get out of it. And he says, that we should be smarter, and recognizes that you buy at the pharmacy birth control.'
-			if sistalkrand = 5:'You`re talking and gossiping with your sister, she says, that it is possible to rent an apartment in the city and live and work there, but her while in town are satisfied.'
+			if sistalkrand = 5:'You''re talking and gossiping with your sister, she says, that it is possible to rent an apartment in the city and live and work there, but her while in town are satisfied.'
 			if sistalkrand = 6:'Anja tells you not to get drunk at parties and at the disco, Once she made that mistake and still regrets.'
 			if sistalkrand = 7:'Anja tells how she once winter came out without a coat and a bad cold.'
-			if sistalkrand = 8:'You`re talking and gossiping with your sister, you and discuss the latest trends in fashion.'
+			if sistalkrand = 8:'You''re talking and gossiping with your sister, you and discuss the latest trends in fashion.'
 			if sistalkrand = 9:'Anja recognized, before that she was fond of diets, but they deteriorated skin and went pryshi, yes match start, now she cracks for three and only become more beautiful.'
-			if sistalkrand = 10:'You`re talking and gossiping with your sister, She says that she used to go to the dance, but she quickly tired.'
-			if sistalkrand = 11:'You`re talking and gossiping with your sister, she advises you where-some earn.'
+			if sistalkrand = 10:'You''re talking and gossiping with your sister, She says that she used to go to the dance, but she quickly tired.'
+			if sistalkrand = 11:'You''re talking and gossiping with your sister, she advises you where-some earn.'
 			if sistalkrand = 12:'Anja shares with you a secret and tells, that her friend filmed naked in a photo studio, Easy Money, but can be seen on the Internet.'
-			if sistalkrand = 13:'You`re talking and gossiping with your sister, it tells you, if wander through the market, there you can find a lot of interesting and cheap.'
+			if sistalkrand = 13:'You''re talking and gossiping with your sister, it tells you, if wander through the market, there you can find a lot of interesting and cheap.'
 			if sistalkrand = 14:'Anja tells a horror story about how a nice girl not washed or shaved legs, then began to so many terrible, its per kilometer all obbegat, and advises you to take care of body.'
-			if sistalkrand = 15:'You`re talking and gossiping with your sister, she says, that her ex-boyfriend was a weirdo. As-told me: "I love you as much, how to shit in the sea". The sea together we walked no more.'
+			if sistalkrand = 15:'You''re talking and gossiping with your sister, she says, that her ex-boyfriend was a weirdo. As-told me: "I love you as much, how to shit in the sea". The sea together we walked no more.'
 			if sistalkrand = 16:'Sister complains about you: "Always bothered you,looks like my chin during sex. And now rejoice, If you see a porn actress folds on the neck or chin."'
 			if sistalkrand = 17:'Anja asks you, do not you think, that her left eyebrow much sexual rights?'
 			if sistalkrand = 18:'Anja recognizes you, that they are with friends at work sometimes make intimate pictures on the camera, and put them back in the window.'
@@ -354,7 +354,7 @@ if $ARGS[0] = 'home':
 				'<center><b><font color = maroon>Anja</font></b></center>'
 				'<center><img src="images/qwest/alter/sisterQW/sisboyQW_09.jpg"></center>'
 				'-The last time you have with Roma so much was saved, thank you very much.'
-				'-You`re welcome, I am always very happy to help the beloved sister and see you happy.'
+				'-You''re welcome, I am always very happy to help the beloved sister and see you happy.'
 				'-We are here again today want to sit by me, you do not mind a walk for an hour?'
 
 				act 'Of course':
@@ -368,7 +368,7 @@ if $ARGS[0] = 'home':
 
 					'<center><img src="images/qwest/alter/sisterQW/sisboyQW_03.jpg"></center>'
 					'-Certainly sister, i understand, I will walk until late, just do not make noise loud, You do not want to destroy the psyche of our brother, hee-hee.'
-					'-You`re my best", your sister with a cry of joy hugs you.'
+					'-You''re my best", your sister with a cry of joy hugs you.'
 
 					act 'Finish':gt 'sister', 'home'
 				end
@@ -395,7 +395,7 @@ if $ARGS[0] = 'home':
 					'- Generally, mmm... We want, to you ' + iif(sisboyday = daystart, 'tomorrow', 'this') + ' evening we were joined by.'
 				else
 					'- Hello World! Well, you liked it last time? We have a very Roma.'
-					'You do not say anything and just smiles slyly watching his sister`s eyes.'
+					'You do not say anything and just smiles slyly watching his sister''s eyes.'
 					'- We want ' + iif(sisboyday = daystart, 'tomorrow', 'this') + ' evening repeat our games, if you do not mind?'
 				end
 				
@@ -443,7 +443,7 @@ if $ARGS[0] = 'home':
 				if temp = 5:'Anja embarrassed complains you, Roma that sometimes comes to her work and drags her into the back room.'
 				if temp = 6:'Anja in detail with enthusiasm tells you about the great virtue Roma, and if it is not, they would have long since parted.'
 				if temp = 7:'Anja shares with you a secret, that her favorite position "horsewoman", and Romke likes to have her cancer.'
-				if temp = 8:'You`re talking to my sister on a very frank things, and she says shyly, that she does not like to swallow cum, but it Roma strong winds, and she was ready for him to swallow.'
+				if temp = 8:'You''re talking to my sister on a very frank things, and she says shyly, that she does not like to swallow cum, but it Roma strong winds, and she was ready for him to swallow.'
 				if temp = 9:'Anja long talks about their company, about Romkinyh friends, and asks you if you wanted to whom any of them meet.'
 				if temp = 10:'Anja says, what you liked Roma, and asks if he likes you.'
 

+ 18 - 18
locations/sisterQW

@@ -70,7 +70,7 @@ if $ARGS[0] = 'sisboyQW_bedroom':
 					'You got curious and decided to overcome his strong excitation, to spy a little more.'
 					'Roma wound roughly turned Anja, and bit his lips between her legs, Anja began to moan and squirm slightly.'
 					'But the guy kept, strongly clenching ass sister, from time to time peeping at her from below.'
-					'-How did it well, I`d like to be in her place, you think to yourself enjoying painting.'
+					'-How did it well, I''d like to be in her place, you think to yourself enjoying painting.'
 
 					act 'Continue to watch':
 						cls
@@ -133,7 +133,7 @@ if $ARGS[0] = 'sisboyQW_bedroom':
 						'Open the door, your ears pierced tight wild sounds of passion sisters and Roma.'
 						'Anja bent, vypyachena his ass and gave it the power of Man, and Roma without delay, boldly and confidently tore ass Anja, tightly clenched buttocks.'
 						'His movements were faster and faster, and their bodies swayed in unison, Anja screamed "..more, more".'
-						'It seems they are so engrossed in each other, that you did not notice, so it`s time to quickly leave the hot couple.'
+						'It seems they are so engrossed in each other, that you did not notice, so it''s time to quickly leave the hot couple.'
 					elseif sisboyQWrand = 1:
 						'<center><img src="images/qwest/alter/sisterQW/sisboyQW_26.jpg"></center>'
 						'Peering into the room, you saw, like your sister have a rude cancer.'
@@ -163,7 +163,7 @@ if $ARGS[0] = 'sisboyQW_bedroom':
 					end
 
 					act 'Caresses yourself':gt 'sisterQW', 'sisboyQW_caress'
-					act 'Leave':gt'korrPar'
+					act 'Leave':gt 'korrPar'
 			elseif horny >= 60 and sister < 80:
 				cls
 				minut += 2
@@ -175,7 +175,7 @@ if $ARGS[0] = 'sisboyQW_bedroom':
 
 				'<center><img src="images/qwest/alter/sisterQW/sisboyQW_06.jpg"></center>'
 				'Anja excited and disheveled opens the door:'
-				'-Well, Sveta, you promised, Come walk a little more, we`re still not finished.'
+				'-Well, Sveta, you promised, Come walk a little more, we''re still not finished.'
 				'She quickly shut the door and turned the key, you could only hear her giggle.'
 
 				act 'Leave':gt 'korrPar'
@@ -529,9 +529,9 @@ if $ARGS[0] = 'sisboytrioQW_bedroom' and $ARGS[1] = 'end':
 		'<center><img src="images/qwest/alter/sisterQW/sisboyQW_56.jpg"></center>'
 		'Roma barely manages to pull the penis out of your pussy and abruptly ends directly on it.'
 		'Anja looks at him, puzzled:'
-		'- What are you doing? Want, she flew to? Then we`ll marry her, not me.'
+		'- What are you doing? Want, she flew to? Then we''ll marry her, not me.'
 		'- Yes, everything is fine, I did not get into, - Roma protested breathlessly.'
-		'And you were in ecstasy, and do not quite understand, that`s going around.'
+		'And you were in ecstasy, and do not quite understand, that''s going around.'
 	else
 		cls
 		minut += 5
@@ -605,7 +605,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'start':
 		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
 		'Getting up, you tried to go from table, to go dancing, but no one was there, all we sat and drank.'
 		'Seeing, you want to stand up and leave the table, Rex stopped you:'
-		'- Where are you, everything is just beginning, Keep the bottle, and let`s drink, otherwise I would be offended.'
+		'- Where are you, everything is just beginning, Keep the bottle, and let''s drink, otherwise I would be offended.'
 		'You could not deny birthday, We took a bottle out of his hand,  throat and gulped with strong drink goryachitelny, the sound of laughter and the company.'
 		act 'Go Dancing':gt 'sisterQW', 'sisboyQW_party' ,'dance'
 		act 'Drink':gt 'sisterQW', 'sisboyQW_party' ,'drink'
@@ -623,7 +623,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'dance':
 	'You did not need to persuade, you were on the same wavelength with everyone and also undressed, stay in one bra.'
 	'Boys and jumped besilis, even though you half-naked, but it seems not to have paid any attention.'
 	'To you came Anja:'
-	'- Sveta, Let`s have fun, - and you have got to the center of fun and dance vytvoryaya very tempting thing.'
+	'- Sveta, Let''s have fun, - and you have got to the center of fun and dance vytvoryaya very tempting thing.'
 
 	act 'Plump':
 		cls
@@ -645,7 +645,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'dance':
 		horny += 10
 		gs 'stat'
 		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_18.gif"></center>'
-		'You`re drunk, but still able to control myself, you wanted to continue dancing.'
+		'You''re drunk, but still able to control myself, you wanted to continue dancing.'
 		'His erotic movements attracted the attention of many of you guys, and you approached by two.'
 		
 		act 'Dance with them':gt 'sisterQW', 'sisboyQW_party' ,'twoboys'
@@ -688,7 +688,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'rex':
 	'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_19.jpg"></center>'
 	'You came to the birthday, to congratulate, even though you are not familiar.'
 	'It is on this evening was clearly all fun, and to your surprise it was still zinger.'
-	'- Oh, hi, chikulya, You do this... damn it.. Oh yes, Anja`s sister, I know, I know... Even I have not seen, that you saw me today,, in shampusik, come on, Let`s drink to the dregs..'
+	'- Oh, hi, chikulya, You do this... damn it.. Oh yes, Anja''s sister, I know, I know... Even I have not seen, that you saw me today,, in shampusik, come on, Let''s drink to the dregs..'
 	'With these words, you drank sweet champagne, but a drunken Rex pushed the bottle so much, I had to swallow in her mouth neck floor...'
 	'Later, Rex left and where you are-the left...'
 	
@@ -701,9 +701,9 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'rex':
 		gs 'stat'
 		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_20.jpg"></center>'
 		'It turned out the toilet open, and you then found Rex, coming from a booze.'
-		'- Oh, Sveta, you again? I`ve already come out, Today, few went through Thu...'
+		'- Oh, Sveta, you again? I''ve already come out, Today, few went through Thu...'
 		'Stopping him in midsentence, They pushed him to the toilet and sat down on top of him, glaring lips in a kiss.'
-		'- Here`s my present for you and, - You utter a playful smile.'
+		'- Here''s my present for you and, - You utter a playful smile.'
 		'- Hell, fucking..., - muttered Rex. In the meantime, you feel like you in the crotch rests excited reksik.'
 		
 		act 'Become cancer':
@@ -719,7 +719,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'rex':
 			'Rex told you to bend down, and abruptly drove into you a heated member.'
 			'- Not so fast, not so deep, - We are begging you, but gradually the pain resolved, and you began to fidget on a limb and have fun.'
 			'The guy at this point is not exactly thought, to meet you, faster and faster he finished member will drive you in the pussy.'
-			'- Wow Sveta, You`re her sister`s hot, With these words he left..'
+			'- Wow Sveta, You''re her sister''s hot, With these words he left..'
 			'You also brought a little in order, and went...'
 			
 			act 'Search for Anja':gt 'sisterQW', 'sisboyQW_party' ,'searchforsister', 'start'
@@ -760,7 +760,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'twoboys':
 			'You put cancer, and began to fuck two trunk, impaling both front and rear.'
 			'The guys were obviously pleased with talking and joking with each other:'
 			'- And you said, that it is still small, Yes it your sister Ana odds to give.'
-			'- Yes, you`re right, excellent young trick, not long ago I schoolgirls fucked, Hey, let`s change, a blowjob can not eat...'
+			'- Yes, you''re right, excellent young trick, not long ago I schoolgirls fucked, Hey, let''s change, a blowjob can not eat...'
 			
 			act 'Exchange':
 				cls
@@ -776,7 +776,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'twoboys':
 				'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_17.jpg"></center>'
 				'Boys swapped and continued to rhythmically fuck you.'
 				'After a while fucked, You have come a little:'
-				'- Oh yeah, I woke up bitch, Let`s suck harder fuck, it is quite sluggish..'
+				'- Oh yeah, I woke up bitch, Let''s suck harder fuck, it is quite sluggish..'
 				'And they began to suck hard, while he did not finish you in the mouth, splashing his face. Second, too, without delay, I pulled out a dick and you finished in the ass.'
 				'Having come a little, you wanted to find a sister.'
 				
@@ -814,7 +814,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'searchforsister' and $ARGS[2] = '
 		gs 'stat'
 		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_25.jpg"></center>'
 		'Turning you found naked drinking Anja, for her eyes were visible tears.'
-		'- Well Romka, I see we`re through, Wali to hell, dog. - Roma could not say anything in response.'
+		'- Well Romka, I see we''re through, Wali to hell, dog. - Roma could not say anything in response.'
 		'Anja ran away. Roma had a fight a few minutes, you rushed off his sister...'
 		
 		act 'For Anja':
@@ -862,7 +862,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'searchforsister' and $ARGS[2] = '
 				'- Okay boys, I also want to, who I vyebet?'
 				'Lively guys have dismantled, and the room was a wild orgy.'
 				'- Oh yeah, have his personal whore much better, - satisfied, fuck you in all the cracks.'
-				'Room service is boys and hardly gather my thoughts, you`re headed home.'
+				'Room service is boys and hardly gather my thoughts, you''re headed home.'
 				
 				if hour < 22:
 					hour = 22
@@ -884,7 +884,7 @@ if $ARGS[0] = 'sisboyQW_party' and $ARGS[1] = 'searchforsister' and $ARGS[2] = '
 	gs 'stat'
 	'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_23.jpg"></center>'
 	'In the room you saw the two guys play two barrel poor unconscious girl.'
-	'- Let`s fuck, until he woke up, I do not want to deal with her ex-boyfriend boxer.'
+	'- Let''s fuck, until he woke up, I do not want to deal with her ex-boyfriend boxer.'
 	
 	act 'In the kitchen':gt 'sisterQW', 'sisboyQW_party' ,'searchforsister', 'kitchen'
 	act 'In the toilet':gt 'sisterQW', 'sisboyQW_party' ,'searchforsister', 'toilet'

+ 6 - 6
locations/sistersleep

@@ -76,7 +76,7 @@ elseif sisterLesb = 1 and horny >= 60 and sisprynight ! day:
 				gs 'stat'
 
 				'<center><img src="images/qwest/alter/sisterQW/sisboyQW_21.jpg"></center>'
-				'Are you brave enough girl, and while half asleep Anja not come round, you`re close to her face and sensually kissed her on the lips.'
+				'Are you brave enough girl, and while half asleep Anja not come round, you''re close to her face and sensually kissed her on the lips.'
 				'Strongly excited Anja did not think to resist, her soft body easily give you the pressure.'
 				'Your palm again slipped under her panties sister, but now your affection were confident...'
 
@@ -100,11 +100,11 @@ elseif sisterLesb = 1 and horny >= 60 and sisprynight ! day:
 			act 'Remove hand':
 				cls
 				minut += 1
-				gs'stat'
+				gs 'stat'
 
 				'<center><img src="images/qwest/alter/sisterQW/sisboyQW_20.jpg"></center>'
 				'Sleepy and crumpled Anja wakes up and sees you on her bed, and as you hastily removed his hand and hide behind.'
-				'-What...what`s going on here? <<$nickname>>? Are you crazy? What are you doing here?'
+				'-What...what''s going on here? <<$nickname>>? Are you crazy? What are you doing here?'
 				'You sit in front of my sister on her bed, excited, caught off guard, and not knowing what to do...'
 
 				act 'Move away':
@@ -173,8 +173,8 @@ elseif sisterLesb = 3 and horny >= 60 and sisprynight ! day:
 				'<center><img src="images/qwest/alter/sisterQW/sisboyQW_34.jpg"></center>'
 				'Anja looked at you and you dutifully licked strapon, feeling the tart taste of your juice.'
 				'Lick all, you began to suck head, Anja monitor your movements and spoke as correctly suck. Then Anja grabbed you by the hair and abruptly entered your throat, You suffocated her by waving..'
-				'-Bitch, What are you doing, I`m so suffocate, though be warned.'
-				'-Let`s learn a little sister, guys like this, and played enough plenty of your mouth you let Anja'
+				'-Bitch, What are you doing, I''m so suffocate, though be warned.'
+				'-Let''s learn a little sister, guys like this, and played enough plenty of your mouth you let Anja'
 				throat += 1
 				sisterLesbScene += 1
 				gs 'stat'
@@ -185,7 +185,7 @@ elseif sisterLesb = 3 and horny >= 60 and sisprynight ! day:
 		elseif sisterLesbScene = 4:
 			'<center><img src="images/qwest/alter/sisterQW/sisboyQW_35.jpg"></center>'
 			'You Kiss passionately with his beloved sister, and then she pushes you..'
-			'-Listen, Sveta, I love you very much, but I`m not a lesbian, and I do not want that kind of relationship between us developed.'
+			'-Listen, Sveta, I love you very much, but I''m not a lesbian, and I do not want that kind of relationship between us developed.'
 			'-Of course, I understand, but I got it, and I wanted to thank you for everything..'
 			'-And it seems Roma started me to you jealous... oh let slip...'
 			'-You what? All told him? I did not expect from you such meanness.'

+ 5 - 4
locations/sitrPar

@@ -12,7 +12,8 @@ fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)
 lcolor = rgb(106, 90, 205)
 '<center><b><font color="maroon">Hall</font></b></center>'
-'<center><img src="images/qwest/alter/<<$loc>>.jpg"></center>'
+! Fix Missing Image ".../qwest/alter/<<$loc>>.jpg"
+'<center><img src="images/qwest/alter/sitrPar.jpg"></center>'
 'In the window is a <a href="exec:gt ''tvPar''">TV</a>. Front of the TV is a sofa on which sleeps at night your brother. The wall is a wall with utensils and books.'
 gs 'family'
 
@@ -36,8 +37,8 @@ elseif month = 12 and day = 31 and hour >= 20:
 		wipo += 1000
 		energy += 50
 		water += 50
-		gs'stat'
-		'You sat at the festive table laid in front of the TV and began to celebrate the New Year with family and blue light going on TV. At the table struck up a dialogue and common problems were forgotten, all having fun and talking to each other. at midnight, before the chimes you heard congratulations President, which as always promised, they all will be well, if you `ll be better off working. Then drank champagne clinking glasses and congratulating each other happy new year. Mom gave you an envelope with a greeting card and five thousand rubles. For a while you continue watching TV ate and drank champagne, but soon was evident ,that family members are exhausted and began to disperse to sleep.'
+		gs 'stat'
+		'You sat at the festive table laid in front of the TV and began to celebrate the New Year with family and blue light going on TV. At the table struck up a dialogue and common problems were forgotten, all having fun and talking to each other. at midnight, before the chimes you heard congratulations President, which as always promised, they all will be well, if you ''ll be better off working. Then drank champagne clinking glasses and congratulating each other happy new year. Mom gave you an envelope with a greeting card and five thousand rubles. For a while you continue watching TV ate and drank champagne, but soon was evident ,that family members are exhausted and began to disperse to sleep.'
 
 		act 'Leave':gt $curloc
 	end
@@ -53,7 +54,7 @@ elseif month = 1 and day = 1:
 		water += 20
 		salo += 1
 		fat += 3
-		gs'stat'
+		gs 'stat'
 		'<center><img src="images/pics/food.jpg"></center>'
 		'You had finished salads remaining on the table after the holiday.'
 

+ 1 - 0
locations/sny

@@ -416,6 +416,7 @@ elseif snyqw = 7:
 
 				act 'Leave':gt 'gorodok'
 			elseif NosovRevenge = 1:
+			! Fix missing Image Move "tatvag6.jpg" from "images\picBody" to "images\Body"
 				'<center><img src="images/body/tatvag6.jpg"></center>'
 				'You woke up lying on the couch which is awkward. With difficulty raising his head you understand, it is a place you are not familiar, listening to the feelings you understand , that you have a very sore and burns pubic, looking between her legs you saw, that you wear panties, lowered their ofigeli you just by what he saw. Pubic tattoo emblazoned svezhevybitaya.'
 

+ 9 - 8
locations/stat

@@ -554,8 +554,8 @@ if minut >= 60:
 		xf += 1
 		turnirFighter[xf] = rand(2, NPCnum)
 
-		if xf < 2:jump'markturnirotbortt'
-		if turnirFighter[1] = turnirFighter[2]:jump'markturnirotbort'
+		if xf < 2:jump 'markturnirotbortt'
+		if turnirFighter[1] = turnirFighter[2]:jump 'markturnirotbort'
 
 		a = turnirFighter[1]
 		i = turnirFighter[2]
@@ -1136,7 +1136,7 @@ end
 !!!!!!!!!!!!!!!!!!!!!
 !!!Beginning Description!!!
 !!!!!!!!!!!!!!!!!!!!!
-!!pl'time <b><<hour>></b> hours <b><<$nilmin>><<minut>></b> minutes'
+!!pl 'time <b><<hour>></b> hours <b><<$nilmin>><<minut>></b> minutes'
 !!pl 'At_The_Moment <<day>> <<$month>> <<year>>year, <<$week>>.'
 
 if hour < 10:
@@ -1237,13 +1237,13 @@ end
 
 if smokeHour = hour and smokeday = day and smokeminut >= minut:pl '<font color="green">You are smoking a cigarette</font>'
 if pirs_pain_ton > 0:
-	if pirs_pain_ton = 1:pl'<font color="red">You have aches language and it is a little swollen.</font>'
-	if pirs_pain_ton = 2:pl'<font color="red">You often aches language and it is noticeably swollen.</font>'
-	if pirs_pain_ton > 2:pl'<font color="red"><b>Do you have a sore tongue, he was very swollen and almost tossed in the mouth.</b></font>'
+	if pirs_pain_ton = 1:pl '<font color="red">You have aches language and it is a little swollen.</font>'
+	if pirs_pain_ton = 2:pl '<font color="red">You often aches language and it is noticeably swollen.</font>'
+	if pirs_pain_ton > 2:pl '<font color="red"><b>Do you have a sore tongue, he was very swollen and almost tossed in the mouth.</b></font>'
 end
 
-if nippain > 0:pl'<font color="red"><b><<$nippain>></b></font>'
-if painpub > 0:pl'<font color="red"><b><<$painpub>></b></font>'
+if nippain > 0:pl '<font color="red"><b><<$nippain>></b></font>'
+if painpub > 0:pl '<font color="red"><b><<$painpub>></b></font>'
 if opPRE = 0:pl '<<$mop>> and your hair is <<$hapri>>.'
 if sweat = 1:pl '<font color="brown">You''re sweating.</font>'
 if sweat = 2:pl '<font color="red">You are a little smelly.</font>'
@@ -1317,6 +1317,7 @@ if cumass > 0 and swallow >= 10:pl '<a href="exec:view''images/body/cumass.jpg''
 if cumlip > 0:pl '<b><font color="red">Your mouth smells like sperm.</font></b>'
 if cumface > 0 and swallow < 10:pl '<b><font color="red">Your <a href="exec:view''images/body/cumface.jpg''">face</a> and hair are smeared with sperm.</font></b>'
 if cumface > 0 and swallow >= 10:pl '<a href="exec:view''images/body/cumface.jpg''"><b><font color="red">Your face</font></b></a> <a href="exec:dynamic $cumeater4"><b><font color="red">and hair are smeared with sperm.</font></b></a>'
+! Fix missing Image Move "cumfrot.jpg" from "images\picb" to "images\Body"
 if cumfrot > 0 and swallow < 10:pl '<b><font color="red">You have semen stains on your <a href="exec:view''images/body/cumfrot.jpg''">clothes</a>.</font></b>'
 if cumfrot > 0 and swallow >= 10:pl '<a href="exec:view''images/body/cumfrot.jpg''"><b><font color="red">You have <a href="exec:dynamic $cumeater5"><b><font color="red">semen stains</font></b></a> on your clothes</font></b></a>.'
 if cumanus > 0 and swallow < 10:pl '<b><font color="red">Sperm slowly flows from your <a href="exec:view''images/body/cumanal.jpg''">ass</a>.</font></b>'

+ 0 - 1
locations/subkid

@@ -1,4 +1,3 @@
-
 # subkid
 if kid > 0:
 	kidIteration = 1

+ 5 - 2
locations/svidboy

@@ -268,13 +268,15 @@ if $ARGS[0] = 'billsvid':
 		cla
 		*clr
 		minut += 60
+
 		'<center><img src="images/img/boysvid/bil1<<picrand>>.jpg"></center>'
 		'During the game <<$boyA>> suitable for you from behind and his hands glide over your endeavors hips and lips are drawn to the neck.'
 
 		act 'Not here':
 			cla
 			*clr
-			'<center><img src="images/img/boysvid/bil0<<picrand>>.jpg"></center>'
+			! Fix Missing Image ".../img/boysvid/bil0<<picrand>>.jpg" use place holder
+			'<center><img src="images/img/boysvid/bil<<picrand>>.jpg"></center>'
 			'You removed his hand with the words "Well, not here."'
 			'When your time is up <<$boyA>> said that he has to run and left.'
 
@@ -297,7 +299,8 @@ if $ARGS[0] = 'billsvid':
 			act 'Stop, stop':
 				cla
 				*clr
-				'<center><img src="images/img/boysvid/bil0<<picrand>>.jpg"></center>'
+				! Fix Missing Image ".../img/boysvid/bil0<<picrand>>.jpg" use place holder
+				'<center><img src="images/img/boysvid/bil<<picrand>>.jpg"></center>'
 				'You removed his hand with the words "Well, not here"'
 				'When your time is up <<$boyA>> said that he has to run and left.'
 

+ 1 - 1
locations/torgcentr

@@ -11,7 +11,7 @@ if hour >= 8 and hour <= 20:
 	'<a href="exec:gt ''zoomagazine'',''start''">Pet-shop</a>'
 	'<a href="exec:gt ''shopdacha''">Shop Stores</a>.'
 	'<a href="exec:minut += 3 & gt ''hairsalon'', ''start''">The Golden Curl Salon</a>.'
-	'<a href="exec:gt''bouling''">Bowling</a>, <a href="exec:gt''billiard''">billiard</a> and <a href="exec:gt''kino''">theater</a>.'
+	'<a href="exec:gt ''bouling''">Bowling</a>, <a href="exec:gt ''billiard''">billiard</a> and <a href="exec:gt ''kino''">theater</a>.'
 	'Located on the ground floor <a href="exec:gt ''shop'', ''start''">network supermarket</a> takoyzhe in the residential area.'
 end
 

+ 8 - 4
locations/univer

@@ -173,7 +173,8 @@ if $ARGS[0] = 'dekanat':
 					cla
 					*clr
 					zanpicrand = rand(1, 3)
-					'<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
+					! Missing Images
+					! '<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
 					'After the class lecturer explains to you for an hour thing.'
 
 					act 'Leave':gt 'univer', 'dekanat'
@@ -186,7 +187,8 @@ if $ARGS[0] = 'dekanat':
 						if zanpicrand = 2:picrand = 45
 						if zanpicrand = 3:picrand = 46
 
-						'<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
+						! Missing Images
+						! '<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
 						'You grab his penis, he reflexively pulls away, but then relaxes and allows you to continue.'
 
 						act 'Blow job':gt 'sex', 'minet'
@@ -201,7 +203,8 @@ if $ARGS[0] = 'dekanat':
 					cla
 					*clr
 					zanpicrand = rand(4, 6)
-					'<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
+					! Missing Images
+					! '<center><img src="images/img/oldtown/zan<<zanpicrand>>.jpg"></center>'
 					'After exercising for an hour lecturer explains to you another girl the importance of its subject.'
 
 					act 'Leave':gt 'univer', 'dekanat'
@@ -214,7 +217,8 @@ if $ARGS[0] = 'dekanat':
 						if zanpicrand = 5:picrand = 21
 						if zanpicrand = 6:picrand = 22
 
-						'<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
+						! Missing Images
+						! '<center><img src="images/img/oldtown/zan1<<zanpicrand>>.jpg"></center>'
 						'You go down on your knees and grab his penis, the other girl looks at you with round eyes, but then also starts to stick to the teacher to design, he resists a little at first, but then completely given into your hand.'
 
 						act 'Blow job':gt 'podrsex', 'var'

+ 2 - 1
locations/vanrPar

@@ -12,7 +12,8 @@ fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)
 lcolor = rgb(106, 90, 205)
 '<center><b><font color="maroon">Bath</font></b></center>'
-'<center><img src="images/qwest/alter/<<$loc>>.jpg"></center>'
+! Fix Missing Image ".../qwest/alter/<<$loc>>.jpg"
+'<center><img src="images/qwest/alter/vanrPar.jpg"></center>'
 'Bathroom cramped and very unpretentious.'
 
 if stanok > 0:'Your razor will suffice for <b><<stanok>></b> time.'

+ 2 - 2
locations/vokzalGin

@@ -5,8 +5,8 @@ clr
 frost = 0
 poezddalsled = 0
 gs 'vokdin'
-gs'vokdinvera'
-gs'vokmantoiev'
+gs 'vokdinvera'
+gs 'vokmantoiev'
 gs 'stat'
 fcolor = rgb(0, 0, 0)
 bcolor = rgb(255, 255, 255)

+ 8 - 4
locations/young_shop

@@ -118,7 +118,8 @@ if hour = 15 and young_shop_work = 1 and week < 6:
 						if intel >= 50:
 							cla
 							*clr
-							'<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.src="></center>'
+							! Missing Images / invalid path
+							! '<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.src="></center>'
 							'Fortunately Kira very trusting girl, and my leadership qualities are not pumped. I managed to convince her that absolutely should not be embarrassed and that the mother wants for her nothing but good.'
 							'Vick slowly puts his hands under her skirt and pulls off her panties.'
 							'- You feel like a breeze blowing from the bottom? Imagine how nice it would be to go walking on the street.'
@@ -136,7 +137,8 @@ if hour = 15 and young_shop_work = 1 and week < 6:
 							act 'Remove her panties':
 								cla
 								*clr
-								'<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
+								! Missing Images
+								! '<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
 								'- Well, - I bend over and thrust his hands under her skirt Kira. The girl could not even imagine that it''s possible.'
 								'I lift my mini skirt and slowly Cyrus pulls off her panties. Bares her pussy is right before my eyes at a distance of 10 centimeters. I notice that the girl is very excited because of this situation and her panties a little wet. Delicate aroma hit my nose and I smiled.'
 								'Kira took off her panties, I show her wet spot, and then hide behind panties and get out of the booth.'
@@ -163,14 +165,16 @@ if hour = 15 and young_shop_work = 1 and week < 6:
 					'This can not be so leave! I resolve to do everything in my power to convince strange mother.'
 
 					if intel >= 60:
-						'<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
+						! Missing Images
+						! '<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
 						'- You seriously think so, but I do ..? - Glamorous lady ponders my words their meager umishkom and decides to eat them meaning. - Okay, let''s go to a regular store.'
 						'Before leaving Cyrus smiles at me and says:'
 						'- Thank you .. bye! - Girl waving me handle and runs after her mother.'
 
 						act 'Finish the job':dynamic $endwork
 					else
-						'<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
+						! Missing Images
+						! '<center><img src="images/pictures/characters/photo_dressed_[$vika]_13.png"></center>'
 						'- What are you saying? And on TV, so wrong show? What I''m talking to you all! - Glamorous lady could not understand the meaning of my words. - All Kira, we go to another store.'
 						'Before leaving, the girl thanked me for trying to save her and runs away after mama.'
 

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