OnResourceStop

From Multi Theft Auto: Wiki
Revision as of 03:32, 5 July 2007 by Xanarki (talk | contribs)
Jump to navigation Jump to search

This event is triggered when the resource is changed or unloaded.

Example

This example displays a message in the textbox when the resource is changed / unloaded


addEventHandler ( "onResourceStop", root, "onResourceStop" )
function onResourceStop ( )
  outputChatBox ( "Script Unloaded!", root, 255, 255, 255 )
end