Skip to content

Colorful Messages

Warning

Eternal has a Custom System Message by default and most modifications are available in .cfg and ALT + B.

Video Tutorial

Video

Colorful Chat Previews

Y1-Vr-PZK-Imgur.png

Thanks @Ascy for the image

Script for Applying Custom Messages

Save it as a .bat file, close the game, edit paths if needed and run it.

Thanks @Evan for the suggestion

On Eternal you have a custom system message by default, this script will not work.

@echo off
title Custom System Message Installer
cls

:: =============================================
:: USER CONFIGURATION - Edit these if needed
:: =============================================
set "game_folder=C:\Program Files (x86)\Reborn\games\signature"
set "lang_folder=\system\lang\e"
set "plugin_folder=\plugins"
:: =============================================

:menu
cls
echo  ------------------------------------------
echo    Custom System Message Installer
echo            Close the Game!
echo  ------------------------------------------
echo.
echo  Choose which message pack to install:
echo.
echo  1 - volix
echo  2 - Xihpiro
echo  3 - sepheriod
echo  4 - Pharah
echo  5 - johanmelv0gue
echo  6 - Ascy
echo.
echo  7 - Exit
echo.
set /p choice="Enter your choice (1-7): "

if "%choice%"=="1" set "mod_name=volix" & goto install
if "%choice%"=="2" set "mod_name=Xihpiro" & goto install
if "%choice%"=="3" set "mod_name=sepheriod" & goto install
if "%choice%"=="4" set "mod_name=Pharah" & goto install
if "%choice%"=="5" set "mod_name=johanmelv0gue" & goto install
if "%choice%"=="6" set "mod_name=Ascy" & goto install
if "%choice%"=="7" exit /b

echo Invalid choice! Please try again.
timeout /t 2 >nul
goto menu

:install
cls
echo Installing %mod_name% system messages...
echo.

set "source=%game_folder%%plugin_folder%\custom_systemMsg_%mod_name%\SystemMsg-e.dat"
set "destination=%game_folder%%lang_folder%"

if not exist "%source%" (
    echo ERROR: Source file not found!
    echo %source%
    echo.
    pause
    goto menu
)

copy /Y "%source%" "%destination%"

if %errorlevel% equ 0 (
    echo File replaced successfully!
    echo %destination%\SystemMsg-e.dat
) else (
    echo ERROR: File copy failed!
)

echo.
timeout /t 3 >nul
goto menu

Comments