onResourcePreStart | Multi Theft Auto: Wiki Skip to content

onResourcePreStart

Client-side
Server-side
Shared

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

This event isn't triggered within the resource starting.

Parameters

resource startingResource
  • startingResource: the resource that is starting.

Source

element: The source of this event is the root element.

Canceling

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

Code Examples

server

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

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