|
@@ -71,10 +71,15 @@ if $ARGS[0] = 'start':
|
|
|
'You really wish you had brought panties today...'
|
|
|
end
|
|
|
if mesec > 0 and isprok = 0: msg'As your panties come off you realize you''re going to have a problem when your pad goes with it and blood immediately starts running down your legs. Maybe you should switch to tampons...'
|
|
|
- $lastwornpantytype['foto'] = $pantyworntype
|
|
|
- lastwornpantynumber['foto'] = pantywornnumber
|
|
|
- $lastwornbratype['foto'] = $braworntype
|
|
|
- lastwornbranumber['foto'] = brawornnumber
|
|
|
+ if underwear['type'] = 2:
|
|
|
+ $lastwornbodysuittype['foto'] = $bodysuitworntype
|
|
|
+ lastwornbodysuitnumber['foto'] = bodysuitwornnumber
|
|
|
+ else
|
|
|
+ $lastwornpantytype['foto'] = $pantyworntype
|
|
|
+ lastwornpantynumber['foto'] = pantywornnumber
|
|
|
+ $lastwornbratype['foto'] = $braworntype
|
|
|
+ lastwornbranumber['foto'] = brawornnumber
|
|
|
+ end
|
|
|
gs 'clothing', 'strip_all'
|
|
|
gs 'stat'
|
|
|
act'Go back to the main floor':gt'foto','studio'
|
|
@@ -84,10 +89,15 @@ if $ARGS[0] = 'start':
|
|
|
if studio_strip_talk < 3:
|
|
|
act'Just strip to your panties':
|
|
|
gs 'clothing', 'strip'
|
|
|
- $lastwornpantytype['foto'] = $pantyworntype
|
|
|
- lastwornpantynumber['foto'] = pantywornnumber
|
|
|
- $lastwornbratype['foto'] = $braworntype
|
|
|
- lastwornbranumber['foto'] = brawornnumber
|
|
|
+ if underwear['type'] = 2:
|
|
|
+ $lastwornbodysuittype['foto'] = $bodysuitworntype
|
|
|
+ lastwornbodysuitnumber['foto'] = bodysuitwornnumber
|
|
|
+ else
|
|
|
+ $lastwornpantytype['foto'] = $pantyworntype
|
|
|
+ lastwornpantynumber['foto'] = pantywornnumber
|
|
|
+ $lastwornbratype['foto'] = $braworntype
|
|
|
+ lastwornbranumber['foto'] = brawornnumber
|
|
|
+ end
|
|
|
cla & *clr
|
|
|
menu_off = 1
|
|
|
inhib_exp += 2
|
|
@@ -113,10 +123,15 @@ if $ARGS[0] = 'start':
|
|
|
if studio_strip_talk < 2 and $braworntype ! 'none':
|
|
|
act'Just strip to your underwear':
|
|
|
gs 'clothing', 'strip'
|
|
|
- $lastwornpantytype['foto'] = $pantyworntype
|
|
|
- lastwornpantynumber['foto'] = pantywornnumber
|
|
|
- $lastwornbratype['foto'] = $braworntype
|
|
|
- lastwornbranumber['foto'] = brawornnumber
|
|
|
+ if underwear['type'] = 2:
|
|
|
+ $lastwornbodysuittype['foto'] = $bodysuitworntype
|
|
|
+ lastwornbodysuitnumber['foto'] = bodysuitwornnumber
|
|
|
+ else
|
|
|
+ $lastwornpantytype['foto'] = $pantyworntype
|
|
|
+ lastwornpantynumber['foto'] = pantywornnumber
|
|
|
+ $lastwornbratype['foto'] = $braworntype
|
|
|
+ lastwornbranumber['foto'] = brawornnumber
|
|
|
+ end
|
|
|
gs 'stat'
|
|
|
cla & *clr
|
|
|
menu_off = 1
|
|
@@ -1321,8 +1336,12 @@ end
|
|
|
|
|
|
|
|
|
if $ARGS[0] = 'underwear':
|
|
|
- gs 'panties', 'wear', $lastwornpantytype['foto'], lastwornpantynumber['foto']
|
|
|
- gs 'bras', 'wear', $lastwornbratype['foto'], lastwornbranumber['foto']
|
|
|
+ if underwear['lastworntype'] = 2:
|
|
|
+ gs 'underwear_bodysuits', 'wear', $lastwornbodysuittype['foto'], lastwornbodysuitnumber['foto']
|
|
|
+ else
|
|
|
+ gs 'panties', 'wear', $lastwornpantytype['foto'], lastwornpantynumber['foto']
|
|
|
+ gs 'bras', 'wear', $lastwornbratype['foto'], lastwornbranumber['foto']
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
--- foto ---------------------------------
|