|
@@ -1669,8 +1669,8 @@ if $ARGS[0] = 'dispose':
|
|
|
dynamic $clothingworntype + '[<<clothingwornnumber>>] = 0'
|
|
|
$lastwornclothingtype = 'none'
|
|
|
lastwornclothingnumber = 0
|
|
|
- $clothingworntype = 'none'
|
|
|
- clothingwornnumber = 0
|
|
|
+
|
|
|
+ gs 'clothing', 'strip_code'
|
|
|
end
|
|
|
|
|
|
if $ARGS[0] = 'strip':
|
|
@@ -1700,6 +1700,10 @@ if $ARGS[0] = 'strip':
|
|
|
|
|
|
killvar '$strip_loc'
|
|
|
|
|
|
+ gs 'clothing', 'strip_code'
|
|
|
+end
|
|
|
+
|
|
|
+if $ARGS[0] = 'strip_code':
|
|
|
$clothingworntype = 'nude'
|
|
|
clothingwornnumber = 0
|
|
|
CloQuality = 0
|
|
@@ -1735,6 +1739,12 @@ if $ARGS[0] = 'strip':
|
|
|
PXCloThinness = 0
|
|
|
PXCloTopCut = 0
|
|
|
PXCloBottomShortness = 0
|
|
|
+ PCloCoverTop = 4
|
|
|
+ PCloCoverBack = 4
|
|
|
+ PCloCoverFront = 4
|
|
|
+
|
|
|
+ gs 'clothing', 'exposure_calc'
|
|
|
+
|
|
|
end
|
|
|
|
|
|
|
|
@@ -1809,6 +1819,12 @@ if $ARGS[0] = 'wear':
|
|
|
PCloBimbo = CloBimbo
|
|
|
end
|
|
|
|
|
|
+ PCloCoverTop = CloCoverTop
|
|
|
+ PCloCoverBack = CloCoverBack
|
|
|
+ PCloCoverFront = CloCoverFront
|
|
|
+
|
|
|
+ gs 'clothing', 'exposure_calc'
|
|
|
+
|
|
|
if PCloTopCut > 1:
|
|
|
if tits = 2 or tits = 3: PCloTopCut += 1
|
|
|
if tits >= 4: PCloTopCut += 2
|
|
@@ -1898,6 +1914,20 @@ if $ARGS[0] = 'wear':
|
|
|
if $clothingworntype = 'danilovich_swimsuit' or $clothingworntype = 'scandalicious_swimsuit' or $clothingworntype = 'scandalicious_bikinis' or $clothingworntype = 'allure_swimsuit' or $clothingworntype = 'allure_bikinis' or $clothingworntype = 'nerdvana_swimsuit' or $clothingworntype = 'nerdvana_bikinis': PCloswimwear = 1
|
|
|
end
|
|
|
|
|
|
+if $ARGS[0] = 'exposure_calc':
|
|
|
+ CoverTop = (PCloCoverTop + PBraCover)
|
|
|
+ CoverTop = CoverTop - 4
|
|
|
+ if CoverTop < 0: CoverTop = 0
|
|
|
+
|
|
|
+ CoverBack = (PCloCoverBack + PPanCoverBack)
|
|
|
+ CoverBack = CoverBack - 4
|
|
|
+ if CoverBack < 0: CoverBack = 0
|
|
|
+
|
|
|
+ CoverFront = (PCloCoverFront + PPanCoverFront)
|
|
|
+ CoverFront = CoverFront - 4
|
|
|
+ if CoverFront < 0: CoverFront = 0
|
|
|
+end
|
|
|
+
|
|
|
if $ARGS[0] = 'wear_last_worn':
|
|
|
!!contingency
|
|
|
if $lastwornclothingtype = '': $lastwornclothingtype = 'nude'
|