123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- # 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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.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<<ARGS[1]>>.jpg'
- exit
- end
- --- tattoo_management --------------------------------------------------
|