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).
- 05:36, 7 February 2022 Thisdp talk contribs created page DgsScrollBarSetTroughWidth (Created page with "{{client function}} This function changes the width of trough. ==Syntax== <syntaxhighlight lang="lua"> bool dgsScrollBarSetTroughWidth( element scrollBar, float width [, bool relative ] ) </syntaxhighlight> thumb|DGS Scroll Detail ===Required Arguments=== *'''scrollBar:''' The dgs scrollbar you want to set cursor width to. *'''width:''' A number of the width of scroll bar's trough. ===Optional Arguments=== *'''relative:''' This is wh...")
- 22:34, 6 February 2022 Lettify talk contribs created page DgsCreateChart (Created page with "__NOTOC__ {{Client function}} {{Needs Example|dgsCreateChart}} This function creates a data chart. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateChart ( float x, float y, float width, float height, string chartType, bool relative [, element parent = nil ] ) </syntaxhighlight> ===Required Arguments=== 400px|thumb|Chart Example. *'''x:''' A float of the 2D x position of the chart on a player's screen. This is affected by the ''rel...")
- 22:27, 6 February 2022 Lettify talk contribs created page File:Chart example.png
- 22:27, 6 February 2022 Lettify talk contribs uploaded File:Chart example.png
- 20:20, 6 February 2022 User account ParsaWarrioR talk contribs was created
- 12:49, 6 February 2022 Thisdp talk contribs created page Template:DGS Plugin/SVG (Created page with " *dgsCreateSVG *dgsSVGGetContent *dgsSVGCreateNode *dgsSVGDestroyNode *dgsSVGNodeSetAttribute *dgsSVGNodeGetAttribute *dgsSVGNodeSetAttributes *dgsSVGNodeGetAttributes")
- 12:48, 6 February 2022 Thisdp talk contribs created page Template:DGS Plugin/Chart (Created page with "*dgsCreateChart *dgsChartAddDataset *dgsChartRemoveDataset *dgsChartSetLabels *dgsChartDatasetSetStyle *dgsChartDatasetSetLabel *dgsChartDatasetSetData *dgsChartDatasetAddData *dgsChartDatasetRemoveData *dgsChartDatasetClearData")
- 18:34, 5 February 2022 User account ABDALLUH talk contribs was created
- 17:08, 5 February 2022 Tracer talk contribs created page Template:AnimationList (Created page with "<syntaxhighlight lang="lua"> local animations = { airport = {"thrw_barl_thrw"}, attractors = { "stepsit_in", "stepsit_loop", "stepsit_out" }, bar = { "barcustom_get", "barcustom_loop", "barcustom_order", "barman_idle", "barserve_bottle", "barserve_give", "barserve_glass", "barserve_in", "barserve_loop", "barserve_order", "dnk_stndf_loop", "dnk_stndm_loop" }, baseball = { "bat_1", "bat_2",...")
- 15:49, 5 February 2022 User account Deadly.blu talk contribs was created
- 16:04, 4 February 2022 Tracer talk contribs created page Template:Not Supported (Created page with "{{MessageBox| bordercolorhex = 333333 | bgcolorhex = FFBFBF | image = File:Emblem-important.png | message = This {{#ifeq: {{padleft:|2|{{lc:{{PAGENAME}}}}}}|on|event|function}} is not supported anymore. | subtext = {{ #if: {{{1|}}} | Please use [[{{{1}}}]] instead. {{{2|}}} }} | }}")
- 23:53, 3 February 2022 User account EnesYasin talk contribs was created
- 19:22, 3 February 2022 User account Seu Ze talk contribs was created
- 17:51, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/getNodeNeighbors (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function gets "neighbours" of a certain node. ==Syntax== <syntaxhighlight lang="c++"> table getNodeNeighbors(int graphId, int nodeId, int depth) </syntaxhighlight> ===Required arguments=== * '''graphId:''' The id of the graph * '''nodeId:''' The id of the start node * '''depth:''' The depth of the node neighbors ===Returns=== Returns '''4 integers'''...")
- 17:50, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/findNodeAt (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function searches for certain node. ==Syntax== <syntaxhighlight lang="c++"> int, float, float, float findNodeAt(int graphId, float positionX, float positionY, float positionZ) </syntaxhighlight> ===Required arguments=== * '''graphId:''' The id of the graph * '''positionX, positionY, positionZ:''' The postion where to search for a node ===Returns=== Re...")
- 17:49, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/isGraphLoaded (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function checks if the graph is already loaded. ==Syntax== <syntaxhighlight lang="c++"> bool isGraphLoaded(int graphId) </syntaxhighlight> ===Required arguments=== * '''graphId:''' The id of the graph ===Returns=== Returns '''true''' if the graph is already loaded, '''false''' otherwise. ==Example== <!-- TODO: Write an example --> ==See Also== ===Fu...")
- 17:48, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/findShortestPathBetween (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function finds the shortest path between 2 points in the world. ==Syntax== <syntaxhighlight lang="c++"> bool findShortestPathBetween(int graphId, float startX, float startY, float startZ, float endX, float endY, float endZ, function callback) </syntaxhighlight> ===Required arguments=== * '''graphId:''' The id of the graph * '''startX, startY, startZ'''...")
- 17:46, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/unloadPathGraph (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function unloads a graph path. ==Syntax== <syntaxhighlight lang="c++"> bool unloadPathGraph(int graphId) </syntaxhighlight> ===Required arguments=== * '''graphId:''' The id of the graph ===Returns=== Returns '''true ''' if the graph has been unloaded, '''false''' otherwise. ==Example== <!-- TODO: Write an example --> ==See Also== ===Functions=== {{M...")
- 17:42, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding/loadPathGraph (Created page with "<pageclass class="#AA7592" subcaption="Pathfinding Module"></pageclass> __NOTOC__ {{ModuleFunction|Pathfinding}} This function loads a path. ==Syntax== <syntaxhighlight lang="lua"> int loadPathGraph(string path) </syntaxhighlight> ===Required arguments=== * '''path:''' The path to the graph definition file (relative to the resource directory) ===Returns=== Returns ''graphId'' if everything went fine, ''false'' otherwise. ==Example== <!-- TODO: Write an example -->...")
- 17:39, 3 February 2022 Tracer talk contribs created page Template:Modules/Pathfinding/Functions (Created page with "* loadPathGraph * unloadPathGraph * findShortestPathBetween * isGraphLoaded * findNodeAt * getNodeNeighbors")
- 17:37, 3 February 2022 Tracer talk contribs created page Modules/Pathfinding (Created page with "<pageclass class="#AA7592" subcaption="Sockets Module"></pageclass> __NOTOC__ {{Module_Info| name = ml_sockets | version = 1.4 | author = StiviK, eXo-Reallife team| module_website = ''[https://github.com/eXo-OpenSource/ml_pathfind Here]'' | download_link = [https://github.com/eXo-OpenSource/ml_pathfind/releases/download/v1.0.3/ml_pathfind_win32.dll Windows 32 bit]<br/>[https://github.com/eXo-OpenSource/ml_pathfind/releases/download/v1....")
- 14:52, 1 February 2022 Synthetic talk contribs created page Math.average (Created page with "__NOTOC__ {{Useful Function}} This function returns the simple arithmetic mean of multiple numbers.<br> ==Syntax== <syntaxhighlight lang="lua">float math.average(...)</syntaxhighlight> ===Required Arguments=== * '''...''': Whole numbers. ==Code== <section name="Function source" class="both" show="true"> <syntaxhighlight lang="lua"> function math.average(...) if {...} then local aver = 0 for k,v in ipairs({...}) do aver = (aver + v)...")
- 18:31, 31 January 2022 Vampire talk contribs created page PT-BR/getElementData (Translation of the page 'getElementData' to Portuguese BR)
- 17:48, 31 January 2022 Vampire talk contribs created page PT-BR/Elemento (Portuguese BR translation for 'Element' page)
- 17:26, 31 January 2022 Vampire talk contribs created page PT-BR/Árvore de elementos (Translation of the page 'Element tree' to Portuguese BR)
- 16:43, 31 January 2022 LordHenry talk contribs uploaded a new version of File:Youtube.png
- 16:35, 31 January 2022 LordHenry talk contribs created page File:Github2.png (icon)
- 16:35, 31 January 2022 LordHenry talk contribs uploaded File:Github2.png (icon)
- 16:35, 31 January 2022 LordHenry talk contribs created page File:Github.png (icon)
- 16:35, 31 January 2022 LordHenry talk contribs uploaded File:Github.png (icon)
- 14:14, 31 January 2022 Thisdp talk contribs created page OnDgsMouseHover (Created page with "{{Client event}} __NOTOC__ This event will be triggered continuously when a dgs element is being hovered. ==Parameters== <syntaxhighlight lang="lua"> int tick, int absoluteX, int absoluteY </syntaxhighlight> * '''tick''': A number indicates how long the dgs element has been hovered in millisecond. * '''absoluteX''': The X position of the mouse cursor, in pixels, measured from the left side of the screen. * '''absoluteY''': The Y position of the mouse cursor, in pix...")
- 00:48, 30 January 2022 User account Noon talk contribs was created
- 18:46, 29 January 2022 User account Gordin14 talk contribs was created
- 14:44, 29 January 2022 Vampire talk contribs created page PT-BR/Crashs famosos e seu significado (Created page with "<big>Esta página da wiki contém o motivo de muitos crashs conhecidas do MTA que podem acontecer com você. Use CTRL + F e procure pelo Offset do seu crash para encontrar alguma informação relevante.</big> Exemplo de uma mensagem de crash: <syntaxhighlight lang="xml"> Version = 1.5.6-release-14664.0.000 Time = Mon Oct 8 12:20:00 2018 Module = C:\Program Files (x86)\Rockstar Games\GTA San Andreas\gta_sa.exe Code = 0xC0000005 Offset = 0x003C91CC EAX=0F77A3C8 EBX=0F...")
- 14:08, 29 January 2022 Vampire talk contribs created page PT-BR/Como você pode ajudar (Created page with "__NOTOC__ O Multi Theft Auto tem muitas áreas nas quais você pode nos ajudar. Por sua vez, teremos o maior prazer em ajudá-lo a começar com quaisquer ideias que você tenha, ajudar a testá-las e - se forem boas o suficiente - divulgá-las para toda a comunidade. Esta página descreve as principais áreas em que você pode fazer algo, é claro, há muitas coisas nas quais não pensamos, então pense fora da caixa! ==Codando para o MTA:SA== * Torne-se um contribuidor...")
- 10:04, 29 January 2022 User account Ragnarok talk contribs was created
- 00:43, 29 January 2022 User account Vampire talk contribs was created
- 19:13, 28 January 2022 Nurupo talk contribs created page Template:DGS Events/ScrollBar (Created page with "* onDgsScrollBarScrollPositionChange")
- 11:15, 28 January 2022 User account Sryujdtryj talk contribs was created
- 00:35, 27 January 2022 User account Carlos12 talk contribs was created
- 02:16, 26 January 2022 User account Nundang talk contribs was created
- 19:46, 22 January 2022 User account Jerari talk contribs was created
- 15:20, 22 January 2022 User account Quit talk contribs was created
- 22:16, 21 January 2022 LordHenry talk contribs created page AutoAttach (Created page with "{{Useful Function}} <lowercasetitle/> __NOTOC__ This function attach an element into another by calculating the rotation and position offset automatically. It works exactly like attachElements but you don't need to provide offset parameters. ==Syntax== <syntaxhighlight lang="lua">bool autoAttach ( element theElement, element theAttachToElement)</syntaxhighlight> ===Required Arguments=== *'''theElement:''' The element to be attached. *'''theAttachToElement:''' The...")
- 16:07, 20 January 2022 Tracer talk contribs moved page User:Tracer/mta-dark.css to User:Tracer/commons.css
- 16:06, 20 January 2022 Tracer talk contribs created page User:Tracer/mta-dark.css (Created page with "#mw-content-text, #firstHeading, #p-cactions{ background-color: #101010 !important; } #column-content, li.interlanguage-link, form#searchform { background-color: #272727 !important; } Text colors: #firstHeading, p, h1, h2, h3, h4, h5, b, li { color: #DCDCDC !important; } .toctext{ color: #0c3c88; } a { color: #7c7c7c !important; } #contentSub { background-color: #252525 !important; } .toc { background: transparent !important; b...")
- 13:33, 20 January 2022 Quiret talk contribs created page Talk:Modules/FileSystem (Created page with "==Linux version is being held back== Due to a GCC bug related to a new-ish C++ feature the Linux version of the Eir FileSystem module has to be held back until further notice by the GCC developers. You can find the status of the bug here: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104079 I truly wish for a very quick resolution of all impeding GCC issues but I do recognize that it is not a paid product. Although it is free there could be an entire IT industry that de...")
- 10:50, 20 January 2022 User account Saatanikk talk contribs was created
- 07:29, 20 January 2022 User account Edward talk contribs was created
- 23:02, 19 January 2022 Quiret talk contribs created page Modules/FileSystem/object/destroy (Created page with "__NOTOC__ This function destroys the underlying object passed to it, rendering all Lua references to it null and void. All OS handles that have been associated with it are released. ==Syntax== <syntaxhighlight lang="lua"> nil fsobject:destroy () </syntaxhighlight> ==Returns== This function returns nil. ==Remarks== It is a good idea to call this function on all files or translators whose use has expired. This way the release of OS resources is guarranteed to happen at...")