_shoe_image.qsrc 669 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] = 'moncheri':
  6. $RESULT = 'images/pc/items/moncheri/shoes/<<ARGS[1]>>.jpg'
  7. elseif $ARGS[0] = 'bomba':
  8. $RESULT = 'images/pc/items/bomba/shoes/<<ARGS[1]>>.jpg'
  9. elseif $ARGS[0] = 'dolls':
  10. $RESULT = 'images/pc/items/dolls/shoes/<<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/items/gm/shoes/<<ARGS[1]>>.jpg'
  15. elseif $ARGS[0] = 'danilovich':
  16. $RESULT = 'images/pc/items/danilovich/shoes/<<ARGS[1]>>.jpg'
  17. end
  18. --- $shoe_image ---------------------------------