Samuel Posted August 19, 2014 Posted August 19, 2014 Hola Tengo problemas al tratar de compilar Me muestra el siguiente error Alguna idea SO: Centos 6.5 64 Emulador: rAthena Gracias Quote
Zikoziz Posted September 2, 2014 Posted September 2, 2014 Hola mira intenta primero usa ./configure Make clean Make sql Si no te deja usarlo intenta agregando esto---> chmod 777 usalo antes de utilziar el comando ejemplochmod777 make clean --> lo usas solo una ves luego te tomara el comando, si los problemas sigen y ya utilizaste los chmod777 , abres tu archivo athena-start y lo remplazas por esto: #!/bin/sh # athena starting script by rowla # modified by [email protected] (NL101541) PATH=./:$PATH L_SRV=login-server C_SRV=char-server M_SRV=map-server print_start() { # more << EOF echo "Athena Starting..." echo " (c) 2003 Athena Project" echo " modified by [email protected]" echo "" #echo "Debug informations will appear," #echo "since this is a test release." #echo "" echo "checking..." #EOF } check_files() { for i in ${L_SRV} ${C_SRV} ${M_SRV} do if [ ! -f ./$i ]; then echo "$i does not exist, or can't run." echo "Stop. Check your compile." exit 1; fi done # more << EOF echo "Check complete." echo "Looks good, a nice Athena!" #EOF } case $1 in 'start') print_start check_files exec .{L_SRV}& exec .{C_SRV}& exec .{M_SRV}& echo "Now Started Athena." ;; 'stop') ps ax | grep -E "${L_SRV}|${C_SRV}|${M_SRV}" | awk '{print $1}' | xargs kill ;; 'restart') $0 stop $0 start ;; *) echo "Usage: athena-start { start | stop | restart }" ;; esac Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.