Browse Source

[fixed] added correct virgin failsafes

hornguy6 1 year ago
parent
commit
1df44a62c1
2 changed files with 10 additions and 1 deletions
  1. 7 1
      locations/booty_call_miss.qsrc
  2. 3 0
      locations/booty_call_sex.qsrc

+ 7 - 1
locations/booty_call_miss.qsrc

@@ -1,7 +1,13 @@
 # booty_call_miss
 
 if $ARGS[0] = 'missionary_start':
-	if booty_call['change_pos'] = 1:
+	if stat['think_virgin'] = 1 and booty_call['fuck_count'] = 0:
+		cla & *clr
+		'<center><img <<$set_imgh>> src="images/shared/sex/foreplay/miss3.jpg"></center>'
+		'<<$npc_firstname[$boy]>> pushes you down onto the bed and puts his hands on your knees, spreading your legs apart, and lines his cock up with your pussy.'
+		act'Stop him (virgin)':gt'booty_call_virgin', 'wait'
+		act'Let him take your virginity':gs'booty_call_virgin', 'start3'
+	elseif booty_call['change_pos'] = 1:
 		act'Switch to missionary':
 			cla & *clr
 			booty_call['change_pos'] = 0

+ 3 - 0
locations/booty_call_sex.qsrc

@@ -222,6 +222,9 @@ if $ARGS[0] = 'rand_position':
 			!! failsafe: default to missionary
 			gs 'booty_call_miss', 'missionary_start'
 		end
+	else
+		!! failsafe: default to missionary
+		gs 'booty_call_miss', 'missionary_start'
 	end
 end