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

Adjustments to the clothing exhibitionism

KevinSmarts 7 лет назад
Родитель
Сommit
34badabb74
2 измененных файлов с 19 добавлено и 11 удалено
  1. 7 7
      locations/cikl
  2. 12 4
      locations/outdoors

+ 7 - 7
locations/cikl

@@ -553,19 +553,19 @@ if pcs_horny < 0:pcs_horny = 0
 
 if exhibition_outdoors > 0:
 	if exhibition_outdoors <= 5:
-		exhibition_exp += rand(1,3)
+		exhibition_exp += rand(2,5)
 	elseif exhibition_outdoors <= 10:
-		exhibition_exp += rand(2,4)
-	elseif exhibition_outdoors <= 15:
 		exhibition_exp += rand(3,6)
+	elseif exhibition_outdoors <= 15:
+		exhibition_exp += rand(4,8)
 	elseif exhibition_outdoors <= 20:
-		exhibition_exp += rand(4,7)
+		exhibition_exp += rand(5,10)
 	elseif exhibition_outdoors <= 25:
-		exhibition_exp += rand(5,9)
+		exhibition_exp += rand(7,12)
 	elseif exhibition_outdoors <= 30:
-		exhibition_exp += rand(6,11)
+		exhibition_exp += rand(8,15)
 	else
-		exhibition_exp += rand(8,14)
+		exhibition_exp += rand(10,16)
 	end
 end
 

+ 12 - 4
locations/outdoors

@@ -369,12 +369,20 @@ end
 
 if CloExhibit >= pcs_exhibition - 10:
 	exhibition_outdoors += 1
-	if PCloSkirt = 3 and tanga = 0: exhibition_outdoors += 1
-	if PCloSkirt = 4 and tanga = 0: exhibition_outdoors += 2
-	if PCloSkirt = 5 and tanga = 0: exhibition_outdoors += 3
-	if PCloSkirt = 6 and tanga = 0: exhibition_outdoors += 4
 	if pcs_exhibition <= 35 and pcs_exhibition > 45 and PCloPanties = 1: exhibition_outdoors += 1
 end
 
+if tanga = 0:
+	if PCloSkirt = 3:
+		exhibition_outdoors += 1
+	elseif PCloSkirt = 4:
+		exhibition_outdoors += 2
+	elseif PCloSkirt = 5:
+		exhibition_outdoors += 3
+	elseif PCloSkirt = 6:
+		exhibition_outdoors += 4
+	end
+end
+
 --- outdoors ---------------------------------