_shoe_image.qsrc 852 B

12345678910111213141516171819202122232425
  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] = 'cats':
  8. $RESULT = 'images/pc/items/cats/shoes/<<ARGS[1]>>.jpg'
  9. elseif $ARGS[0] = 'bomba':
  10. $RESULT = 'images/pc/items/bomba/shoes/<<ARGS[1]>>.jpg'
  11. elseif $ARGS[0] = 'dolls':
  12. $RESULT = 'images/pc/items/dolls/shoes/<<ARGS[1]>>.jpg'
  13. elseif $ARGS[0] = 'eroto':
  14. $RESULT = 'images/pc/items/eroto/shoes/<<ARGS[1]>>.jpg'
  15. elseif $ARGS[0] = 'scandalicious':
  16. $RESULT = 'images/pc/items/scandalicious/shoes/<<ARGS[1]>>.jpg'
  17. elseif $ARGS[0] = 'gm':
  18. $RESULT = 'images/pc/items/gm/shoes/<<ARGS[1]>>.jpg'
  19. elseif $ARGS[0] = 'danilovich':
  20. $RESULT = 'images/pc/items/danilovich/shoes/<<ARGS[1]>>.jpg'
  21. end
  22. --- $shoe_image ---------------------------------