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).
- 20:48, 12 October 2024 FileEX talk contribs uploaded File:536 misc a.png
- 20:48, 12 October 2024 FileEX talk contribs created page File:536 misc a.png
- 20:45, 12 October 2024 FileEX talk contribs created page File:477 misc a.png
- 20:45, 12 October 2024 FileEX talk contribs uploaded File:477 misc a.png
- 20:36, 12 October 2024 FileEX talk contribs uploaded File:603 misc a.png
- 20:36, 12 October 2024 FileEX talk contribs created page File:603 misc a.png
- 19:01, 12 October 2024 FileEX talk contribs created page SpawnVehicleFlyingComponent (Created page with "__NOTOC__ {{Shared function}} {{New feature/item|3.0161|1.6.0|22771| This function creates a dynamic (motion-dependent) falling vehicle component.}} {{Note|The maximum number of components that can be created simultaneously is 150. Beyond this limit, no new components will be created until an existing component is removed and the count drops below 150.}} ==Syntax== <syntaxhighlight lang="lua"> bool spawnVehicleFlyingComponent(vehicle theVehicle, number nodeIndex [, num...")
- 14:06, 5 October 2024 FileEX talk contribs deleted page New coding guidelines (content was: "{{Delete|Moved to mtasa-docs GitHub repository}}")
- 19:16, 30 September 2024 FileEX talk contribs created page IsPlayerCrosshairVisible (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22751|This function checks if the local player has showing crosshair.}} {{Note|This function always returns true for '''spraycan''' and '''fire extinguisher'''.}} ==Syntax== <syntaxhighlight lang="lua">bool isPlayerCrosshairVisible()</syntaxhighlight> ===Returns=== Returns ''true'' if the player has the crosshair visible, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> function check() out...")
- 13:28, 25 September 2024 FileEX talk contribs created page ResetWorldProperties (Created page with "__NOTOC__ {{Shared function}} {{New feature/item|3.0161|1.6.0|22741|This function resets all world properties to default.}} ==Syntax== <syntaxhighlight lang="lua">nil resetWorldProperties( [ bool rsetSpecialProperties = true, bool resetWorldProperties = true, bool resetWeatherProperties = true, bool resetLODs = true, bool resetSounds = true, bool resetGlitches = true, bool resetJetpackWeapons = true ] )</syntaxhighlight> ===Optional arguments=== {{OptionalArg}} * '''re...")
- 13:54, 17 September 2024 FileEX talk contribs created page PL/Anti-cheat guide (Translation)
- 18:30, 12 September 2024 FileEX talk contribs created page PL/Element data (Translation)
- 15:53, 12 September 2024 FileEX talk contribs created page PL/Settings system (Translation)
- 14:19, 12 September 2024 FileEX talk contribs created page PL/Authorized Serial Account Protection (Translation)
- 13:33, 8 September 2024 FileEX talk contribs created page Talk:SetPedRotation (This function is deprecated: new section)
- 18:43, 6 September 2024 FileEX talk contribs deleted page Template:Test template
- 17:57, 6 September 2024 FileEX talk contribs deleted page Template:Shared team functions
- 17:49, 6 September 2024 FileEX talk contribs moved page Template:Shared radar functions to Template:Radar functions
- 17:15, 6 September 2024 FileEX talk contribs moved page Template:Shared matrix functions to Template:Matrix functions
- 15:39, 6 September 2024 FileEX talk contribs created page Template:Fire functions (Created page with "<ul> <li>createFire</li> <li>extinguishFire</li> </ul> <noinclude>Category:Functions templates</noinclude>")
- 14:51, 6 September 2024 FileEX talk contribs deleted page Template:Test page
- 14:49, 6 September 2024 FileEX talk contribs created page Template:Functions list info (Created page with "<span style='font-size: 1.25em;'> The template contains a list of functions. It accepts 1 parameter, which specifies whether the functions should be displayed for ''server'' or ''client''. Regardless of the parameter, a list of shared functions will also be displayed</br></br> Example: '''<nowiki>{{Camera functions|client}}</nowiki>''' will display a list of client-side functions, and below it a list of shared functions, similarly for the server.</span>")
- 13:21, 6 September 2024 FileEX talk contribs created page Template:Test page (Created page with "{{Test_template}}")
- 13:20, 6 September 2024 FileEX talk contribs created page Template:Test template (Created page with "<includeonly> {{#ifeq: {{lc:{{{1}}}}} | client | <!-- client functions--> * dxDrawImage * dxDrawRectangle | {{#ifeq: {{lc:{{{1}}}}} | server | <!-- server functions--> * banPlayer * kickPlayer }} }} '''Shared''' * createBlip * createMarker </includeonly>")
- 12:55, 6 September 2024 FileEX talk contribs moved page Template:Shared sound functions to Template:Shared audio functions (Rename)
- 12:20, 4 September 2024 FileEX talk contribs created page IsObjectRespawnable (Created page with "__NOTOC__ {{Shared function}} {{New feature/item|3.0161|1.6.0|22708|This function checks if the object has respawn enabled, which can be toggled using toggleObjectRespawn.}} ==Syntax== <syntaxhighlight lang="lua">bool isObjectRespawnable( object theObject )</syntaxhighlight> {{OOP||object:isRespawnable}} ===Required Arguments=== *'''theObject:''' an object element. ===Returns=== Returns true if the object has respawning enabled, false otherwise. ==Examp...")
- 19:35, 18 August 2024 FileEX talk contribs created page EnginePreloadWorldArea (Created page with "{{Client function}} __NOTOC__ This function allows a specific area to be loaded '''immediately''', which can be useful when teleporting a player. The function is not based on a radius, but a specific zone is loaded. ==Syntax== <syntaxhighlight lang="lua"> bool enginePreloadWorldArea(float x, float y, float z [, string loadingOption = "all" ] ) </syntaxhighlight> ===Required Arguments=== *'''x:''' Position in the X axis. *'''y:''' Position in the Y axis *'''z:''' Pos...")
- 17:11, 18 August 2024 FileEX talk contribs created page ResetTimeFrozen (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22676| This function unfreezes time frozen using setTimeFrozen. This is equivalent to using setTimeFrozen to false. }} ==Syntax== <syntaxhighlight lang="lua"> bool resetTimeFrozen( ) </syntaxhighlight> ===Returns=== Always returns ''true''. ==Example== This example let you to unfreeze time <syntaxhighlight lang="lua"> resetTimeFrozen() </syntaxhighlight> ==See Also== {{Client world functions}}")
- 17:08, 18 August 2024 FileEX talk contribs created page IsTimeFrozen (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22676| This function allows you to check whether time has been frozen using setTimeFrozen. }} ==Syntax== <syntaxhighlight lang="lua"> bool setTimeFrozen ( ) </syntaxhighlight> ===Returns=== Returns true if time is frozen, false otherwise. ==Example== <syntaxhighlight lang="lua"> addCommandHandler('freezetime', function() setTimeFrozen(not isTimeFrozen()) end) </syntaxhighlight> ==See Also== {...")
- 18:02, 13 August 2024 FileEX talk contribs moved page OnClick to ES/onClick (This is translated page)
- 13:49, 31 July 2024 FileEX talk contribs created page OnClientCoreCommand (Created page with "__NOTOC__ {{Client event}} {{New feature/item|3.0161|1.6.0|22649| This event is triggered when a built-in client command is used, check Client Commands.}} ==Parameters== <syntaxhighlight lang="lua"> string command </syntaxhighlight> *'''command:''' The command that was executed. ==Example== This example outputs the name of the command used. <syntaxhighlight lang="lua"> addEventHandler("onClientCoreCommand", localPlayer, function(cmd) outputChatBox("Core command...")
- 11:40, 31 July 2024 FileEX talk contribs created page GetVehicleEntryPoints (Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.0161|1.6.0|22649| This function returns a table containing the positions to 4 possible entry points to a vehicle. This function can be used alongside setPedEnterVehicle to make a ped enter a specific seat by first moving the ped to a entry point retrieved through '''getVehicleEntryPoints''' and then using setPedEnterVehicle to make them enter. }} {{Note|This does not directly relate to the amount of doors a ve...")
- 11:35, 31 July 2024 FileEX talk contribs uploaded File:156944274-97b551b3-eaa9-460f-98c7-a31ba793eb7a.jpg (Entry points)
- 11:35, 31 July 2024 FileEX talk contribs created page File:156944274-97b551b3-eaa9-460f-98c7-a31ba793eb7a.jpg (Entry points)
- 18:54, 15 July 2024 FileEX talk contribs created page GetMarkerTargetArrowProperties (Created page with "__NOTOC__ {{Server client function}} {{New feature/item|9.0161|1.6.0|22620|function returns the color, transparency and size for a checkpoint marker's target arrow.}} ==Syntax== <syntaxhighlight lang="lua"> int, int, int, int, int getMarkerTargetArrowProperties( marker theMarker ) </syntaxhighlight> ===Required Arguments=== *'''theMarker''': The marker that you wish to retrieve the color and size of. ===Returns=== Returns five ints corresponding to the amount o...")
- 18:45, 15 July 2024 FileEX talk contribs created page SetMarkerTargetArrowProperties (Created page with "__NOTOC__ {{Server client function}} This function changes the color and size of the checkpoint marker's target arrow. ==Syntax== <syntaxhighlight lang="lua">bool setMarkerTargetArrowProperties(element marker [, int r = 255, int g = 64, int b = 64, int a = 255, float size = markerSize * 0.625 ] )</syntaxhighlight> ===Required Arguments=== *'''theMarker:''' The marker that you wish to set the color of. *'''r:''' The amount of red in the final color (0 to 255). *'''g:...")
- 11:07, 13 July 2024 FileEX talk contribs created page Category:Translated/Development (Created page with "In this category are being translated pages(&categories) to upper category. Category:Development")
- 10:50, 13 July 2024 FileEX talk contribs created page Category:SDK (Created page with "Page contains a collection of pages about various SDKs Category:Development")
- 18:55, 11 July 2024 FileEX talk contribs blocked AliiAm talk contribs with an expiration time of indefinite (account creation disabled, cannot edit own talk page) (Vandalism)
- 05:54, 9 July 2024 FileEX talk contribs deleted page Template:Syntaxhighlight (Author request: content was: "<includeonly></includeonly> <noinclude> {{Delete|Useless template}} </noinclude>", and the only contributor was "Tracer" (talk))
- 05:53, 9 July 2024 FileEX talk contribs deleted page Template:CrashCodeEntry (Author request: content was: "<includeonly></includeonly> <noinclude> {{Delete|Useless template}} </noinclude>", and the only contributor was "Tracer" (talk))
- 05:53, 9 July 2024 FileEX talk contribs deleted page Template:Money events (content was: "{{Delete|Useless template. See onPlayerMoneyChange}} * onPlayerMoneyChange")
- 05:53, 9 July 2024 FileEX talk contribs deleted page OnPlayerMoneyChange (content was: "{{Delete|This event doesn't exist as a built-in in MTA event. It exists only in the default "admin" resource}} __NOTOC__ {{Server event}} This event identifies changes to the player's money if it is changed on the server-side. ==Parameters== <syntaxhighlight lang="lua"> int oldValue, int newValue </syntaxhighlight> *'''oldValue''': the int amount of money before being changed. *'''newValue''': the int amount of money after being changed. ==Source== The event syst...")
- 05:29, 9 July 2024 FileEX talk contribs created page Category:Archived (Created page with "Category containing historical and outdated pages for archiving purposes only. Category:Contents")
- 18:35, 5 July 2024 FileEX talk contribs created page File:Flag hu.png (Hungarian flag)
- 18:35, 5 July 2024 FileEX talk contribs uploaded File:Flag hu.png (Hungarian flag)
- 18:33, 5 July 2024 FileEX talk contribs uploaded File:Flag pt.png (Portugese flag)
- 18:33, 5 July 2024 FileEX talk contribs created page File:Flag pt.png (Portugese flag)
- 13:32, 4 July 2024 FileEX talk contribs deleted page User:Truyenfcom (Spam: content was: "TruyenF là trang truyện đọc chữ online hay nhât với các thể loại Đô Thị, Kiêm Hiệp, Tiên Hiệp, Ngôn Tình, Sủng, Đam Mỹ, Trọng Sinh, Huyền Huyễn, Ngược... Mời bạn cùng đọc truyện online tại https://truyenf.com #truyenf #truyenfull #doctruyen MXH: https://git.qoto.org/truyenfcom https://groups.google.com/g/truyenf...", and the only contributor was "Truyenfcom" (talk))
- 18:08, 21 June 2024 FileEX talk contribs created page PL/Filepath (Translate)