# $clothing_image !! get the image for clothing !! ARGS 0 - clothing group name !! ARGS 1 - clothing index if $ARGS[0] = 'cheap': $RESULT = 'images/clothing/1cheap/cheap<>.jpg' elseif $ARGS[0] = 'average': $RESULT = 'images/clothing/2average/average<>.jpg' elseif $ARGS[0] = 'expensive': $RESULT = 'images/clothing/3expensive/expensive<>.jpg' elseif $ARGS[0] = 'formal': $RESULT = 'images/clothing/4formal/formal<>.jpg' elseif $ARGS[0] = 'office': $RESULT = 'images/clothing/5office/office<>.jpg' elseif $ARGS[0] = 'school': $RESULT = 'images/clothing/6school/school<>.jpg' elseif $ARGS[0] = 'exercise': $RESULT = 'images/clothing/7exercise/exercise<>.jpg' elseif $ARGS[0] = 'naughty': $RESULT = 'images/clothing/8naughty/naughty<>.jpg' elseif $ARGS[0] = 'exhibit': $RESULT = 'images/clothing/9exhibit/exhibit<>.jpg' elseif $ARGS[0] = 'uniform': $RESULT = 'images/clothing/10uniform/uniform<>.jpg' elseif $ARGS[0] = 'coat': $RESULT = 'images/clothing/11coat/coat<>.jpg' elseif $ARGS[0] = 'swimwear': $RESULT = 'images/clothing/12swimwear/swimwear<>.jpg' end --- $clothing_image ---------------------------------