XmlCreateSubNode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Server client function}} This function returns a named sub node of a particular XML node. ==Syntax== <syntaxhighlight lang="lua">xmlnode xmlCreateSubNode ( xmlnode, tagname )</syntaxhighlight> ===Requir...)
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Needs_Checking| afaik this is a server only function. i think kev never added it clientside --[[User:Talidan2|Talidan2]] 12:10, 19 October 2007 (CDT) }}
{{Server client function}}
{{Server client function}}
This function returns a named sub node of a particular XML node.
This function returns a named sub node of a particular XML node.

Revision as of 17:10, 19 October 2007


Dialog-information.png This article needs checking.

Reason(s): afaik this is a server only function. i think kev never added it clientside --Talidan2 12:10, 19 October 2007 (CDT)

This function returns a named sub node of a particular XML node.

Syntax

xmlnode xmlCreateSubNode ( xmlnode, tagname )

Required Arguments

  • argumentName: description

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.

  • argumentName2: description
  • argumentName3: description

Returns

Returns a table of resources.

Example

This function lists all loaded resources in the console.

function blabla ()
     --this does blabla
end

See Also