Jump to content

cant open server


Recommended Posts

well it opens my map now , so thanks so far , but it still wont load scripts , it says resource not found.

look at my meta files tell me if I did something wrong (also look at pics)

<meta> 
    <info author="HeArTBeaT" type="server" name="Fallout San Andreas" description="multi mode wasteland roleplay" /> 
    <script src="client.lua" type="client"/> 
    <map src="FalloutLosSantos.map" type="map" /> 
    <map dimension="0" src="FalloutLosSantos.map"/> 
    <file src="images/info.png" /> 
    <file src="images/language/eng.png" /> 
    <file src="images/language/ger.png" /> 
</meta> 

And this is the map meta

<meta> 
    <info type="map" name="FalloutLosSantos" author="HeArTBeaT[TBT]" version="1.0.0" description="Team Death Match , Teritory war , Capture The Flag"></info> 
    <map src="FalloutLosSantos.map" dimension="0"></map> 
    <settings> 
        <setting name="#minplayers" value="[ 0 ]"></setting> 
        <setting name="#maxplayers" value="[ 128 ]"></setting> 
        <setting name="#gravity" value="[ 0.008000 ]"></setting> 
        <setting name="#weather" value="[ 0 ]"></setting> 
        <setting name="#time" value="11:0"></setting> 
        <setting name="#locked_time" value="[ true ]"></setting> 
        <setting name="#waveheight" value="[ 0 ]"></setting> 
        <setting name="#gamespeed" value="[ 1 ]"></setting> 
    </settings> 
    <script src="mapEditorScriptingExtension_s.lua"></script> 
</meta> 
  

and these pics to see the files:

from script

newbitmapimagec.bmp

From map

newbitmapimage2vr.png

when I use start falloutlossantos to open the map it works without problems now.

but when I try to use start falloutscript it says resource could not be found.

any solutions please? :?:

Edited by Guest
Link to comment
In your script folder you have called the meta.xml file mta.xml - Thats whats causing the problem.

@Wadamde, the file he saved was "mta.txt" not "mta.xml", lol minor mistake, who cares..

HeArTBeaT, tell us if the situation is resolved please.

Link to comment
In your script folder you have called the meta.xml file mta.xml - Thats whats causing the problem.

@Wadamde, the file he saved was "mta.txt" not "mta.xml", lol minor mistake, who cares..

HeArTBeaT, tell us if the situation is resolved please.

Not that it really matters, but where do you see ".txt" ?

Link to comment
In your script folder you have called the meta.xml file mta.xml - Thats whats causing the problem.

@Wadamde, the file he saved was "mta.txt" not "mta.xml", lol minor mistake, who cares..

HeArTBeaT, tell us if the situation is resolved please.

Not that it really matters, but where do you see ".txt" ?

Here:

newbitmapimagec.bmp

Link to comment
well it opens my map now , so thanks so far , but it still wont load scripts , it says resource not found.

look at my meta files tell me if I did something wrong (also look at pics)

<meta> 
    <info author="HeArTBeaT" type="server" name="Fallout San Andreas" description="multi mode wasteland roleplay" /> 
    <script src="client.lua" type="client"/> 
    <map src="FalloutLosSantos.map" type="map" /> 
    <map dimension="0" src="FalloutLosSantos.map"/> 
    <file src="images/info.png" /> 
    <file src="images/language/eng.png" /> 
    <file src="images/language/ger.png" /> 
</meta> 

And this is the map meta

<meta> 
    <info type="map" name="FalloutLosSantos" author="HeArTBeaT[TBT]" version="1.0.0" description="Team Death Match , Teritory war , Capture The Flag"></info> 
    <map src="FalloutLosSantos.map" dimension="0"></map> 
    <settings> 
        <setting name="#minplayers" value="[ 0 ]"></setting> 
        <setting name="#maxplayers" value="[ 128 ]"></setting> 
        <setting name="#gravity" value="[ 0.008000 ]"></setting> 
        <setting name="#weather" value="[ 0 ]"></setting> 
        <setting name="#time" value="11:0"></setting> 
        <setting name="#locked_time" value="[ true ]"></setting> 
        <setting name="#waveheight" value="[ 0 ]"></setting> 
        <setting name="#gamespeed" value="[ 1 ]"></setting> 
    </settings> 
    <script src="mapEditorScriptingExtension_s.lua"></script> 
</meta> 
  

and these pics to see the files:

from script

......

From map

......

when I use start falloutlossantos to open the map it works without problems now.

but when I try to use start falloutscript it says resource could not be found.

any solutions please? :?:

Your folloutscript meta.xml contains inclusion of files that do not exists in the falloutscript folder.

When you start/refresh the server and the resource can't be found when starting it, you have got a problem with meta.xml. So, first thing you do is validate the xml file (copy all the content of the file and use XML Validator), if you won't get any xml format problems then check if the files that you include actually exists in the resource folder/subfolders (whatever the path you used as src attribute).

In your meta.xml you have these 2 lines:

     <map src="FalloutLosSantos.map" type="map" /> 
    <map dimension="0" src="FalloutLosSantos.map"/> 

Both of these lines are pointless since you don't have the .map file in the same folder as meta.xml (that's the src is pointing) bysides, type="map" also has no use since nodes only supports 2 attributes (src and dimension). So remove the 2 lines and try again. If you want falloutscript to start with the FalloutLosSantos map then include "falloutscript" resource inside the FalloutLosSantos map's meta.xml as:

<include resource="falloutscript" /> 

Link to comment

Actually, I've just noticed something in your meta script.

Try this:

>    author="HeArTBeaT" type="script" name="Fallout San Andreas" description="multi mode wasteland roleplay" />    ="client.lua" type="client"/>    src="FalloutLosSantos.map" dimension="0"/>     src="images/info.png" />    src="images/language/eng.png" />    src="images/language/ger.png" />>

Link to comment

JEEEZE, You keep putting something else instead of the correct type...

change this line:

author="HeArTBeaT" type="client" name="Fallout San Andreas" description="script" />

to this:

author="HeArTBeaT" type="script" name="Fallout San Andreas" description="script" />

and please read more on meta.xml

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...