XmlNodeSetAttribute: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 17: | Line 17: | ||
==Example== | ==Example== | ||
<section name="Server" class="server" show="true"> | |||
In a gamemode, we want a command to change the marker color in the configuration file. | In a gamemode, we want a command to change the marker color in the configuration file. | ||
Line 38: | Line 39: | ||
Note that this example only changes the in-memory XML document. If you want to save the changed document back to the hard drive, use [[xmlSaveFile]]. | Note that this example only changes the in-memory XML document. If you want to save the changed document back to the hard drive, use [[xmlSaveFile]]. | ||
</section> | |||
==See Also== | ==See Also== |
Revision as of 15:10, 21 August 2007
This function is used to edit an attribute of a node in a configuration file.
Syntax
bool xmlNodeSetAttribute ( xmlnode node, string name, var value )
Required Arguments
- node: The node of which you wish to edit an attribute.
- name: The name of the attribute.
- value: The value which you wish to change the attribute to.
Returns
Returns true if the attribute was set successfully, false if the node and/or attribute do not exist, or if they're faulty.
Example
Click to collapse [-]
ServerIn a gamemode, we want a command to change the marker color in the configuration file.
config.xml:
<config> <markers color="255,100,0" /> </config>
Lua code:
config = xmlLoadFile("config.xml") function changeConfigMarkerColor(thePlayer, command, r, g, b) local markernode = xmlFindSubNode(config, "markers", 0) xmlNodeSetAttribute(markernode, "color", r .. "," .. g .. "," .. b) end addCommandHandler("markercolor", changeConfigMarkerColor)
Note that this example only changes the in-memory XML document. If you want to save the changed document back to the hard drive, use xmlSaveFile.