hello everyone I need help my server 1.2.6 the dugeon no work I want know what I need doing for work ty
Printable View
hello everyone I need help my server 1.2.6 the dugeon no work I want know what I need doing for work ty
Did you make sure they are uncommented in the startup script?
hello more 1 time szaer I dont know what scrip ou talk about for start my server 1.2.6 I use ./start.shdo you can post a tutorial for me? thx szaer
nano startup.sh
In there, find all of the ./gs etc things. They might say which one is which level. For every level you want to open, delete the ; in front of the line. If you need a visual, let me know.
hi szaer more 1 time i am here sorry for long times because the web site have a problem, szaer I doing what your saying but have a blank looking a SS
ty more 1 time
http://img44.imageshack.us/img44/476/57001965.jpg
Blandy, i think you have to find wich directory the startup.sh is in, its comming up blank because the current directory your in doesn't have startup.sh in it,just type dir in that directory and see if startup.sh is in it, and it could quite possibly be that it is named differently...like start_all_servers.sh or start_servers.sh so use the command i showed you and see what happens:D:. If all else fails here is my old file i used...open it and select save as and put Startup.sh and then save,after that import it into your server image.Just don't forget if you use my Startup,be sure to remove the # in front of the ./gs or esle that area wont load!
This my start_full.sh for 1.3.6 server
U can copy it n paste into ur start.sh or make start_full.sh and paste my start_full.sh (it better if u make a new one)
I hope i can help u....:thumbup:
Code:#!/bin/sh
PW_PATH=/PWServer
echo "=== XAMPP ==="
cd /opt/lampp
./lampp startapache &
sleep 5
echo "Apache Started === DONE =="
echo ""
./lampp startmysql &
sleep 5
echo "MySQL Started === DONE =="
echo ""
echo "=== Jakarta Tomcat ==="
cd /usr/local/jakarta-tomcat-5.5.9/bin
./startup.sh
sleep 5
echo "Iweb Started === DONE =="
echo ""
cd /PWServer
if [ ! -d $PW_PATH/logs ]; then
mkdir $PW_PATH/logs
fi
echo "LOGSERVICE"
cd $PW_PATH/logservice; ./logservice logservice.conf >$PW_PATH/logs/logservice.log &
sleep 2
echo "DONE!"
echo ""
echo "UNIQUENAMED"
cd $PW_PATH/uniquenamed; ./uniquenamed gamesys.conf >$PW_PATH/logs/uniquenamed.log &
sleep 3
echo "DONE!"
echo ""
echo "=== AUTH ==="
cd $PW_PATH/authd/; ./authd & >$PW_PATH/logs/authd.log &
sleep 10
echo "=== DONE! ==="
echo ""
echo "GAMEDBD"
cd $PW_PATH/gamedbd; ./gamedbd gamesys.conf >$PW_PATH/logs/gamedbd.log &
sleep 5
echo "DONE!"
echo ""
echo "GACD"
cd $PW_PATH/gacd; ./gacd gamesys.conf >$PW_PATH/logs/gacd.log &
sleep 5
echo "DONE!"
echo ""
echo "GFACTIOND"
cd $PW_PATH/gfactiond; ./gfactiond gamesys.conf >$PW_PATH/logs/gfactiond.log &
sleep 5
echo "DONE!"
echo ""
echo "GDELIVERYD"
cd $PW_PATH/gdeliveryd; ./gdeliveryd gamesys.conf >$PW_PATH/logs/gdeliveryd.log &
sleep 5
echo "DONE!"
echo ""
echo "GLINKD"
cd $PW_PATH/glinkd; ./glinkd gamesys.conf 1 >$PW_PATH/logs/glink.log &
cd $PW_PATH/glinkd; ./glinkd gamesys.conf 2 >$PW_PATH/logs/glink2.log &
cd $PW_PATH/glinkd; ./glinkd gamesys.conf 3 >$PW_PATH/logs/glink3.log &
cd $PW_PATH/glinkd; ./glinkd gamesys.conf 4 >$PW_PATH/logs/glink4.log &
sleep 10
echo "DONE!"
echo ""
echo "MAIN WORLD"
cd $PW_PATH/gamed; ./gs gs01 >$PW_PATH/logs/game1.log &
sleep 30
echo "DONE!"
echo ""
echo "OTHER WORLD"
./gs arena01 >$PW_PATH/logs/game_all.log &
sleep 10
echo "ARENA1 DONE!"
echo ""
./gs arena02 >$PW_PATH/logs/game_all.log &
sleep 10
echo "ARENA2 DONE!"
echo ""
./gs arena03 >$PW_PATH/logs/game_all.log &
sleep 10
echo "ARENA3 DONE!"
echo ""
./gs arena04 >$PW_PATH/logs/game_all.log &
sleep 10
echo "ARENA4 DONE!"
echo ""
./gs is01 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Netherbeast city DONE!"
echo ""
./gs is02 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Heroes Tomb DONE!"
echo ""
./gs is05 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Cave of Fire DONE!"
echo ""
./gs is06 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Wolf Den DONE!"
echo ""
./gs is07 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Scorpion Cave DONE!"
echo ""
./gs is08 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Green Shirt Tomb DONE!"
echo ""
./gs is09 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Haunted Grotto DONE!"
echo ""
./gs is10 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Frozen Realm DONE!"
echo ""
./gs is11 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Valley of Disaster DONE!"
echo ""
./gs is12 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Forest Ruins DONE!"
echo ""
./gs is13 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Realm of Ghost DONE!"
echo ""
./gs is14 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Gate of Wright DONE!"
echo ""
./gs is15 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Cave of Treasures DONE!"
echo ""
./gs is16 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Heavenly Illusion DONE!"
echo ""
./gs is17 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Devil's Illusion DONE!"
echo ""
./gs is18 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Dragon Palace DONE!"
echo ""
./gs is19 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Weeping Isle DONE!"
echo ""
./gs is20 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Snakes Island DONE!"
echo ""
./gs is21 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Celestial World DONE!"
echo ""
./gs is22 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Demon World DONE!"
echo ""
./gs is23 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Purgatory of Heaven DONE!"
echo ""
./gs is24 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Devil's Arcadia DONE!"
echo ""
./gs is25 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Misty City DONE!"
echo ""
./gs is26 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Residence of Basphemy DONE!"
echo ""
./gs is27 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Crescent Valley DONE!"
echo ""
./gs is28 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Godless Valley DONE!"
echo ""
./gs is29 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Ultimate Destination DONE!"
echo ""
./gs is30 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Black Sand Palace DONE!"
echo ""
./gs is31 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Holy Hall of Dusk DONE!"
echo ""
./gs bg01 >$PW_PATH/logs/game_all.log &
sleep 10
echo "BattleGround 1 DONE!"
echo ""
./gs bg02 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Battle Ground 2 DONE!"
echo ""
./gs bg03 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Battle Ground 3 DONE!"
echo ""
./gs bg04 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Battle Ground 4 DONE!"
echo ""
./gs bg05 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Battle Ground 5 DONE!"
echo ""
./gs bg06 >$PW_PATH/logs/game_all.log &
sleep 10
echo "Battle Ground 6 DONE!"
echo ""
echo "***************************************"
echo "** All Load, Now Start The Game [LancerEvoIV] **"
echo "***************************************"
ty very much work ^^