Holotower Custom Emotes Box

Adds a custom emote box to the quick reply form on Holotower

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

作者
tentontruck
今日安裝
1
安裝總數
157
評價
0 0 0
版本
1.25
建立日期
2025-07-02
更新日期
2026-01-07
尺寸
124.2 KB
授權條款
CC0
腳本執行於

Holotower Custom Emotes Box

Adds emote buttons to Quick Reply to easily use emotes in your posts 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:

  • this only applies to emotes and talents that aren’t hardcoded
  • new emotes for existing talents are added to the end of that talent’s list
  • new talents are added to the last subcategory of the final category.
  • on load, the script checks the remote emote_list.json. If it’s newer than the last check, any missing emotes or talents are saved locally and remembered
  • this should be enough to keep a basic emote list in sync without requiring script updates, though the hardcoded database still needs updates for proper sorting and styling

More CSS

Make :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;
}