OnResourcePreStart: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
{{See also/Server event|Resource events}}
===Resource events===
{{Resource_events}}
===Event functions===
{{Event functions}}

Revision as of 03:04, 27 September 2018

Analogous to onResourceStart, but triggered before script files are initialised.

[[{{{image}}}|link=|]] Note: This event isn't triggered within the resource starting.

Parameters

resource startingResource
  • startingResource: the resource that is starting.

Source

The source of this event is the root element.

Cancel effect

If this event is cancelled, the resource won't begin starting.

Example

This code will output the name of any resource that is starting.

function displayStartingRes ( res )
	outputChatBox ( "Resource " .. getResourceName(res) .. " is going to start", getRootElement(), 255, 255, 255 )
end
addEventHandler ( "onResourcePreStart", getRootElement(), displayStartingRes )

See Also

Resource events


Event functions