Jump to content

help


Flipi

Recommended Posts

The error tells you that the scoreboard is not running, it's occurs on the server startup because you have put your resource to start before the scoreboard in mtaserver.conf so all you have to do is move the line from its place.

Example:

"YourResourceName" startup="1" protected="0" /> 
"scoreboard" startup="1" protected="0" /> 

Should be:

"scoreboard" startup="1" protected="0" /> 
"YourResourceName" startup="1" protected="0" /> 

Link to comment

Error is simple to understand... The resource with exported function (scoreboard) is not running. You have to start scoreboard resource before you call its exported function.

You can automatically start the resource by including it in the meta.xml

<include resource="scoreboard" /> 

Link to comment
Error is simple to understand... The resource with exported function (scoreboard) is not running. You have to start scoreboard resource before you call its exported function.

You can automatically start the resource by including it in the meta.xml

<include resource="scoreboard" /> 

oks thanks :D!

Link to comment
The error tells you that the scoreboard is not running, it's occurs on the server startup because you have put your resource to start before the scoreboard in mtaserver.conf so all you have to do is move the line from its place.

Example:

"YourResourceName" startup="1" protected="0" /> 
"scoreboard" startup="1" protected="0" /> 

Should be:

"scoreboard" startup="1" protected="0" /> 
"YourResourceName" startup="1" protected="0" /> 

thanks man :)!

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...