All public logs

Jump to navigation Jump to search

Combined display of all available logs of Multi Theft Auto: Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 19:26, 25 April 2023 TFv10 talk contribs created page User:TFv10 (Created page with "* Senior MTA developer * Senior Python developer")
  • 22:18, 11 August 2022 TFv10 talk contribs created page Dgs3DImageIsAttached (Created page with "{{Server client function}} __NOTOC__ <!-- Describe in plain english what this function does. Don't go into details, just give an overview --> This functions checks whether or not an element is attached to another element. ==Syntax== <!-- NOTE: don't use 'special' names for variable names, e.g. you shouldn't be writing things like 'player player, vehicle vehicle', instead write something like 'player thePlayer, vehicle vehicleToGetInto'. This is less confusing and preve...")
  • 22:10, 11 August 2022 TFv10 talk contribs created page Dgs3DImageDetachFromElement (Created page with "__NOTOC__ {{Server client function}} This function detaches attached 3DImageElement from another element. ==Syntax== <syntaxhighlight lang="lua"> bool detachElements ( element the3DImageElement, [ element theAttachToElement ] ) </syntaxhighlight> {{OOP||element:3DImageDetachFromElement||3DImageAttachToElement}} ===Required Arguments=== *'''the3DImageElement:''' The element to be detached (the "child") ===Optional Arguments=== {{OptionalArg}} *'''theAttachToEl...")
  • 21:36, 11 August 2022 TFv10 talk contribs created page Dgs3DImageAttachToElement (Created page with "__NOTOC__ {{Client function}} This function attaches one element to another, so that the first one follows the second whenever it moves. If an attempt is made to attach two elements that are already attached the opposite way (eg theElement becomes theAttachToElement and vice versa), the 1st attachment order is automatically detached in favor of the 2nd attachment order. For example, if carA was attached to carB, now carB is attached to carA. Also, an element cannot be...")
  • 13:54, 26 February 2022 TFv10 talk contribs created page DgsSVGNodeGetAttributes (Created page with "{{Client function}} __NOTOC__ This function gets xmlnode attributes value. ==Syntax== <syntaxhighlight lang="lua"> table dgsSVGNodeSetAttributes( xmlnode xmlNode) </syntaxhighlight> ===Required Arguments=== *'''xmlNode:''' xmlnode That you want to get its attributes and value . ===Optional Arguments=== ===Returns=== * Returns ''true'' if succeed, ''false'' otherwise. ==Example== <section name="Client" class="client" show="true"> <syntaxhighlight lang="lua">...")
  • 13:43, 26 February 2022 TFv10 talk contribs created page DgsSVGNodeSetAttributes (Created page with "{{Client function}} __NOTOC__ This function change xmlnode attributes value. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSVGNodeSetAttributes( xmlnode xmlNode, table attributesANDValue) </syntaxhighlight> ===Required Arguments=== *'''xmlNode:''' xmlnode that you want to change its attributes . *'''attributesANDValue:''' Table that contain attributes and its new value . ===Optional Arguments=== ===Returns=== * Returns ''true'' if succeed, ''false'' otherwi...")
  • 13:31, 26 February 2022 TFv10 talk contribs created page DgsSVGNodeGetAttribute (Created page with "{{Client function}} __NOTOC__ This function change single node attribute in svg document . ==Syntax== <syntaxhighlight lang="lua"> string dgsSVGNodeGetAttribute( xmlnode xmlNode, string attributeName) </syntaxhighlight> ===Required Arguments=== *'''xmlNode:''' The xmlnode you want to change their attribute value. *'''attributeName:''' The attribute name that you want change its value . ===Returns=== * Returns ''string attribute value'' if succeed, ''false'' otherwi...")
  • 13:15, 26 February 2022 TFv10 talk contribs created page DgsSVGNodeSetAttribute (Created page with "{{Client function}} __NOTOC__ This function change single node attribute in svg document . ==Syntax== <syntaxhighlight lang="lua"> bool dgsSVGNodeSetAttribute( xmlnode xmlNode, string attributeName, string value) </syntaxhighlight> ===Required Arguments=== *'''xmlNode:''' The xmlnode you want to change their attribute value. *'''attributeName:''' The attribute name that you want change its value . *'''value:''' The new value for the attribute. ===Returns=== * Retur...")
  • 12:09, 26 February 2022 TFv10 talk contribs created page DgsSVGDestroyNode (Created page with "{{Client function}} __NOTOC__ This function create a node in svg document . ==Syntax== <syntaxhighlight lang="lua"> boolean dgsSVGDestroyNode ( svg svgElement, string nodeType, int width, int height) </syntaxhighlight> ===Required Arguments=== *'''svgElement:''' The svg element you want to get the XML document of. *'''nodeType :''' Node type Available types : '''"rect"''' '''"circle"''' '''"line"''' '''"polygon"''' '''"polyline"''' '''"path"''' '''"ellipse"''' . *...")
  • 11:37, 26 February 2022 TFv10 talk contribs created page DgsSVGCreateNode (Created page with "{{Client function}} __NOTOC__ This function create a node in svg document . ==Syntax== <syntaxhighlight lang="lua"> boolean dgsSVGCreateNode ( svg svgElement, string nodeType, int width, int height) </syntaxhighlight> ===Required Arguments=== *'''svgElement:''' Desired width, preferably power of two (16, 32, 64 etc.), maximum is 4096 *'''nodeType :''' Node type Types : * rect * circle * line * polygon * polyline * path * ellipse *'''widt...")
  • 11:09, 26 February 2022 TFv10 talk contribs created page DgsSVGGetDocument (Created page with "{{Client function}} __NOTOC__ Gets the underlying XML document from an SVG element. ==Syntax== <syntaxhighlight lang="lua"> xmlnode dgsSVGGetDocument( svg svgElement ) </syntaxhighlight> ===Required Arguments=== *'''svgElement:''' The svg element you want to get the XML document of. ===Returns=== * Returns an xmlnode if successful, false otherwise ==Example== <section name="Client" class="client" show="true"> <syntaxhighlight lang="lua"> loadstring(exports.d...")
  • 17:32, 25 February 2022 TFv10 talk contribs created page DgsCreateSVG (Syntax)
  • 15:39, 25 February 2022 User account TFv10 talk contribs was created