Ver código fonte

[fixed] Knowing Mira exists used old style variable and the checkwas not used in cow scene, also changed relationship messages to fit the new starting value

Kevin_Smarts 1 ano atrás
pai
commit
5230cbeac1

+ 1 - 1
locations/gadfield.qsrc

@@ -327,7 +327,7 @@ end
 !MiraLoc = 5 (Mira with gop)
 !---------------------------------------------
 
-if grandpaQW['chore_herd_cattle'] = 1 and npc_rel['A60'] >= 15 and mira = 0 and sunWeather = 1 and hour >= 10 and temp = 1 and Mira_no = 0 and(npc_QW['A63'] < 13 or npc_QW['A60'] >= 10 or mirasex > 1):
+if grandpaQW['chore_herd_cattle'] = 1 and npc_rel['A60'] >= 15 and mira = 0 and sunWeather = 1 and hour >= 10 and temp = 1 and Mira_no = 0 and(npc_QW['A63'] < 13 or npc_QW['A60'] >= 10 or mirasex > 1) and npc_known['A60'] = 1:
 	*clr & cla
 	menu_off = 1
 	'<center><img <<$set_imgh>> src="images/characters/gadukino/mira/mira2.jpg"></center>'

+ 1 - 1
locations/gadforest.qsrc

@@ -107,7 +107,7 @@ if $ARGS[0] = 'forest_edge':
 		if forestpicnic = 0 and $clothingworntype ! 'nude' and clothesAtLocation = 0 and month >= 4 and month <= 10 and hour >= 8 and hour <= 20 and miranudetalk = 1 and miratalkday ! daystart: gt 'gadforest_event', 'mira_nude_event'
 	! Events without Mira
 	else
-		if metmira = 1 and MiraLoc ! 3 and hour >= 8 and hour <= 10:
+		if npc_known['A60'] = 1 and MiraLoc ! 3 and hour >= 8 and hour <= 10:
 			mirarand = rand(1,10)
 			if mirarand >= 6: MiraLoc = 3 & gt 'gadforest_event', 'mira_morning_walk'
 		end

+ 3 - 3
locations/gadukino.qsrc

@@ -107,7 +107,7 @@ if $ARGS[0] = '':
 				if svidanie[2] = 1:'<b><a href="exec:lover_number = 2 & gt ''lover_meet'', ''start''"><<$loverdesc[2]>></a> is waiting in the street.</b>'
 			end
 		end
-		if npc_rel['A60'] > 0 and metmira = 1:
+		if npc_rel['A60'] > 0 and npc_known['A60'] = 1:
 			'Just down the road from your grandparents'' house is <a href="exec:minut += 5 & gt ''miroslavahome'', ''start''">Mira''s house</a>.'
 			act 'Go to Mira''s house': minut += 5 & gt 'miroslavahome', 'start'
 		end
@@ -302,14 +302,14 @@ end
 
 if $ARGS[0] = 'mira_events':
 	! never met mira before
-	if npc_rel['A60'] = 0 and npc_QW['A60'] = 0:
+	if npc_known['A60'] = 0:
 		*clr & cla
 		'<center><img <<$set_imgh>> src="images/locations/gadukino/village/miroslava.jpg"></center>'
 		'Walking around the village, you notice a young girl your age. Unfortunately, you do not recognize her from the last time you were in the village. She is pulling on a rope attached to the collar of a small calf. The calf grunts with displeasure, shakes her head and refuses to move further.'
 		act 'Walk away': gt 'gadukino'
 		act 'Help her':
 			*clr & cla
-			metmira = 1
+			npc_known['A60'] = 1
 			npc_rel['A60'] += 10
 			minut += 15
 			gs 'stat'

+ 1 - 1
locations/journal_quests.qsrc

@@ -19,7 +19,7 @@ if $ARGS[0] = 'start':
 
 	'<center><h2>Quests</h2></center>'
 	
-	if metmira = 1:
+	if npc_known['A60'] = 1:
 		if meadow > 0:
 			'<center><h3>Miroslava Maximova</h3></center>'
 			*nl

+ 4 - 4
locations/miroslava.qsrc

@@ -50,13 +50,13 @@ if $ARGS[0] = 'Start' or $ARGS[0] = '':
 	'Mira is a sociable girl. She is <<girlage>> years old. She lives with her father, who recently moved in here because of his considerable debts to some disreputable men in the city. He had to sell all the family''s property, including an apartment in the city centre. With the money left over, they could only afford to buy a house in a rundown village like this one.'
 
 	!npc_rel['A60'] is the measure of your friendship with Mira
-	if npc_rel['A60'] < 5:
+	if npc_rel['A60'] < 25:
 		'You two have a strained relationship.'
-	elseif npc_rel['A60'] < 15:
+	elseif npc_rel['A60'] < 45:
 		'You two have a normal relationship.'
-	elseif npc_rel['A60'] < 30:
+	elseif npc_rel['A60'] < 65:
 		'You have a good relationship with Mira.'
-	elseif npc_rel['A60'] < 50:
+	elseif npc_rel['A60'] < 80:
 		'You two have a great relationship.'
 	else
 		'You and Mira are best friends.'

+ 2 - 0
locations/saveupdater.qsrc

@@ -1642,6 +1642,8 @@ if ((100*version_major +version_minor)*100+version_revision)*100+version_patch <
 	end
 	if i <= ARRSIZE('sport_bras'):jump 'loopsportbras'
 	killvar 'sport_bras'
+	
+	if metmira = 1: npc_known['A60'] = 1 & killvar 'metmira'
 end