Jump to content

Recommended Posts

hey i guys when i try to start 4 channels in my server only 1-2 are up i get this error as the server starts. https://metin2.download/picture/rxkW7YGmRPIW42e4CHY6gs8GxwEl8Z3A/.png

 

Thanks in advance

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
https://metin2.dev/topic/1405-channels-problem/
Share on other sites

i got 3 thing in mind

1-you have a erorr on your start.sh script

2-there are no symbolic link on the channel 3-4 core (symbolic link FreeBSD = shortcut Windows)

3-the symbolic link are wrong

can you copy past your start.sh script and how your : for ex.ch3 core 1 look like (a pic will do)

  • Love 1
Link to comment
https://metin2.dev/topic/1405-channels-problem/#findComment-10294
Share on other sites

#!/bin/sh
 
echo -e "033[31m  
Wie viele Channels möchtest du starten ? n 
1 - (1) Channeln 
2 - (2) Channeln
3 - (3) Channeln
4 - (4) Channeln
5 - (5) Authn
 
Drigema2 Starter"
 
read anzahl
case $anzahl in 
 
1*)
echo -e "033[31m Startet die Datenbank ..033[0m"
cd invoice/db && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./db &
sleep 2
echo -e "033[31m Die Datenbank wurde gestartet.033[0m"
echo -e "033[31m Startet den Loginserver ..033[0m"
cd invoice/auth && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./auth &
sleep 2
echo -e "033[31m Der Loginserver wurde gestartet[0m"
echo -e "033[31m Starte game99_1 ..033[0m"
cd ./game99/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_2 ..033[0m"
cd ./game99/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_3 ..033[0m"
cd ./game99/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_4 ..033[0m"
cd ./game99/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 2
echo -e "033[31m game99 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Starte game99 Core 5 ..033[0m"
cd ./game99/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 1 ..033[0m"
cd ./channel1/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 2 ..033[0m"
cd ./channel1/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 3 ..033[0m"
cd ./channel1/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 4 ..033[0m"
cd ./channel1/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 5 ..033[0m"
cd ./channel1/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 5 wurde gestartet.n
n
Channel Gestartet033[0m"
cd ..
;;
 
3*)
echo -e "033[31m Startet die Datenbank ..033[0m"
cd invoice/db && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./db &
sleep 2
echo -e "033[31m Die Datenbank wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 1 ..033[0m"
cd ./channel1/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 2 ..033[0m"
cd ./channel1/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 3 ..033[0m"
cd ./channel1/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 4 ..033[0m"
cd ./channel1/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 5 ..033[0m"
cd ./channel1/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 1 ..033[0m"
cd ./channel2/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 2 ..033[0m"
cd ./channel2/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 3 ..033[0m"
cd ./channel2/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 4 ..033[0m"
cd ./channel2/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 5 ..033[0m"
cd ./channel2/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 1 ..033[0m"
cd ./channel3/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 2 ..033[0m"
cd ./channel3/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 3 ..033[0m"
cd ./channel3/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 4 ..033[0m"
cd ./channel3/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 5 ..033[0m"
cd ./channel3/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_1 ..033[0m"
cd ./game99/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_2 ..033[0m"
cd ./game99/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_3 ..033[0m"
cd ./game99/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_4 ..033[0m"
cd ./game99/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 2
echo -e "033[31m game99 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Starte game99 Core 5 ..033[0m"
cd ./game99/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet den Loginserver ..033[0m"
cd ./invoice/auth && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./auth &
sleep 2
echo -e "033[31m Der Loginserver wurde gestartet.n
n
Channel Gestartet033[0m"
cd ..
;;
 
4*)
echo -e "033[31m Startet die Datenbank ..033[0m"
cd invoice/db && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./db &
sleep 2
echo -e "033[31m Die Datenbank wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 1 ..033[0m"
cd ./channel1/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 2 ..033[0m"
cd ./channel1/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 3 ..033[0m"
cd ./channel1/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 4 ..033[0m"
cd ./channel1/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 1 Core 5 ..033[0m"
cd ./channel1/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 1 ..033[0m"
cd ./channel2/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 2 ..033[0m"
cd ./channel2/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 3 ..033[0m"
cd ./channel2/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 4 ..033[0m"
cd ./channel2/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 2 Core 5 ..033[0m"
cd ./channel2/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 2 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 1 ..033[0m"
cd ./channel3/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 2 ..033[0m"
cd ./channel3/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 3 ..033[0m"
cd ./channel3/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 4 ..033[0m"
cd ./channel3/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 3 Core 5 ..033[0m"
cd ./channel3/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 3 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 4 Core 1 ..033[0m"
cd ./channel4/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 4 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 4 Core 2 ..033[0m"
cd ./channel4/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 4 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 4 Core 3 ..033[0m"
cd ./channel4/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 4 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 4 Core 4 ..033[0m"
cd ./channel4/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 4 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Startet Channel 4 Core 5 ..033[0m"
cd ./channel4/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 4 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_1 ..033[0m"
cd ./game99/core1 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 1 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_2 ..033[0m"
cd ./game99/core2 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 2 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_3 ..033[0m"
cd ./game99/core3 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m game99 Core 3 wurde gestartet.033[0m"
echo -e "033[31m Starte game99_4 ..033[0m"
cd ./game99/core4 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 2
echo -e "033[31m game99 Core 4 wurde gestartet.033[0m"
echo -e "033[31m Starte game99 Core 5 ..033[0m"
cd ./game99/core5 && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./game &
sleep 5
echo -e "033[31m Channel 1 Core 5 wurde gestartet.033[0m"
echo -e "033[31m Startet den Loginserver ..033[0m"
cd ./invoice/auth && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./auth &
sleep 2
echo -e "033[31m Der Loginserver wurde gestartet.n
n
Channel Gestartet033[0m"
cd ..
;;
 
5*)
echo -e "033[31m Startet den Loginserver ..033[0m"
cd ./invoice/auth && env LD_32_PRELOAD="/home/game/share/LibCostume.so" ./auth &
sleep 2
echo -e "033[31m Der Loginserver wurde gestartet.n
n
Channel Gestartet033[0m"
cd ..
esac
 
The code from start.sh and the picture from ch3 core1 https://metin2.download/picture/8NfgE0raDjPJPn4u3D4PE5cMmnRaai98/.png and this a picture from ch1 core1  https://metin2.download/picture/r3F9504x09DVmF8K988YXgTtGTP6KMUj/.gif
Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
https://metin2.dev/topic/1405-channels-problem/#findComment-10297
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.