Jump to content

Stopping resource when starting another


Lovinglife

Recommended Posts

If I remember correctly... you have to give the resource the correct ACL permissions.

ill check...waiting 4 more answers

Yes, a resource needs rights to stopResource function, otherwise it will not work and will print error in console/debug window.

addEventHandler( "onResourceStart", getResourceRootElement(),
function( )
local resToStop = getResorceFromName( "mapmanager" );
if resToStop then
stopResource( resToStop );
end
end
)

Link to comment
If I remember correctly... you have to give the resource the correct ACL permissions.

ill check...waiting 4 more answers

Yes, a resource needs rights to stopResource function, otherwise it will not work and will print error in console/debug window.

addEventHandler( "onResourceStart", getResourceRootElement(),
function( )
local resToStop = getResorceFromName( "mapmanager" );
if resToStop then
stopResource( resToStop );
end
end
)

uhmmm i doesnt work for me

Link to comment

try to put a timer, because functions that are attached to onResourceStart sometimes doesnt fire in this event immediately.

I mean

addEventHandler( "onResourceStart", getResourceRootElement(),
function( )
setTimer( function()
local resToStop = getResorceFromName( "mapmanager" );
if resToStop then
stopResource( resToStop );
end
end, 100, 1 );
end
)

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