Browse Source

[changed] Removed exhibitionism file and merged the contents to 'flash' which is the only place that should use it to prevent further confusion

Kevin_Smarts 2 years ago
parent
commit
0edfa96de6
3 changed files with 39 additions and 45 deletions
  1. 0 1
      glife.qproj
  2. 0 37
      locations/exhibitionism.qsrc
  3. 39 7
      locations/flash.qsrc

+ 0 - 1
glife.qproj

@@ -74,7 +74,6 @@
 		<Location name="pain"/>
 		<Location name="arousal"/>
 		<Location name="orgasm"/>
-		<Location name="exhibitionism"/>
 		<Location name="dinSex"/>
 		<Location name="dinSex2"/>
 		<Location name="dinsexFX"/>

+ 0 - 37
locations/exhibitionism.qsrc

@@ -1,37 +0,0 @@
-# exhibitionism
-
-!!{ 1 point for exposing breasts, 2 for ass and 3 for pussy. 4 for extreme nude situations
-use the following gosub to add to it:
-gs 'exhibitionism', 3
-The last number being the desired level
-Use of rand should still work
-}
-
-if ARGS[0] > 4: ARGS[0] = 4
-
-if ARGS[0] = 1:
-	pcs_exhib += 1
-	if exhibitionist_lvl = 1: pcs_horny += 5
-	if exhibitionist_lvl = 2: pcs_horny += 10
-	if exhibitionist_lvl = 3: pcs_horny += 15
-elseif ARGS[0] = 2:
-	pcs_exhib += 2
-	if exhibitionist_lvl = 1: pcs_horny += 10
-	if exhibitionist_lvl = 2: pcs_horny += 20
-	if exhibitionist_lvl = 3: pcs_horny += 30
-elseif ARGS[0] = 3:
-	pcs_exhib += 3
-	if exhibitionist_lvl = 1: pcs_horny += 15
-	if exhibitionist_lvl = 2: pcs_horny += 25
-	if exhibitionist_lvl = 3: pcs_horny += 40
-elseif ARGS[0] = 4:
-	pcs_exhib += 4
-	if exhibitionist_lvl = 1: pcs_horny += 20
-	if exhibitionist_lvl = 2: pcs_horny += 40
-	if exhibitionist_lvl = 3: pcs_horny += 80
-end
-
-if pcs_exhib > 100: pcs_exhib = 100
-
---- exhibitionism ---------------------------------
-

+ 39 - 7
locations/flash.qsrc

@@ -56,7 +56,7 @@ end
 
 if $ARGS[0] = 'bra':
 	*clr
-	if Exhibitionist_lvl < 1 or pcs_inhib < 40: gs 'exhibitionism', 1
+	if Exhibitionist_lvl < 1 or pcs_inhib < 40: gs 'flash', 'exhibitionism', 1
 	gs 'arousal', 'flashlite', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -81,7 +81,7 @@ end
 
 if $ARGS[0] = 'tits':
 	*clr
-	gs 'exhibitionism', 1
+	gs 'flash', 'exhibitionism', 1
 	gs 'arousal', 'flashlite', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -106,7 +106,7 @@ end
 
 if $ARGS[0] = 'panties':
 	*clr
-	gs 'exhibitionism', 2
+	gs 'flash', 'exhibitionism', 2
 	gs 'arousal', 'flash', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -131,7 +131,7 @@ end
 
 if $ARGS[0] = 'pussy':
 	*clr
-	gs 'exhibitionism', 3
+	gs 'flash', 'exhibitionism', 3
 	gs 'arousal', 'flash', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -172,7 +172,7 @@ end
 
 if $ARGS[0] = 'panties_rear':
 	*clr
-	gs 'exhibitionism', 2
+	gs 'flash', 'exhibitionism', 2
 	gs 'arousal', 'flash', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -197,7 +197,7 @@ end
 
 if $ARGS[0] = 'butt':
 	*clr
-	gs 'exhibitionism', 2
+	gs 'flash', 'exhibitionism', 2
 	gs 'arousal', 'flash', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -222,7 +222,7 @@ end
 
 if $ARGS[0] = 'full':
 	*clr
-	gs 'exhibitionism', 3
+	gs 'flash', 'exhibitionism', 3
 	gs 'arousal', 'flash', ARGS[2]
 	gs 'arousal', 'end'
 	gs 'flash', 'flashtotals'
@@ -261,4 +261,36 @@ if $ARGS[0] = 'full':
 	end
 end
 
+!!For us only when Sveta chooses to flash
+!!1 point for exposing breasts, 2 for ass and 3 for pussy. 4 for extreme nude situations
+
+
+if $ARGS[0] = 'exhibitionism':
+	if ARGS[1] > 4: ARGS[1] = 4
+
+	if ARGS[1] = 1:
+		pcs_exhib += 1
+		if exhibitionist_lvl = 1: pcs_horny += 5
+		if exhibitionist_lvl = 2: pcs_horny += 10
+		if exhibitionist_lvl = 3: pcs_horny += 15
+	elseif ARGS[1] = 2:
+		pcs_exhib += 2
+		if exhibitionist_lvl = 1: pcs_horny += 10
+		if exhibitionist_lvl = 2: pcs_horny += 20
+		if exhibitionist_lvl = 3: pcs_horny += 30
+	elseif ARGS[1] = 3:
+		pcs_exhib += 3
+		if exhibitionist_lvl = 1: pcs_horny += 15
+		if exhibitionist_lvl = 2: pcs_horny += 25
+		if exhibitionist_lvl = 3: pcs_horny += 40
+	elseif ARGS[1] = 4:
+		pcs_exhib += 4
+		if exhibitionist_lvl = 1: pcs_horny += 20
+		if exhibitionist_lvl = 2: pcs_horny += 40
+		if exhibitionist_lvl = 3: pcs_horny += 80
+	end
+
+	if pcs_exhib > 100: pcs_exhib = 100
+end
+
 --- flash ---------------------------------