_shoe_image.qsrc 635 B

123456789101112131415161718192021
  1. # $shoe_image
  2. !! get the image for clothing
  3. !! ARGS 0 - clothing group name
  4. !! ARGS 1 - clothing index
  5. if $ARGS[0] = 'boutique':
  6. $RESULT = 'images/pc/shoes/boutique/<<ARGS[1]>>.jpg'
  7. elseif $ARGS[0] = 'pussy':
  8. $RESULT = 'images/pc/shoes/cats/<<ARGS[1]>>.jpg'
  9. elseif $ARGS[0] = 'dolls':
  10. $RESULT = 'images/pc/shoes/dolls/<<ARGS[1]>>.jpg'
  11. elseif $ARGS[0] = 'fetish':
  12. $RESULT = 'images/pc/shoes/fetish/<<ARGS[1]>>.jpg'
  13. elseif $ARGS[0] = 'gandm':
  14. $RESULT = 'images/pc/shoes/g&m/<<ARGS[1]>>.jpg'
  15. elseif $ARGS[0] = 'trainers':
  16. $RESULT = 'images/pc/shoes/trainers/<<ARGS[1]>>.jpg'
  17. end
  18. --- $shoe_image ---------------------------------