
Originally Posted by
joaowars776
How do I open only the necessary servers? nodeserver, gateserver, dbgate, dispatch, gameserver, sdkserver
(for those with 16GB RAM)
..and another question, what happens when you don't use the others? I saw that only those mentioned above consume 8GB, while the others together consume 22GB, is something lost or will I be able to play the game normally, doing missions in "dungeons" and things like that? thanks for listening
I tried removing in the CLI file but it didn't work
You gotta edit the cli file and find the start_servers() function at line 130.
For reference I modified it to only start the ones you mentioned (plus the muipserver to allow GM commands):
Code:
function start_servers()
{
cd nodeserver
chmod +x nodeserver
nohup ./nodeserver -i 9001.3.1.1 &
cd ../gateserver
chmod +x gateserver
nohup ./gateserver -i 9001.1.1.1 &
cd ../dbgate
chmod +x dbgate
nohup ./dbgate -i 9001.4.1.1 &
cd ../dispatch
chmod +x dispatch
nohup ./dispatch -i 9001.5.1.1 &
cd ../gameserver
chmod +x gameserver
nohup ./gameserver -i 9001.2.1.1 &
cd ../muipserver
chmod +x muipserver
nohup ./muipserver -i 9001.6.1.1 &
#cd ../oaserver
#chmod +x oaserver
#nohup ./oaserver -i 9001.9.1.1 &
#cd ../pathfindingserver
#chmod +x pathfindingserver
#nohup ./pathfindingserver -i 9001.8.1.1 &
#cd ../multiserver
#chmod +x multiserver
#nohup ./multiserver -i 9001.7.1.1 &
#cd ../tothemoonserver
#chmod +x tothemoonserver
#nohup ./tothemoonserver -i 9001.10.1.1 &
cd ../sdkserver
screen -S sdk java -jar sdkserver.jar
cd ../
deep_green_echo "Start done!"
}