فهرست منبع

[fixed] accidentally replaced existing text with upcoming party text

hornguy6 6 ماه پیش
والد
کامیت
5c2ae4e324
1فایلهای تغییر یافته به همراه33 افزوده شده و 7 حذف شده
  1. 33 7
      locations/sex_ev_leave.qsrc

+ 33 - 7
locations/sex_ev_leave.qsrc

@@ -227,32 +227,58 @@ end
 
 if $ARGS[0] = 'leaving_action':
 	cla
-	act'Nonchalant':
+	act'Smile':
 		if $sex_ev['loc'] = 'house_party':
-			$sex_ev['leave_action'] = ' nonchalantly and head back out into the party'
+			$sex_ev['leave_action'] = ', flashing him a quick smile just before you head back out into the party'
 		else
-			$sex_ev['leave_action'] = ' nonchalantly and head out the door without a second glance'
+			$sex_ev['leave_action'] = ', flashing him a quick smile just before you close the door behind you'
 		end
 		gs'sex_ev_leave', 'leaving_end'
 	end
 	
 	act'Wave goodbye':
-		$sex_ev['leave_action'] = ', waggling your fingers at him and head back out into the party'
+		if $sex_ev['loc'] = 'house_party':
+			$sex_ev['leave_action'] = ', waggling your fingers at him and head back out into the party'
+		else
+			$sex_ev['leave_action'] = ', waggling your fingers at him just before you close the door behind you'
+		end
 		gs'sex_ev_leave', 'leaving_end'
 	end
 
 	act'Wink':
-		$sex_ev['leave_action'] = ' with a wink as you head back out into the party'
+		if $sex_ev['loc'] = 'house_party':
+			$sex_ev['leave_action'] = ' with a wink as you head back out into the party'
+		else
+			$sex_ev['leave_action'] = ' with a wink just before you close the door behind you'
+		end
+		
 		gs'sex_ev_leave', 'leaving_end'
 	end
 	
 	act'Blow him a kiss':
-		$sex_ev['leave_action'] = ', blowing him a kiss just before heading back out into the party'
+		if $sex_ev['loc'] = 'house_party':
+			$sex_ev['leave_action'] = ', blowing him a kiss just before heading back out into the party'
+		else
+			$sex_ev['leave_action'] = ', blowing him a kiss just before you close the door behind you'
+		end
 		gs'sex_ev_leave', 'leaving_end'
 	end
 	
 	act'Shake your ass':
-		$sex_ev['leave_action'] = ', giving him a teasing shake of your ass just before you head back out into the party'
+		if $sex_ev['loc'] = 'house_party':
+			$sex_ev['leave_action'] = ', giving him a teasing shake of your ass just before you head back out into the party'
+		else
+			$sex_ev['leave_action'] = ', giving him a teasing shake of your ass just before you close the door behind it'
+		end
+		gs'sex_ev_leave', 'leaving_end'
+	end
+	
+	act'Nonchalant':
+		if $sex_ev['loc'] = 'house_party':
+			$sex_ev['leave_action'] = ' nonchalantly and head back out into the party'
+		else
+			$sex_ev['leave_action'] = ' nonchalantly and head out the door without a second glance'
+		end
 		gs'sex_ev_leave', 'leaving_end'
 	end
 end