فهرست منبع

[fixed] Wrong number in ARGS mend that the reaction would be repeated to often.

bgkjdgbizgblzdgbr 7 ماه پیش
والد
کامیت
76a8a38e9c
1فایلهای تغییر یافته به همراه11 افزوده شده و 11 حذف شده
  1. 11 11
      locations/npc_reactions.qsrc

+ 11 - 11
locations/npc_reactions.qsrc

@@ -77,22 +77,22 @@ if $ARGS[0] = 'general':
 			$npc_reaction_choice[i] = 'fit'
 		end
 
-		if func('pcs_has_attr', 'cosmetics_piercing') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_piercing'']') = 0:
+		if func('pcs_has_attr', 'cosmetics_piercing') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_piercing'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'piercing'
 		end
 
-		if func('pcs_has_attr', 'body_strong') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_strong'']') = 0:
+		if func('pcs_has_attr', 'body_strong') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_strong'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'strong'
 		end
 
-		if func('pcs_has_attr', 'body_tan') and dyneval( 'RESULT =npc_reaction_first_time[''<<$ARGS[2]>>_tan'']') = 0:
+		if func('pcs_has_attr', 'body_tan') and dyneval( 'RESULT =npc_reaction_first_time[''<<$ARGS[1]>>_tan'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'tan'
 		end
 
-		if func('pcs_has_attr', 'cosmetics_tattoo') and dyneval( 'RESULT = npc_reaction_first_time[''<<$ARGS[2]>>_tatoo'']') = 0:
+		if func('pcs_has_attr', 'cosmetics_tattoo') and dyneval( 'RESULT = npc_reaction_first_time[''<<$ARGS[1]>>_tatoo'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'tatoo'
 		end
@@ -101,27 +101,27 @@ if $ARGS[0] = 'general':
 
 		!! Clothing
 
-		if func('pcs_has_attr', 'clothing_bimbo') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_bimbo'']') = 0:
+		if func('pcs_has_attr', 'clothing_bimbo') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_bimbo'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'bimbo_look'
 		end
 
-		if func('pcs_has_attr', 'clothing_goth') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_goth'']') = 0:
+		if func('pcs_has_attr', 'clothing_goth') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_goth'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'goth_look'
 		end
 
-		if func('pcs_has_attr', 'clothing_punk') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_punk'']') = 0:
+		if func('pcs_has_attr', 'clothing_punk') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_punk'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'punk_look'
 		end
 
-		if func('pcs_has_attr', 'clothing_skirt_short') and dyneval( 'RESULT = npc_reaction_daily[''<<$ARGS[2]>>_short_skirt'']') = 0:
+		if func('pcs_has_attr', 'clothing_skirt_short') and dyneval( 'RESULT = npc_reaction_daily[''<<$ARGS[1]>>_short_skirt'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'short_skirt'
 		end
 
-		if func('pcs_has_attr', 'clothing_thin') and dyneval( 'RESULT = npc_reaction_daily[''<<$ARGS[2]>>_clothes_thinnes'']') = 0:
+		if func('pcs_has_attr', 'clothing_thin') and dyneval( 'RESULT = npc_reaction_daily[''<<$ARGS[1]>>_clothes_thinnes'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'clothes_thinnes'
 		end
@@ -130,7 +130,7 @@ if $ARGS[0] = 'general':
 
 		!! Cosmetics
 
-		if func('pcs_has_attr', 'cosmetics_makeup') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_makeup'']') = 0:
+		if func('pcs_has_attr', 'cosmetics_makeup') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_makeup'']') = 0:
 			i += 1
 			$npc_reaction_choice[i] = 'makeup'
 		end
@@ -144,7 +144,7 @@ if $ARGS[0] = 'general':
 !!			$npc_reaction_choice[i] = 'tits'
 !!		end
 !!
-!!		if func('pcs_has_attr', 'body_ass') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[2]>>_ass'']') = 0:
+!!		if func('pcs_has_attr', 'body_ass') and dyneval( 'RESULT = npc_reaction_weekly[''<<$ARGS[1]>>_ass'']') = 0:
 !!			i += 1
 !!			$npc_reaction_choice[i] = 'ass'
 !!		end