Jump to content

help


Flipi

Recommended Posts

Posted

Hi, i need help with the resource.

Screen: http://img823.imageshack.us/img823/7056/p1vw.png

Server:

exports.scoreboard:addScoreboardColumn('Estado', getRootElement(), 9, 0.10) 
  
addEvent('StatusScoreBoard',true) 
addEventHandler('StatusScoreBoard',root, 
function( Status ) 
    if ( Status ) then 
        setElementData(client,'Estado',tostring(Status)) 
        end 
    end 
) 

Posted

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" /> 

Posted

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" /> 

Posted
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!

Posted
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 :)!

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