Map Gives Error

Post your scripting questions / solutions here

Moderator: Moderators

Post Reply
User avatar
PetSeL
Lance Corporal
Posts: 11
Joined: Sun Jan 06, 2008 9:23 am

Map Gives Error

Post by PetSeL »

hi,

I got a certain problem with a map script (crashes server) but i'm not sure what causes it...

------
Server: dm/mohdm6
Warning: cvar "sv_maxclients" given initial values: "1" and "32"
Cvar_Set2: sv_running 1
------ Unloading fgameded.so ------

------- Attempting to load /home/games/mohaa/Server1/MOHAA/fgameded.so -------
Load of "/home/games/mohaa/Server1/MOHAA/fgameded.so" failed!
Reason: "/home/games/mohaa/Server1/MOHAA/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
Warning: cvar "fs_userpath" given initial values: "/root/.mohaa" and "."
------- Attempting to load /root/.mohaa/fgameded.so -------
Load of "/root/.mohaa/fgameded.so" failed!
Reason: "/root/.mohaa/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
LoadLibrary("fgameded.so") failed
...reason: '(null)'
Cvar_Set2: com_errorMessage Couldn't load game
----- Server Shutdown -----
------ Unloading fgameded.so ------
Cvar_Set2: sv_running 0
---------------------------
Red marked is the error i think...

Also important to known is that I run the map obj/obj_team2 and NOT dm/mohdm6.. that's why i don't understand that error..

Can somebody help me out on this?
User avatar
tltrude
Chuck Norris
Posts: 4774
Joined: Sun Jul 07, 2002 4:03 am
Location: Oklahoma, USA
Contact:

server

Post by tltrude »

My guess would be that you're trying to run an objective game on a deathmatch only server.
Tom Trude,

Image
Rookie One.pl
Site Admin
Posts: 2752
Joined: Fri Jan 31, 2003 7:49 pm
Location: Nowa Wies Tworoska, Poland
Contact:

Re: Map Gives Error

Post by Rookie One.pl »

Nope. I highlighted the real error.
Server: dm/mohdm6
Warning: cvar "sv_maxclients" given initial values: "1" and "32"
Cvar_Set2: sv_running 1
------ Unloading fgameded.so ------
------- Attempting to load /home/games/mohaa/Server1/MOHAA/fgameded.so -------
Load of "/home/games/mohaa/Server1/MOHAA/fgameded.so" failed!
Reason: "/home/games/mohaa/Server1/MOHAA/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
Warning: cvar "fs_userpath" given initial values: "/root/.mohaa" and "."
------- Attempting to load /root/.mohaa/fgameded.so -------
Load of "/root/.mohaa/fgameded.so" failed!
Reason: "/root/.mohaa/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
LoadLibrary("fgameded.so") failed
...reason: '(null)'

Cvar_Set2: com_errorMessage Couldn't load game
----- Server Shutdown -----
------ Unloading fgameded.so ------
Cvar_Set2: sv_running 0
---------------------------
You're running a Linux server I see, and the server executable can't find the game library. Make sure the fgameded.so file is in one of the paths highlighted in yellow. Is this server rented or you set it up yourself?
Admin
Image
Image
Honour guide me.

here's my stuff - inequation.org | here's where I work - thefarm51.com
User avatar
PetSeL
Lance Corporal
Posts: 11
Joined: Sun Jan 06, 2008 9:23 am

Re: server

Post by PetSeL »

tltrude wrote:My guess would be that you're trying to run an objective game on a deathmatch only server.
Nope

I run Objective with ext.gametype ftobj
User avatar
PetSeL
Lance Corporal
Posts: 11
Joined: Sun Jan 06, 2008 9:23 am

Re: Map Gives Error

Post by PetSeL »

Rookie One.pl wrote:Nope. I highlighted the real error.
Server: dm/mohdm6
Warning: cvar "sv_maxclients" given initial values: "1" and "32"
Cvar_Set2: sv_running 1
------ Unloading fgameded.so ------
------- Attempting to load /home/games/mohaa/Server1/MOHAA/fgameded.so -------
Load of "/home/games/mohaa/Server1/MOHAA/fgameded.so" failed!
Reason: "/home/games/mohaa/Server1/MOHAA/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
Warning: cvar "fs_userpath" given initial values: "/root/.mohaa" and "."
------- Attempting to load /root/.mohaa/fgameded.so -------
Load of "/root/.mohaa/fgameded.so" failed!
Reason: "/root/.mohaa/fgameded.so: cannot open shared object file: No such file or directory".
------- Attempting to load ./fgameded.so -------
Load of "./fgameded.so" failed!
Reason: "./fgameded.so: cannot open shared object file: No such file or directory".
LoadLibrary("fgameded.so") failed
...reason: '(null)'

Cvar_Set2: com_errorMessage Couldn't load game
----- Server Shutdown -----
------ Unloading fgameded.so ------
Cvar_Set2: sv_running 0
---------------------------
You're running a Linux server I see, and the server executable can't find the game library. Make sure the fgameded.so file is in one of the paths highlighted in yellow. Is this server rented or you set it up yourself?
So i should put it in my main folder? That Could be the problem..
And Yes the server is rented
Rookie One.pl
Site Admin
Posts: 2752
Joined: Fri Jan 31, 2003 7:49 pm
Location: Nowa Wies Tworoska, Poland
Contact:

Post by Rookie One.pl »

Does the server work at all (i.e. on other maps)? Because if it does, then the problem may be somewhat complex. If it doesn't, poke your server administrator because they f**ked up the game install.

The file should be in the same directory as the server executable, i.e. the mohaa_lnxded file (as far as I can remember; I use Linux but I have only the client installed and can't remember what the name of the dedicated server executable was).
Admin
Image
Image
Honour guide me.

here's my stuff - inequation.org | here's where I work - thefarm51.com
User avatar
PetSeL
Lance Corporal
Posts: 11
Joined: Sun Jan 06, 2008 9:23 am

Post by PetSeL »

Rookie One.pl wrote:Does the server work at all (i.e. on other maps)? Because if it does, then the problem may be somewhat complex. If it doesn't, poke your server administrator because they f**ked up the game install.

The file should be in the same directory as the server executable, i.e. the mohaa_lnxded file (as far as I can remember; I use Linux but I have only the client installed and can't remember what the name of the dedicated server executable was).
file is in the correct folder..
but didn't had the "issue" the last week so i guess the problem is solved...
if not i will get back here..

thx for the help and info
Post Reply