Adds a custom emote box to the quick reply form on Holotower
To activate click the button next to New Reply on the quick reply window. Emotes and talents are hardcoded to maintain sorting and styling.
To make the emotes in posts bigger add to your User CSS:
.post.reply img.c_emoji {
height: 40px;
width: 40px;
}
Version 1.15+ of the script can load missing emotes and talents directly from the site's emote_list.json:
emote_list.json. If it’s newer than the last check, any missing emotes or talents are saved locally and rememberedMake :saba.HAHA: jump up and down:
@keyframes laugh-jump {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.c_emoji[src*="saba/_HAHA.png"] {
animation: laugh-jump 0.25s ease-in-out infinite;
}