This repo contains emojis that can be used in the RuneLite client.
The images are in png format, 13x13, with a hard-edged transparency. The client cannot handle semitransparent pixels.
- Find your desired emoji on emojipedia
- Scroll down to where it says Codepoints, the codepoint will look something like:
U+1F642
. - Use GitHub's find function to search for the emoji in this repository, ex
runelite-emoji/1f642.png
. - Download the file, rename it to something appropriate, and place it in:
runelite/runelite-client/src/main/resources/net/runelite/client/plugins/emojis
- Add an appropriate shortcode to:
runelite/runelite-client/src/main/java/net/runelite/client/plugins/emojis/Emoji.java
- Compile the client and use your new emoji in game
mogrify -path <TARGET_FOLDER> -resize 13x13 -filter Box -colors 256 -channel A -threshold 50% <SOURCE_FOLDER>/*.png
optipng -o7 -strip all <TARGET_FOLDER>/*.png
Enjoy!