# tattoo_management if $ARGS[0] = 'totals': result = 0 if $ARGS[1] = 'ankle': result = 25 elseif $ARGS[1] = 'arm': result = 77 elseif $ARGS[1] = 'ass': result = 25 elseif $ARGS[1] = 'back': result = 61 elseif $ARGS[1] = 'belly': result = 21 elseif $ARGS[1] = 'breast': result = 11 elseif $ARGS[1] = 'chest': result = 15 elseif $ARGS[1] = 'face': result = 8 elseif $ARGS[1] = 'hand': result = 9 elseif $ARGS[1] = 'leg': result = 47 elseif $ARGS[1] = 'lip': result = 9 elseif $ARGS[1] = 'neck': result = 30 elseif $ARGS[1] = 'pussy': result = 53 elseif $ARGS[1] = 'shoulder': result = 25 elseif $ARGS[1] = 'side': result = 23 elseif $ARGS[1] = 'tramp': result = 32 elseif $ARGS[1] = 'under': result = 22 elseif $ARGS[1] = 'wrist': result = 51 end exit end if $ARGS[0] = 'add': if pcs_tattoos[$ARGS[1]] < 0: pcs_tattoos['total'] += 1 pcs_tattoos['any'] = 1 pcs_tattoos[$ARGS[1]] = ARGS[2] exit end if $ARGS[0] = 'remove': if pcs_tattoos[$ARGS[1]] > 0: pcs_tattoos['total'] -= 1 pcs_tattoos[$ARGS[1]] = -pcs_tattoos[$ARGS[1]] end exit end if $ARGS[0] = 'full_reset': killvar 'pcs_tattoos' exit end if $ARGS[0] = 'count': pcs_tattoos['total'] = 0 if pcs_tattoos['ankle'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['arm'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['ass'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['back'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['belly'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['breast'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['chest'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['face'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['hand'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['leg'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['lip'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['neck'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['pussy'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['shoulder'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['side'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['tramp'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['under'] > 0: pcs_tattoos['total'] += 1 if pcs_tattoos['wrist'] > 0: pcs_tattoos['total'] += 1 exit end if $ARGS[0] = 'ankle_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['ankle'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/foot/tatankle<>.jpg' exit end if $ARGS[0] = 'arm_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['arm'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/arms/tatarm<>.jpg' exit end if $ARGS[0] = 'ass_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['ass'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/ass/tatass<>.jpg' exit end if $ARGS[0] = 'back_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['back'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/back/tatback<>.jpg' exit end if $ARGS[0] = 'belly_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['belly'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/belly/tatblly<>.jpg' exit end if $ARGS[0] = 'breast_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['breast'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/breasts/tatbrst<>.jpg' exit end if $ARGS[0] = 'chest_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['chest'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/chest/tatchst<>.jpg' exit end if $ARGS[0] = 'face_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['face'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/face/tatfce<>.jpg' exit end if $ARGS[0] = 'hand_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['hand'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/hand/tathnd<>.jpg' exit end if $ARGS[0] = 'leg_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['leg'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/legs/tatleg<>.jpg' exit end if $ARGS[0] = 'lip_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['lip'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/lip/tatlip<>.jpg' exit end if $ARGS[0] = 'neck_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['neck'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/neck/tatnck<>.jpg' exit end if $ARGS[0] = 'pussy_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['pussy'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/pubic/tatvag<>.jpg' exit end if $ARGS[0] = 'shoulder_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['shoulder'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/shoulder/tatshldr<>.jpg' exit end if $ARGS[0] = 'side_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['side'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/side/tatside<>.jpg' exit end if $ARGS[0] = 'tramp_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['tramp'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/trampStamp/tatlowbck<>.jpg' exit end if $ARGS[0] = 'under_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['under'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/underBreast/tatundbreast<>.jpg' exit end if $ARGS[0] = 'wrist_image': if ARGS[1] = 0: ARGS[1] = pcs_tattoos['wrist'] if ARGS[1] < 0: ARGS[1] = -ARGS[1] $result = 'images/pc/body/tattoos/wrists/tatwrst<>.jpg' exit end --- tattoo_management --------------------------------------------------