Back to home

Admin Tools

Free tools for Lineage 2 server administrators

Cyrillic to Unicode Converter

Convert Cyrillic text to Unicode escape sequences for L2 nickname filters

Usage example:
Convert forbidden words and add to config:
# Для запрета русских ников конвертируйте строки в unicode # Например (админ)|(адм) → (\u0430\u0434\u043c\u0438\u043d)|(\u0430\u0434\u043c) ForbiddenCharName = (adm)|(admin)|(\u0430\u0434\u043c\u0438\u043d)|(\u0430\u0434\u043c)|(\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440) # Или запретить всю кириллицу: ForbiddenCharPattern = [\u0400-\u04FF]

RGB ↔ HEX Color Converter (BBGGRR)

Convert between RGB and HEX formats with inverted order (BBGGRR) for L2 nicknames and titles

Color preview
RGB(255, 215, 0)
Color preview
Usage example:
Use in L2 for colored nicknames and titles:
# В игре (для золотого цвета RGB 255,215,0): //setname 00D7FF МойНик //settitle 00D7FF МойТитул # В SQL: UPDATE characters SET name_color='00D7FF', title_color='00D7FF' WHERE char_name='Player';

Coordinate Converter

Convert coordinates between client and server formats for spawn points and teleports

Usage example:
Use for spawn points in XML or SQL:
# XML spawn: <spawn x="123456" y="234567" z="-3000" heading="0"> # SQL teleport: INSERT INTO teleport (loc_x, loc_y, loc_z) VALUES (123456, 234567, -3000); # В игре команда: //tele 123456 234567 -3000