Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

Problem z serwerem


Rekomendowane odpowiedzi

Opublikowano

­Witam

 

Mam taki oto problem gdy wrzuciłem pliki na freebsd takiniesmiałego

 

wszystko ładnie działa dodałem GM i zrobiłem reset po wpisaniu /start wpisuje ps -x albo ps wszystko jest prócz ./auth (game) od logowania nie wiem

dlaczego się tak dzieje

 

banner.png

Opublikowano

­sysser z ch1

 

SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_warrior/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_mage/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_argus/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_soldier/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_mage/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_warrior/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:20 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 20 20:46:21 :: heart_idle: losing 34 seconds. (lag occured)
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_warrior/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_mage/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/troll_argus/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_soldier/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_mage/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_warrior/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:10 :: LoadMotion: cannot find accumulation data in file 'data/monster/naga_commander/run.msa'
SYSERR: Feb 21 00:03:11 :: heart_idle: losing 41 seconds. (lag occured)

 

I plik start.sh

#!/bin/sh

echo -e "\033[31m Ile channeli chcesz uruchomic? Max 4. \033[0m"

read select
case $select in
1*)
    echo -e "\033[31m Odpalanie db ..\033[0m"
    cd ./db/
    ./db &
    sleep 2
    echo -e "\033[31m \n Odpalanie auth ..\033[0m"
    cd ../auth
    ./auth &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch1 ..\033[0m"
    cd ../ch1/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie game ..\033[0m"
    cd ../game/
    ./game &
    sleep 2
    clear
;;
2*)
    echo -e "\033[31m Odpalanie db ..\033[0m"
    cd ./db/
    ./db &
    sleep 2
    echo -e "\033[31m \n Odpalanie auth ..\033[0m"
    cd ../auth
    ./auth &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch1 ..\033[0m"
    cd ../ch1/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch2 ..\033[0m"
    cd ../ch2/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie game ..\033[0m"
    cd ../game/
    ./game &
    sleep 2
    clear
;;
3*)
    echo -e "\033[31m Odpalanie db ..\033[0m"
    cd ./db/
    ./db &
    sleep 2
    echo -e "\033[31m \n Odpalanie auth ..\033[0m"
    cd ../auth
    ./auth &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch1 ..\033[0m"
    cd ../ch1/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch2 ..\033[0m"
    cd ../ch2/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch3 ..\033[0m"
    cd ../ch3/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie game ..\033[0m"
    cd ../game/
    ./game &
    sleep 2
    clear
;;
4*)
    echo -e "\033[31m Odpalanie db ..\033[0m"
    cd ./db/
    ./db &
    sleep 2
    echo -e "\033[31m \n Odpalanie auth ..\033[0m"
    cd ../auth
    ./auth &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch1 ..\033[0m"
    cd ../ch1/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch2 ..\033[0m"
    cd ../ch2/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch3 ..\033[0m"
    cd ../ch3/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie ch4 ..\033[0m"
    cd ../ch4/
    ./game &
    sleep 2
    echo -e "\033[31m \n Odpalanie game ..\033[0m"
    cd ../game/
    ./game &
    sleep 2
    clear
;;
esac

 

A tu masz jak wpisuje ps-x

 

wsTg.png

banner.png

Opublikowano

­no odpala mi jakiś plik w notepad++


ale teraz jest tak zrobiłęm reboot i teraz odpaliło serwer a jak wyłącze maszyne i włączę maszynę to znowu nie bd działać xD

banner.png

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...