Browse Source

[fixed] bugfix to the hunter gang bang. Found by Yasahanikuro and proposed by Awesome

anjuna krokus 2 weeks ago
parent
commit
2cec1f92be

+ 8 - 0
locations/blackmailer.qsrc

@@ -646,6 +646,14 @@ if $ARGS[0] = 'post_office1':
 end
 
 
+	!!=============================================!!
+	!!                                             !!
+	!!                  NEWSPAPER                  !!
+	!!                                             !!
+	!!=============================================!!
+
+! Does this make sense???
+
 
 	!!=============================================!!
 	!!                                             !!

+ 2 - 2
locations/gad_swamp_yard.qsrc

@@ -111,14 +111,14 @@ if $ARGS[0] = 'campfire':
 			act 'Ask for some survival tips (0:10)':
 				cla
 				hunter_lessons += 1
-				if hunter_collective_opinion > 25:
+				if hunter_collective_opinion > 25 and hunter_lessons <= 10:
 					hunter_collective_opinion -= 1
 					gs 'exp_gain', 'bushcraft', 1
 					minut += 10
 					*nl
 					'The hunters talk to you about some of their experiences when they first started out.'
 				else
-					if hunter_lessons > 10 AND hunter_sexual_comfort > 25:
+					if hunter_lessons > 10 and hunter_sexual_comfort > 25:
 						!TODO: Prototype implementation for the creekside event, to be revamped
 						'Sergei tells you to go by the creek for the next lesson about how to scope the area for a hunt.'
 						hunter_lessons -= 8

+ 9 - 2
locations/hunter_favors.qsrc

@@ -192,8 +192,15 @@ if $ARGS[0] = 'creekside_gangbang_request':
 			'<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 stand in front of you with their cocks hanging in the open. "So what are you waiting for? Start sucking."'
 
-			$clothingworntype = 'nude'
-			$pantyworntype = 'none'
+
+			$lastwornclothingtype['hunters'] = $clothingworntype
+			lastwornclothingnumber['hunters'] = clothingwornnumber
+			$lastwornpantytype['hunters'] = $pantyworntype
+			lastwornpantynumber['hunters'] = pantywornnumber
+			$lastwornbratype['hunters'] = $braworntype
+			lastwornbranumber['hunters'] = brawornnumber
+
+			gs 'clothing', 'strip'
 
 			gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
 			gs 'stat'

+ 7 - 1
locations/hunter_interactions.qsrc

@@ -1987,7 +1987,13 @@ if $ARGS[0] = 'creekside_gangbang':
 				'After a few minutes of <<$boydesc>> vigorously fucking your pussy, you feel him cumming inside you'
 				gs 'cum_call', 'vagina', $boy, 1
 
-				act 'The men finish up and leave you': gt 'gad_swamp_yard', 'start'
+				act 'The men finish up and leave you':
+					gs 'clothing', 'wear', $lastwornclothingtype['hunters'], lastwornclothingnumber['hunters']
+					gs 'panties', 'wear', $lastwornpantytype['hunters'], lastwornpantynumber['hunters']
+					gs 'bras', 'wear', $lastwornbratype['hunters'], lastwornbranumber['hunters']
+					gs 'stat'
+					gt 'gad_swamp_yard', 'start'
+				end
 			end
 		end
 	end