# SMS_selfies
!{
if $ARGS[0] = 'Trial':
gs 'SMStext_builder', 'start'
gs 'SMStext_builder', 'receive', 'Come on, send me a selfie'
gs 'SMStext_builder', 'send', 'Alright'
gs 'SMStext_builder', 'send_selfie', '[send selfie]', 'c|sw|u|n|b|sh|ft|fa|fp', 'SMS_selfies', 'Trial2'
gs 'SMStext_builder', 'add_sms', 'A144'
gs 'SMStext_builder', 'end'
end
if $ARGS[0] = 'Trial2':
gs 'SMStext_builder', 'start'
gs 'SMStext_builder', 'receive', 'Come on, send me a selfie'
gs 'SMStext_builder', 'send', 'Alright'
gs 'SMStext_builder', 'send_img', $ARGS[2]
if $ARGS[4] = 'clothed':
gs 'SMStext_builder', 'receive', 'Just a basic selfie'
elseif $ARGS[4] = 'bikini':
gs 'SMStext_builder', 'receive', 'Nice, a bikini selfie'
elseif $ARGS[4] = 'underwear':
gs 'SMStext_builder', 'receive', 'Cute underwear!'
elseif $ARGS[4] = 'nude':
gs 'SMStext_builder', 'receive', 'wow, a nudie!'
elseif $ARGS[4] = 'bath':
gs 'SMStext_builder', 'receive', 'Nice, a bath selfie'
elseif $ARGS[4] = 'shower':
gs 'SMStext_builder', 'receive', 'Nice, a shower selfie'
elseif $ARGS[4] = 'titflash':
gs 'SMStext_builder', 'receive', 'Naughty! Did someone see you flashing your tits?'
elseif $ARGS[4] = 'assflash':
gs 'SMStext_builder', 'receive', 'Naughty! Did someone see you flashing your butt?'
elseif $ARGS[4] = 'pussyflash':
gs 'SMStext_builder', 'receive', 'Naughty! Did someone see you flashing your pussy?'
end
gs 'SMStext_builder', 'show_sms', ARGS[1]
gs 'SMStext_builder', 'end'
end
}
if $ARGS[0] = 'show_sms':
$temp_curSMS = $SMSMessage[SMSSelfieVars['SMSid']]
$temp_curReplies = $SMSReplies[SMSSelfieVars['SMSid']]
$SMSMessage[SMSSelfieVars['SMSid']] = $SMSSelfieVars['text']
$SMSReplies[SMSSelfieVars['SMSid']] = ''
gs 'telefon', 'show_sms', SMSSelfieVars['SMSid']
$SMSMessage[SMSSelfieVars['SMSid']] = $temp_curSMS
$SMSReplies[SMSSelfieVars['SMSid']] = $temp_curReplies
$SMSSelfieVars['text'] = ''
killvar 'temp_curSMS'
killvar 'temp_curReplies'
end
if $ARGS[0] = 'exit':
gs 'telefon', 'show_sms', SMSSelfieVars['SMSid']
killvar 'SMSSelfieVars'
end
!!===========================================================!!
!! !!
!! RETREIVE A SELFIE !!
!! !!
!!===========================================================!!
! $ARGS[1] = control string
! ARGS[2] = telefon['SMSid']
! $ARGS[3] -> onward = return string
if $ARGS[0] = 'send_selfie':
killvar 'SMSSelfieVars'
$SMSSelfieVars['control'] = $ARGS[1]
SMSSelfieVars['SMSid'] = ARGS[2]
!! Create the return string
$temp_return_string = ''
sms_s_n_args = arrsize('$ARGS')
sms_s_i = 3
:add_rest_ARGS_loop
if sms_s_i < sms_s_n_args:
$temp_return_string += '''<<$ARGS[sms_s_i]>>'', '
sms_s_i += 1
jump 'add_rest_ARGS_loop'
end
$temp_return_string = mid($temp_return_string, 1, len($temp_return_string)-2)
$SMSSelfieVars['return_string'] = $temp_return_string
killvar 'temp_return_string'
killvar 'sms_s_n_args'
killvar 'sms_s_i'
gs 'SMS_selfies', 'selfie_menu'
end
if $ARGS[0] = 'selfie_menu':
gs 'phone_selfies', 'Phone_selfie_totals'
! reset temp_SMS_selftext
$SMSSelfieVars['text'] = '
Selfies | '
temp_locationCnt = 0
:LocationLoop
$SMSSelfieVars['text'] += '<<$selfieLocDesc[temp_locationCnt]>> selfies'
$SMSSelfieVars['text'] += ' |
'
temp_locationCnt += 1
if temp_locationCnt < arrsize('$selfieLoc'): jump 'LocationLoop'
$SMSSelfieVars['text'] += 'Exit |
'
gs 'SMS_selfies', 'show_sms'
killvar 'temp_locationCnt'
killvar 'sms_s_i'
killvar 'sms_s_n_args'
end
! ARGS[1] = temp_locationCnt
if $ARGS[0] = 'showlocation':
$SMSSelfieVars['text'] = '<<$selfieLocDesc[ARGS[1]]>> selfies |
'
gs 'SMS_selfies', 'listretrieve', ARGS[1], $selfieLoc[ARGS[1]]
$SMSSelfieVars['text'] += 'Go Back |
'
$SMSSelfieVars['text'] += 'Exit |
'
gs 'SMS_selfies', 'show_sms'
end
! ARGS[1] = the index of the location in $selfieLoc[]
! $ARGS[2] = the selfie location (park, home, etc)
if $ARGS[0] = 'listretrieve':
if strpos($SMSSelfieVars['control'], 'c') > 0: gs 'SMS_selfies', 'retrieve_clothed_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'sw') > 0: gs 'SMS_selfies', 'retrieve_swim_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'u') > 0: gs 'SMS_selfies', 'retrieve_underwear_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'n') > 0: gs 'SMS_selfies', 'retrieve_nude_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'b') > 0: gs 'SMS_selfies', 'retrieve_bath_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'sh') > 0: gs 'SMS_selfies', 'retrieve_shower_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'ft') > 0: gs 'SMS_selfies', 'retrieve_titflash_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'fa') > 0: gs 'SMS_selfies', 'retrieve_assflash_selfies', ARGS[1], $ARGS[2]
if strpos($SMSSelfieVars['control'], 'fp') > 0: gs 'SMS_selfies', 'retrieve_pussyflash_selfies', ARGS[1], $ARGS[2]
end
! ARGS[1] = the index of the location in $selfieLoc[]
! $ARGS[2] = the selfie location (park, home, etc)
if $ARGS[0] = 'retrieve_clothed_selfies':
!!Loop for clothed selfies, dynamics set variables as mixing them in loop instructions is bad
if selfieClotot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Clothed selfies |
---|
'
temp_cnum = 1
temp_clocnt = 1
:temp_loop
!!setting value to unmixed variable so it can be checked in the if below
dynamic 'phone_locval = <<$ARGS[2]>>_closelfie[<>]'
if phone_locval = 1:
if temp_cnum = 3: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'clothed', ARGS[1], temp_clocnt) + ' | '
end
temp_clocnt += 1
if temp_clocnt <= selfieClotot[ARGS[1]]: jump 'temp_loop'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_clocnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_swim_selfies':
!!Loop for clothed selfies, dynamics set variables as mixing them in loop instructions is bad
if selfieSwimtot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Swimwear selfies |
---|
'
temp_cnum = 0
temp_swicnt = 1
:temp_loop1
!!setting value to unmixed variable so it can be checked in the if below
dynamic 'phone_locval = <<$ARGS[2]>>_swim[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'bikini', ARGS[1], temp_swicnt) + ' | '
end
temp_swicnt += 1
if temp_swicnt <= selfieClotot[ARGS[1]]: jump 'temp_loop1'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_swicnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_underwear_selfies':
if selfieUndtot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Underwear selfies |
---|
'
temp_cnum = 0
temp_undcnt = 1
:temp_loop2
dynamic 'phone_locval = <<$ARGS[2]>>_undselfie[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'underwear', ARGS[1], temp_undcnt) + ' | '
end
temp_undcnt += 1
if temp_undcnt <= selfieUndtot[ARGS[1]]: jump 'temp_loop2'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_swicnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_nude_selfies':
if selfieNudtot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Nude selfies |
---|
'
temp_cnum = 0
temp_nudcnt = 1
:temp_loop3
dynamic 'phone_locval = <<$ARGS[2]>>_nudselfie[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'nude', ARGS[1], temp_nudcnt) + ' | '
end
temp_nudcnt += 1
if temp_nudcnt <= selfieNudtot[ARGS[1]]: jump 'temp_loop3'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_nudcnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_bath_selfies':
!!loop for bath selfies
if selfieBathtot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Bath selfies |
---|
'
temp_cnum = 0
temp_bathcnt = 1
:temp_loop4
dynamic 'phone_locval = <<$ARGS[2]>>_bathselfie[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'bath', ARGS[1], temp_bathcnt) + ' | '
end
temp_bathcnt += 1
if temp_bathcnt <= selfieBathtot[ARGS[1]]: jump 'temp_loop4'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_bathcnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_shower_selfies':
!!loop for shower selfies
if selfieShowertot[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Shower selfies |
---|
'
temp_cnum = 0
temp_showercnt = 1
:temp_loop5
dynamic 'phone_locval = <<$ARGS[2]>>_showerselfie[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'shower', ARGS[1], temp_showercnt) + ' | '
end
temp_showercnt += 1
if temp_showercnt <= selfieShowertot[ARGS[1]]: jump 'temp_loop5'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_showercnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_titflash_selfies':
!!loop for flashing tits selfies
if selfieTitflash[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Flashing tits selfies |
---|
'
temp_cnum = 0
temp_flashtitscnt = 1
:temp_loop6
dynamic 'phone_locval = <<$ARGS[2]>>_titflash[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'titflash', ARGS[1], temp_flashtitscnt) + ' | '
end
temp_flashtitscnt += 1
if temp_flashtitscnt <= selfieTitflash[ARGS[1]]: jump 'temp_loop6'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_flashtitscnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_assflash_selfies':
!!loop for flashing ass selfies
if selfieAssflash[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Flashing ass selfies |
---|
'
temp_cnum = 0
temp_flashasscnt = 1
:temp_loop7
dynamic 'phone_locval = <<$ARGS[2]>>_assflash[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'assflash', ARGS[1], temp_flashasscnt) + ' | '
end
temp_flashasscnt += 1
if temp_flashasscnt <= selfieAssflash[ARGS[1]]: jump 'temp_loop7'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_flashasscnt'
killvar 'temp_cnum'
end
elseif $ARGS[0] = 'retrieve_pussyflash_selfies':
!!loop for flashing pussy selfies
if selfiePussyflash[ARGS[1]] > 0:
$temp_SMS_selfietxt += 'Flashing pussy selfies |
---|
'
temp_cnum = 0
temp_flashpussycnt = 1
:temp_loop8
dynamic 'phone_locval = <<$ARGS[2]>>_pussyflash[<>]'
if phone_locval = 1:
if temp_cnum = 2: $SMSSelfieVars['text'] += '
' & temp_cnum = 0
temp_cnum += 1
$SMSSelfieVars['text'] += '' + func('phone_selfies_popup', 'SMS_set_selfie', $ARGS[2], 'pussyflash', ARGS[1], temp_flashpussycnt) + ' | '
end
temp_flashpussycnt += 1
if temp_flashpussycnt <= selfiePussyflash[ARGS[1]]: jump 'temp_loop8'
if temp_cnum ! 2: $SMSSelfieVars['text'] += ' | '
$SMSSelfieVars['text'] += '
'
killvar 'temp_flashpussycnt'
killvar 'temp_cnum'
end
end
!!===========================================================!!
!! !!
!! TAKE A SELFIE !!
!! !!
!!===========================================================!!
!{
if $ARGS[0] = 'take_selfie_menu':
gs 'phone_selfies', 'Phone_selfie_totals'
if $locclass = 'bedr':
$phone_loc = 'bedroom'
elseif $locclass = 'kitr':
$phone_loc = 'kitchen'
elseif $locclass = 'livingr':
$phone_loc = 'livingroom'
elseif $locclass = 'changingroom':
$phone_loc = 'changingroom'
elseif $locclass = 'city_park':
$phone_loc = 'park'
elseif $locclass = 'locker':
$phone_loc = 'locker'
elseif $locclass = 'beach':
$phone_loc = 'beach'
elseif $locclass = 'classroom':
$phone_loc = 'classroom'
elseif $locclass = 'school_bathroom':
$phone_loc = 'school_bathroom'
elseif $locclass = 'restroom':
$phone_loc = 'restroom'
elseif $location_type = 'bathroom':
$phone_loc = 'bathroom'
else
$phone_loc = ''
end
!! Create the return string
$temp_return_string = ''
sms_s_n_args = arrsize('$ARGS')
sms_s_i = 3
:add_rest_ARGS_loop
if sms_s_i < sms_s_n_args:
$temp_return_string += '''<<$ARGS[sms_s_i]>>'', '
sms_s_i += 1
jump 'add_rest_ARGS_loop'
end
$temp_return_string = mid($temp_return_string, 1, len($temp_return_string)-2)
$SMSSelfieVars['text'] = 'Camera | '
if $phone_loc ! '' or strpos($ARGS[1], 'c') > 0:
$SMSSelfieVars['text'] += 'Take a selfie'
$SMSSelfieVars['text'] += ' |
'
end
!! Flashing selfie
if $clothingworntype ! 'nude' and $phone_loc <> '':
if Enable_Android = 1:
locIndex = arrpos('$selfieLoc', $phone_loc, 1)
else
locIndex = arrpos(1, '$selfieLoc', $phone_loc)
end
if strpos($ARGS[1], 'ft') > 0 and (pcs_inhib >= 35 or exhibitionist_lvl > 0 or $phone_loc = 'bedroom') and selfieTitflash[locIndex] > 0:
$SMSSelfieVars['text'] += 'Flash your tits for a selfie '
$SMSSelfieVars['text'] += ' |
'
end
if strpos($ARGS[1], 'fa') > 0 and (exhibitionist_lvl > 0 or $phone_loc = 'bedroom') and selfieAssflash[locIndex] > 0:
$SMSSelfieVars['text'] += 'Flash your ass for a selfie '
$SMSSelfieVars['text'] += ' |
'
end
if strpos($ARGS[1], 'fp') > 0 and (exhibitionist_lvl > 1 or $phone_loc = 'bedroom') and selfiePussyflash[locIndex] > 0:
$SMSSelfieVars['text'] += 'Flash your pussy for a selfie '
$SMSSelfieVars['text'] += ' |
'
end
end
$SMSSelfieVars['text'] += 'Exit |
'
gs 'SMS_selfies', 'show_sms', ARGS[3]
end
if $ARGS[0] = 'Phone_camera_selfie':
$temp_return_string = ''
sms_s_n_args = arrsize('$ARGS')
sms_s_i = 5
:add_rest_ARGS_loop2
if sms_s_i < sms_s_n_args:
$temp_return_string += '''<<$ARGS[sms_s_i]>>'', '
sms_s_i += 1
jump 'add_rest_ARGS_loop2'
end
$temp_return_string = mid($temp_return_string, 1, len($temp_return_string)-2)
if $ARGS[1] ! '':
if Enable_Android = 1:
temp_pos = arrpos('$selfieLoc', $ARGS[1], 1)
else
temp_pos = arrpos(1, '$selfieLoc', $ARGS[1])
end
dynamic 'gs ''SMS_selfies'', ''Phone_selfie_image'', ''<<$ARGS[1]>>'', ''<<$ARGS[2]>>'', <>, ''<<$ARGS[3]>>'', <>, <<$temp_return_string>>'
killvar 'temp_pos'
else
phone_rand = rand(1, selfieClotot[0])
dynamic '<<$selfieLoc[0]>>_closelfie[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$selfieLoc[0]>>/clothed/<<$selfieFilePrefix[0]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$selfieLoc[0]>>'', ''clothed'', 0, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
!if cumsumbod-cumsumvag-cumsumass > 0: phone_rand = RAND (m,n) - for SELF in the semen
!if photo_event_pic = x: phone_rand = RAND (x,y) - for photos during the events (by heart)
!msg ''
end
if $ARGS[0] = 'Phone_selfie_image':
$temp_return_string = ''
sms_s_n_args = arrsize('$ARGS')
sms_s_i = 6
:add_rest_ARGS_loop2
if sms_s_i < sms_s_n_args:
$temp_return_string += '''<<$ARGS[sms_s_i]>>'', '
sms_s_i += 1
jump 'add_rest_ARGS_loop2'
end
$temp_return_string = mid($temp_return_string, 1, len($temp_return_string)-2)
if $ARGS[2] = '':
if PCloswimwear = 1:
!!changing to and unmixed variable so the rng will work
temp_swim = selfieSwimtot[ARGS[3]]
if temp_swim > 0:
phone_rand = rand(1, temp_swim)
!!Setting the image owned flag to 1
dynamic '<<$ARGS[1]>>_swim[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/bikini/<<$selfieFilePrefix[ARGS[3]]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$ARGS[1]>>'', ''bikini'', <>, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
killvar 'temp_swim'
elseif $clothingworntype ! 'nude':
!!changing to and unmixed variable so the rng will work
temp_clotot = selfieClotot[ARGS[3]]
if temp_clotot > 0:
phone_rand = rand(1, temp_clotot)
!!Setting the image owned flag to 1
dynamic '<<$ARGS[1]>>_closelfie[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/clothed/<<$selfieFilePrefix[ARGS[3]]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$ARGS[1]>>'', ''clothed'', <>, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
killvar 'temp_clotot'
elseif $pantyworntype ! 'none':
temp_undtot = selfieUndtot[ARGS[3]]
if temp_undtot > 0:
phone_rand = rand(1, temp_undtot)
dynamic '<<$ARGS[1]>>_undselfie[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/underwear/<<$selfieFilePrefix[ARGS[3]]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$ARGS[1]>>'', ''underwear'', <>, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
killvar 'temp_undtot'
else
temp_nudtot = selfieNudtot[ARGS[3]]
if temp_nudtot > 0:
phone_rand = rand(1, temp_nudtot)
dynamic '<<$ARGS[1]>>_nudselfie[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/nude/<<$selfieFilePrefix[ARGS[3]]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$ARGS[1]>>'', ''nude'', <>, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
killvar 'temp_nudtot'
end
else
if $ARGS[2] = 'tits':
temp_titflash = selfieTitflash[ARGS[3]]
if temp_titflash > 0:
phone_rand = rand(1, temp_titflash)
dynamic '<<$ARGS[1]>>_titflash[<>] = 1'
gs 'stat'
$temp_imloc = 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/titflash/<<$selfieFilePrefix[ARGS[3]]>><>.jpg'
dynamic 'gs <<$temp_return_string>>, <>, ''<<$temp_imloc>>'', ''<<$ARGS[1]>>'', ''titflash'', <>, <>'
killvar 'phone_rand'
killvar 'temp_imloc'
end
killvar 'temp_titflash'
elseif $ARGS[2] = 'ass':
temp_assflash = selfieAssflash[ARGS[3]]
if temp_assflash > 0:
phone_rand = rand(1, temp_assflash)
dynamic '<<$ARGS[1]>>_assflash[<>] = 1'
gs 'stat'
if usePopUps = 1:
msg ''
else
view 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/assflash/<>.jpg'
end
end
elseif $ARGS[2] = 'pussy':
if Enable_Android = 1:
temp_pussyflash = selfiePussyflash[arrpos('$selfieLoc', $ARGS[1], 1)]
else
temp_pussyflash = selfiePussyflash[arrpos(1, '$selfieLoc', $ARGS[1])]
end
if temp_pussyflash > 0:
phone_rand = rand(1, temp_pussyflash)
dynamic '<<$ARGS[1]>>_pussyflash[<>] = 1'
gs 'stat'
if usePopUps = 1:
msg ''
else
view 'images/pc/activities/phone/selfies/<<$ARGS[1]>>/pussyflash/<>.jpg'
end
end
end
end
end
}
--- SMS_selfies ---------------------------------