08-27-2013, 09:41 PM
Hey Guys i search a working .startService.sh for EP1 Linux Files ...
i tried
#!/bin/sh
cd Connector;
./start;
sleep 5;
cd ../../;
cd Helper;
./start;
sleep 5;
cd ../../;
cd Messenger;
./start;
sleep 5;
cd ../../;
cd GameServer;
./start;
sleep 5;
cd ../../;
cd LoginServer;
./start;
sleep 5;
but it gives me this
[root@kd27358 ~]# cd /home/LastChaos
[root@kd27358 LastChaos]# ./startService.sh
cp: cannot stat `../../new/Connector: No such file or directory
Loading Setting File...
LastChaos Connector Running... (Language:Korean)
./startService.sh: line 9: cd: Helper: No such file or directory
./startService.sh: line 10: ./start: No such file or directory
./startService.sh: line 14: cd: Messenger: No such file or directory
./startService.sh: line 15: ./start: No such file or directory
./startService.sh: line 19: cd: GameServer: No such file or directory
./startService.sh: line 20: ./start: No such file or directory
./startService.sh: line 24: cd: LoginServer: No such file or directory
./startService.sh: line 25: ./start: No such file or directory
can any1 help me ?

