Browse Source

[fixed] Bras now show if top is low cut and no bra with clothing messages should work again

Kevin_Smarts 10 months ago
parent
commit
1c26c181aa
1 changed files with 20 additions and 13 deletions
  1. 20 13
      locations/stat_display.qsrc

+ 20 - 13
locations/stat_display.qsrc

@@ -445,21 +445,28 @@ $stat_bra_msg = ''
 $stat_bra_text = ''
 
 if $clothingworntype ! 'nude':
-	if PCloThinness = 6:
-		if $braworntype ! 'none':
-			$stat_bra_msg = 'Your bra is clearly showing through your transparent top.'
-			$stat_bra_text = '<BR><font color = #FF00FF><<$stat_bra_msg>></font>'
+	if PCloThinness = 6 and $braworntype ! 'none':
+		$stat_bra_msg = 'Your bra is clearly showing through your transparent top.'
+		$stat_bra_text = '<BR><font color = #FF00FF><<$stat_bra_msg>></font>'
+	elseif PCloThinness = 5 and $braworntype ! 'none':
+		if PCloDress = 1:
+			$stat_bra_msg = 'The outline of your bra is visible through your dress.'
+			$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
+		else
+			$stat_bra_msg = 'Your outline of your bra is visible through your top.'
+			$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
 		end
-	elseif PCloThinness = 5:
-		if $braworntype ! 'none':
-			if PCloDress = 1:
-				$stat_bra_msg = 'The outline of your bra is visible through your dress.'
-				$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
-			else
-				$stat_bra_msg = 'Your outline of your bra is visible through your top.'
-				$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
-			end
+	elseif CloTopCut = 4 and $braworntype ! 'none':
+		if PCloDress = 1:
+			$stat_bra_msg = 'Parts of your bra are visible due to your dress''s cut.'
+			$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
+		else
+			$stat_bra_msg = 'Parts of your bra are visible due to your top''s cut.'
+			$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
 		end
+	elseif CloTopCut = 4 and $braworntype ! 'none':
+		$stat_bra_msg = 'Some glimpses of your bra are visible due to your plunging neckline.'
+		$stat_bra_text = '<BR><font color = #0064FF><<$stat_bra_msg>></font>'
 	elseif $braworntype = 'none' and pcs_horny >= 50:
 		$stat_bra_msg = 'You are not wearing a bra and your aroused nipples are rock hard.'
 		$stat_bra_text = '<BR><font color = #AB052A><<$stat_bra_msg>></font>'