1
0
Просмотр исходного кода

[fixed] changed dynamic into gosub, moved leave option to the top in park

julzor 5 лет назад
Родитель
Сommit
5b655251f8
2 измененных файлов с 19 добавлено и 18 удалено
  1. 1 5
      locations/fit.qsrc
  2. 18 13
      locations/park.qsrc

+ 1 - 5
locations/fit.qsrc

@@ -19,11 +19,7 @@ if $ARGS[0] = 'start':
 
 	if abonement > 0:'Subscription is valid for <<abonement>> more classes.'
 
-	act 'Leave':
-		cla
-		minut += 5
-		gt 'down'
-	end
+	act 'Leave': minut += 5 & gt 'down'
 
 	if money >= 3000:
 		act 'Buy a subscription (3,000 <b>₽</b>)':

+ 18 - 13
locations/park.qsrc

@@ -20,15 +20,6 @@ if $ARGS[0] = 'start':
 		end
 	end
 
-	$torchki = {
-		*clr & cla
-		gs 'stat'
-		SNarkPriton = 1
-		'The junkies look at you with a daunted gaze. They probably thought you are a police officer. Then one of them said, "We don''t sell no drugs. Go to the Drug House, ye can get zome there."'
-
-		act 'Walk away from them':gt 'park', 'start'
-	}
-
 	$sexloc = $CURLOC
 
 	if WalkInsidePark = 0:WalkInsidePark = 1
@@ -45,7 +36,7 @@ if $ARGS[0] = 'start':
 	*nl
 	if hour >= 10 and hour <= 22:'The small café in the park is open, you could sit there and have some food.'
 
-	if SNarkPriton = 0:'Near the cafe the <a href="exec:dynamic $torchki">junkies</a> hang out.'
+	if SNarkPriton = 0:'Near the cafe the <a href="exec: gt ''park'', ''junkies''">junkies</a> hang out.'
 
 	if hour >= 9 or hour <= 20:
 		'There is an all year <a href="exec:gt ''park'', ''luna''">fair</a> at the park which you can visit.'
@@ -129,7 +120,7 @@ if $ARGS[0] = 'start':
 	end
 
 	if $clothingworntype = 'exercise' and $shoeworntype = 'trainers' and hour > 5 and hour < 23 and parkrunday ! daystart:
-		act 'Jog through the park (1:00)':
+		act 'Go for a run in the park (1:00)':
 			*clr & cla
 			menu_off = 1
 			parkrunday = daystart
@@ -189,6 +180,12 @@ if $ARGS[0] = 'start':
 				end
 			end
 
+			act 'Finish your run':
+				cla & *nl
+				'You feel great after your run. A bit sweaty, but also that you''ve managed to improve your stamina as you even feel a bit slimmer.'
+				act 'Continue': gt 'park', 'start'
+			end
+			
 			if pcs_inhib >= 35  or exhibitionist_lvl > 0:
 				act 'Expose your breasts':
 					*clr & cla
@@ -202,8 +199,6 @@ if $ARGS[0] = 'start':
 					gs 'parkivent', 'run_reactions'
 				end
 			end
-
-			act 'Complete jog':gt 'park', 'start'
 		end
 	elseif ($clothingworntype ! 'exercise' or $shoeworntype = 'trainers') and hour > 5 and hour < 23 and parkrunday ! daystart:
 		'You could go for a run in the park if you were wearing sports clothes and shoes.'
@@ -767,5 +762,15 @@ if $ARGS[0] = 'rape1':
 	end
 end
 
+if $ARGS[0] = 'junkies':
+	*clr & cla
+	gs 'stat'
+	SNarkPriton = 1
+	'The junkies look at you with a daunted gaze. They probably thought you are a police officer. Then one of them said, "We don''t sell no drugs. Go to the Drug House, ye can get zome there."'
+
+	act 'Walk away from them':gt 'park', 'start'
+end
+
+
 --- park ---------------------------------