OnMapLoad

From Multi Theft Auto: Wiki
Revision as of 17:21, 13 February 2007 by Jbeta (talk | contribs)
Jump to navigation Jump to search

This event is triggered when a map is loaded.

Syntax

void onMapLoad ( string name )

Variables

  • The source of this event refers to the loaded map.
  • name: A string representing the name of the map

Example

This example displays a message in the textbox when you load a map containing this lua

addEventHandler ( "onMapLoad", getRootElement(), "mapLoadChatBoxOutput" )
function mapLoadChatBoxOutput ( name )
	outputChatBox ( "Map "..name.." Loaded", root, 255, 255, 255 )
end

See Also