Browse Source

[fixed] visible cum icon

julzor 4 years ago
parent
commit
5bf52db22e
1 changed files with 31 additions and 29 deletions
  1. 31 29
      locations/stat_display.qsrc

+ 31 - 29
locations/stat_display.qsrc

@@ -722,7 +722,6 @@ killvar 'cumloc'
 
 $stat_cum_msg = ''
 $stat_cum_text = ''
-$stat_visible_cum_temp = ''
 stat_visible_cum = 0
 stat_cumloc_check = 0
 
@@ -747,19 +746,10 @@ i = 0
 		$txtloc = 'the back of your panties'
 		$icon_txtloc = $txtloc
 	elseif i = 6:
-		if cumvolume['<<i>>:<<j>>'] > 0:
-			stat_visible_cum = 1
-			if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
-			$stat_visible_cum_temp += 'your clothes near your groin'
-		end
+
 		$icon_txtloc = 'your clothes near your groin'
 		$txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/'+rand(1,3)+'.jpg''">clothes near your groin</a>'
 	elseif i = 7:
-		if cumvolume['<<i>>:<<j>>'] > 0:
-			stat_visible_cum = 1
-			if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
-			$stat_visible_cum_temp += 'your clothes'
-		end
 		$icon_txtloc = 'your clothes'
 		$txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/cumclothes'+rand(1,21)+'.jpg''">clothes</a>'
 	elseif i = 8:
@@ -788,20 +778,10 @@ i = 0
 			$cum_face_image = 'custom/'
 			$cum_face_image += rand(1, 20)
 		end
-		if cumvolume['<<i>>:<<j>>'] > 0:
-			stat_visible_cum = 1
-			if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
-			$stat_visible_cum_temp += 'your face'
-		end
 		$icon_txtloc = 'your face'
 		$txtloc = 'your <a href="exec:view''images/pc/body/cum/cumface/<<$cum_face_image>>.jpg''">face</a>'
 		killvar 'cum_face_image'
 	elseif i = 13:
-		if cumvolume['<<i>>:<<j>>'] > 0:
-			stat_visible_cum = 1
-			if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
-			$stat_visible_cum_temp += 'your hands'
-		end
 		$txtloc = 'your hands'
 		$icon_txtloc = $txtloc
 	elseif i = 14:
@@ -811,11 +791,6 @@ i = 0
 		$icon_txtloc = 'your breasts'
 		$txtloc = 'your <a href="exec:view''images/pc/body/cum/cumtits/cumtits'+rand(1,19)+'.jpg''">breasts</a>'
 	elseif i = 16:
-		if cumvolume['<<i>>:<<j>>'] > 0:
-			stat_visible_cum = 1
-			if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
-			$stat_visible_cum_temp += 'your hair'
-		end
 		$icon_txtloc = 'your hair'
 		$txtloc = 'your hair</a>'
 	elseif i = 17:
@@ -989,10 +964,37 @@ killvar 'cumcount'
 killvar 'knownguy'
 killvar 'cumowner'
 
-if $stat_visible_cum_temp ! '':
+$stat_visible_cum_temp = ''
+$stat_visible_cum_msg = ''
+
+if cumloc[6] = 1 or cumloc[7] = 1 or cumloc[11] = 1 or cumloc[13] = 1 or cumloc[16] = 1:
+	if cumloc[6] = 1:
+		stat_visible_cum = 1
+		if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
+		$stat_visible_cum_temp += 'your clothes near your groin'
+	end
+	if cumloc[7] = 1:
+		stat_visible_cum = 1
+		if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
+		$stat_visible_cum_temp += 'your clothes'
+	end
+	if cumloc[11] = 1:
+		stat_visible_cum = 1
+		if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
+		$stat_visible_cum_temp += 'your face'
+	end
+	if cumloc[13] = 1:
+		stat_visible_cum = 1
+		if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
+		$stat_visible_cum_temp += 'your hands'
+	end
+	if cumloc[16] = 1:
+		stat_visible_cum = 1
+		if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
+		$stat_visible_cum_temp += 'your hair'
+	end
+
 	$stat_visible_cum_msg = 'People can see the cum on '+ $stat_visible_cum_temp + '.'
-else
-	$stat_visible_cum_msg = ''
 end
 
 !!------ Cum management (End) ------