Browse Source

[changed] added in an 'act' instead of a straight transition

hornguy6 11 months ago
parent
commit
4bb8310d52
1 changed files with 30 additions and 28 deletions
  1. 30 28
      locations/sex_ev_leave.qsrc

+ 30 - 28
locations/sex_ev_leave.qsrc

@@ -2195,36 +2195,38 @@ if $ARGS[0] = 'npc_sex_ev_invite':
 end
 
 if $ARGS[0] = 'sex_ev_invite_later':
-	if npc_day_off[$boy] = week and sex_ev['sleepover'] = 1:
-		$sex_ev_plan_loc[$boy] = 'lover_home'
-		sex_ev['invite_today'] = 1
-		if npc_girlfriend[$boy] = 1:
-			pc_know_npc_has_girlfriend[$boy] = 1
-			'"You busy later?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''s my day off and my girlfriend won''t be around. Want to come over to my place and do this again?"'
-		else
-			'"You busy later?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''s my day off. Want to come by and do this again?"'
-		end
-	elseif (npc_day_off[$boy] = week + 1) or (week = 7 and npc_day_off[$boy] = 1):
-		sex_ev['invite_tomorrow'] = 1
-		if npc_girlfriend[$boy] = 1:
-			pc_know_npc_has_girlfriend[$boy] = 1
-			'"You busy tomorrow?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "My girlfriend won''t be around. Want to come over and do this again?"'
-		else
-			'"You busy tomorrow?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''ll be my day off. Want to come by and do this again?"'
+	act'Continue':
+		sex_ev['plans_later_talk'] = 1
+		gs 'sex_ev_leave', 'dress_loop'
+		if npc_day_off[$boy] = week and sex_ev['sleepover'] = 1:
+			$sex_ev_plan_loc[$boy] = 'lover_home'
+			sex_ev['invite_today'] = 1
+			if npc_girlfriend[$boy] = 1:
+				pc_know_npc_has_girlfriend[$boy] = 1
+				'"You busy later?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''s my day off and my girlfriend won''t be around. Want to come over to my place and do this again?"'
+			else
+				'"You busy later?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''s my day off. Want to come by and do this again?"'
+			end
+		elseif (npc_day_off[$boy] = week + 1) or (week = 7 and npc_day_off[$boy] = 1):
+			sex_ev['invite_tomorrow'] = 1
+			if npc_girlfriend[$boy] = 1:
+				pc_know_npc_has_girlfriend[$boy] = 1
+				'"You busy tomorrow?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "My girlfriend won''t be around. Want to come over and do this again?"'
+			else
+				'"You busy tomorrow?" <<$npc_firstname[$boy]>> asks as you''re <<$sex_ev[''dress_describe'']>>. "It''ll be my day off. Want to come by and do this again?"'
+			end
+		end	
+		
+		gs 'sex_ev_leave', 'busy_later'
+		
+		act'What time?':
+			cla & *nl
+			'"That depends," you say, <<$sex_ev[''dress_describe'']>>. "What time were you thinking?"'
+			'"<<npc_start_free_time[$boy]>>?" <<$npc_firstname[$boy]>> asks.'
+			gs 'sex_ev_leave', 'busy_time'
+			gs 'sex_ev_leave', 'sex_ev_plan'
 		end
 	end
-	
-	gs 'sex_ev_after', 'dress_loop'
-	
-	gs 'sex_ev_leave', 'busy_later'
-	
-	act'What time?':
-		cla & *nl
-		'"That depends," you say, <<$sex_ev[''dress_describe'']>>. "What time were you thinking?"'
-		'"<<npc_start_free_time[$boy]>>?" <<$npc_firstname[$boy]>> asks.'
-		gs 'sex_ev_leave', 'busy_time'
-		gs 'sex_ev_leave', 'sex_ev_plan'
-	end
 end
 
 if $ARGS[0] = 'busy_later':