Parcourir la source

[changed] all cases of "act '...':" to "act 'Continue/Finish'".
[fixed] added double line-break at end of file for hunter files. Ran trim-trailing space, space to TAB formatting cleanup on all files.

3xpurt il y a 5 ans
Parent
commit
ef15e1cce3

+ 2 - 2
locations/EndFight.qsrc

@@ -33,7 +33,7 @@
 	!!you lost surrender
 !!end
 
-!!act '...':gt $loc
+!!act 'Finish':gt $loc
 
 !!if Ku > Kb:
 !!	if Ku > Kz:Uteh[1] += 10
@@ -145,7 +145,7 @@ elseif resultFight = 4:
 	SubLoss[a] += 1
 end
 
-act '...':gt $loc
+act 'Finish':gt $loc
 
 --- EndFight ---------------------------------
 

+ 8 - 8
locations/FightCrouch.qsrc

@@ -26,14 +26,14 @@ if crouch = 1:
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
 			'Your opponent manages to press themselves to the floor but you''re too fast and manage to grab hold of your opponent.'
 
-			act '...':gt 'fightfw'
+			act 'Continue':gt 'fightfw'
 		elseif enrand = 1:
 			point += 2
 			endurE -= 1
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
 			'You reverse the opponent''s attempt to roll you over and instead you lock them in.'
 
-			act '...':gt 'fight1'
+			act 'Continue':gt 'fight1'
 		end
 	end
 
@@ -47,14 +47,14 @@ if crouch = 1:
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
 			'Your opponent manages to press themselves to the floor and you''re unable to grab hold of your opponent.'
 
-			act '...':gt 'fight2'
+			act 'Continue':gt 'fight2'
 		elseif enrand = 1:
 			pointE += 1
 			endurE -= 1
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
 			'You reverse the opponent''s attempt to roll you over and instead you lock them in.'
 
-			act '...':gt 'fight3'
+			act 'Continue':gt 'fight3'
 		elseif enrand = 2:
 			''
 		end
@@ -77,14 +77,14 @@ else
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
 			'The opponent is unable to perform the move.'
 
-			act '...':gt 'fightE'
+			act 'Continue':gt 'fightE'
 		elseif enrand = 1:
 			pointE += 1
 			endurE -= 1
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
 			'The opponent successfully performs a move.'
 
-			act '...':gt 'fightE1'
+			act 'Continue':gt 'fightE1'
 		end
 	end
 
@@ -99,14 +99,14 @@ else
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
 			'The opponent easily reverses you attempt and gains an advantage on you.'
 
-			act '...':gt 'fightE2'
+			act 'Continue':gt 'fightE2'
 		elseif enrand = 1:
 			point += 1
 			endurE -= 1
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
 			'You successfully manage to perform the move on your opponent and grab hold of their back.'
 
-			act '...':gt 'fightE3'
+			act 'Continue':gt 'fightE3'
 		end
 	end
 end

+ 6 - 6
locations/FightE.qsrc

@@ -8,19 +8,19 @@ $resultUderDinE = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
 		'<<$nameE>> successfully grabs hold of you.'
 
-		act '...':stoper = 0 & gt 'fightE1'
+		act 'Continue':stoper = 0 & gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'<<$nameE>> can''t do anything as you''re able to reverse.'
 
-		act '...':stoper = 0 & gt 'fightE3'
+		act 'Continue':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 
@@ -34,19 +34,19 @@ $resultBrosDinE = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
 		'<<$nameE>> successfully mounted you.'
 
-		act '...':stoper = 0 & gt 'fightE2'
+		act 'Continue':stoper = 0 & gt 'fightE2'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'<<$nameE>> can''t do anything as you''re able to reverse.'
 
-		act '...':stoper = 0 & gt 'fightE3'
+		act 'Continue':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 3 - 3
locations/FightE1.qsrc

@@ -10,19 +10,19 @@ $resultUderDinE = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
 		'<<$nameE>> successfully grabs hold of you.'
 
-		act '...':gt 'fightE1'
+		act 'Continue':gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
 		'<<$nameE>> can''t do anything as you''re able to reverse.'
 
-		act '...':stoper = 0 & gt 'fightE3'
+		act 'Continue':stoper = 0 & gt 'fightE3'
 	else
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 3 - 3
locations/FightE2.qsrc

@@ -8,19 +8,19 @@ $resultUderDinE = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
 		'<<$nameE>> successfully locks you in a hold.'
 
-		act '...':stoper = 0 & gt 'fightE1'
+		act 'Continue':stoper = 0 & gt 'fightE1'
 	elseif Aktiv < Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
 		'<<$nameE>> can''t do anything as you''re able to reverse.'
 
-		act '...':stoper = 0 & gt 'fightE3'
+		act 'Continue':stoper = 0 & gt 'fightE3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 4 - 4
locations/FightE3.qsrc

@@ -8,14 +8,14 @@ cls
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
 		'<<$nameE>> manages to get the upper hand against you.'
 
-		act '...':stoper = 0 & gt 'fightE1'
+		act 'Continue':stoper = 0 & gt 'fightE1'
 	elseif Aktiv <= Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'<<$nameE>> can''t do anything about your wriggling and you slip out of her hold.'
 
-		act '...':gt 'RoundStop'
+		act 'Continue':gt 'RoundStop'
 end
 }
 
@@ -29,14 +29,14 @@ $resultBrosDinE = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
 		'<<$nameE>> successfully manages to throw you on the floor.'
 
-		act '...':stoper = 0 & gt 'fightE2'
+		act 'Continue':stoper = 0 & gt 'fightE2'
 	elseif Aktiv <= Passiv:
 		point += 1
 		Kz += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'<<$nameE>> can''t do anything as you''re able to reverse.'
 
-		act '...':gt 'RoundStop'
+		act 'Continue':gt 'RoundStop'
 	end
 }
 

+ 441 - 441
locations/IgorHunter.qsrc

@@ -23,466 +23,466 @@ gs 'stat'
 
 
 if $ARGS[0] = '':
-    
-    
-    '<center><b><font color = maroon>Igor Anisimov</font></b></center>'
-    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/igorhanter.jpg"></center>'
-    'Igor is a hunter along with the Sergei and Andrei and is here visiting Andrei. He''s <<boyage>> years old. He is not married and lives in the City Center..'
-    
-    act 'Chat':
-        *clr & cla
-        minut += 60
-        menu_off = 1
-        
-        igor_base_opinion += 2
-        
-        gs 'IgorHunter', 'check_opinion'
-        act 'Continue': gt $loc
-    end
+
+
+	'<center><b><font color = maroon>Igor Anisimov</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/igorhanter.jpg"></center>'
+	'Igor is a hunter along with the Sergei and Andrei and is here visiting Andrei. He''s <<boyage>> years old. He is not married and lives in the City Center..'
+
+	act 'Chat':
+		*clr & cla
+		minut += 60
+		menu_off = 1
+
+		igor_base_opinion += 2
+
+		gs 'IgorHunter', 'check_opinion'
+		act 'Finish': gt $loc
+	end
 end
 
 if $ARGS[0] = 'check_opinion':
-    huntersIgorQw = igor_base_opinion + hunter_collective_opinion / 2 - hunter_sexual_comfort / 4
+	huntersIgorQw = igor_base_opinion + hunter_collective_opinion / 2 - hunter_sexual_comfort / 4
+
+	if huntersIgorQw > hunter_collective_opinion: huntersIgorQw = hunter_collective_opinion - hunter_sexual_comfort / 4
 
-    if huntersIgorQw > hunter_collective_opinion: huntersIgorQw = hunter_collective_opinion - hunter_sexual_comfort / 4
-    
-    !TODO: Add igor_sexual_comfort: 'platonic', 'romantic', 'partial', 'full', 'extreme' or 0 to 4
+	!TODO: Add igor_sexual_comfort: 'platonic', 'romantic', 'partial', 'full', 'extreme' or 0 to 4
 
-    gs 'stat'
+	gs 'stat'
 
 end
 
 if $ARGS[0] = 'schedule':
-    !TODO: Add energy/stamina and horniness stats for Igor
+	!TODO: Add energy/stamina and horniness stats for Igor
 end
 
 !Sex scenes
 if $ARGS[0] = 'creekside':
-    if $ARGS[1] = '':
-        cla
-        act 'You suddenly feel an arm on your shoulder':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/2.jpg"></center>'
-            'You turn back to see Igor standing over you. Watching the scenery you did not even notice him sneaking up to you.'
-            'After saying hi, you suddenly realize you are completely naked in front of him, giving him quite the view with the creek in the background'
-            act 'Cover your chest with your arms':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/1.jpg"></center>'
-                'You quickly cover your chest with your arms, looking away a bit ashamed. The clothing disparity is a bit embarassing, him clothed and you in your birthday suit.'
-                '"What is wrong?" asks Igor, landing a small kiss on your shoulder.'
-                
-                gs 'arousal', 'flashlite', 2
-                gs 'stat'
-
-                act 'You are not feeling it':
-                    cla
-                    '"I...it''s just... I''m sorry, just not in the mood to seen naked" you stammer.'
-                    '"No need to apologize, I''ll leave you alone" says Igor with a smile. "Catch you back at the hut maybe"'
-                    
-                    gs 'arousal', 'flashlite', 2
-                    mood -=5
-                    gs 'stat'
-                    gs 'arousal', 'end'
-
-                    act 'Further': gt 'backwater'
-                end
-                act 'Kiss him back':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/3.jpg"></center>'
-                    'Igor''s tender kiss on your bare skin dissolves whatever bit of embarrassment you had. Being naked in front off him like this is actually turning you on.'
-                    'You respond by giving Igor a passionate kiss, his hand stroking the small of your back.'
-
-                    gs 'arousal', 'kiss', 4
-                    gs 'arousal', 'flashlite', 2
-                    gs 'stat'
-
-                    act 'You do not want to get carried away':
-                        cla & *clr
-                        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/1.jpg"></center>'
-                        'You cover up your chest and tell Igor you want to call it there "I do not want to do anything further. At least, not like this..." you say.'
-                        'It would only take the right touch to change your mind, if Igor had noticed the growing dampness between your legs. Instead he smiles and gives you a kis on the shoulder before walking away.'
-                     
-                        gs 'arousal', 'flashlite', 2
-                        gs 'arousal', 'end'
-                        gs 'stat'
-
-                        act 'Further': gt 'backwater'
-                    end
-                    act 'Take him in your mouth': gt 'IgorHunter', 'creekside', 'bj'
-                end
-            end
-        
-            act 'Greet him with a hug':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/4.jpg"></center>'
-                'With a smile, you stand up on the rock you were sitting and go in for a hug as Igor kneels down, his lips locking on your nipple.'
-                'You hug his neck as he suckles and flicks his tongue around your nipple, eliciting some deep sighs from you.'
-                
-                gs 'arousal', 'foreplay', 4
-                gs 'arousal', 'breasts', 2
-                minut -= 3
-                gs 'stat'
-                
-                act 'Not now':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/11.jpg"></center>'
-                    'You gently push Igor away, not feeling like doing anything further.'
-                    '"Maybe later", you say. Igor gives you another peck on the breasts before walking away.'
-                    
-                    gs 'arousal', 'breasts', 2
-                    gs 'stat'
-                    gs 'arousal', 'end'
-                   
-                    act 'Further': gt 'backwater'
-                end
-                
-                act 'Lay back and spread your legs':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/5.jpg"></center>'
-                    'Having your nipples teased like this is almost unbearable. You feel your pussy lips getting inflamed, the dampness between your legs growing.'
-                    'Laying back, you spread your legs wide and look almost beggingly at Igor, wanting his attention right between them. He does not lose time starting to lick your now burning hot, soaking wet fuckhole'
-
-                    gs 'arousal', 'cuni', 10
-                    minut -= 4
-                    gs 'stat'
-                   
-                    act 'You want him inside you': gt 'IgorHunter', 'creekside', 'piv'
-                end
-            end
-        end
-    end
-
-    if $ARGS[1] = 'bj':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/6.jpg"></center>'
-        gs 'dinSex', 'bj_random'
-        gs 'arousal', 'bj', 9
-        minut -= 3
-        gs 'stat'
-        
-        act 'Keep sucking him':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/7.jpg"></center>'
-            'As you keep sucking and stroking Igor''s <<$penis_desc>>, you start to feel his dick throb stronger and stronger. Igor tells you he is going to cum'
-            gs 'arousal', 'bj', 6
-            minut -= 3
-            gs 'stat'
-            
-            act 'You want to swallow his cum':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/8.jpg"></center>'
-                gs 'dinSex', 'bj_swallow_random'
-                'You lock eyes  with Igor and open your mouth wide, sticking out your tongue to show how thoroughly you have cleaned his dick.'
-                gs 'cum_call', 'mouth', 'A173'
-                gs 'arousal', 'bj', 6
-                minut -= 3
-                gs 'stat'
-                gs 'arousal','end'
-
-                act 'Further': gt 'backwater' 
-            end
-            act 'Make him pull out':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/9.jpg"></center>'
-                'Igor pulls out of your mouth the last moment, jerking off furiously and covering your chest in his warm spunk.'
-                gs 'cum_call', 'breasts', 'A173', 1
-                gs 'arousal', 'bj', 4
-                gs 'arousal', 'breasts', 4
-                minut -= 5
-                gs 'stat'
-
-                act 'Relax and enjoy the view together':
-                    cla & *clr
-                    gs 'arousal', 'breasts', 4
-                    minut += 10
-                    gs 'arousal', 'end'
-                    gs 'stat'
-
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/10.jpg"></center>'
-                    'You go back to relaxing and enjoying the view, Igor''s warm seed still covering your tits.'
-                    'Igor cuddles you from behind as his hand idly plays with your boob, basking in the post-orgasmic bliss.'
-                    act 'Further': gt 'backwater' 
-                end    
-            end
-        end
-    end
- 
-
-    if $ARGS[1] = 'piv':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_2.jpg"></center>'
-        'You lean back further as Igor kisses all over your tit, your hand lightly playing with your other breast'
-
-        gs 'arousal', 'breasts', 5
-        gs 'arousal', 'foreplay', 5
-        minut -= 7
-        gs 'stat'
-
-        act 'Jump on Igor''s lap':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_5.jpg"></center>'
-            'You sit on Igor''s lap, slowly grinding your ass on his crotch as his dick pokes against your folds, the tip almost dipping into the dampness inside'
-            
-            gs 'arousal', 'foreplay', 5
-            minut -= 2
-            gs 'stat'
-
-            act 'Take him inside you':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_6.jpg"></center>'
-                gs 'dinSex', 'vaginal_sex', 12
-                gs 'stat'
-
-                act 'You start feeling his cock start to twitch inside you':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_7.jpg"></center>'
-                    pose = 3
-                    gs 'dinSex', 'sexcum'
-                    gs 'arousal', 'vaginal', 4
-                    gs 'stat'
-                    gs 'arousal', 'end'
-
-                    act 'Further': gt 'backwater'
-                end
-            end
-        end
-    end
+	if $ARGS[1] = '':
+		cla
+		act 'You suddenly feel an arm on your shoulder':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/2.jpg"></center>'
+			'You turn back to see Igor standing over you. Watching the scenery you did not even notice him sneaking up to you.'
+			'After saying hi, you suddenly realize you are completely naked in front of him, giving him quite the view with the creek in the background'
+			act 'Cover your chest with your arms':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/1.jpg"></center>'
+				'You quickly cover your chest with your arms, looking away a bit ashamed. The clothing disparity is a bit embarassing, him clothed and you in your birthday suit.'
+				'"What is wrong?" asks Igor, landing a small kiss on your shoulder.'
+
+				gs 'arousal', 'flashlite', 2
+				gs 'stat'
+
+				act 'You are not feeling it':
+					cla
+					'"I...it''s just... I''m sorry, just not in the mood to seen naked" you stammer.'
+					'"No need to apologize, I''ll leave you alone" says Igor with a smile. "Catch you back at the hut maybe"'
+
+					gs 'arousal', 'flashlite', 2
+					mood -=5
+					gs 'stat'
+					gs 'arousal', 'end'
+
+					act 'Further': gt 'backwater'
+				end
+				act 'Kiss him back':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/3.jpg"></center>'
+					'Igor''s tender kiss on your bare skin dissolves whatever bit of embarrassment you had. Being naked in front off him like this is actually turning you on.'
+					'You respond by giving Igor a passionate kiss, his hand stroking the small of your back.'
+
+					gs 'arousal', 'kiss', 4
+					gs 'arousal', 'flashlite', 2
+					gs 'stat'
+
+					act 'You do not want to get carried away':
+						cla & *clr
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/1.jpg"></center>'
+						'You cover up your chest and tell Igor you want to call it there "I do not want to do anything further. At least, not like this..." you say.'
+						'It would only take the right touch to change your mind, if Igor had noticed the growing dampness between your legs. Instead he smiles and gives you a kis on the shoulder before walking away.'
+
+						gs 'arousal', 'flashlite', 2
+						gs 'arousal', 'end'
+						gs 'stat'
+
+						act 'Further': gt 'backwater'
+					end
+					act 'Take him in your mouth': gt 'IgorHunter', 'creekside', 'bj'
+				end
+			end
+
+			act 'Greet him with a hug':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/4.jpg"></center>'
+				'With a smile, you stand up on the rock you were sitting and go in for a hug as Igor kneels down, his lips locking on your nipple.'
+				'You hug his neck as he suckles and flicks his tongue around your nipple, eliciting some deep sighs from you.'
+
+				gs 'arousal', 'foreplay', 4
+				gs 'arousal', 'breasts', 2
+				minut -= 3
+				gs 'stat'
+
+				act 'Not now':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/11.jpg"></center>'
+					'You gently push Igor away, not feeling like doing anything further.'
+					'"Maybe later", you say. Igor gives you another peck on the breasts before walking away.'
+
+					gs 'arousal', 'breasts', 2
+					gs 'stat'
+					gs 'arousal', 'end'
+
+					act 'Further': gt 'backwater'
+				end
+
+				act 'Lay back and spread your legs':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/5.jpg"></center>'
+					'Having your nipples teased like this is almost unbearable. You feel your pussy lips getting inflamed, the dampness between your legs growing.'
+					'Laying back, you spread your legs wide and look almost beggingly at Igor, wanting his attention right between them. He does not lose time starting to lick your now burning hot, soaking wet fuckhole'
+
+					gs 'arousal', 'cuni', 10
+					minut -= 4
+					gs 'stat'
+
+					act 'You want him inside you': gt 'IgorHunter', 'creekside', 'piv'
+				end
+			end
+		end
+	end
+
+	if $ARGS[1] = 'bj':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/6.jpg"></center>'
+		gs 'dinSex', 'bj_random'
+		gs 'arousal', 'bj', 9
+		minut -= 3
+		gs 'stat'
+
+		act 'Keep sucking him':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/7.jpg"></center>'
+			'As you keep sucking and stroking Igor''s <<$penis_desc>>, you start to feel his dick throb stronger and stronger. Igor tells you he is going to cum'
+			gs 'arousal', 'bj', 6
+			minut -= 3
+			gs 'stat'
+
+			act 'You want to swallow his cum':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/8.jpg"></center>'
+				gs 'dinSex', 'bj_swallow_random'
+				'You lock eyes	with Igor and open your mouth wide, sticking out your tongue to show how thoroughly you have cleaned his dick.'
+				gs 'cum_call', 'mouth', 'A173'
+				gs 'arousal', 'bj', 6
+				minut -= 3
+				gs 'stat'
+				gs 'arousal','end'
+
+				act 'Further': gt 'backwater'
+			end
+			act 'Make him pull out':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/9.jpg"></center>'
+				'Igor pulls out of your mouth the last moment, jerking off furiously and covering your chest in his warm spunk.'
+				gs 'cum_call', 'breasts', 'A173', 1
+				gs 'arousal', 'bj', 4
+				gs 'arousal', 'breasts', 4
+				minut -= 5
+				gs 'stat'
+
+				act 'Relax and enjoy the view together':
+					cla & *clr
+					gs 'arousal', 'breasts', 4
+					minut += 10
+					gs 'arousal', 'end'
+					gs 'stat'
+
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/10.jpg"></center>'
+					'You go back to relaxing and enjoying the view, Igor''s warm seed still covering your tits.'
+					'Igor cuddles you from behind as his hand idly plays with your boob, basking in the post-orgasmic bliss.'
+					act 'Further': gt 'backwater'
+				end
+			end
+		end
+	end
+
+
+	if $ARGS[1] = 'piv':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_2.jpg"></center>'
+		'You lean back further as Igor kisses all over your tit, your hand lightly playing with your other breast'
+
+		gs 'arousal', 'breasts', 5
+		gs 'arousal', 'foreplay', 5
+		minut -= 7
+		gs 'stat'
+
+		act 'Jump on Igor''s lap':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_5.jpg"></center>'
+			'You sit on Igor''s lap, slowly grinding your ass on his crotch as his dick pokes against your folds, the tip almost dipping into the dampness inside'
+
+			gs 'arousal', 'foreplay', 5
+			minut -= 2
+			gs 'stat'
+
+			act 'Take him inside you':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_6.jpg"></center>'
+				gs 'dinSex', 'vaginal_sex', 12
+				gs 'stat'
+
+				act 'You start feeling his cock start to twitch inside you':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/creekside/f_7.jpg"></center>'
+					pose = 3
+					gs 'dinSex', 'sexcum'
+					gs 'arousal', 'vaginal', 4
+					gs 'stat'
+					gs 'arousal', 'end'
+
+					act 'Further': gt 'backwater'
+				end
+			end
+		end
+	end
 end
 
 if $ARGS[0] = 'cabin':
-    if $ARGS[1] = '' or $ARGS[1] = 'makeout':
-        if $ARGS[2] = '' or $ARGS[2] = 'light':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_makeout.jpg"></center>'
-            'You are making out with Igor on the couch, your hands roaming over his body as he passionately kisses you'
-            'As you both get more and more heated, you notice Igor''s hands gliding further and further up your thighs'
-
-            gs 'arousal', 'kiss', 6
-            gs 'arousal', 'foreplay', 2
-            minut -= 4
-            gs 'stat'
-
-            act 'You do not want to get carried away':
-                cla
-                'You tell Igor you do not want to do anything more. He keeps kissing you for a couple more minutes but the heat quickly dies down before Igor gives you a final kiss on the cheek and walks away.'
-                gs 'arousal', 'kiss', 2
-                gs 'stat'
-                gs 'arousal', 'end'
-
-                act 'Further': gt 'swamphouse'
-            end
-            
-            act 'Keep making out': gt 'igorhunter', 'cabin', 'makeout', 'heavy'
-            act 'Blow him': gt 'igorhunter', 'cabin', 'bj'
-
-        end
-        if $ARGS[2] = 'heavy':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_makeout_2.jpg"></center>'
-            'You relax on the couch, letting Igor''s hands glide further up. He moves towards your midriff, lifting your bottom up and exposing your wet pussy as he strokes deliciously close to your nether lips, making you moan lightly'
-            
-            gs 'arousal', 'foreplay', 4
-            gs 'stat'
-        
-            act 'Suck Igor''s cock': gt 'igorhunter', 'cabin', 'bj'
-            act 'You want him to lick your pussy': gt 'igorhunter', 'cabin', 'cuni'
-            act '"I need you inside me, Igor!" you whisper': gt 'igorhunter', 'cabin', 'vaginal'
-        end    
-    end
-
-    if $ARGS[1] = 'cuni':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_cuni.jpg"></center>'
-        'You smile and moan as Igor laps up your juices, pulling out and playing with your tit as he flick around your clit, getting you very excited.'
-
-        gs 'arousal', 'foreplay', 4
-        gs 'arousal', 'breasts', 3
-        gs 'arousal', 'cuni', 10
-        minut -= 10
-        gs 'stat'
-
-        act 'Return the favor': gt 'igorhunter', 'cabin', 'bj'
-        act 'You need your pussy filled and fucked proper': gt 'igorhunter', 'cabin', 'vaginal'
-    end
-
-    if $ARGS[1] = 'bj':  
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/bj_1.jpg"></center>'
-        'You go on your hands and knees in front of Igor, your exposed ass towards the door for anyone coming in to see your fuckholes.'
-        gs 'dinsex', 'bj_random'
-
-        gs 'arousal', 'bj', 7
-        gs 'arousal', 'flash', 5, 'exhibitionism'
-        minut -= 6
-        gs 'stat'
-
-        act 'Keep sucking him':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/bj_2.jpg"></center>'
-            'You keep sucking Igor on your knees, your hand pulling out and squeezing your tits. Igor lightly grabs your head and begins to lightly skulllfuck you. After a moment you notice his dick spasming right in your mouth, shooting his jizm right down your throat.'
-            gs 'dinsex', 'bj_swallow_random'
-
-            gs 'arousal', 'bj', 7
-            gs 'arousal', 'breasts', 5
-            minut -= 8
-            gs 'stat'
-            gs 'arousal', 'end'
-
-            act 'Further': gt 'swamphouse'
-        end    
-    end
-
-    if $ARGS[1] = 'vaginal':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_1.jpg"></center>'
-        gs 'dinsex', 'vaginal_sex', 15
-
-        act 'Take off your top':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_2.jpg"></center>'
-            'You pretty much rip off your top and start kneading your tits as Igor keeps drilling your cunt, making you moan and scream like a whore.'
-
-            gs 'arousal', 'vaginal', 8
-            gs 'arousal', breasts, 4
-            gs 'stat'
-
-            act 'Igor suddenly pulls out':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_3.jpg"></center>'
-                'Jerking off his <<$penis_desc>>, he covers your stomach and tits with his warm spunk.'
-
-                gs 'cum_call', 'breasts', 'A173', 1
-                gs 'cum_call', 'stomach', 'A173', 1
-                minut += 2
-                gs 'stat'
-                gs 'arousal', 'end'
-
-                act 'Cuddle him':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_4.jpg"></center>'
-                    'You cuddle with Igor still covered in his spunk, enjoying this intimate moment'
-                    'After a few minutes, Igor pulls you closer and gives you a kiss on the cheek before getting dressed and walking out of the hut.'
-
-                    minut += 8
-                    mood += 10
-
-                    act 'Further': gt 'swamphouse'
-                end
-            end
-        end
-    end
+	if $ARGS[1] = '' or $ARGS[1] = 'makeout':
+		if $ARGS[2] = '' or $ARGS[2] = 'light':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_makeout.jpg"></center>'
+			'You are making out with Igor on the couch, your hands roaming over his body as he passionately kisses you'
+			'As you both get more and more heated, you notice Igor''s hands gliding further and further up your thighs'
+
+			gs 'arousal', 'kiss', 6
+			gs 'arousal', 'foreplay', 2
+			minut -= 4
+			gs 'stat'
+
+			act 'You do not want to get carried away':
+				cla
+				'You tell Igor you do not want to do anything more. He keeps kissing you for a couple more minutes but the heat quickly dies down before Igor gives you a final kiss on the cheek and walks away.'
+				gs 'arousal', 'kiss', 2
+				gs 'stat'
+				gs 'arousal', 'end'
+
+				act 'Further': gt 'swamphouse'
+			end
+
+			act 'Keep making out': gt 'igorhunter', 'cabin', 'makeout', 'heavy'
+			act 'Blow him': gt 'igorhunter', 'cabin', 'bj'
+
+		end
+		if $ARGS[2] = 'heavy':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_makeout_2.jpg"></center>'
+			'You relax on the couch, letting Igor''s hands glide further up. He moves towards your midriff, lifting your bottom up and exposing your wet pussy as he strokes deliciously close to your nether lips, making you moan lightly'
+
+			gs 'arousal', 'foreplay', 4
+			gs 'stat'
+
+			act 'Suck Igor''s cock': gt 'igorhunter', 'cabin', 'bj'
+			act 'You want him to lick your pussy': gt 'igorhunter', 'cabin', 'cuni'
+			act '"I need you inside me, Igor!" you whisper': gt 'igorhunter', 'cabin', 'vaginal'
+		end
+	end
+
+	if $ARGS[1] = 'cuni':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/cabin_cuni.jpg"></center>'
+		'You smile and moan as Igor laps up your juices, pulling out and playing with your tit as he flick around your clit, getting you very excited.'
+
+		gs 'arousal', 'foreplay', 4
+		gs 'arousal', 'breasts', 3
+		gs 'arousal', 'cuni', 10
+		minut -= 10
+		gs 'stat'
+
+		act 'Return the favor': gt 'igorhunter', 'cabin', 'bj'
+		act 'You need your pussy filled and fucked proper': gt 'igorhunter', 'cabin', 'vaginal'
+	end
+
+	if $ARGS[1] = 'bj':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/bj_1.jpg"></center>'
+		'You go on your hands and knees in front of Igor, your exposed ass towards the door for anyone coming in to see your fuckholes.'
+		gs 'dinsex', 'bj_random'
+
+		gs 'arousal', 'bj', 7
+		gs 'arousal', 'flash', 5, 'exhibitionism'
+		minut -= 6
+		gs 'stat'
+
+		act 'Keep sucking him':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/bj_2.jpg"></center>'
+			'You keep sucking Igor on your knees, your hand pulling out and squeezing your tits. Igor lightly grabs your head and begins to lightly skulllfuck you. After a moment you notice his dick spasming right in your mouth, shooting his jizm right down your throat.'
+			gs 'dinsex', 'bj_swallow_random'
+
+			gs 'arousal', 'bj', 7
+			gs 'arousal', 'breasts', 5
+			minut -= 8
+			gs 'stat'
+			gs 'arousal', 'end'
+
+			act 'Further': gt 'swamphouse'
+		end
+	end
+
+	if $ARGS[1] = 'vaginal':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_1.jpg"></center>'
+		gs 'dinsex', 'vaginal_sex', 15
+
+		act 'Take off your top':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_2.jpg"></center>'
+			'You pretty much rip off your top and start kneading your tits as Igor keeps drilling your cunt, making you moan and scream like a whore.'
+
+			gs 'arousal', 'vaginal', 8
+			gs 'arousal', breasts, 4
+			gs 'stat'
+
+			act 'Igor suddenly pulls out':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_3.jpg"></center>'
+				'Jerking off his <<$penis_desc>>, he covers your stomach and tits with his warm spunk.'
+
+				gs 'cum_call', 'breasts', 'A173', 1
+				gs 'cum_call', 'stomach', 'A173', 1
+				minut += 2
+				gs 'stat'
+				gs 'arousal', 'end'
+
+				act 'Cuddle him':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/cabin/f_4.jpg"></center>'
+					'You cuddle with Igor still covered in his spunk, enjoying this intimate moment'
+					'After a few minutes, Igor pulls you closer and gives you a kiss on the cheek before getting dressed and walking out of the hut.'
+
+					minut += 8
+					mood += 10
+
+					act 'Further': gt 'swamphouse'
+				end
+			end
+		end
+	end
 end
 
 if $ARGS[0] = 'woods':
-    if $ARGS[1] = '':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/2.jpg"></center>'
-        'You passionately kiss Igor, his tongue exploring your throat. As you are making out with Igor, you notice him undoing your buttons'
-        
-        gs 'arousal', 'kiss', 3
-        gs 'stat'
-
-        act 'Pull back': 
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/misc/hangout_woods.jpg"></center>'
-            'You do not really want to do it here. Noticing you not really reciprocating, Igor pulls back and goes back to simply relaxing and chatting with you.'
-
-            gs 'arousal', 'end'
-
-            act 'Further': gt 'swamp_woods'
-        end
-
-        act 'Keep making out with him':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/3.jpg"></center>'
-            'You let him undo your top, continuing to make out with him until he exposes your tits to the warm, breezy air.'
-
-            gs 'arousal', 'foreplay', 2
-            gs 'stat'
-
-            act '...':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/4.jpg"></center>'
-                'He pulls your outfit down and kisses down your chest before his lips find your nipple. You gasp when he starts to suckle and nibble, feeling a bit of wetness between your legs'
-
-                gs 'arousal', 'foreplay', 4
-                gs 'arousal', 'breasts', 4
-                minut -= 5
-                gs 'stat'
-
-                act 'Stand up so that he can strip you off':
-                    cla & *clr
-                    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/5_2.jpg"></center>'
-                    'As soon as you stand up he starts pulling your outfit down your legs, exposing your already aching pussy.'
-
-                    act 'Blow him': gt 'IgorHunter', 'woods', 'cuni'
-                end
-            end
-        end
-    end
-
-    if $ARGS[1] = 'cuni':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/6.jpg"></center>'
-        'Just as you start kneeling down, Igor picks you up and puts you up on the stump in one swift move'
-        'You let out a shriek part out of surprise and part how being manhandled like this got you aroused, spreading your legs wide for Igor'
-        'He does not lose time before starting to suck on your clit, pumping his finger in and out while you moan deeply.'
-
-        gs 'arousal', 'foreplay', 8, 'sub'
-        gs 'arousal', 'cuni', 12
-        gs 'arousal', 'vaginal_finger', 8
-        minut -= 20
-        gs 'stat'
-
-        act 'Get down and strip Igor': gt 'IgorHunter', 'woods', 'bj'
-    end
-
-    if $ARGS[1] = 'bj':
-        cla & *clr
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/8.jpg"></center>'
-        'Satisfied enough with Igor''s ''surprise'', you get down and undo his pants as he takes off his t-shirt.'
-        'You then pull down his boxers, exposing his diamond hard cock'
-
-        minut += 2
-        gs 'stat'
-
-        act 'Suck his dick':
-            cla & *clr
-            '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/9.jpg"></center>'
-            gs 'dinsex', 'bj_random'
-            'After a few moments, you start feeling his dick rhytmically pulsing inside your mouth'
-
-            gs 'arousal', 'bj', 8
-            gs 'stat'
-
-            act 'Keep sucking and milk his dick':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/swallow.jpg"></center>'
-                'You keep on sucking and stroking Igor''s dick as his dick throbs harder and harder'
-                gs 'dinsex', 'bj_swallow_random'
-
-                gs 'arousal', 'bj', 4
-                gs 'cum_call', 'mouth', 'A173', 1
-                gs 'stat'
-                gs 'arousal', 'end'
-
-                act 'Further': gt 'swamp_woods'
-            end
-
-            act 'You want him to cum on your tits':
-                cla & *clr
-                '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/pnecklace.jpg"></center>'
-                'You take him out and jerk him off. It takes him only a few seconds to climax, covering your chest with his spunk'
-
-                gs 'arousal', 'hj', 4
-                gs 'cum_call', 'breasts', 'A173', 1
-                gs 'stat'
-                gs 'arousal', 'end'
-
-                act 'Further': gt 'swamp_woods'
-            end
-        end
-    end
+	if $ARGS[1] = '':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/2.jpg"></center>'
+		'You passionately kiss Igor, his tongue exploring your throat. As you are making out with Igor, you notice him undoing your buttons'
+
+		gs 'arousal', 'kiss', 3
+		gs 'stat'
+
+		act 'Pull back':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/misc/hangout_woods.jpg"></center>'
+			'You do not really want to do it here. Noticing you not really reciprocating, Igor pulls back and goes back to simply relaxing and chatting with you.'
+
+			gs 'arousal', 'end'
+
+			act 'Further': gt 'swamp_woods'
+		end
+
+		act 'Keep making out with him':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/3.jpg"></center>'
+			'You let him undo your top, continuing to make out with him until he exposes your tits to the warm, breezy air.'
+
+			gs 'arousal', 'foreplay', 2
+			gs 'stat'
+
+			act 'Continue':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/4.jpg"></center>'
+				'He pulls your outfit down and kisses down your chest before his lips find your nipple. You gasp when he starts to suckle and nibble, feeling a bit of wetness between your legs'
+
+				gs 'arousal', 'foreplay', 4
+				gs 'arousal', 'breasts', 4
+				minut -= 5
+				gs 'stat'
+
+				act 'Stand up so that he can strip you off':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/5_2.jpg"></center>'
+					'As soon as you stand up he starts pulling your outfit down your legs, exposing your already aching pussy.'
+
+					act 'Blow him': gt 'IgorHunter', 'woods', 'cuni'
+				end
+			end
+		end
+	end
+
+	if $ARGS[1] = 'cuni':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/6.jpg"></center>'
+		'Just as you start kneeling down, Igor picks you up and puts you up on the stump in one swift move'
+		'You let out a shriek part out of surprise and part how being manhandled like this got you aroused, spreading your legs wide for Igor'
+		'He does not lose time before starting to suck on your clit, pumping his finger in and out while you moan deeply.'
+
+		gs 'arousal', 'foreplay', 8, 'sub'
+		gs 'arousal', 'cuni', 12
+		gs 'arousal', 'vaginal_finger', 8
+		minut -= 20
+		gs 'stat'
+
+		act 'Get down and strip Igor': gt 'IgorHunter', 'woods', 'bj'
+	end
+
+	if $ARGS[1] = 'bj':
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/8.jpg"></center>'
+		'Satisfied enough with Igor''s ''surprise'', you get down and undo his pants as he takes off his t-shirt.'
+		'You then pull down his boxers, exposing his diamond hard cock'
+
+		minut += 2
+		gs 'stat'
+
+		act 'Suck his dick':
+			cla & *clr
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/9.jpg"></center>'
+			gs 'dinsex', 'bj_random'
+			'After a few moments, you start feeling his dick rhytmically pulsing inside your mouth'
+
+			gs 'arousal', 'bj', 8
+			gs 'stat'
+
+			act 'Keep sucking and milk his dick':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/swallow.jpg"></center>'
+				'You keep on sucking and stroking Igor''s dick as his dick throbs harder and harder'
+				gs 'dinsex', 'bj_swallow_random'
+
+				gs 'arousal', 'bj', 4
+				gs 'cum_call', 'mouth', 'A173', 1
+				gs 'stat'
+				gs 'arousal', 'end'
+
+				act 'Further': gt 'swamp_woods'
+			end
+
+			act 'You want him to cum on your tits':
+				cla & *clr
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter_igor/woods/pnecklace.jpg"></center>'
+				'You take him out and jerk him off. It takes him only a few seconds to climax, covering your chest with his spunk'
+
+				gs 'arousal', 'hj', 4
+				gs 'cum_call', 'breasts', 'A173', 1
+				gs 'stat'
+				gs 'arousal', 'end'
+
+				act 'Further': gt 'swamp_woods'
+			end
+		end
+	end
 end
 
 --- Igorhunter ---------------------------------

+ 3 - 3
locations/NikoDates.qsrc

@@ -411,7 +411,7 @@ if $ARGS[0] = 'Date 2_2':
 					*nl
 					'<center><video autoplay loop src="images/characters/pavlovsk/school/boy/niko/nikoev/dates/train.mp4"></video></center>'
 
-					act '...':gt 'NikoDates', 'Date Rape'
+					act 'Continue':gt 'NikoDates', 'Date Rape'
 				end
 			end
 		end
@@ -460,7 +460,7 @@ if $ARGS[0] = 'Date Rape':
 				gs 'arousal', 'end'
 				gs'stat'
 
-				act '...':
+				act 'Continue':
 					cls
 					gs 'clothing', 'wear_last_worn'
 					if NikoEv < 4:NikoEv = 4
@@ -1676,7 +1676,7 @@ if $ARGS[0] = 'Exposed':
 											gs 'arousal', 'end'
 											gs 'stat'
 
-											act '...':gs 'clothing', 'wear_last_worn' & gt 'NikoDreams', 'Family'
+											act 'Continue':gs 'clothing', 'wear_last_worn' & gt 'NikoDreams', 'Family'
 										end
 									end
 								end

+ 4 - 4
locations/NikoDreams.qsrc

@@ -53,7 +53,7 @@ if $ARGS[0] =  'Family':
 						*nl
 						'<center><video autoplay loop src="images/characters/pavlovsk/school/boy/fedor/fedorev2/home/bedroom/cum/cum10.mp4"></video></center>'
 
-						act '...':gt 'SoniaHome', 'Aftermath'
+						act 'Continue':gt 'SoniaHome', 'Aftermath'
 					end
 				end
 			end
@@ -324,7 +324,7 @@ if $ARGS[0] =  'TeeHee':
 		*nl
 		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/butterfly6.jpg"></center>'
 
-		act '...':VKTeeHee = 1 & VKWoods = -1 & VKSmiley = 3 & gt 'SoniaHome', 'Aftermath 2'
+		act 'Continue':VKTeeHee = 1 & VKWoods = -1 & VKSmiley = 3 & gt 'SoniaHome', 'Aftermath 2'
 	end
 
 	act 'Walk away':VKTeeHee = 1 & gt 'NikoDreams', 'Woods Home'
@@ -430,7 +430,7 @@ if $ARGS[0] =  'Friends':
 						*nl
 						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/friends/darkness.jpg"></center>'
 
-						act '...':minut += 120 & gt 'NikoEv2', 'Niko Wake'
+						act 'Continue':minut += 120 & gt 'NikoEv2', 'Niko Wake'
 					end
 				end
 			end
@@ -539,7 +539,7 @@ if $ARGS[0] = 'Puppeteer':
 							'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikomisc/nightmares/happyhome/residents/puppeteer.jpg"></center>'
 							'You turn around but quickly get grabbed by your cheeks then launched onto the ground by a horrific looking man with an orange suit and long sharp nails. You quickly roll to the side, dodging a swipe of his nails before quickly crawling away just to get grabbed by your ankles and dragged back. You let out a loud scream before you hear the man say, "Ahh another one for my collection. You belong to me now puppet." The man then pulls you toward him. You try to grab onto something to stop yourself from getting dragged away but can find nothing to grab onto. You can do nothing but cry and scream as you get pulled out of the school into a dark mist which envelopes you....'
 
-							act '...':
+							act 'Continue':
 								*clr & cla
 								music_loop = 0
 								close all

+ 1 - 1
locations/RoundEnd.qsrc

@@ -23,7 +23,7 @@ stoper = 0
 			resultFight = 2
 		end
 
-		act '...':gt 'EndFight'
+		act 'Continue':gt 'EndFight'
 	elseif round < Formula + 1:
 		endur += lustw * 25 / 100
 		endurE += lustwe * 25 / 100

+ 1 - 1
locations/SubLoss.qsrc

@@ -6,7 +6,7 @@
 resultFight = 4
 'You signal the referee that you''re no longer able to continue fighting and give up.'
 
-act '...':gt 'EndFight'
+act 'Continue':gt 'EndFight'
 
 --- SubLoss ---------------------------------
 

+ 1 - 1
locations/SubWin.qsrc

@@ -6,7 +6,7 @@
 resultFight = 0
 '<<$nameE>> is done. The referee signals, that she can no longer continue on fighting and she''s given up.'
 
-act '...':gt 'EndFight'
+act 'Continue':gt 'EndFight'
 
 --- SubWin ---------------------------------
 

+ 2 - 2
locations/buklinik_event.qsrc

@@ -253,7 +253,7 @@ if $ARGS[0] = 'kitchen':
 			nanny_food = 1
 			'<center><img <<$set_imgh>> src="images/locations/city/industrial/mercyclinic/gotovka.jpg"></center>'
 			'You cooked the food and fed Michael.'
-			act '...': gt $loc, $metka
+			act 'Finish': gt $loc, $metka
 		end
 	end
 	act 'Out': gt 'buklinik_event', 'hall'
@@ -456,7 +456,7 @@ if $ARGS[0] = 'entrance':
 		end
 	end
 
-	act '...': gt 'buklinik_event', 'hall'
+	act 'Continue': gt 'buklinik_event', 'hall'
 end
 
 if $ARGS[0] = 'event2':

+ 1 - 1
locations/burger.qsrc

@@ -624,7 +624,7 @@ if $ARGS[0] = 'dishes':
 			minut -= 3
 			gs 'stat'
 
-			act '...':
+			act 'Continue':
 				*clr & cla
 				gs 'boyStat', 'A75'
 				sexpartkno = 1

+ 7 - 7
locations/din_pav.qsrc

@@ -210,7 +210,7 @@ $pavser4 = {
 			gs 'arousal', 'masturbate', 5
 			gs 'stat'
 			
-            act '...':
+            act 'Continue':
                 *clr & cla
 				pcs_mood = 100
                 '<center><video autoplay loop src="images/locations/oldtown/vacanthouse/11684312.mp4"></video></center>'
@@ -393,7 +393,7 @@ $pavser9 = {
 						gs 'arousal', 'bj', 5, 'sub'
 						gs 'stat'
 						
-                        act '...':
+                        act 'Continue':
                             *clr & cla
 			                pcs_mana = manamax
 			                gs 'underwear', 'remove'
@@ -406,7 +406,7 @@ $pavser9 = {
 							gs 'arousal', 'vaginal_finger', 5, 'sub'
 							gs 'stat'
 							
-                            act '...':
+                            act 'Continue':
                                 *clr & cla
                                 gs'stat'
 								gs 'npcgeneratec', 0, 'Stranger', rand(19,45)
@@ -420,7 +420,7 @@ $pavser9 = {
 								gs 'arousal', 'vaginal', 10, 'sub'
 								gs 'stat'
 								
-                                act '...':
+                                act 'Continue':
                                     *clr & cla
 			                        pcs_mana = manamax
                                     gs'stat'
@@ -430,7 +430,7 @@ $pavser9 = {
 									$orgasm_or = 'yes'
 									gs 'stat'
 									
-                                    act '...':
+                                    act 'Continue':
                                         *clr & cla
                                         gs'stat'
                                         '<center><img <<$set_imgh>> src="images/locations/oldtown/vacanthouse/sex/09.jpg" ></center>'
@@ -441,7 +441,7 @@ $pavser9 = {
 										gs 'arousal', 'anal', 10, 'sub'
 										gs 'stat'
 										
-                                        act '...':
+                                        act 'Continue':
                                             *clr & cla
                                             orgasm += 1
 				                            pcs_horny = 0
@@ -452,7 +452,7 @@ $pavser9 = {
 											$orgasm_or = 'yes'
 											gs 'stat'
 									
-                                            act '...':
+                                            act 'Continue':
                                                 *clr & cla
                                                 gs'stat'
                                                 '<center><img <<$set_imgh>> src="images/locations/oldtown/vacanthouse/sex/11.jpg" ></center>'

+ 3 - 3
locations/fight1.qsrc

@@ -9,19 +9,19 @@ $resultUderDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
 		'You''ve successfully mounted your opponent.'
 
-		act '...':stoper = 0 & gt 'fight2'
+		act 'Continue':stoper = 0 & gt 'fight2'
 	elseif Aktiv < Passiv:
 		pointE += 1
 		KzE += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
 		'You''re not able to do anything as your opponent counters.'
 
-		act '...':stoper = 0 & gt 'fight3'
+		act 'Continue':stoper = 0 & gt 'fight3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 3 - 3
locations/fight2.qsrc

@@ -12,19 +12,19 @@ $resultUderDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
 		'You''re successfully holding your opponent.'
 
-		act '...':gt 'fight2'
+		act 'Continue':gt 'fight2'
 	elseif Aktiv < Passiv:
 		pointE += 1
 		KzE += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
 		'You''re not able to do anything as your opponent counters.'
 
-		act '...':stoper = 0 & gt 'fight3'
+		act 'Continue':stoper = 0 & gt 'fight3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 5 - 5
locations/fight3.qsrc

@@ -9,21 +9,21 @@ $resultUderDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
 		'You''ve successfully locked your opponent.'
 
-		act '...':stoper = 0 & gt 'fight2'
+		act 'Continue':stoper = 0 & gt 'fight2'
 
 	! if Aktiv <= Passiv:
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	else
 		pointE += 1
 		KzE += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'You''re not able to do anything as your opponent breaks your lock.'
 
-		act '...':gt 'RoundStop'
+		act 'Continue':gt 'RoundStop'
 	end
 }
 
@@ -35,7 +35,7 @@ $resultBrosDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
 		'You''re successfully thrown your opponent.'
 
-		act '...':stoper = 0 & gt 'fight1'
+		act 'Continue':stoper = 0 & gt 'fight1'
 	! if Aktiv <= Passiv:
 	else
 		pointE +=1
@@ -43,7 +43,7 @@ $resultBrosDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
 		'You''re not able to do anything as your opponent counters.'
 
-		act '...':gt 'RoundStop'
+		act 'Continue':gt 'RoundStop'
 	end
 }
 

+ 6 - 6
locations/fightFW.qsrc

@@ -6,19 +6,19 @@ $resultUderDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
 		'You''ve successfully mounted your opponent.'
 
-		act '...':stoper = 0 & gt 'fight2'
+		act 'Continue':stoper = 0 & gt 'fight2'
 	elseif Aktiv < Passiv:
 		pointE += 1
 		KzE += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'You''re not able to do anything as your opponent counters.'
 
-		act '...':stoper = 0 & gt 'fight3'
+		act 'Continue':stoper = 0 & gt 'fight3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 
@@ -30,19 +30,19 @@ $resultBrosDin = {
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
 		'You''ve successfully mounted your opponent.'
 
-		act '...':stoper = 0 & gt 'fight1'
+		act 'Continue':stoper = 0 & gt 'fight1'
 	elseif Aktiv < Passiv:
 		pointE += 1
 		KzE += 1
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
 		'You''re not able to counter your opponent.'
 
-		act '...':stoper = 0 & gt 'fight3'
+		act 'Continue':stoper = 0 & gt 'fight3'
 	elseif Aktiv = Passiv:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
 		'The two of you try to one up each other without being able to gain the superiority.'
 
-		act '...':gt $curloc
+		act 'Finish':gt $curloc
 	end
 }
 

+ 19 - 19
locations/foto_models.qsrc

@@ -130,7 +130,7 @@ if $ARGS[0] = 'mari_1':
 		'"Hi, I hope I''m not bothering you. I''ve just been recruited by the agency and I wanted to introduce myself," you say as you step up to her.'
 		'"I''m <<$pcs_firstname>>."'
 		'Mari looks your way and smiles, "Hello, it''s nice meeting a new employee, I''m Mari." As she runs her hand through her hair absentmindedly, you can''t help but notice her breasts becoming even more visible now that her curly brown hair has been moved out of the way.'
-		act'...':
+		act 'Continue':
 			*clr & cla
 			'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/3.jpg"></center>'
 			'"I''m gonna to sit down if you don''t mind. Long hours standing up and all, no use standing when you don''t have to!" she says pleasantly as she sits down and puts one of her legs up on the bench.'
@@ -162,17 +162,17 @@ if $ARGS[0] = 'mari_1':
 							*clr
 							'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/5.jpg"></center>'
 							'You stick around for a while watching Mari as the photographer gives her instructions and she poses accordingly.'
-							act '...':
+							act 'Continue':
 								cla
 								*clr
 								'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/6.jpg"></center>'
 								'You watch her drop her skirt on the photographer''s command, revealing her lack of underwear and a neat triangle of pubic hair.'
-								act '...':
+								act 'Continue':
 									cla
 									*clr
 									'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/7.jpg"></center>'
 									'You watch her pull off her top next with a smile and a laugh and you realize that she''s genuinely happy right now.'
-									act'...':
+									act 'Continue':
 										cla
 										*clr
 										'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/8.jpg"></center>'
@@ -207,17 +207,17 @@ if $ARGS[0] = 'mari_1':
 						*clr
 						'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/5.jpg"></center>'
 						'You stick around for a while watching Mari as the photographer gives her instructions and she poses accordingly.'
-						act '...':
+						act 'Continue':
 							cla
 							*clr
 							'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/6.jpg"></center>'
 							'You watch her drop her skirt on the photographer''s command, revealing her lack of underwear and a neat triangle of pubic hair.'
-							act '...':
+							act 'Continue':
 								cla
 								*clr
 								'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/7.jpg"></center>'
 								'You watch her pull off her top next with a smile and a laugh and you realize that she''s genuinely happy right now.'
-								act'...':
+								act 'Continue':
 									cla
 									*clr
 									'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/meeting/8.jpg"></center>'
@@ -241,7 +241,7 @@ if $ARGS[0] = 'mari_2':
 		*clr & cla
 		'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading2.jpg"></center>'
 		'"Oh hi, <<$pcs_nickname>>," she says as she hears your voice and looks up. "I am! But it''s boring to spend it the break rooms. I spend most of my breaks lounging around on the sets. No one''s using them and it''s just more fun that way. Besides, this chair is really comfy!" she says with a laugh.'
-		act '...':
+		act 'Continue':
 			*clr & cla
 			'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading3.jpg"></center>'
 			'You can''t help but smile and laugh with her.'
@@ -254,7 +254,7 @@ if $ARGS[0] = 'mari_2':
 					*clr & cla
 					'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading5.jpg"></center>'
 					'You shrug and say, "I haven''t the faintest idea what you''re talking about Mari."'
-					act'...':
+					act 'Continue':
 						*clr & cla
 						'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading6.jpg"></center>'
 						'She stands up and laughs again. "We''re always naked!" she giggles. Once more, you can''t help but join in with her infectious laughter and remembering that you yourself are currently naked on the way to a shoot.'
@@ -283,21 +283,21 @@ if $ARGS[0] = 'mari_2':
 										cla
 										'All of a sudden you start to feel nervous. It''s such a personal question you don''t know if you should be asking, but you''re committed now. There''s no turning back. "It''s kind of personal, but I was wondering... what do your parents think of all this? I''m mostly asking since we kind of come from similar backgrounds and you know, your parents are from Gadukino and I''m from Pavlovsky and we''re in sort of similar situations and... you know..."'
 										'You trail off at the end of your sentence, unsure of how to end such a personal request.'
-										act '...':
+										act 'Continue':
 											*clr & cla
 											'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading9.jpg"></center>'
 											'Mari looks away for a moment, contemplating your question.'
 											'"Well, to be honest I don''t really know. I mean my parents know I''ve got a job in the city but they don''t know exactly what I do. I know they love me a lot and they''re very happy for me for living my dream and maybe they''d even be proud of me if I told them about it, but I don''t know."'
-											act'...':
+											act 'Continue':
 												*clr & cla
 												'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading10.jpg"></center>'
 												'"I''m not sure how much they <i>need</i> to know about their teenage daughter having pictures taken of her in the nude and put in magazines and on the internet. So my advice is, it all depends on your parents. If they''re cool with it, maybe you should tell them. Otherwise, I guess don''t."'
-												act '...':
+												act 'Continue':
 													*clr & cla
 													'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading11.jpg"></center>'
 													'She looks at you a bit concerned, hoping that she''s been of some help to you.'
 													'Unsure of what to do you hesitate in your response resulting in an awkward pause.'
-													act'...':
+													act 'Continue':
 														*clr & cla
 														'<center><img src="images/locations/city/citycenter/photo/portraits/mari_e/talking/reading12.jpg"></center>'
 														'"Oh, come here silly," she says as she stands up and wraps you in a warm hug. You feel her soft breasts smushing into yours, the smoothness of her body rubbing against you, her nipples two gentle points of pressure on your skin, your own nipples pressing back into her... It''s all strangely calming. Mari''s right. It is relaxing to be naked together.'
@@ -480,7 +480,7 @@ if $ARGS[0] = 'mari_chat':
 					'"Yeah, I''ve got two. My sister who''s about the same age as you are and my silly little brother."'
 					'Mari smiles at you. "That''s sounds nice."'
 					'You think of your siblings and smile. "Yeah. It is."'
-					
+
 				elseif sisterLesb >= 5:
                     '    "Yeah, I''ve got two. My sister who''s about the same age as you are and my adorable little brother. I love them both so much!"'
                     '    Mari smiles at you. "You sound close."'
@@ -1139,7 +1139,7 @@ if $ARGS[0] = 'anastasiasex':
 				end
 			end
 		end
-		
+
 		if guy >= 10:
 			act'I know what you mean':
 				*clr & cla
@@ -1155,7 +1155,7 @@ if $ARGS[0] = 'anastasiasex':
 						act'Oh! We can do that here?':gt'foto_models','anastasiasex3'
 					end
 				end
-				
+
 				if pcs_cupsize >= 25:
 					act'I''ve got big boobs':
 						cla & *nl
@@ -1207,7 +1207,7 @@ if $ARGS[0] = 'anastasiasex2':
 			'With that, she bids you farewell, walking towards another part of the studio.'
 			act 'Leave':gt 'foto','studio'
 		end
-		
+
 		act'Yes':
 			*clr & cla
 			'<center><img src="images/locations/city/citycenter/photo/portraits/anastasia_p/talking/1.jpg"></center>'
@@ -1233,7 +1233,7 @@ if $ARGS[0] = 'anastasiasex3':
 		'"There are three things you need to know in this business. Make sure to enjoy yourself, never forget your birth control, and <i>always</i> charge extra for creampies, swallowing, and anal."'
 		'She stands back, meeting your eyes with a smile. "Words to live by my dear. Words to live by. But I must be off now. Don''t be a stranger!"'
 		'With that, she bids you farewell, walking towards another part of the studio.'
-		
+
 		'<b>dev note: escorting business still WIP</b>'
 		act 'Leave':gt 'foto','studio'
 	end
@@ -1886,7 +1886,7 @@ if $ARGS[0] = 'jeff_chat':
 			end
 		end
 	end
-		
+
 	if jeff_grope > 3:
 		act 'Ask her to stop groping you':
 			*clr & cla

+ 3 - 3
locations/gevent.qsrc

@@ -47,7 +47,7 @@ if $ARGS[0] = '1':
 
 				'After raping your pussy for a few minutes, he pulls his dick out and forcibly thrusts it down your throat. You no longer have the strength to even fight it and just go along with whatever he wants to do, trying to appease him so he doesn''t think of anything worse to try instead. When he cums he pulls back just a bit, and you can feel it spasm as a warm liquid hits your tongue.'
 			end
-			
+
 			act 'Swallow his cum':
 				*clr & cla
 				swallow += 1
@@ -163,7 +163,7 @@ if $ARGS[0] = '3':
 	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/sex/3.jpg"></center>'
 	'You go with the Armenian to his home nearby. In the apartment there are two more guys, also Armenians. They speak to each other in their own language, while drinking alot of alcohol. You don''t realise just how strong it is until you are completely wasted, then they strip and fuck you, taking turns in all of your holes, finishing inside and all over you, all the while they are filming with there phones. Finally, when they are spent and bored of you, they kicked you out of the apartment.'
 
-	act '...':gt 'pavResidential'
+	act 'Continue':gt 'pavResidential'
 end
 
 if $ARGS[0] = '4':
@@ -251,7 +251,7 @@ if $ARGS[0] = '6':
 	guyondisco -= 1
 	if guyondisco > 0: jump 'geventgondloop'
 	gs 'stat'
-	
+
 	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/sex/6.1.jpg"></center>'
 	'You barely remember what happened. You were standing against the wall at the disco, quietly enjoying the admittedly rather outdated music when a guy approached you. He started groping you, but you were too drunk to stop him. It also felt kind of nice to be wanted, so you just went along with it.'
 	'The next thing you remember: you were on your knees, sucking him off in the bathroom stalls. After he came in your mouth he took you away from the disco to a different place, where several of his friends had already gathered. "Dude, nice!" they praised his catch, while you unsteadily tried to move to the couch to sit down. You never made it to the couch, the guys immediately surrounded you and started to maul you from all sides.'

+ 9 - 9
locations/grigory.qsrc

@@ -469,7 +469,7 @@ if $ARGS[0] = 'flower5':
 	'For several minutes, you watch him work in the field, though he does not appear to see you.'
 	'Sighing, you glance at his truck and notice a bag sitting in the front seat, several little purple flowers falling out of it.'
 	'Your eyes widen at the sight.'
-	
+
 	if grigory_flower = 1:
 		act 'Creepy':
 			grigory_flower = 10
@@ -836,7 +836,7 @@ if $ARGS[0] = 'field_watch':
 
 		act 'Continue':gt'gadfield','field'
 	end
-end	
+end
 
 if $ARGS[0] = 'field3':
 !! Field Scene 3: Friendly
@@ -904,11 +904,11 @@ end
 if $ARGS[0] = 'drunk':
 	!!Evening Drinking 1 (You are drunk)
 
-	'Walking through the little villiage, you experience a moment of vertigo that nearly takes you off your feet.' 
+	'Walking through the little villiage, you experience a moment of vertigo that nearly takes you off your feet.'
 	'Thinking little of it, you keep stumbling down the road.'
 	'Stumbling again, you start to fall, but suddenly the world shifts and you''re flying instead.'
 	'It takes you a few seconds to realize that someone just caught you and is still holding you in their arms, having swept you off of your feet.'
-	'Disoriented, you start to struggle until you hear a familiar voice, though you''re too drunk to place it, "Easy Kiska, its just me."' 
+	'Disoriented, you start to struggle until you hear a familiar voice, though you''re too drunk to place it, "Easy Kiska, its just me."'
 	'You find the rumbling voice comforting, and you stop struggling. Instead, you try to look up at the big man carrying you, "Yyeti?"'
 	'The man chuckles lightly, "It would break your grandparents'' hearts to see you like this," He says to himself. You can feel him stop walking, only becoming aware of the gintle swaying as it comes to an end.'
 	'"Now what?" He asks.'
@@ -916,11 +916,11 @@ if $ARGS[0] = 'drunk':
 	'Another soft laugh, "Wasn''t asking you Kiska," He gives you an affectionate squeeze. You close your eyes and just enjoy the warmth of the big man cradling you so close to his body.'
 	'"Only other place I can think of is mine," A long pause, "Hope you don''t take this the wrong way," He seems to say to himself.'
 	'A second later you begin to feel the swaying of his footsteps again. Within seconds you drift to sleep.'
-		act '...':
+		act 'Continue':
 		'With a groan of discomfort, you feel yourself being sat in a cold leather chair, the chill of the night making you shiver as the big warm thing you had snuggled against is gone.'
 		'"Its ok," You hear someone say softly. The voice is familiar, Grigory? What''s he doing with me?'
 		'The train of thought is interrupted as he wraps his big warm coat around you. With a little sigh, your world fades once more.'
-			act '...':
+			act 'Continue':
 			'You''re woken again when you feel someone picking you up. You struggle ineffectively for a second before you''re able to focus on the big man holding you, "Grigory?" You slur heavily, "What uuh doin?"'
 			'"Its ok Kiska," Grigory says softly, "You''re drunk and I brought you home."'
 			'"Kaaaaay," You manage, closing your eyes and enjoying the feel of his big body pressed against your own.'
@@ -930,7 +930,7 @@ if $ARGS[0] = 'drunk':
 			'"Sweet dreams my little Kiska," He says softly.'
 			'"Youuuu sweet," You mumble, closing your eyes.'
 			'You feel something press softly against your forehead for a second. You wonder if he just kissed your forehead, but can''t quite will yourself to open your eyes.'
-				act '...':
+				act 'Continue':
 				'You wake to the smell of cooking eggs and a pounding headache.'
 				'Opening your eyes, you have a moment of disorientation until half remembered fragments of the previous night start coming back to you.'
 				'Part of you wants to remain in the warm bed forever, but you know you have to get up sometime. Pushing back the covers, you slip from the bed.'
@@ -997,7 +997,7 @@ if $ARGS[0] = 'romantic_event':
 			'"Can''t we stay a little longer?" You ask, stifling a yawn as you say it.'
 			'You more feel then hear his soft chuckle, "Whatever makes you happy Kiska," He sounds happy when he speaks.'
 			'This is nice, you think, closing your eyes for a moment.'
-			act '...':
+			act 'Continue':
 				'The sky is much brighter when you open your eyes again. The second thing you notice is that you''re in bed.'
 				'You roll part way over, the weight arcoss your hip shifting as you do so. You look down to see Grigory''s arm draped across your middle. With a little smile, you turn the rest of the way towars him, finding him in his pajamas, under the covers with you. '
 				'Grigory makes a soft sound, almost a snore, in his sleep. Your little smile blossoms into an amused grin when you see that he''s been drooling in his sleep.'
@@ -1145,7 +1145,7 @@ if $ARGS[0] = 'drunk_late':
 					'With no response, you exit the bedroom and start to look around. The first thing you notice is that all of Grigory''s clothes have been picked up, and that the end table has been moved back to where it belongs. The second is when you look out the living room window and notice that his truck is gone.'
 					'You sigh, then start back toward the bedroom to grab your shoes and tidy up before leaving. You''re almost to the front door when you notice a note stuck to the door. '
 					*nl
-					'<b>Sorry about last night. I had a bit too much to drink. Please forgive me.' 
+					'<b>Sorry about last night. I had a bit too much to drink. Please forgive me.'
 					'I was going to wake you this morning, but you looked like a sleeping angel and I couldn''t bring myself to wake you up. I hope you slept well.'
 					'Help yourself to the fridge for breakfast, maybe I''ll see you a little later.'
 					'Love you Kiska,'

+ 27 - 27
locations/gschool_lessons1.qsrc

@@ -182,7 +182,7 @@ if $ARGS[0] = 'math':
 					'Mr. Tsarev says, "You don''t know do you? Then at least try to pay attention. Many things that we need in life require some effort from us all. It''s not always fun but some of the things we learn making life easier in the future, leading to even more pleasant times." Not knowing what to say, you simply nod as Anatoly turns around and continues his lesson. You sit through the rest of the lesson in silence, while your mind drifts elsewhere. You can''t focus on the lesson at all.'
 					act 'Wait for the end of the lesson': gt 'gschool_lessonsev2', 'math'
 				end
-				
+
 				gs 'willpower', 'misc', 'self', 'medium'
 				if will_cost <= pcs_willpwr:
 					act 'Give him an attitude (<<will_cost>> Willpower)':
@@ -197,9 +197,9 @@ if $ARGS[0] = 'math':
 						'<center><b><h4><font color=#FF00CC><<"<<$pcs_firstname>> [<<$pcs_nickname>>] <<$pcs_lastname>>">></font></h4></b></center>'
 						*pl '<center><img <<$set_imgh>> src="<<FUNC(''$face_image'')>>"></center>'
 						'"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" You answer boldly. The whole class bursts into laughter, and Anatoly has a rough time getting everyone to quiet down. "Miss <<$pcs_lastname>>, do you find this kind of behavior amusing? or are you just seeking attention? Try to answer this question for yourself while to head off to the principal''s office." Anatoly then points to the door.'
-						
+
 						gs 'willpower', 'misc', 'resist', 'medium'
-						if will_cost <= pcs_willpwr:	
+						if will_cost <= pcs_willpwr:
 							act 'Don''t leave the classroom (<<will_cost>> Willpower)':
 								*clr & cla
 								gs 'willpower', 'pay', 'resist'
@@ -331,7 +331,7 @@ if $ARGS[0] = 'math':
 									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 								else
 									gs 'exhibitionism', 2
-									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'	
+									'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
 								end
 								'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mr. Tsarev walking towards your desk. When the Anatoly arrives at your desk, he says to you, "What is so important that you need to use your phone during my lesson? If nothing then I will hold onto it until the end of class." He then extends his hand out. You reply in a seductive tone, "Would you like to see?"'
 								*nl
@@ -513,7 +513,7 @@ if $ARGS[0] = 'russian':
 			*clr & cla
 			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
 			'You notice Mr. Yenotin looking at you calmly; he must have noticed you''re not paying attention to his class.'
-			
+
 			act 'Put your phone away':
 				*clr & cla
 				pcs_grades -= rand(0,1)
@@ -557,7 +557,7 @@ if $ARGS[0] = 'russian':
 								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 							else
 								gs 'exhibitionism', 2
-								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'	
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
 							end
 							'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mr. Yenotin walking towards your desk.'
 							'When the teacher arrives at your desk, they tell you, "Look, I know sometimes the lessons aren''t the most exciting but you still can''t play around with your phone, <<$pcs_nickname>>? So hand it over and you''ll get it back at the end of the lesson."'
@@ -758,7 +758,7 @@ if $ARGS[0] = 'literature':
 						grupvalue[3] += 1
 						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
 						'Realizing that this isn''t worth the fight, you hand over your phone without argument. "You can have this back after class." Ms. Braakman says as she walks back to the blackboard.'
-						act '...': gt 'gschool_lessonsev3', 'getphone'
+						act 'Continue': gt 'gschool_lessonsev3', 'getphone'
 					end
 					gs 'willpower', 'exhib', 'self'
 					if will_cost <= pcs_willpwr:
@@ -811,7 +811,7 @@ if $ARGS[0] = 'literature':
 							*nl
 							'Flustered and aroused, you regain your senses and remember that you''re sitting in class right now. You look around the room, but it seems like her groping went unnoticed and was seen as her fishing out your phone like you challenged her to do.'
 
-							act '...': gt 'gschool_lessonsev3', 'getphone'
+							act 'Continue': gt 'gschool_lessonsev3', 'getphone'
 						end
 					elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
 						act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
@@ -998,7 +998,7 @@ if $ARGS[0] = 'english':
 					*nl
 					'"A perfect example of how to fail my class." She smirks as kids begin to laugh at you.'
 				end
-				act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'english'	
+				act 'Wait for the end of the lesson': gs 'gschool_lessonsev3', 'english'
 			elseif rand(1,2) = 1:
 				*clr
 				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
@@ -1015,9 +1015,9 @@ if $ARGS[0] = 'english':
 			*clr & cla
 			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
 			'The lesson is so boring that you have to do something to keep yourself entertained, so you take out your phone and begin to play a mobile game, hoping the lesson will be over soon.'
-			
+
 			act 'Wait for the end of the lesson': gt 'gschool_lessons', 'short_break'
-			
+
 			if rand(1,4) = 1:
 				*clr & cla
 				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/phone.jpg"></center>'
@@ -1050,7 +1050,7 @@ if $ARGS[0] = 'english':
 							grupvalue[3] += 1
 							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/bored.jpg"></center>'
 							'Realizing that this isn''t worth the fight, you hand over your phone without argument. "You can have this back after class." Ms. Braakman says as she walks back to the blackboard.'
-							act '...': gt 'gschool_lessonsev3', 'getphone'
+							act 'Continue': gt 'gschool_lessonsev3', 'getphone'
 						end
 						gs 'willpower', 'exhib', 'self'
 						if will_cost <= pcs_willpwr:
@@ -1104,7 +1104,7 @@ if $ARGS[0] = 'english':
 								'"Don''t make me remind you of your place, little girl." Ms. Braakman''s warning is punctuated painfully as she gives a sharp pinch and tug to one of your nipples, eliciting a soft whimper from you. Having gotten her point across, she removes her hand and with it your phone. "You can get this back after class."'
 								*nl
 								'Flustered and aroused, you regain your senses and remember that you''re sitting in class right now. You look around the room, but it seems like her groping went unnoticed and was seen as her fishing out your phone like you challenged her to do.'
-								act '...': gt 'gschool_lessonsev3', 'getphone'
+								act 'Continue': gt 'gschool_lessonsev3', 'getphone'
 							end
 						elseif $braworntype ! 'none' and will_cost > pcs_willpwr:
 							act 'Hide the phone in your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
@@ -1188,9 +1188,9 @@ if $ARGS[0] = 'geography':
 					'"Of course. Please continue your super-fascinating lesson. Just keep it a bit up-beat please. If you talk any slower, I might fall asleep!" you answer boldly.'
 					'The whole class bursts into loud laughter, and Mrs. Sokoloff has a rough time getting everyone to quiet down.'
 					'"Miss <<$pcs_lastname>>, get out of class! Report to the Principal now!"'
-					act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'				
+					act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'
 					gs 'willpower', 'misc', 'resist', 'medium'
-					if will_cost <= pcs_willpwr:	
+					if will_cost <= pcs_willpwr:
 						act 'Don''t leave the classroom (<<will_cost>> Willpower)':
 							*clr & cla
 							gs 'willpower', 'pay', 'resist'
@@ -1206,7 +1206,7 @@ if $ARGS[0] = 'geography':
 						end
 					else
 						act 'Don''t leave the classroom (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
-					end		
+					end
 				end
 			else
 				act 'Be a smart ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
@@ -1297,7 +1297,7 @@ if $ARGS[0] = 'geography':
 								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 							else
 								gs 'exhibitionism', 2
-								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'	
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
 							end
 							'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mrs. Sokoloff walking towards your desk.'
 							'When the teacher arrives at your desk, she tells you, "And what could you be doing on your phone that''s more important than paying attention in class, Miss. <<$pcs_lastname>>? Hand it over."'
@@ -1310,7 +1310,7 @@ if $ARGS[0] = 'geography':
 					else
 						act 'Take photos under your skirt (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
 					end
-					
+
 					gs 'willpower', 'misc', 'self', 'medium'
 					if $braworntype ! 'none' and will_cost <= pcs_willpwr:
 						act 'Hide the phone in your bra (<<will_cost>> Willpower)':
@@ -1409,7 +1409,7 @@ if $ARGS[0] = 'history':
 					'"Miss <<$pcs_lastname>>, get out of class! Report to the Principal now!"'
 					act 'Go to principal''s office': demerit += 10+school_bunk*5 & gt 'gschool_office', 'principal'
 					gs 'willpower', 'misc', 'resist', 'medium'
-					if will_cost <= pcs_willpwr:	
+					if will_cost <= pcs_willpwr:
 						act 'Don''t leave the classroom (<<will_cost>> Willpower)':
 							*clr & cla
 							gs 'willpower', 'pay', 'resist'
@@ -1517,7 +1517,7 @@ if $ARGS[0] = 'history':
 								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 							else
 								gs 'exhibitionism', 2
-								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'	
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
 							end
 							'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Mrs. Sokoloff walking towards your desk.'
 							'When the teacher arrives at your desk, she tells you, "And what could you be doing on your phone that''s more important than paying attention in class, Miss. <<$pcs_lastname>>? Hand it over."'
@@ -1623,7 +1623,7 @@ if $ARGS[0] = 'biology':
 					'The whole class bursts into loud laughter, Miss Orlov seems a bit stunned by your comment, after a moment to regain her composure she quietly asks you "Miss <<$pcs_lastname>>, please leave class and report to the principal."'
 					act 'Go to principal''s office': demerit += 10 + school_bunk * 5 & gt 'gschool_office', 'principal'
 					gs 'willpower', 'misc', 'resist', 'medium'
-					if will_cost <= pcs_willpwr:	
+					if will_cost <= pcs_willpwr:
 						act 'Don''t leave the classroom (<<will_cost>> Willpower)':
 							*clr & cla
 							gs 'willpower', 'pay', 'resist'
@@ -1667,7 +1667,7 @@ if $ARGS[0] = 'biology':
 			*clr
 			'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/sleeping.jpg"></center>'
 			'You fall asleep and start dreaming.'
-			act 'Dream':	
+			act 'Dream':
 				*clr & cla
 				'<center><img <<$set_imgh>> src="images/shared/home/bedroom/dream/sex/ero4.jpg"></center>'
 				'You dream that you are on a bed naked with a girl, you kiss and caress each other passionately,'
@@ -1732,7 +1732,7 @@ if $ARGS[0] = 'biology':
 								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 							else
 								gs 'exhibitionism', 2
-								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'	
+								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/literature/nopanties_upskirt.jpg"></center>'
 							end
 							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/classroom/upskirtselfie.jpg"></center>'
 							'You decide to have some fun with your teacher, and quickly move the phone between your legs and snap some photos under your skirt as you see Miss Orlov walking towards your desk.'
@@ -1881,7 +1881,7 @@ if $ARGS[0] = 'literature_late':
 			end
 		elseif lit_late_counter > 10:
 			'When you open the door and walk in Mrs Braakman stops talking and everyone turns their eyes towards you. Mrs Braakman address you in a cold tone. "Your late again Miss <<$pcs_lastname>>, obviously we need to take sterner measures. Now come up here right now young lady!" She says as she points in front of her desk.'
-			
+
 			gs 'willpower', 'misc', 'resist', 'medium'
 			if will_cost <= pcs_willpwr:
 				act 'Refuse (<<will_cost>> Willpower)':
@@ -1897,7 +1897,7 @@ if $ARGS[0] = 'literature_late':
 			else
 				act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
 			end
-			
+
 			act 'Do as she says':
 				*clr & cla
 				if $pantyworntype ! 'none':
@@ -1938,7 +1938,7 @@ if $ARGS[0] = 'literature_late':
 			end
 		elseif lit_late_counter > 5:
 			'When you open the door and walk in Mrs Braakman stops talking and everyone turns their eyes towards you. Mrs Braakman address you in a cold tone. "Your late again Miss <<$pcs_lastname>>, I warned you I would not tolerate this. Now come up here right now young lady!" She says as she points in front of her desk.'
-			
+
 			gs 'willpower', 'misc', 'resist', 'pay'
 			if will_cost <= pcs_willpwr:
 				act 'Refuse (<<will_cost>> Willpower)':
@@ -1954,7 +1954,7 @@ if $ARGS[0] = 'literature_late':
 			else
 				act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
 			end
-			
+
 			act 'Do as she says':
 				*clr & cla
 				gs 'pain', 2, 'asscheeks', 'slap'

+ 219 - 219
locations/hunter_favors.qsrc

@@ -2,7 +2,7 @@
 
 !Non-sexual favors
 if $ARGS[0] = 'housekeeping_request':
-	
+
 	if hunters > 0 and huntersKnow = 1 and swiss_army_random_number < 3:
 		*clr & cla
 		swiss_army_random_number = rand(1,3)
@@ -20,55 +20,55 @@ if $ARGS[0] = 'housekeeping_request':
 		gs 'stat'
 
 		'<<$boydesc>> approaches you. "Hey I need your help with something"'
-		
-        act 'Sure what is it?':
-            cla
-            !TODO: If collective opinion is low, make the opinion gain also low
+
+		act 'Sure what is it?':
+			cla
+			!TODO: If collective opinion is low, make the opinion gain also low
 			!If fire is not going hunters nag at Sveta
 			if campfire = 0:
 				if hunter_collective_opinion >= 15: '"<<$pcs_nickname>>," he says. "The fire is out, can you please make sure it always keeps going while we are outside?"'
 				if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he uses his stern voice. "The fire is out. You can at least keep the fire going, no way you are that much of a whiny princess"'
 				act 'Further':hunter_collective_opinion -= 3 & gt 'swamp_yard', 'campfire'
 			!Clean up the hut
-            elseif dirty_swamphouse > 5:
+			elseif dirty_swamphouse > 5:
 				if hunter_collective_opinion >= 15: '"<<$pcs_nickname>>," he says. "The hut is a mess, could you take care of it please?"'
 				if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he uses his stern voice. "The house is a mess, take care of it."'
 				act 'Clean the hut':hunter_collective_opinion += 2 & gt 'hunter_favors', 'dirty_swamphouse'
-            !Clean up the yard if hut is clean
-            elseif dirty_swamp_yard > 5:
+			!Clean up the yard if hut is clean
+			elseif dirty_swamp_yard > 5:
 				if hunter_collective_opinion >= 15:'"<<$pcs_nickname>>," he says. "The yard is a mess. Can you please take care of it?"'
 				if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he says sternly. "What the hell is all this trash doing out there? Go and pick it all."'
-                act 'Clean the yard':hunter_collective_opinion += 3 & gs 'hunter_favors', 'yard_cleanup'
-			!Cook some mushroom soup or meat stew if yard is also clean and a fire is going on in the yard   
-            elseif mushroom_soup + meat_stew < 2:
-                if hunter_collective_opinion >= 15:'"<<$pcs_nickname>>," he says. "We don''t have anything for dinner. Could you please cook something?"'
-                if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he says sternly. "We don''t have anything to eat for dinner you useless bitch. Go make something before we starve."'
-                if boletus > 0:
-                    act 'Cook some mushroom soup (0:30)':hunter_collective_opinion += 4 & gs 'hunter_favors', 'mushroom_soup'
-                elseif raw_meat > 0:
-                    act 'Cook some meat stew (1:00)':hunter_collective_opinion += 3 & gs 'hunter_favors', 'meat_stew'
-                else
-                    !TODO: Add mechanic for hunters to ask Sveta to find food
-                    act '"There is nothing to cook though..."': gt 'swamp_yard'
-                end                
-			else    
+				act 'Clean the yard':hunter_collective_opinion += 3 & gs 'hunter_favors', 'yard_cleanup'
+			!Cook some mushroom soup or meat stew if yard is also clean and a fire is going on in the yard
+			elseif mushroom_soup + meat_stew < 2:
+				if hunter_collective_opinion >= 15:'"<<$pcs_nickname>>," he says. "We don''t have anything for dinner. Could you please cook something?"'
+				if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he says sternly. "We don''t have anything to eat for dinner you useless bitch. Go make something before we starve."'
+				if boletus > 0:
+					act 'Cook some mushroom soup (0:30)':hunter_collective_opinion += 4 & gs 'hunter_favors', 'mushroom_soup'
+				elseif raw_meat > 0:
+					act 'Cook some meat stew (1:00)':hunter_collective_opinion += 3 & gs 'hunter_favors', 'meat_stew'
+				else
+					!TODO: Add mechanic for hunters to ask Sveta to find food
+					act '"There is nothing to cook though..."': gt 'swamp_yard'
+				end
+			else
 				if hunter_collective_opinion >= 15:'"Actually, nevermind. I got this, thanks though."'
 				if hunter_collective_opinion < 15:'"Actually, nevermind. I do not have anything you are useful for."'
 				act 'Okay':hunter_collective_opinion += 5 & gt 'swamp_yard'
-			end	
+			end
 		end
-	
+
 		act '"I''ll help later, busy right now"':
 			*clr & cla
 			minut += 5
 			hunter_collective_opinion -= 3
-			
+
 			!TODO: Find new image
 			gt 'swamp_yard'
-		end	
+		end
 
 		!TODO: Make this act mood dependent
-		act '"What?! Do I look like a servant to you?':	
+		act '"What?! Do I look like a servant to you?':
 			'<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
 			'You walk away from <<$boydesc>>'
 			hunter_collective_opinion -= 10
@@ -84,7 +84,7 @@ if $ARGS[0] = 'yard_cleanup':
 		minut += 60 & gs 'sweat', 'add', 10
 	elseif dirty_swamp_yard < 20:
 		minut += 120 & gs 'sweat', 'add', 20
-	else 
+	else
 		minut += 180 & gs 'sweat', 'add', 30
 	end
 
@@ -119,37 +119,37 @@ if $ARGS[0] = 'dirty_swamphouse':
 end
 
 if $ARGS[0] = 'meat_stew':
-    cla
+	cla
 	*clr
 	raw_meat -= 1
 	minut += 60
 	bucket -= 1
 	meat_stew = 2
 
-    gs 'stat'
+	gs 'stat'
 	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hotsoup.jpg"></center>'
 	*nl
 
-    'You cooked a stew with the meat hunters brough and brought it inside the hut. There''s enough for <<mushroom_soup>> servings'
+	'You cooked a stew with the meat hunters brough and brought it inside the hut. There''s enough for <<mushroom_soup>> servings'
 
-    act 'Continue': gt 'swamphouse', 'start'
+	act 'Continue': gt 'swamphouse', 'start'
 end
 
 if $ARGS[0] = 'mushroom_soup':
-    cla
+	cla
 	*clr
 	boletus -= 1
 	minut += 30
 	bucket -= 1
 	mushroom_soup = 4
 
-    gs 'stat'
+	gs 'stat'
 	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hotsoup.jpg"></center>'
 	*nl
 
-    'You made a simple mushroom soup by the camppfire and carried it inside the hut. There''s enough for <<mushroom_soup>> servings'
+	'You made a simple mushroom soup by the camppfire and carried it inside the hut. There''s enough for <<mushroom_soup>> servings'
 
-    act 'Continue': gt 'swamphouse', 'start'
+	act 'Continue': gt 'swamphouse', 'start'
 end
 
 !Sexual favors
@@ -334,82 +334,82 @@ if $ARGS[0] = 'hunterstableBJ':
 end
 
 if $ARGS[0] = 'table_blow_request':
-    *clr & cla
-    minut += 1
-    gs 'stat'
-
-    '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterstable.jpg"></center>'
-    *nl
-    'You sit down at the table, wanting to eat with the guys, before you can begin you hear...'
-    '"Not so fast <<$pcs_nickname>>, Andrei said with a smile on his face. "You understand that the only free cheese is the one found in the mousetrap."'
-    '"Want to eat with us, you need to do some work," he mockingly grinned and pointed under the table.'
-
-    act 'Crawl under the table':
-        pcs_dom -= 1
-        gs 'hunter_favors', 'hunterstableBJ'
-    end
-        
-    act 'Refuse':
-        hunter_collective_opinion -= 3
-        hunter_sexual_comfort -= 3
-        gt 'swamphouse', 'start'
-    end
+	*clr & cla
+	minut += 1
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterstable.jpg"></center>'
+	*nl
+	'You sit down at the table, wanting to eat with the guys, before you can begin you hear...'
+	'"Not so fast <<$pcs_nickname>>, Andrei said with a smile on his face. "You understand that the only free cheese is the one found in the mousetrap."'
+	'"Want to eat with us, you need to do some work," he mockingly grinned and pointed under the table.'
+
+	act 'Crawl under the table':
+		pcs_dom -= 1
+		gs 'hunter_favors', 'hunterstableBJ'
+	end
+
+	act 'Refuse':
+		hunter_collective_opinion -= 3
+		hunter_sexual_comfort -= 3
+		gt 'swamphouse', 'start'
+	end
 end
 
 if $ARGS[0] = 'creekside_gangbang_request':
-    *clr & cla
-    minut += 5
- 
-    '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax2.jpg"></center>'
-    'You''re sitting down in the meadow near the road, relaxing, enjoying the nice weather, when all of a sudden Andrei, Sergei and Igor approach you. They quickly surround you not letting move away.'
-    '"Hey, <<$pcs_nickname>>, we''ve been talking with each other, and we feel that you need to repay us somehow for the lessons. So what do you say?"'
-
-    act 'Agree':
-        *clr & cla
-        
-        !TODO: Come back here to revamp opinion changes
-        hunter_sexual_comfort += 25
-
-        pcs_dom -= 2
-        gs 'stat'
-
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupundress.jpg"></center>'
-        '"I guess you''re right I need to repay you somehow..."'
-        'As soon you''ve agreed the guys change their attitude towards you. Igor helps you up and leads you away from the road while Andrei and Sergei already began taking your clothes off...'
-
-        gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
-        gs 'stat'
-
-        act 'Further':
-            *clr & cla
-
-           '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
-           'They lay you down on the blanket and quickly pull off your panties. They drop their pants and are standing in front of you with their cocks hanging in the open. "So what are you waiting for? Start sucking."'
-
-            $clothingworntype = 'nude'
-            $pantyworntype = 'none'
-
-            gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
-            gs 'stat'
-
-            act 'Further': gt 'hunter_interactions', 'creekside_gangbang'
-        end
-    end
-    act 'Refuse':
-        *clr & cla
-        minut += 5
-        
-        hunter_collective_opinion -= 25
-        hunter_sexual_comfort += 15
-
-        gs 'stat'
-
-        '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax3.jpg"></center>'
-        'You politely refuse saying you don''t owe them anything, but the men won''t accept a no and you can see that they''re clearly not satisfied with your answer.'
-        '"<<$pcs_nickname>>, don''t fuck around with us. Deep inside you know you need to repay us." said Andrei, grabbing you by the hair.'
-        
-        gs 'hunter_interactions', 'creekside_rape'
-    end
+	*clr & cla
+	minut += 5
+
+	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax2.jpg"></center>'
+	'You''re sitting down in the meadow near the road, relaxing, enjoying the nice weather, when all of a sudden Andrei, Sergei and Igor approach you. They quickly surround you not letting move away.'
+	'"Hey, <<$pcs_nickname>>, we''ve been talking with each other, and we feel that you need to repay us somehow for the lessons. So what do you say?"'
+
+	act 'Agree':
+		*clr & cla
+
+		!TODO: Come back here to revamp opinion changes
+		hunter_sexual_comfort += 25
+
+		pcs_dom -= 2
+		gs 'stat'
+
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupundress.jpg"></center>'
+		'"I guess you''re right I need to repay you somehow..."'
+		'As soon you''ve agreed the guys change their attitude towards you. Igor helps you up and leads you away from the road while Andrei and Sergei already began taking your clothes off...'
+
+		gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
+		gs 'stat'
+
+		act 'Further':
+			*clr & cla
+
+		   '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
+		   'They lay you down on the blanket and quickly pull off your panties. They drop their pants and are standing in front of you with their cocks hanging in the open. "So what are you waiting for? Start sucking."'
+
+			$clothingworntype = 'nude'
+			$pantyworntype = 'none'
+
+			gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
+			gs 'stat'
+
+			act 'Further': gt 'hunter_interactions', 'creekside_gangbang'
+		end
+	end
+	act 'Refuse':
+		*clr & cla
+		minut += 5
+
+		hunter_collective_opinion -= 25
+		hunter_sexual_comfort += 15
+
+		gs 'stat'
+
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax3.jpg"></center>'
+		'You politely refuse saying you don''t owe them anything, but the men won''t accept a no and you can see that they''re clearly not satisfied with your answer.'
+		'"<<$pcs_nickname>>, don''t fuck around with us. Deep inside you know you need to repay us." said Andrei, grabbing you by the hair.'
+
+		gs 'hunter_interactions', 'creekside_rape'
+	end
 end
 
 if $ARGS[0] = 'yard_bondage':
@@ -425,7 +425,7 @@ if $ARGS[0] = 'yard_bondage':
 			'Even though you are glad to be able to move around again, part of you aches to be tied back and used as a naked and ready sex toy'
 
 			act 'Further': gt 'swamp_yard'
-		end	
+		end
 
 		cla & *clr
 
@@ -433,7 +433,7 @@ if $ARGS[0] = 'yard_bondage':
 
 		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_outdoors4.jpg"></center>'
 		'You are bound completely naked to some trees by the yard. Just the thought of being so helpless and exposed makes you feel butterflies in your stomach'
-	    'Anyone could do anything they wanted with your body right now. You are especially aware of the nakedness of your most intimate areas, and how they are available for the hunters to do anything they might want.'
+		'Anyone could do anything they wanted with your body right now. You are especially aware of the nakedness of your most intimate areas, and how they are available for the hunters to do anything they might want.'
 
 		gs 'arousal', 'flash', 5, 'bound', 'exhibitionism', 'sub'
 		gs 'arousal', 'end'
@@ -448,7 +448,7 @@ if $ARGS[0] = 'yard_bondage':
 			gs 'boyStat', 'A173'
 		elseif hunter_selector_temprand = 3:
 			gs 'boyStat', 'A174'
-		end	
+		end
 
 		if yard_bound_temprand = 4:
 			act 'Further': gt 'hunter_favors', 'yard_bondage', 'passing_bj'
@@ -461,17 +461,17 @@ if $ARGS[0] = 'yard_bondage':
 		!elseif yard_bound_temprand = 9:
 			!act 'Further': gs 'hunter_favors', 'yard_bondage', 'unbound_gangbang'
 		!elseif yard_bound_temprand = 10:
-			!act 'Further': gs 'hunter_favors', 'yard_bondage', 'bound_gangbang'	
+			!act 'Further': gs 'hunter_favors', 'yard_bondage', 'bound_gangbang'
 		else
-			act 'Wait': gt 'hunter_favors', 'yard_bondage'						
-		end	
+			act 'Wait': gt 'hunter_favors', 'yard_bondage'
+		end
 	end
 
 	if $ARGS[1] = 'lost_bet':
 		*clr & cla
 
 		hunter_collective_opinion -= 20
-        hunter_sexual_comfort += 40
+		hunter_sexual_comfort += 40
 		gs 'arousal', 'flash', 15, 'bound', 'exhibitionism', 'humiliation'
 		gs 'arousal', 'end'
 
@@ -480,21 +480,21 @@ if $ARGS[0] = 'yard_bondage':
 		'You are completely helpless and feel your nipples start to harden as you feel the breeze on your bare skin.'
 
 		act 'Wait for him to come back': gt 'hunter_favors', 'yard_bondage'
-	end	
-	
+	end
+
 	!TODO: Add variety per hunter as opposed to the same event for all
 	if $ARGS[1] = 'passing_bj':
-		cla & *clr 
+		cla & *clr
 		hunter_sexual_comfort += 6
 		hunter_collective_opinion -= 3
 		gs 'arousal', 'bj', 10, 'sub', 'bound', 'deepthroat'
 		gs 'arousal', 'end'
-			
+
 		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked_mouth1.jpg"></center>'
 		'You notice <<$boydesc>> walking towards you. Without saying a word, he slackens your ties and pushes you down to your knees before tightening them back.'
 		'He does not waste too much time unzipping his cock and pushing it on your face. You comply and start sucking his dick.'
 		'After a minute grabs your head and starts fucking your mouth. You struggle between trying to breathe and trying not to puke as his cock rams in and out of your throat'
-			
+
 		act 'Try and match his rythm':
 				cla & *clr
 				*nl
@@ -512,7 +512,7 @@ if $ARGS[0] = 'yard_bondage':
 				'Whenever he is all the way down your throat, you swallow to massage his cock.'
 
 				gs 'dinsex', 'bj_random'
-				*nl 
+				*nl
 				'Your efforts start paying off pretty quickly as he grabs your head and starts pumping even more quickly before he buries his cock all the way in'
 
 				gs 'dinsex', 'bj_swallow_random'
@@ -533,27 +533,27 @@ if $ARGS[0] = 'yard_bondage':
 
 				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked_mouth3.jpg"></center>'
 				'You decide if you relax your throat and face it will be easier not to puke all over his dick.'
-				'He strokes your hair as he keeps furiously ramming his cock up and down your throat, fucking your face like as if it was a sex toy.' 
+				'He strokes your hair as he keeps furiously ramming his cock up and down your throat, fucking your face like as if it was a sex toy.'
 
 				gs 'dinsex', 'bj_random'
-				*nl 
+				*nl
 				'After a few minutes he pulls out of your mouth and jerks off to your face, splattering your face and chest with his spunk.'
 				'As you blink the cum off your eyes, he zips up and ties you back upright before walking away without saying anything else.'
 
 				act 'Further': gt 'hunter_favors', 'yard_bondage'
 		end
-	end	
-	
+	end
+
 	if $ARGS[1] = 'passing_fuck':
 		cla & *clr
 		hunter_sexual_comfort += 10
 		hunter_collective_opinion -= 5
-			
+
 		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked2.jpg"></center>'
 		'You notice <<$boydesc>> walking towards you. Without saying a word, he unzips and bends you over.'
 		'He rubs the tip of his dick against your already wet pussy lips a few times before pushing all the way in. You cannot help but gasp as <<$boydesc>>''s cock fills your pussy'
 		'After letting you settle in to the sensation for a second he slowly starts pumping your pussy. In a minute you are screaming and moaning as he picks his pace up.'
-			
+
 		gs 'dinsex', 'vaginal_sex', 10, 'sub', 'bound'
 
 		act 'Start pumping your hips to match him':
@@ -571,7 +571,7 @@ if $ARGS[0] = 'yard_bondage':
 
 			'<center><video autoplay loop src="images/locations/gadukino/sex/hunter/bound_fucked.mp4"></video></center>'
 			'You cannot get enough of the sensation of <<$boydesc>>''s cock sliding inside you. You start pumping your hips to get more of his cock.'
-			
+
 			*nl
 			'<<$boydesc>> starts fucking you even harder before he buries his cock all the way to the hilt inside you.'
 			gs 'dinsex', 'sexcum'
@@ -597,7 +597,7 @@ if $ARGS[0] = 'yard_bondage':
 				'You decide to give in and enjoy the sensation of being casually fucked like a blow-up doll.'
 				*nl
 				'He roughly grabs your ass to brace himself as he picks his pace even further, pounding your pussy with near fury.'
-				'Sounds of his hips rhythmically slamming against your ass fills your surrondings, mixed with the lewd smacking sounds of his cock pumping in your pussy and your loud moans and screams' 
+				'Sounds of his hips rhythmically slamming against your ass fills your surrondings, mixed with the lewd smacking sounds of his cock pumping in your pussy and your loud moans and screams'
 
 				*nl
 				'Just as you start feeling his cock throbbing in your pussy, he pulls out and blows his load all over your ass and pussy.'
@@ -605,8 +605,8 @@ if $ARGS[0] = 'yard_bondage':
 
 				act 'Further': gt 'hunter_favors', 'yard_bondage'
 		end
-	end	
-	
+	end
+
 	if $ARGS[1] = 'clamp_fuck':
 		cla & *clr
 		hunter_sexual_comfort += 15
@@ -624,7 +624,7 @@ if $ARGS[0] = 'yard_bondage':
 		'Not missing the opportunity, he yanks you by the nipple, making you yelp loudly.'
 		'"Hey now, don''t fall asleep just yet. I have something special for you." he says before showing you a piece of leather strap and a clamp with a weight attached.'
 		'"Hope you are into a bit of fun. Or, at least we will find out." he says. You do not object, having already agreed to ''anything''.'
-		
+
 		act 'Further':
 			cla & *clr
 			gs 'pain', 3, 'spank', 'nipples'
@@ -649,7 +649,7 @@ if $ARGS[0] = 'yard_bondage':
 				*nl
 				'"Please, I can''t take it anymore!" you plead.'
 				'"''Please'' what, little princess?" Andrei asks'
-				
+
 				act 'Seriousy, please let me go!':
 					cla & *clr
 					hunter_collective_opinion += 10
@@ -667,11 +667,11 @@ if $ARGS[0] = 'yard_bondage':
 
 					gs 'dinsex', 'vaginal_sex', 10, 'sub', 'bound', 'masochism', 'humiliation'
 					gs 'arousal', 'vaginal', 5, 'sub', 'bound', 'masochism', 'humiliation'
-				
+
 					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bondage_clamps_fuck.jpg"></center>'
 					'"You really like this don''t you now." says Andrei before roughly penetrating you.'
 					'You let out a loud moan from the relief of finally having your aching pussy filled. It does not take Andrei long to cum with you pumping your hips and doing most of the fucking,'
-					
+
 					gs 'arousal', 'end'
 					spafinloc = 0
 					pose = 3
@@ -679,14 +679,14 @@ if $ARGS[0] = 'yard_bondage':
 					gs 'stat'
 
 					gs 'dinsex', 'sexcum'
-					
+
 					*nl
 					'After catching his breath, Andrei releases you from your bonds. "We should do this again" he says, before walking away.'
 					act 'Further': gt 'swamp_yard'
 				end
-			end		
-		end	
-	end	
+			end
+		end
+	end
 
 	if $ARGS[1] = 'unbound_fuck':
 		cla & *clr
@@ -762,7 +762,7 @@ if $ARGS[0] = 'yard_bondage':
 						'"You are not exactly all pure and innocent, <<$pcs_nickname>>" he says. "I think you are just being a bitchy cocktease" and walks away'
 						act 'Further': gt 'swamp_yard'
 					end
-				end			
+				end
 			end
 		end
 	end
@@ -773,25 +773,25 @@ if $ARGS[0] = 'yard_bondage':
 	!if $ARGS[1] = 'bound_gangbang':
 	!end
 
-		
+
 		!gs 'arousal', 'bj', 20, 'sub', 'rough', 'group'
 		!gs 'arousal', 'vaginal', 20, 'sub', 'rough', 'group'
 		!gs 'arousal', 'end'
 		!gs 'stat'
-			
+
 		!gs 'dinsex','vaginal_sex',10,'sub'
 
 		!gs 'arousal', 'bj', 240, 'sub', 'gangbang', 'humiliation'
 		!gs 'arousal', 'hj', 240, 'sub', 'gangbang', 'humiliation'
 		!gs 'arousal', 'vaginal', 240, 'sub', 'gangbang', 'humiliation'
-		!gs 'arousal', 'anal', 240, 'sub', 'gangbang', 'humiliation' 
+		!gs 'arousal', 'anal', 240, 'sub', 'gangbang', 'humiliation'
 		!minut -= 720
-end	
+end
 
 if $ARGS[0] = 'nighttime_entertainment':
 
 	*clr & cla
-	if hunter_collective_opinion < 15: 	
+	if hunter_collective_opinion < 15:
 		hunter_collective_opinion += 3
 		hunter_sexual_comfort += 8
 	else
@@ -803,105 +803,105 @@ if $ARGS[0] = 'nighttime_entertainment':
 
 	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_1.jpg"></center>'
 	'The boys immediately encircle you, pulling out their cocks. You can''t help but giggle a little at how quickly they are ready for you.'
-	
+
 	act 'Grab Igor and Sergei':
 
-	*clr & cla
-	gs 'arousal', 'hj', 7, 'gangbang'
-	minut -= 5
-	gs 'stat'
+		*clr & cla
+		gs 'arousal', 'hj', 7, 'gangbang'
+		minut -= 5
+		gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_2.jpg"></center>'
-	'You grab Igor and Sergei''s cocks, jerking them off. You can feel both their dicks engorge, filling out your hands more firmly.'
+		'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_2.jpg"></center>'
+		'You grab Igor and Sergei''s cocks, jerking them off. You can feel both their dicks engorge, filling out your hands more firmly.'
 
-	act 'Suck Sergei':
+		act 'Suck Sergei':
 
-	*clr & cla
-	gs 'arousal', 'bj', 10, 'gangbang'
-	minut -= 7
-	gs 'stat'
+			*clr & cla
+			gs 'arousal', 'bj', 10, 'gangbang'
+			minut -= 7
+			gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.jpg"></center>'
-	'You take Sergei''s head in your mouth, slowly making your way down his shaft.'
+			'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.jpg"></center>'
+			'You take Sergei''s head in your mouth, slowly making your way down his shaft.'
 
-	act '...':
+			act 'Continue':
 
-	*clr & cla
-	gs 'arousal', 'bj', 7, 'gangbang'
-	gs 'arousal', 'breasts', 2, 'gangbang'
-	minut -= 5
-	gs 'stat'
+				*clr & cla
+				gs 'arousal', 'bj', 7, 'gangbang'
+				gs 'arousal', 'breasts', 2, 'gangbang'
+				minut -= 5
+				gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.5.jpg"></center>'
-	'Meanwhile you feel Igor reaching under your shirt, tweaking and playing with your nipple as you bob up and down Sergei''s cock.'
+				'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.5.jpg"></center>'
+				'Meanwhile you feel Igor reaching under your shirt, tweaking and playing with your nipple as you bob up and down Sergei''s cock.'
 
-	act 'Suck Igor':
+				act 'Suck Igor':
 
-	*clr & cla
-	gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
-	minut -= 5
-	gs 'stat'
+					*clr & cla
+					gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
+					minut -= 5
+					gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_4.jpg"></center>'
-	'You let Sergei''s dick pop out of your mouth and switch to sucking Igor instead. You suck all the way down to the hilt, letting his diamond hard pulsing cock fill your throat.'
+					'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_4.jpg"></center>'
+					'You let Sergei''s dick pop out of your mouth and switch to sucking Igor instead. You suck all the way down to the hilt, letting his diamond hard pulsing cock fill your throat.'
 
-	act '...':
+					act 'Continue':
 
-	*clr & cla
-	gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
-	gs 'arousal', 'flash', 3
-	minut -= 5
-	gs 'stat'
+						*clr & cla
+						gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
+						gs 'arousal', 'flash', 3
+						minut -= 5
+						gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_3.jpg"></center>'
-	'As you pick up your pace with Igor, Andrei reaches under your shirt, pulling out your tit. You feel your nipple slightly harden at the breeze.'
-	'Meanwhile Igor calls out he is going to cum soon. On cue, you suck him all the way down, milking his violently pulsing cock with your throat.'
+						'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_3.jpg"></center>'
+						'As you pick up your pace with Igor, Andrei reaches under your shirt, pulling out your tit. You feel your nipple slightly harden at the breeze.'
+						'Meanwhile Igor calls out he is going to cum soon. On cue, you suck him all the way down, milking his violently pulsing cock with your throat.'
 
-	gs  'cum_call', 'mouth', 'A173', 1    
+						gs	'cum_call', 'mouth', 'A173', 1
 
-	act '...':
+						act 'Continue':
 
-	*clr & cla
-	gs 'arousal', 'breasts', 4
-	gs 'arousal', 'flash', 3
-	minut -= 5
-	gs 'stat'
+							*clr & cla
+							gs 'arousal', 'breasts', 4
+							gs 'arousal', 'flash', 3
+							minut -= 5
+							gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_4.jpg"></center>'
-	'Satisfied, Igor idly plays with your exposed breast as Andrei pulls out the other one, letting both of your tits air out as he keeps jerking himself off.'
+							'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_4.jpg"></center>'
+							'Satisfied, Igor idly plays with your exposed breast as Andrei pulls out the other one, letting both of your tits air out as he keeps jerking himself off.'
 
-	act '...':
+							act 'Continue':
 
-	*clr & cla
-	gs 'arousal', 'flash', 8
-	minut -= 5
-	gs 'stat'
+								*clr & cla
+								gs 'arousal', 'flash', 8
+								minut -= 5
+								gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_1.jpg"></center>'
-	'It does not take long before Andrei reaches his climax, ejaculating all over your face and hair.'
-	gs  'cum_call', 'face', 'A172', 1    
+								'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_1.jpg"></center>'
+								'It does not take long before Andrei reaches his climax, ejaculating all over your face and hair.'
+								gs	'cum_call', 'face', 'A172', 1
 
-	act '...':
+								act 'Continue':
 
-	*clr & cla
-	gs 'arousal', 'flash', 7
-	minut -= 5
-	gs 'stat'
+									*clr & cla
+									gs 'arousal', 'flash', 7
+									minut -= 5
+									gs 'stat'
 
-	'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_2.jpg"></center>'
-	'Seeing this, Sergei makes his way right next to you and picks up his pace for a hot moment before also jizzing all over the other side of your face, a couple drops finding their way to your exposed chest.'
-	gs  'cum_call', 'mouth', 'A174', 1
-	
-	act 'Further': gt 'swamp_yard', 'fireside'
+									'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_2.jpg"></center>'
+									'Seeing this, Sergei makes his way right next to you and picks up his pace for a hot moment before also jizzing all over the other side of your face, a couple drops finding their way to your exposed chest.'
+									gs	'cum_call', 'mouth', 'A174', 1
 
-	end
-	end
-	end
-	end
-	end
-	end
-	end
+									act 'Further': gt 'swamp_yard', 'fireside'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
 	end
 end
 
---- hunter_favors ---------------------------------
+--- hunter_favors ---------------------------------
+

Fichier diff supprimé car celui-ci est trop grand
+ 1024 - 1024
locations/hunter_interactions.qsrc


+ 7 - 7
locations/ivanRoom.qsrc

@@ -133,7 +133,7 @@ if StoryLine = 0 or altQS = 1:
 								'<center><img <<$set_imgh>> src="images/locations/city/industrial/aptmanagers/sex/threesome.jpg"></center>'
 								'You fall silent trying to think of something else, but Tatiana spoke before you could think. "Stuffy nose? I know the perfect remedy for a cold." Tatiana approached Ivan and put her hand on his face beginning to massage his face and around his nose. Looking at his eyes you could tell that some of the scent was penetrating into his sinus cavity and he was starting to feel some effect from the aphrodisiac. Ivan grabbed Tatiana and drew her to him. She tried resisting, but the very powerful effects of the aphrodisiac, caught her as well and she began to kiss him. Ivan waved you over to them as they kissed and under the effects you comply and embrace them both. The effects and the scene before you really turn you on'
 
-								act '...':
+								act 'Continue':
 									cls
 									minut += 5
 									softKAR = 2
@@ -153,7 +153,7 @@ if StoryLine = 0 or altQS = 1:
 										'Kneeling beside Tatiana you happily share Ivan''s cock between you. One sucking his cock while the other tongues his balls.  Then changing positions so you can both share him between kissing each other around his cock.'
 										gs 'arousal', 'bj', 5, 'group'
 										gs 'stat'
-										
+
 										act '....':
 											cls
 											minut += 5
@@ -170,7 +170,7 @@ if StoryLine = 0 or altQS = 1:
 
 												gs 'arousal', 'cuni', 5, 'group'
 												gs 'stat'
-										
+
 												act '69 Tatiana':
 													cls
 													pcs_vag += 1
@@ -183,7 +183,7 @@ if StoryLine = 0 or altQS = 1:
 													gs 'arousal', 'vaginal', 5, 'group'
 													minut -= 5
 													gs 'stat'
-										
+
 													act 'On your knees':
 														cls
 														minut += 5
@@ -205,7 +205,7 @@ if StoryLine = 0 or altQS = 1:
 
 															gs 'arousal', 'end'
 															gs 'stat'
-															
+
 															act 'Leave':gt 'nord'
 														end
 													end
@@ -293,7 +293,7 @@ else
 								gs 'stat'
 								'<center><img <<$set_imgh>> src="images/locations/city/industrial/aptmanagers/sex/threesome.jpg"></center>'
 								'You fall silent trying to think of something else, but Tanya spoke before you could think. "Stuffy nose? I know the perfect remedy for a cold." Tanya approached Ivan and put her hand on his face beginning to massage his face and around his nose. Looking at his eyes you could tell that some of the scent was penetrating into his sinus cavity and he was starting to feel some effect from the aphrodisiac. Ivan grabbed Tanya and drew her to him. She tried resisting, but the very powerful effects of the aphrodisiac, caught her as well and she began to kiss him. Ivan waved you over to them as they kissed and under the effects you comply and embrace them both. The effects and the scene before you really turn you on'
-								act '...':
+								act 'Continue':
 									cls
 									minut += 5
 									softKAR = 2
@@ -312,7 +312,7 @@ else
 										gs 'arousal', 'bj', 5, 'group'
 										gs 'arousal', 'bj', 5, 'group'
 										gs 'stat'
-										act '...':
+										act 'Continue':
 											cls
 											minut += 5
 											gs 'stat'

+ 1 - 1
locations/kameraKPZ.qsrc

@@ -12,7 +12,7 @@ if kameraKPZ < 3:
 		gs 'stat'
 		'You sat on the hard wooden bench and began to consider your position.'
 
-		act '...':gt $curloc
+		act 'Continue':gt $curloc
 	end
 else
 	'By lattice policeman came and Anatoly Borisovich. The policeman immediately stepped aside and host bystroezhki said. "<<$pcs_nickname>>, <<$pcs_nickname>>, well, how could you?"'

+ 4 - 4
locations/kavkazkafe.qsrc

@@ -327,7 +327,7 @@ if $ARGS[0] = 'givibj1':
 	'You take Givis member in your hands and begin to fondle it with your fingers. Givi puts his hairy hand on your face, and touches your lips.'
 	gs 'arousal', 'hj', 5, 'sub'
 	gs 'stat'
-	
+
 	act 'Suck his thumb':gt 'kavkazkafe', 'givibj2'
 	act 'Suck his cock':gt 'kavkazkafe', 'givibj3'
 end
@@ -529,7 +529,7 @@ if $ARGS[0] = 'foursome':
 		gs 'arousal', 'bj', 5,'dick[<<rand(1,2)>>]','sub', 'group'
 		gs 'stat'
 
-		act '...':
+		act 'Continue':
 			*clr & cla
 			gs 'stat'
 			picrand = rand(1, 5)
@@ -540,7 +540,7 @@ if $ARGS[0] = 'foursome':
 			'The Armenians put you and Ira on your knees and start wanking their members before your faces.'
 			gs 'stat'
 
-			act '...':
+			act 'Continue':
 				*clr & cla
 				minut += 3
 				picrand = rand(1, 5)
@@ -552,7 +552,7 @@ if $ARGS[0] = 'foursome':
 				gs 'cum_call','mouth',$boy[2],1,'','',10
 				gs 'arousal', 'end'
 				gs 'stat'
-				
+
 				act 'Leave':gt 'dinsexgivi', 'endirinaaftergang'
 			end
 		end

+ 13 - 13
locations/klofdomhouse.qsrc

@@ -205,7 +205,7 @@ if $ARGS[0] = 'ev13':
 	'Jora fucks you in your pussy.'
 	gs 'arousal', 'vaginal', 30, 'sub'
 	gs 'stat'
-	act '...':
+	act 'Continue':
 		cla
 		*clr
 		'<center><img <<$set_imgh>> src="images/characters/city/jora/sex/klof10.jpg"></center>'
@@ -240,7 +240,7 @@ if $ARGS[0] = 'ev14':
 	elseif horand > stat['vaginal']:
 		pcs_horny += 10 & 'You are not satisfied'
 	end
-	
+
 	act '....':
 		cla
 		*clr
@@ -275,7 +275,7 @@ if $ARGS[0] = 'ev15':
 		pcs_horny += 10 & 'You are not satisfied'
 	end
 
-	act '...':
+	act 'Continue':
 		cla
 		*clr
 		'Jora discharges himself on your face'
@@ -313,7 +313,7 @@ if $ARGS[0] = 'ev 16':
 	'Semyon fucks you in your pussy.'
 	gs 'arousal', 'vaginal', 30, 'sub'
 	gs 'stat'
-	act '...':
+	act 'Continue':
 		cla
 		*clr
 		'<center><img <<$set_imgh>> src="images/characters/city/jora/sex/klof10.jpg"></center>'
@@ -349,7 +349,7 @@ if $ARGS[0] = 'ev 17':
 		pcs_horny += 10 & 'You are not satisfied'
 	end
 
-	act '...':
+	act 'Continue':
 		cla
 		*clr
 		'<center><img <<$set_imgh>> src="images/characters/city/jora/sex/klof14.jpg"></center>'
@@ -384,8 +384,8 @@ if $ARGS[0] = 'ev 18':
 	elseif horand > stat['vaginal']:
 		pcs_horny += 10 & 'You are not satisfied'
 	end
-	
-	act '...':
+
+	act 'Continue':
 		cla
 		*clr
 		facial += 1
@@ -513,7 +513,7 @@ if $ARGS[0] = 'ev25':
 	'You bare your breasts.'
 	'"Show me your ass!" Orders the boss'
 	gs 'arousal', 'flashlite', 5, 'sub'
-	gs 'stat'	
+	gs 'stat'
 	act 'Show your ass':gt 'klofdomhouse', 'ev26'
 	act 'Get out of here':
 		gs 'arousal', 'end'
@@ -874,7 +874,7 @@ if $ARGS[0] = 'ev46':
 	'Jora orders, "Remove the rest."'
 
 	if sub > 10 or pcs_inhib > 40:act 'Go into the water and remove bikini bottoms':gt 'klofdomhouse', 'ev47'
-	
+
 	act 'Get out of here':
 		gs 'arousal', 'end'
 		gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
@@ -989,7 +989,7 @@ if $ARGS[0] = 'ev52':
 	gs 'arousal', 'masturbate', 5, 'exhibitionism', 'sub'
 	gs 'stat'
 	act 'Insert Dildo':gt 'klofdomhouse', 'ev53'
-	
+
 	if sub <= 30:
 		act 'Get out of here':
 			gs 'arousal', 'end'
@@ -1019,7 +1019,7 @@ if $ARGS[0] = 'ev54':
 	gs 'arousal', 'vaginal_dildo', 5, 'exhibitionism', 'sub'
 	gs 'stat'
 	act 'Put one in your ass':gt 'klofdomhouse', 'ev55'
-	
+
 	if sub <= 30:
 		act 'Get out of here':
 			gs 'arousal', 'end'
@@ -1051,7 +1051,7 @@ if $ARGS[0] = 'ev56':
 	gs 'arousal', 'vaginal_dildo', 5, 'exhibitionism', 'sub'
 	gs 'stat'
 	act 'Obediently hold the glass':gt 'klofdomhouse', 'ev57'
-	
+
 	if sub <= 30:
 		act 'Get out of here':
 			gs 'arousal', 'end'
@@ -1110,7 +1110,7 @@ if $ARGS[0] = 'ev61':
 	'Jora gets up and goes to the showers saying to the crowd, "This bitch is all yours."'
 
 	act 'Fuck the crowd':gt 'klofdomhouse', 'ev62'
-	
+
 	if sub <= 30:
 		act 'Get out of here':
 			gs 'arousal', 'end'

+ 6 - 6
locations/korr.qsrc

@@ -233,7 +233,7 @@ end
 if gopstop > 30:gt 'police', '1'
 
 if sick > 0 and doktorday ! daystart:
-	
+
 	!!act 'Call a doctor':
 	!!	cla
 	!!	*clr
@@ -312,7 +312,7 @@ $ninel0 = {
 
 						gs 'arousal', 'anal_dildo', 10
 						gs 'stat'
-						
+
 						if pcs_horny >= 50:
 							act 'Moan with pleasure':
 								cla
@@ -332,7 +332,7 @@ $ninel0 = {
 
 									gs 'arousal', 'foreplay', 15
 									gs 'stat'
-									
+
 									act 'A blush of embarrassment':
 										cla
 										*clr
@@ -355,7 +355,7 @@ $ninel0 = {
 
 										gs 'arousal', 'foreplay', 15
 										gs 'stat'
-									
+
 										act 'Surrender to the gentle hands Ninel':gt 'housecall', 'ninel2'
 									end
 								end
@@ -428,7 +428,7 @@ $ninel0 = {
 
 									gs 'arousal', 'foreplay', 15
 									gs 'stat'
-									
+
 									act 'Surrender to the gentle hands Ninel':gt 'housecall', 'ninel2'
 								end
 							end
@@ -552,7 +552,7 @@ $polidin = {
 							'(Nurse) - I''ll see if she is free.'
 							'(You) - Once again, thank you.'
 
-							act '...':gt 'housecall', 'ninel3'
+							act 'Continue':gt 'housecall', 'ninel3'
 						end
 					end
 

+ 1 - 1
locations/korr2x.qsrc

@@ -295,7 +295,7 @@ $polidin = {
 							'"Is Doctor Ninel Pavlovna available? She is my regular doctor."'
 							'"Let me check" The nurse puts you on hold for a couple of minutes and then comes back on. "Yes she is free and will make the house call."'
 							'"Once again, thank you very much."'
-							act '...':gt'housecall','ninel3'
+							act 'Continue':gt'housecall','ninel3'
 						end
 					end
 					act 'Back to bed':

+ 13 - 13
locations/lake.qsrc

@@ -36,7 +36,7 @@ if $ARGS[0] = 'start':
 		'At the lake stands <a href="exec:GS ''carF'', ''start''">your <<$car>></a>.'
 	end
 
-	if ARRSIZE('swimwear') > 0: 
+	if ARRSIZE('swimwear') > 0:
 		act 'Use changing room':gt 'changingroom', 'view_swim_list'
 	else
 		*nl
@@ -56,7 +56,7 @@ if $ARGS[0] = 'start':
 			gt 'street'
 		end
 	end
-	
+
 	if hour >= 6 and hour <= 20:
 		'Nearby are various '+iif($clothingworntype = 'swimwear','<a href="exec:gt ''lake'', ''aquapark''">water attractions</a>.','water attractions, but you need to put on some swimwear before you go there.')+''
 		'You can go for a ride on a <a href="exec:gt ''lake'', ''horse''">horse</a> along the beach.'
@@ -258,7 +258,7 @@ if $ARGS[0] = 'banan':
 	cla & *clr
 	$menu_loc = 'lake'
 	$menu_arg = 'banan'
-	menu_off = 0	
+	menu_off = 0
 	gs 'stat'
 	minut += 1
 	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/aquapark.jpg"></center>'
@@ -451,7 +451,7 @@ if $ARGS[0] = 'walklake1':
 					'The guy starts to fuck you roughly in the mouth, periodically wiping the current of snot from your nose and saliva from your mouth, his hand on your face and occasionally inflicting hefty slaps. You almost faint and expire snot, tears and saliva from the fact as his member roughly enters your throat. Your throat is on fire and incessant cramps twist and nauseate your body.'
 					'Time slows to a halt and you have start to think that this torment will never end, when the guy pulls his cock out of your mouth.'
 
-					act '...':
+					act 'Continue':
 						cla & *clr
 						gs 'cum_call', 'face', 'A177', 1
 						gs 'cum_call', 'mouth', 'A177', 1
@@ -572,7 +572,7 @@ if $ARGS[0] = 'dinribak':
 				'The guy starts to fuck you roughly in the mouth, periodically wiping the current of snot from your nose and saliva from your mouth, his hand on your face and occasionally inflicting hefty slaps. You almost faint and expire snot, tears and saliva from the fact as his member roughly enters your throat. Your throat is on fire and incessant cramps twist and nauseate your body.'
 				'Time slows to a halt and you have start to think that this torment will never end, when the guy pulls his cock out of your mouth.'
 
-				act '...':
+				act 'Continue':
 					cla & *clr
 					gs 'cum_call', 'face', 'A177', 1
 					gs 'cum_call', 'mouth', 'A177', 1
@@ -1000,27 +1000,27 @@ end
 
 if $ARGS[0] = 'vlake1cum':
 	*clr & cla
-	
+
 	gs 'npcgeneratec', 0, 'a stranger at the lake', rand(18,45)
 	gs 'boyStat', $npclastgenerated
 	gs 'cum_call', 'mouth', 'a stranger at the lake'
 	gs 'cum_call', 'face', 'a stranger at the lake'
-	
+
 	gs 'npcgeneratec', 0, 'a stranger at the lake', rand(18,45)
 	gs 'boyStat', $npclastgenerated
 	gs 'cum_call', 'mouth', 'a stranger at the lake'
 	gs 'cum_call', 'face', 'a stranger at the lake'
-	
+
 	gs 'npcgeneratec', 0, 'a stranger at the lake', rand(18,45)
 	gs 'boyStat', $npclastgenerated
 	gs 'cum_call', 'mouth', 'a stranger at the lake'
 	gs 'cum_call', 'face', 'a stranger at the lake'
-	
+
 	gs 'npcgeneratec', 0, 'a stranger at the lake', rand(18,45)
 	gs 'boyStat', $npclastgenerated
 	gs 'cum_call', 'mouth', 'a stranger at the lake'
 	gs 'cum_call', 'face', 'a stranger at the lake'
-	
+
 	gs 'stat'
 	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/vlake1/vlake5.jpg"></center>'
 	'Boys begin to cum on your face and mouth. You lick the cum off their dicks and swallow it. Finally satisfied the guys, dress and go, you''re left unsatisfied.'
@@ -1328,7 +1328,7 @@ if $ARGS[0] = 'kater2':
 					$orgasm_or = 'yes'
 					gs 'arousal', 'end'
 					gs 'stat'
-					
+
 					act 'Further':
 						*clr & cla
 						'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/kater2/kater6.jpg"></center>'
@@ -1490,7 +1490,7 @@ if $ARGS[0] = 'horse1':
 							$orgasm_or = 'yes'
 							gs 'arousal', 'end'
 							gs 'stat'
-							
+
 							act 'Remove from mouth':
 								*clr & cla
 								gs 'cum_call', 'mouth', 'Quad rider'
@@ -1540,7 +1540,7 @@ end
 if $ARGS[0] = 'horse2':
 	*clr & cla
 	gs 'npcgeneratec', 0, 'Horse rider', rand(18,45)
-	gs 'boyStat', $npclastgenerated	
+	gs 'boyStat', $npclastgenerated
 	gs 'stat'
 	'<center><img <<$set_imgh>> src="images/locations/city/residential/lake/sex/horse2/horse1.jpg"></center>'
 	'While you are riding you meet two men on horseback and they ask you to join them for a walk together.'

+ 3 - 3
locations/mey_vika_events.qsrc

@@ -239,7 +239,7 @@ if $ARGS[0] = 'play_game_wish1':
 		'<font color="maroon"><i>"Will you also join me?"</i></font>'
 		'She moves over to the stereo and puts on some music. She begins dancing in the middle of the room.'
 
-		act '...': gt 'mey_vika_events', 'play_game_wish1', 16
+		act 'Continue': gt 'mey_vika_events', 'play_game_wish1', 16
 	elseif zz_stage <= 33:
 		if zz_stage = 16 or zz_stage = 22 or zz_stage = 25 or (zz_stage> 27 and zz_stage < 31):
 			'<center><video autoplay loop src="images/characters/pavlovsk/school/girl/vicky/event/vika_game_strip' + zz_stage + '.mp4"></video></center>'
@@ -294,7 +294,7 @@ if $ARGS[0] = 'play_game_wish1':
 			'Vicky, feeling rejuvenated, begins violently assaulting your vagina with her tongue and fingers, you only manage to hold on for a minute, screaming, squirting all over Vicky''s lovely face.'
 		end
 
-		act '...': gt 'mey_vika_events', 'play_game_wish1', zz_stage+1
+		act 'Continue': gt 'mey_vika_events', 'play_game_wish1', zz_stage+1
 	else
 		'Still panting, tired but happy, you relax. Lying on the messy bed, the three of you hug each other carefully, gently stroking each other, slowly cooling down.'
 		'<font color="maroon"><i>"That was amazing, <<$pcs_nickname>>!"</i></font> Whispers Vicky. <font color="maroon"><i>"I hope you''re not mad at us, Vanya and I wanted to have a threesome for the longest time. We had a feeling you would be up for it, but we didn''t dare to ask you. We didn''t know how you would react."</i></font>'
@@ -1351,7 +1351,7 @@ if $ARGS[0] = 'gym1':
 					*clr & cla
 					'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/vicky/event/gym23.jpg"></center>'
 					'Shortly thereafter you notice her throwing away the top. She''s completely naked. Vicky, now having calmed down a bit ceases swearing and begins exercising once again.'
-					act '...':
+					act 'Continue':
 						*clr & cla
 						'<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/vicky/event/gym24.jpg"></center>'
 						'She stretches amazingly, very catlike. The way she bends is making you a bit envious.'

+ 6 - 6
locations/narkopriton.qsrc

@@ -275,23 +275,23 @@ if $ARGS[0] = 'drugslut':
 				'You readily accept. Paid housing, food and your daily dose, too! What more could you need?'
 				'Of course Bobka is no kind Samaritan, and expects things from you in return...'
 
-				act '...':
+				act 'Continue':
 					*clr & cla
 					'<center><img <<$set_imgh>> src="images/characters/city/bobka/sex/crackwhore2.jpg"></center>'
 					'Your life has changed drastically. Your mouth, pussy and ass are completely owned by Bobka, and he readily whores you out to whoever will pay him for it. The rumour of the drug den having a new full-time whore spreads quickly. Bobka is willing to rent you out to whoever is willing to pay, even if they''re not paying much at all! Some money is better than no money, in the end...'
 					'At first you try to resist, but you soon realize that you can''t. You need Bobka to survive, and have no choice but to meekly accept your new role as his whore.'
 
-					act '...':
+					act 'Continue':
 						*clr & cla
 						'<center><img <<$set_imgh>> src="images/characters/city/bobka/sex/crackwhore3.jpg"></center>'
 						'"What difference does it make?" you think to yourself, as yet another stranger buries his cock to the hilt in your well-used ass. Bobka sold you to a brothel owner, who keeps you in his basement as a cheap attraction for his regulars. He takes good care of you though, giving you a roof over your head and the daily dosage of heroin you need so badly.'
 
-						act '...':
+						act 'Continue':
 							*clr & cla
 							'<center><img <<$set_imgh>> src="images/characters/city/bobka/sex/crackwhore4.jpg"></center>'
 							'In the rare moments your mind is not intoxicated by your last hit, you think back to the friends and family you used to have. It all seems surreal now.'
 
-							act '...':
+							act 'Continue':
 								*clr & cla
 								'<center><img <<$set_imgh>> src="images/characters/city/bobka/sex/crackwhore5.jpg"></center>'
 								'Your future was so bright, when you were in school. The teachers would sing your praises, saying how much potential you had.'
@@ -299,14 +299,14 @@ if $ARGS[0] = 'drugslut':
 								'It''s nothing new to you, this is your life now. You don''t try to resist or fend him off any more, but simply open your mouth wider and stick your tongue out to give him full access to your throat. Force of habit. What else could you do?'
 								'You''ve long since realized it: you''re a whore now, doing whatever perverted acts the customers demand from you. You have to! Anything to earn enough money for your next dose...'
 
-								act '...':
+								act 'Continue':
 									*clr & cla
 									'<center><img <<$set_imgh>> src="images/characters/city/bobka/sex/crackwhore6.jpg"></center>'
 									'You''ve long since stopped taking care of yourself, tending to your poor-paying customers'' cocks out of sheer habit. Your former beauty is completely gone, and traces of dried semen cover your hair, face and clothes constantly.'
 									'The brothel owner is starting to lose his patience with you. Even his customers, who already have fairly low standards, no longer seem to be very interested in you. Lucky for you, some them of them can''t afford any better.'
 									'Occasionally, when you get ready to offer your broken down holes up again to yet another customer, you wonder... was there anything you could''ve done differently?'
 
-									act '...':gt 'gameover'
+									act 'Continue':gt 'gameover'
 								end
 							end
 						end

+ 2 - 2
locations/nichTaras.qsrc

@@ -746,14 +746,14 @@ elseif $ARGS[0] = 'vanAbduct':
 		'As you pass the van the back door is suddenly opened. You have no time to react before a piece of cloth is pressed against your face.'
 		'It smells sweetish....... and you begin to black out.'
 		nichTarasAbduction = 50
-		act '...': gt 'nichTaras','vanAbduct',1
+		act 'Continue': gt 'nichTaras','vanAbduct',1
 	elseif ARGS[1] = 1:
 		'<center><img <<$set_imgh>> src="images/characters/city/taras/abductionVan.jpg"></center>'
 		'You slowly come back to your senses. The first thing you realize is that you are completely tied up. You can''t move at all.'
 		'You open your eyes in panic. You are in the back area of the van and it is moving. You try to scream, but your mouth is taped shut.'
 		'Your eyes are still a little blurred. You can''t see where you are or who the driver is.'
 		'But he must have watched you, because he stops the car, climbs back to you and presses the piece of cloth at your face again. You are falling unconscious once more.'
-		act '...': gt 'nichTaras','abdIntro'
+		act 'Continue': gt 'nichTaras','abdIntro'
 	end
 end
 

+ 53 - 53
locations/pavcomplexrolan.qsrc

@@ -14,7 +14,7 @@ if month >=3 and month =< 11:
 		'<center><h4>Rolan on the bench</h4></center>'
 		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/benchsr.jpg"></center>'
 		'Rolan stays on the bench reading something. You can talk to him...or investigate...'
-	
+
 		if money > 8000 and rolanblockhome = 1:
 			'You have some money with you, maybe Rolan wants his old bath back...'
 		end
@@ -38,7 +38,7 @@ if month >=3 and month =< 11:
 						'You can tell his attitude towards you is slightly milder.'
 						act 'Move away':gt 'pavComplex', 'start'
 					end
-					act 'Move away':gt 'pavComplex', 'start'		
+					act 'Move away':gt 'pavComplex', 'start'
 				elseif npc_rel['A133']>=20 and npc_rel['A133']<40:
 					!He doesn''t like you very much
 					'You try to have a conversation with Rolan, but he dislikes you too much to even pretend to be interested in what you have to say.'
@@ -49,7 +49,7 @@ if month >=3 and month =< 11:
 						'You can tell his attitude towards you is milder.'
 						act 'Move away':gt 'pavComplex', 'start'
 					end
-					act 'Move away':gt 'pavComplex', 'start'		
+					act 'Move away':gt 'pavComplex', 'start'
 				elseif npc_rel['A133'] >=40:
 					'Rolan likes you too much to even pretend to not staring at your boobs.'
 					act 'Friendly chat':
@@ -81,7 +81,7 @@ if month >=3 and month =< 11:
 				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/rolanturn0.jpg"></center>'
 				'You sit down next to him on a nearby bench. Rolan turn his head on the other side.'
 				act 'Speak':gt 'pavComplexrolan', 'friends'
-			end	
+			end
 		end
 
 		act 'Hide and snoop':
@@ -101,7 +101,7 @@ if month >=3 and month =< 11:
 					act 'Move away':gt 'pavComplex', 'start'
 				end
 				act 'Move away':gt 'pavComplex', 'start'
-		
+
 			elseif rand(1,100) > 70:
 				cla & *clr
 				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/looking.jpg"></center>'
@@ -131,7 +131,7 @@ if month >=3 and month =< 11:
 				act 'Move away':gt 'pavComplex', 'start'
 			end
 		end
-	
+
 	elseif sunWeather = 1 and (RolanLoc[hour] ! 9 or RolanLoc[hour] ! 10):
 		cla & *clr
 		gs 'stat'
@@ -143,7 +143,7 @@ if month >=3 and month =< 11:
 		gs 'stat'
 		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/benchsrainy.jpg"></center>'
 		'The large bench where Rolan usually sits. He spend time here to catch butterflies and look around when he can, in the late afternoons and evenings. Due to the rain Rolan isn''t here.'
-		act 'Move away':gt 'pavComplex', 'start'	
+		act 'Move away':gt 'pavComplex', 'start'
 	end
 else
 	if sunWeather = 1:
@@ -163,71 +163,71 @@ end
 
 if $ARGS[0] = 'spy':
 
-	len_rol_ler = rand (0,8)	
+	len_rol_ler = rand (0,8)
 	if len_rol_ler = 0:
-		$court_texta = 'You notice two girls looking at each other; one is speaking at the phone.' 
+		$court_texta = 'You notice two girls looking at each other; one is speaking at the phone.'
 		$court_textb = 'Suddenly the girl without the phone pull dow the panty of her friend while she continues the call and start eating the pussy...it seems they don''t mind to play in the courtyard.'
 		$court_textc = 'The girl on the phone continues her calling as she wants the listener on the other side to know she''s busy; her friend furiously rub the pussy that she start to loose control and suddenly cum. You think you have some more reason to visit often the courtyard...'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat00.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat01.jpg"></center>'
 !!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat02.jpg"></center>'
 	elseif len_rol_ler = 1:
-		$court_texta = 'Lena and lera are walking in the park hand in hand.' 
-		$court_textb = 'Suddenly they stop and start groping each other butt...' 
-		$court_textc = 'Both of them pull down their short flashing their asses and turn their face...ooops they seems aware of Rolan...' 
+		$court_texta = 'Lena and lera are walking in the park hand in hand.'
+		$court_textb = 'Suddenly they stop and start groping each other butt...'
+		$court_textc = 'Both of them pull down their short flashing their asses and turn their face...ooops they seems aware of Rolan...'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat10.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat11.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat12.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat12.jpg"></center>'
 	elseif len_rol_ler = 2:
-		$court_texta = 'Two girls passionately kiss each other.' 
-		$court_textb = 'They move on a nearby wall, one of the girl sits spreading her legs the other reach her panties and put them apart...she start to explore her friend.' 
-		$court_textc = 'Soon they both ends without skirt and start to make out, the blond girl go down on her knees using her skirt on the floor, and starts fingerfucking her friend.' 
+		$court_texta = 'Two girls passionately kiss each other.'
+		$court_textb = 'They move on a nearby wall, one of the girl sits spreading her legs the other reach her panties and put them apart...she start to explore her friend.'
+		$court_textc = 'Soon they both ends without skirt and start to make out, the blond girl go down on her knees using her skirt on the floor, and starts fingerfucking her friend.'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat20.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat21.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat22.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat22.jpg"></center>'
 	elseif len_rol_ler = 3:
-		$court_texta = 'Lena and Lera kiss each other on a nearby bench...' 
-		$court_textb = 'It seems it''s  not enough, because the immediately move few step away and in they both start undressing...' 
-		$court_textc = 'Only their panties remain...when you hear the police sirens. "Move move" Lera drags Lena away...' 
+		$court_texta = 'Lena and Lera kiss each other on a nearby bench...'
+		$court_textb = 'It seems it''s  not enough, because the immediately move few step away and in they both start undressing...'
+		$court_textc = 'Only their panties remain...when you hear the police sirens. "Move move" Lera drags Lena away...'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat30.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat31.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat32.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat32.jpg"></center>'
 	elseif len_rol_ler = 4:
-		$court_texta = 'Two girls are flashing pussy and tits on the weed, it seems really daring...' 
-		$court_textb = 'They move on a bench, they must be really in heat...one lift on a wall near the bench and spread her legs offering an easy access to the pussy; her friend start licking and pull out a dildo that she stick in the pussy while eating the brunette''s pussy.' 
-		$court_textc = 'The brunette wants to give pleasure to her friend and move down to take lead, she start fucking her friend pussy as if nobody was there...' 
+		$court_texta = 'Two girls are flashing pussy and tits on the weed, it seems really daring...'
+		$court_textb = 'They move on a bench, they must be really in heat...one lift on a wall near the bench and spread her legs offering an easy access to the pussy; her friend start licking and pull out a dildo that she stick in the pussy while eating the brunette''s pussy.'
+		$court_textc = 'The brunette wants to give pleasure to her friend and move down to take lead, she start fucking her friend pussy as if nobody was there...'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat40.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat41.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat42.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat42.jpg"></center>'
 	elseif len_rol_ler = 5:
-		$court_texta = 'You see miss Sokoloff coming, and you decide to move away...you don''t want to listen a lesson outside the school. You move away and turn to see if she''s gone, but she''s in there speaking with Rolan...wait... "Who''s there?"...You see Lena and Lera exposing their body a few step from Rolan and miss Sokoloff...'  
-		$court_textb = 'Soon they move, you decide to follow them and hide behind a wall. Lera pull out a dildo and start to lube it, while Lena go down and spread Lera''s lip...' 
-		$court_textc = 'It seems too much daring, and soon they move on a secluded spot to proceed unnoticed. You follow them and find a three to stay behind...Lena push the dildo inside Lera and start to fuck her. This spot pass as unoticed and they continue to fuck free from uwanted sight...well at least they think so... .' 
+		$court_texta = 'You see miss Sokoloff coming, and you decide to move away...you don''t want to listen a lesson outside the school. You move away and turn to see if she''s gone, but she''s in there speaking with Rolan...wait... "Who''s there?"...You see Lena and Lera exposing their body a few step from Rolan and miss Sokoloff...'
+		$court_textb = 'Soon they move, you decide to follow them and hide behind a wall. Lera pull out a dildo and start to lube it, while Lena go down and spread Lera''s lip...'
+		$court_textc = 'It seems too much daring, and soon they move on a secluded spot to proceed unnoticed. You follow them and find a three to stay behind...Lena push the dildo inside Lera and start to fuck her. This spot pass as unoticed and they continue to fuck free from uwanted sight...well at least they think so... .'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat50.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat51.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat52.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat52.jpg"></center>'
 	elseif len_rol_ler = 6:
-		$court_texta = 'Two girls sit on a nearby bench. They look around as if they were worried about something. Ooops you can see what they are worried about. One of the girl stick a dildo up her ass...no way she''s worry...'  
-		$court_textb = 'Suddenly a man comes to the bench behind them. The girls turn a little to hide their action, they clearly do not want to stop and stay hid as possible. The man take a newspaper he probably forgot and go away...' 
-		$court_textc = 'Once the man was out of their sight the girl who were fucking her friend''s ass turn her doggy on the bench to continue in this position...soon you leave, you don''t want to be caught... ' 
+		$court_texta = 'Two girls sit on a nearby bench. They look around as if they were worried about something. Ooops you can see what they are worried about. One of the girl stick a dildo up her ass...no way she''s worry...'
+		$court_textb = 'Suddenly a man comes to the bench behind them. The girls turn a little to hide their action, they clearly do not want to stop and stay hid as possible. The man take a newspaper he probably forgot and go away...'
+		$court_textc = 'Once the man was out of their sight the girl who were fucking her friend''s ass turn her doggy on the bench to continue in this position...soon you leave, you don''t want to be caught... '
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat60.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat61.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat62.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat62.jpg"></center>'
 	elseif len_rol_ler = 7:
-		$court_texta = 'You see two girls in a dress without underware exposing their body...it seems they want to make a show...' 
-		$court_textb = 'The courtyard is crowded today and they constantly change position using a three as a blindspot.' 
-		$court_textc = 'They kiss and touch each other, but they are obviously ashemed to go further...soon the move away, leaving you with a wetting thought.' 
+		$court_texta = 'You see two girls in a dress without underware exposing their body...it seems they want to make a show...'
+		$court_textb = 'The courtyard is crowded today and they constantly change position using a three as a blindspot.'
+		$court_textc = 'They kiss and touch each other, but they are obviously ashemed to go further...soon the move away, leaving you with a wetting thought.'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat70.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat71.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat72.jpg"></center>'	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat72.jpg"></center>'
 	elseif len_rol_ler = 8:
-		$court_texta = 'Rolan is pointing to the slipway...you wonder what''s there...Wow Lena and Lera are putting a show. They are completely naked on the slipway with their clothes nearby.' 
-		$court_textb = 'Suddenly miss Sokoloff walk nearby the slipway with her bag on her hand but she seems to not notice what''s going on. Lena and Lera seems to find the situation funny and they continue trying to stay hide from her sight' 
-		$court_textc = 'Unbelievable....miss Sokoloff pass the slipway totally unaware. Lena and Lera start kiss each other...it seems they want to party for their achievment...' 
+		$court_texta = 'Rolan is pointing to the slipway...you wonder what''s there...Wow Lena and Lera are putting a show. They are completely naked on the slipway with their clothes nearby.'
+		$court_textb = 'Suddenly miss Sokoloff walk nearby the slipway with her bag on her hand but she seems to not notice what''s going on. Lena and Lera seems to find the situation funny and they continue trying to stay hide from her sight'
+		$court_textc = 'Unbelievable....miss Sokoloff pass the slipway totally unaware. Lena and Lera start kiss each other...it seems they want to party for their achievment...'
 !!Image needed		$court_imga = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat80.jpg"></center>'
 !!Image needed		$court_imgb = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat81.jpg"></center>'
-!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat82.jpg"></center>'	
-	end	
+!!Image needed		$court_imgc = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/bathchat/rolchat82.jpg"></center>'
+	end
 
 	cla & *clr
 	gs 'arousal', 'voyeur', 5
@@ -295,7 +295,7 @@ if $ARGS[0] = 'friends':
 					act 'Move away':gt 'pavComplex', 'start'
 				end
 			end
-		end	
+		end
 	else
 		if rolanapol = 0:
 			cla & *clr
@@ -351,8 +351,8 @@ if $ARGS[0] = 'friends':
 								pain['asscheeks'] += 30
 								'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/rolanapol3.jpg"></center>'
 								'Your ass is red and painful, you are near to cry'
-								'"...i''m sorry Rolan...i''ve learned the lesson..."'								
-								act '...':
+								'"...i''m sorry Rolan...i''ve learned the lesson..."'
+								act 'Continue':
 									cla & *clr
 									gs 'stat'
 									rolanblockhome = 0
@@ -361,7 +361,7 @@ if $ARGS[0] = 'friends':
 									act 'leave':gt 'pavComplex', 'start'
 								end
 							end
-						end	
+						end
 					end
 					act 'What?':
 						cla & *clr
@@ -417,8 +417,8 @@ if $ARGS[0] = 'friends':
 							pain['asscheeks'] += 30
 							'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/rolanapol3.jpg"></center>'
 							'Your ass is red and painful, you are near to cry'
-							'"...i''m sorry Rolan...i''ve learned the lesson..."'								
-							act '...':
+							'"...i''m sorry Rolan...i''ve learned the lesson..."'
+							act 'Continue':
 								cla & *clr
 								gs 'pain', 5, 'asscheeks', 'spank'
 								gs 'stat'
@@ -428,7 +428,7 @@ if $ARGS[0] = 'friends':
 								act 'leave':gt 'pavComplex', 'start'
 							end
 						end
-					end	
+					end
 				end
 				act 'What?':
 					cla & *clr
@@ -479,8 +479,8 @@ if $ARGS[0] = 'friends':
 						pain['asscheeks'] += 30
 						'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/aptrolan/rolanapol3.jpg"></center>'
 						'Your ass is red and painful, you are near to cry'
-						'"...i''m sorry Rolan...i''ve learned the lesson..."'								
-						act '...':
+						'"...i''m sorry Rolan...i''ve learned the lesson..."'
+						act 'Continue':
 							cla & *clr
 							gs 'stat'
 							rolanblockhome = 0
@@ -489,7 +489,7 @@ if $ARGS[0] = 'friends':
 							act 'leave':gt 'pavComplex', 'start'
 						end
 					end
-				end	
+				end
 			end
 			act 'What?':
 				cla & *clr
@@ -499,7 +499,7 @@ if $ARGS[0] = 'friends':
 				act 'Move away':gt 'pavComplex', 'start'
 			end
 		end
-	end	
+	end
 end
 
 --- pavcomplexrolan ---------------------------------

+ 25 - 25
locations/porn_view.qsrc

@@ -3,7 +3,7 @@ $location_type = 'event'
 
 menu_off = 1
 
-act 'Go': 
+act 'Go':
 	killvar '$_zz_boy_arr'
 	minut += iif(seepornofut < 4,rand(15,30),rand(60,80))
 	gt 'pavResidential'
@@ -30,14 +30,14 @@ if seepornofut < 10:
 			cla
 			act 'Escape': gt 'pavResidential'
 		end
-		
+
 		if seepornofut = 0:
 			func('porn_view_strings', 'view_1_virgin')
 
 			seepornofut += 1
 			exit
 		end
-		
+
 		if seepornofut > 0 and seepornofut < 3:
 			func('porn_view_strings', 'view_2_virgin')
 
@@ -52,7 +52,7 @@ if seepornofut < 10:
 			end
 			exit
 		end
-		
+
 		if seepornofut = 3 or seepornofut = 4:
 			func('porn_view_strings', 'view_3_virgin'+iif(pcs_horny > 70,'_horny',''))
 
@@ -68,7 +68,7 @@ if seepornofut < 10:
 			pcs_horny += 10
 			exit
 		end
-		
+
 		if seepornofut >= 7 and seepornofut < 10:
 			func('porn_view_strings', 'view_7_virgin'+iif(pcs_horny > 70,'_horny',''))
 
@@ -97,7 +97,7 @@ if seepornofut < 10:
 			seepornofut += 1
 			exit
 		end
-		
+
 		if seepornofut = 3 or seepornofut = 4:
 			func('porn_view_strings', 'view_3'+iif(pcs_horny > 70,'_horny',''))
 
@@ -131,7 +131,7 @@ if seepornofut < 10:
 			seepornofut += 1
 			exit
 		end
-		
+
 		if seepornofut = 7:
 			func('porn_view_strings','view_7')
 
@@ -143,7 +143,7 @@ if seepornofut < 10:
 		if seepornofut = 8:
 			pcs_horny = 0
 			seepornofut = 10
-			
+
 			func('porn_view_strings','view_8')
 
 			func('porn_view_strings','view_8'+iif($pantyworntype = 'none','_no_tanga','_tanga'))
@@ -167,7 +167,7 @@ if seepornofut < 10:
 
 				exit
 			end
-			
+
 			if pcs_ass >= 15:
 				func('porn_view_strings','view_8_stretched_anus')
 
@@ -175,7 +175,7 @@ if seepornofut < 10:
 
 				exit
 			end
-			
+
 			if pcs_vag >= 15:
 				func('porn_view_strings','view_8_stretched_vag')
 
@@ -208,7 +208,7 @@ if seepornofut >= 10:
 	$_zz_boy_arr[] = $_init_arr[0]
 	killvar '$_init_arr'
 	! ---
-	
+
 	if seepornofut = 10:
 		func('porn_view_strings', 'view_10')
 
@@ -218,7 +218,7 @@ if seepornofut >= 10:
 		pcs_horny = 0
 		exit
 	end
-	
+
 	if seepornofut = 11:
 		func('porn_view_strings', 'view_11')
 
@@ -226,7 +226,7 @@ if seepornofut >= 10:
 		pcs_horny = 0
 		exit
 	end
-	
+
 	if seepornofut = 12:
 		func('porn_view_strings', 'view_12')
 
@@ -234,7 +234,7 @@ if seepornofut >= 10:
 		pcs_horny = 0
 		exit
 	end
-	
+
 	if seepornofut = 13:
 		func('porn_view_strings', 'view_13')
 
@@ -246,7 +246,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut = 14:
 		func('porn_view_strings', 'view_14')
 
@@ -262,7 +262,7 @@ if seepornofut >= 10:
 		seepornofut += 1
 		exit
 	end
-	
+
 	if seepornofut = 15:
 		func('porn_view_strings', 'view_15')
 
@@ -363,7 +363,7 @@ if seepornofut >= 10:
 		seepornofut += 1
 		exit
 	end
-	
+
 	if seepornofut = 22:
 		func('porn_view_strings', 'view_20')
 
@@ -408,7 +408,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut = 23:
 		func('porn_view_strings', 'view_23')
 
@@ -430,7 +430,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut >= 24 and seepornofut <= 26:
 		func('porn_view_strings', 'view_23')
 
@@ -451,7 +451,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut >= 27 and seepornofut <= 29:
 		func('porn_view_strings', 'view_23')
 
@@ -459,7 +459,7 @@ if seepornofut >= 10:
 
 		if rand(0,10) > 5:
 			cla
-			act '...':
+			act 'Continue':
 				*clr & cla
 				func('porn_view_strings', 'view_27_rand')
 
@@ -522,7 +522,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut = 31:
 		func('porn_view_strings', 'view_31')
 
@@ -561,7 +561,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut >= 32 and seepornofut <= 35:
 		if pcs_sweat >= 2:
 			func('porn_view_strings', 'view_32_sweat')
@@ -617,7 +617,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut = 40:
 		func('porn_view_strings', 'view_40')
 
@@ -645,7 +645,7 @@ if seepornofut >= 10:
 		dynamic $showerdin
 		exit
 	end
-	
+
 	if seepornofut > 40:
 		func('porn_view_strings', 'view_40')
 

+ 4 - 4
locations/pornstudio.qsrc

@@ -797,7 +797,7 @@ if $ARGS[0] = 'yes':
 		end
 
 		act 'Make excuses and leave':gt 'pornstudio', 'start'
-		
+
 		act 'Undress':
 			cla
 			minut += 5
@@ -1071,19 +1071,19 @@ if $ARGS[0] = '1':
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/studio/casting_3.jpg"></center>'
 			'First held casting actresses - as I have said, if you are terrible - You can not hope, comes only when you have a beautiful appearance.'
 
-			act '...':
+			act 'Continue':
 				*clr & cla
 				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/studio/model_0.jpg"></center>'
 				'Then the girl chosen for the lead role.'
 				'Here you have to be the most beautiful.'
 
-				act '...':
+				act 'Continue':
 					*clr & cla
 					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/studio/film_0.jpg"></center>'
 					'Well, then she shot - interesting and exciting processes'
 					'And the output we obtain...'
 
-					act '...':
+					act 'Continue':
 						*clr & cla
 						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/studio/dvd-disx.jpg"></center>'
 						'So on what I make money.'

+ 4 - 4
locations/qwIzoldaApp.qsrc

@@ -50,14 +50,14 @@ if $ARGS[0] = '':
 							minut -= 5
 							gs 'stat'
 
-							act '...':
+							act 'Continue':
 								*clr & cla
 								'<center><img <<$set_imgh>> src="images/characters/city/isolde/sex/izoldasex2.jpg"></center>'
 								'Isolde you dropped on the couch and gently kisses covering section. Once you lay down on her back, she began to lick your pussy.'
 								gs 'arousal', 'cuni', 5, 'lesbian'
 								gs 'stat'
 
-								act '...':
+								act 'Continue':
 									*clr & cla
 									'<center><img <<$set_imgh>> src="images/characters/city/isolde/sex/izoldasex3.jpg"></center>'
 									'Blonde turned and climbed on you without stopping to lick your pussy. She throw the leg over you up her sweaty and expiring juices crack for sex. You started to caress her clitoris tongue and kiss her luscious lips, finally you both shook orgasm.'
@@ -95,7 +95,7 @@ if $ARGS[0] = '':
 						minut -= 5
 						gs 'stat'
 
-						act '...':
+						act 'Continue':
 							*clr & cla
 							gs 'stat'
 							'<center><img <<$set_imgh>> src="images/characters/city/isolde/sex/izoldasex2.jpg"></center>'
@@ -103,7 +103,7 @@ if $ARGS[0] = '':
 							gs 'arousal', 'cuni', 5, 'lesbian'
 							gs 'stat'
 
-							act '...':
+							act 'Continue':
 								*clr & cla
 								'<center><img <<$set_imgh>> src="images/characters/city/isolde/sex/izoldasex3.jpg"></center>'
 								'Blonde turned and climbed on you without stopping to lick your pussy. She throw the leg over you up her sweaty and expiring juices crack for sex. You started to caress her clitoris tongue and kiss her luscious lips, finally you both shook orgasm.'

+ 4 - 4
locations/qwmeet.qsrc

@@ -387,7 +387,7 @@ if $ARGS[0] = 'qwbereg':
 							gs 'orgazm', 'start'
 							gs 'arousal', 'end'
 							gs 'stat'
-							act '...': gt 'qwmeet','qwbereg2'
+							act 'Continue': gt 'qwmeet','qwbereg2'
 						end
 					end
 				end
@@ -409,7 +409,7 @@ if $ARGS[0] = 'qwbereg':
 						gs 'arousal', 'hj', 5, 'sub'
 						gs 'stat'
 
-						act '...':gt 'qwmeet','qwbereg2'
+						act 'Continue':gt 'qwmeet','qwbereg2'
 					end
 
 					act 'To take by mouth':
@@ -539,7 +539,7 @@ if $ARGS[0] = 'qwmeetdin':
 					money += 5000
 					'You walked with Vladimir into the bedroom. Vladimir sceptically cast his gaze about your humble abode and took out his wallet. "I hope you will not mind if I give you some money?" He handed you five thousand. You took the money you were offered.'
 
-					act '...':gt 'BDsex', 'start'
+					act 'Continue':gt 'BDsex', 'start'
 				end
 			elseif husband > 0 and VladimirKnowAboutHusband = 0:
 				act 'I am married':
@@ -567,7 +567,7 @@ if $ARGS[0] = 'qwmeetdin':
 				'Glory drove you to an apartment Vladimir rented. You got out of the car and went up to the apartment.'
 				'Once through the door you went with Vladimir the to bedroom.'
 
-				act '...':gt 'BDsex', 'start'
+				act 'Continue':gt 'BDsex', 'start'
 			end
 		end
 	end

+ 42 - 42
locations/talent_agency.qsrc

@@ -28,7 +28,7 @@ end
 
 if $ARGS[0] = 'jobs':
 	*clr & cla
-!! IMAGE GOES HERE	
+!! IMAGE GOES HERE
 !!	'The jobs are displayed on a bulletin board'
 !! The mid function is used to identify a single digit, don''t use 1,1 as that is there just to ensure the numbers all generate
 !!	if mid(acting_string1,2,2) > 4:
@@ -162,7 +162,7 @@ if $ARGS[0] = 'SMTV':
 											'At last, you''ve taken the final step and made it past the checkpoint. Another aid is there and you gratefully rush into the gloriously warm blanket she holds and wraps your naked body in it.'
 											'Mr. Yanovich and others are huddled around a monitor, examining the footage.'
 											'"Amazing!" he exclaims. "A true one-take-wonder! Excellent work here Miss <<$pcs_lastname>>! Excellent work! That''s all we need from you today, we''ll take you back to Aurora and you can get changed back into your clothes.'
-											act'...':
+											act 'Continue':
 												minut += 30
 												*clr & cla
 												'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/front.jpg"></center>'
@@ -192,7 +192,7 @@ if $ARGS[0] = 'SMTV':
 							end
 						end
 					end
-				else 
+				else
 					'You confidently strip down in front of Mr. Yanovich, not bothered in the slightest by his presence.'
 					'He stares appreciatively at your nude body.'
 					if prcptn_lvl >= 30:'A hard bulge starts to form in the crotch of his trousers.'
@@ -241,7 +241,7 @@ if $ARGS[0] = 'SMTV':
 											'At last, you''ve taken the final step and made it past the checkpoint. Another aid is there and you step into the gloriously warm blanket she holds and wraps your naked body in it.'
 											'Mr. Yanovich and others are huddled around a monitor, examining the footage.'
 											'"Amazing!" he exclaims. "A true one-take-wonder! Excellent work here Miss <<$pcs_lastname>>! Excellent work! That''s all we need from you today, we''ll take you back to Aurora and you can get changed back into your clothes."'
-											act'...':
+											act 'Continue':
 												minut += 30
 												*clr & cla
 												'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/front.jpg"></center>'
@@ -273,7 +273,7 @@ if $ARGS[0] = 'SMTV':
 				end
 			end
 		end
-		
+
 		act '"Okay."':
 			minut += 5
 			*clr
@@ -332,7 +332,7 @@ if $ARGS[0] = 'SMTV':
 										'At last, you''ve taken the final step and made it past the checkpoint. Another aid is there and you gratefully rush into the gloriously warm blanket she holds and wraps your naked body in it.'
 										'Mr. Yanovich and others are huddled around a monitor, examining the footage.'
 										'"Amazing!" he exclaims. "A true one-take-wonder! Excellent work here Miss <<$pcs_lastname>>! Excellent work! That''s all we need from you today, we''ll take you back to Aurora and you can get changed back into your clothes.'
-										act'...':
+										act 'Continue':
 											minut += 30
 											*clr & cla
 											'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/room.jpg"></center>'
@@ -362,7 +362,7 @@ if $ARGS[0] = 'SMTV':
 						end
 					end
 				end
-			else 
+			else
 				'You confidently strip down in front of Mr. Yanovich, not bothered in the slightest by his presence.'
 				'He stares appreciatively at your nude body.'
 				if prcptn_lvl >= 30:'A hard bulge starts to form in the crotch of his trousers.'
@@ -411,7 +411,7 @@ if $ARGS[0] = 'SMTV':
 										'At last, you''ve taken the final step and made it past the checkpoint. Another aid is there and you step into the gloriously warm blanket she holds and wraps your naked body in it.'
 										'Mr. Yanovich and others are huddled around a monitor, examining the footage.'
 										'"Amazing!" he exclaims. "A true one-take-wonder! Excellent work here Miss <<$pcs_lastname>>! Excellent work! That''s all we need from you today, we''ll take you back to Aurora and you can get changed back into your clothes."'
-										act'...':
+										act 'Continue':
 											minut += 30
 											*clr & cla
 											'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/room.jpg"></center>'
@@ -455,38 +455,38 @@ if $ARGS[0] = 'wrong_room':
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/1.jpg"></center>'
 		'You enter the room and see a girl having a conversation with a director or producer. You suddenly realize that you''ve gone into the wrong room and back out, apologizing.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 2:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/2.jpg"></center>'
 		'You enter the room and see a girl sitting down on a couch while a director or producer is shuffling notes on his desk. You suddenly realize that you''ve gone into the wrong room and back out, apologizing.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 3:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/3.jpg"></center>'
 		'You enter the room and stop dead in your tracks as you see a girl completely naked except for a pair of panties.'
 		*nl
 		'You rush back out the door shouting, "Wrong room! Sorry!" and slam it shut behind you.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 4:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/4.jpg"></center>'
-		'You enter the room and stop dead in your tracks when you see a girl standing completely naked. The man in the room shouts at you, "Hey! What do you think you''re doing here?! Get the fuck out!"' 
+		'You enter the room and stop dead in your tracks when you see a girl standing completely naked. The man in the room shouts at you, "Hey! What do you think you''re doing here?! Get the fuck out!"'
 		'You rush back out the door shouting, "Wrong room! Sorry!" and slam it shut behind you.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 5:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/5.mp4"></video></center>'
 		'You open the door to the interview room and are met with a scene of a girl riding a man''s cock like a mechanical bull.'
 		*nl
 		'"Come on! You''re going to have to go faster if you want to get this job!" the man growls.'
 		*nl
-		'"Ahh! Ahhh!! AHHHH!!!"' 
+		'"Ahh! Ahhh!! AHHHH!!!"'
 		*nl
 		'The girl only screams more as she tries to pick up speed even though she was clearly struggling to keep up with the previous pace. She doesn''t look like she''s very happy.'
 		*nl
 		'Neither of them seem to notice that you entered the wrong room. Seeing you''ve made a mistake and not wanting to get caught, you leave quietly, trying to close the door as silently as you can.'
 		act 'Leave':gt'talent_agency','hallway'
-		
+
 	elseif interview = 6:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/6.mp4"></video></center>'
 		'You open the door to the interview room and see a girl on all fours on the couch being pummeled from behind by a man. You and the girl instantly make eye contact and her expression immediately becomes terrified.'
@@ -499,13 +499,13 @@ if $ARGS[0] = 'wrong_room':
 		'"That wasn''t part of the deal! I''m not on birth control!"'
 		'"You should have thought of that before you decided to become an actress!"'
 		act 'Leave':gt'talent_agency','hallway'
-		
+
 	elseif interview = 7:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/7.mp4"></video></center>'
 		'You open the door and see an upset looking girl bent over the desk as the man behind her slowly pulls his cock out from her pussy. You freeze in shock and then swiftly shut the door without a word but through it you can hear voices.'
 		'"Congratulations on landing the part sweetie. I just hope you realise what your role is going to be moving forward."'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 8:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/8.mp4"></video></center>'
 		'You open the door and are shocked to see a young girl on the couch while two men rhythmically piston her ass and pussy.'
@@ -515,7 +515,7 @@ if $ARGS[0] = 'wrong_room':
 		'The girl says nothing but soft moans and grunts, although it doesn''t seem like she''s enjoying herself.'
 		'None of them seem to notice that you even entered the room. Seeing you''ve made a mistake and not wanting to get caught, you leave quietly, trying to close the door as silently as you can.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 9:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/9.jpg"></center>'
 		'You open the door to see a man with his cock hanging out and a girl kneeling in front of him with cum all over her face.'
@@ -523,9 +523,9 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'She obediently handles his cock with care as she gives it a thorough tongue bath with no enthusiasm whatsoever.'
 		'As you shut the door quietly, you hear the man say, "Don''t forget to swallow missy..."'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 10:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/10.jpg"></center>'
 		'You open the door and freeze in shock as right in front of you is the face of a girl being fucked violently over a desk. Her hair is being held in a tight fist behind her head as the man uses it as extra leverage to pull her farther onto his cock.'
@@ -535,7 +535,7 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'"Uhm, ah- sorry." You close the door as casually as possible, still hearing the slapping of flesh and grunting after it already clicked shut.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 11:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/11.jpg"></center>'
 		'You open the door and see a smiling girl with cum dripping down her face and a man who''s clearly the one who just put it there.'
@@ -547,8 +547,8 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'"Wrong... room..." you mumble and close the door. Neither of them pay any attention to you.'
 		act 'Leave':gt'talent_agency','hallway'
-	
-	
+
+
 	elseif interview = 12:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/12.mp4"></video></center>'
 		'You open the door and suddenly stop as you see a girl leaning over a desk and deeply enjoying the cock of the man behind her.'
@@ -558,10 +558,10 @@ if $ARGS[0] = 'wrong_room':
 		'Hearing this, she smiles wide and picks up speed. "If you cum inside I expect a larger salary!"'
 		'"You... Got it!" the man says, abruptly grabbing her by the hips and thrusting so hard you see her feet come off the ground.'
 		'Neither of them pay attention to you as you close the door like nothing happened.'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-	
-	
+
+
 	elseif interview = 13:
 		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/aurora/interview/wrong/13.jpg"></center>'
 		'You open the door and are greeted with the face of an unhappy looking girl being fucked over a desk.'
@@ -570,8 +570,8 @@ if $ARGS[0] = 'wrong_room':
 		'Looking up, he suddenly sees you standing there. "Hey! What are you doing?! Get the fuck out!"'
 		'"Yes sir! Sorry sir!" you squeak and slam the door shut.'
 		act 'Leave':gt'talent_agency','hallway'
-	
-	
+
+
 	elseif interview = 14:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/14.mp4"></video></center>'
 		'"How long do we have to keep doing this?"'
@@ -579,17 +579,17 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'"You do it until I tell you to stop! If you want to get both of the sister roles, I need to see some sisterly love... Now you, get on your knees and lick her pussy while I fuck your ass. And you! Don''t even think about taking that finger off your clit!"'
 		'Having seen enough, you shut the door silently and go on your way.'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 15:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/15.mp4"></video></center>'
 		'You open the door just in time to see a girl on her knees in front of a man and jets of cum spurt from his cock to hit her square in the face.'
 		'"Sorry! Wrong room!" and shut the door fast behind you.'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-	
-	
+
+
 	elseif interview = 16:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/16.mp4"></video></center>'
 		'You open the door and see a cheerful looking girl with fresh cum and a bright smile on her face.'
@@ -601,9 +601,9 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'You quietly close the door and pretend like you saw nothing.'
 		act 'Leave':gt'talent_agency','hallway'
-	
-	
-	
+
+
+
 	elseif interview = 17:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/17.mp4"></video></center>'
 		'Opening the door, the very first thing you see is a girl choking on cock.'
@@ -616,7 +616,7 @@ if $ARGS[0] = 'wrong_room':
 		'At his notice, she forces herself as far onto his cock as she can manage and holds herself there. Moments later you see her neck muscles swallowing as he cums directly down her throat.'
 		'Now seems like a good time to make your escape.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 18:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/18.mp4"></video></center>'
 		'You open the door and see a girl diligently polishing a man''s cock with her lips.'
@@ -625,9 +625,9 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'He shoves his cock back in her mouth to cut her off short. "Shut up whore! You take dick for money and favors! That makes you a fucking slut!"'
 		'She moans in a pouty tune as you shut the door, not wanting to get caught up in this mess.'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 19:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/19.mp4"></video></center>'
 		'You open the door and see a worried looking girl doing her very best to give a man a blowjob.'
@@ -635,9 +635,9 @@ if $ARGS[0] = 'wrong_room':
 		*nl
 		'The girl''s distress increases and she tries even harder. Her skill looks a bit subpar to be honest, but that''s no time for this!'
 		'You sneak backwards and return to the hallway quietly.'
-	
+
 		act 'Leave':gt'talent_agency','hallway'
-		
+
 	elseif interview = 20:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/20.mp4"></video></center>'
 		'You open the door and see a girl in glasses giving what looks like a loving blowjob to the man inside with her.'
@@ -648,7 +648,7 @@ if $ARGS[0] = 'wrong_room':
 		'Your mouth hangs open in offence as neither of them pay any more attention to you.'
 		'<i>Who are you calling a slut when you''re the one blowing a guy for your "audition?"</i> you think to yourself as you shut the door.'
 		act 'Leave':gt'talent_agency','hallway'
-	
+
 	elseif interview = 21:
 		'<center><video autoplay loop src="images/locations/city/citycenter/aurora/interview/wrong/21.mp4"></video></center>'
 		'You open the door and see a girl being furiously fucked by three guys. Or is it the other way around?'

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff