AddResourceMap: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Changed position of the last note I added.)
mNo edit summary
Line 1: Line 1:
{{Server function}}
{{Server function}}
{{Needs Example}}
__NOTOC__
__NOTOC__
This function adds a new empty mapfile to an existing resource.
This function adds a new empty mapfile to an existing resource.
Line 24: Line 25:


==Example==
==Example==
[[Category:Needs Example]]


==See Also==
==See Also==
{{Resource_functions}}
{{Resource_functions}}

Revision as of 13:24, 12 November 2011

Accessories-text-editor.png Script Example Missing Function AddResourceMap needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


This function adds a new empty mapfile to an existing resource.


Syntax

xmlnode addResourceMap ( string filePath, [ int dimension = 0 ] )

Required Arguments

  • filePath: The filepath of the resource map in the following format: ":resourceName/path". 'resourceName' is the name of the resource the map file will be in, and 'path' is the path from the root directory of the resource to the file.
For example, if you want to create a map file named 'manycars.map' in the resource 'cdm', it can be created from another resource this way: addResourceMap(":cdm/manycars.map").
If you want to create the map file in the current resource, only the file path is necessary, e.g. addResourceMap("manycars.map").

NOTE: You can't add a map to a running resource.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • dimension: the dimension in which the map's objects will be placed.

Returns

Returns the new map's root xmlnode if the map was added successfully, false otherwise.

Example

See Also