XmlLoadFile

From Multi Theft Auto: Wiki
Revision as of 18:26, 5 September 2007 by Talidan (talk | contribs)
Jump to navigation Jump to search

This function provides an alternative way to load XML files to getResourceConfig. This function loads an XML file and returns the node by specifying a specific file path, while getResourceConfig allows for loading an XML file from a resource.

Syntax

Click to collapse [-]
Server
xmlnode xmlLoadFile ( string filename )              

Required Arguments

  • filename: The path to the file you wish to load. This can be an absolute file path, or relative to the server directory.
Click to collapse [-]
Client
xmlnode xmlLoadFile ( string filename )              

Required Arguments

  • filename: The path to the file you wish to load. This can be an absolute file path, or relative to the Grand Theft Auto San Andreas installation directory..

Returns

Returns the root xmlnode object of an xml file if successful, or false otherwise.

Example

This example loads an XML file called test.xml.

node = xmlLoadFile ( "test.xml" )

See Also