Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 | 60 | 90 | 120 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Show minor edits
Show new changes starting from 23:00, 5 September 2025
   
CollapseList of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

5 September 2025

     11:17  User:IManGaaX‎‎ 2 changes history +236 [IManGaaX‎ (2×)]
     
11:17 (cur | prev) +163 IManGaaX talk contribs
     
10:16 (cur | prev) +159 IManGaaX talk contribs
N    11:13  GetColorName diffhist +2,252 IManGaaX talk contribs (Created page with "{{Useful Function}} __NOTOC__ <lowercasetitle></lowercasetitle> This function retrieves the nearest color name for a given RGB value using an online API. {{Note|This function requires an active internet connection and fetches the color name from an external API asynchronously. The result is returned via a callback function.}} ==Syntax== <syntaxhighlight lang="lua">getColorName( int r, int g, int b, function callback(name) )</syntaxhighlight> ===Required Arguments=== *...")
     11:08  Template:Useful Functions‎‎ 2 changes history +322 [IManGaaX‎ (2×)]
     
11:08 (cur | prev) +163 IManGaaX talk contribs (→‎Data functions)
     
10:08 (cur | prev) +159 IManGaaX talk contribs (→‎Table functions: new useful function)
N    10:12  Table.flatten diffhist +1,751 IManGaaX talk contribs (Created page with "{{Useful Function}} __NOTOC__ <lowercasetitle></lowercasetitle> This function converts a nested table into a flattened table with concatenated keys. {{Note|This function recursively traverses all nested subtables and creates a new table where keys represent the original hierarchy using dot notation.}} ==Syntax== <syntaxhighlight lang="lua">table table.flatten( table t, [ string prefix = "" ] )</syntaxhighlight> ===Required Arguments=== * '''t''': the nested table to f...")

3 September 2025

     17:26  (User creation log) [Senior‎; MOROCCOOO‎]
     
17:26 User account Senior talk contribs was created ‎
     
16:39 User account MOROCCOOO talk contribs was created ‎
     00:39  Template:Useful Functions diffhist +122 O22 talk contribs (→‎Data functions)
N    00:31  GetServerAveragePing‎‎ 2 changes history +1,140 [O22‎ (2×)]
     
00:31 (cur | prev) +47 O22 talk contribs
N    
00:31 (cur | prev) +1,093 O22 talk contribs (Created page with "{{Useful Function}} __NOTOC__ This function gets average players ping. ==Syntax== <syntaxhighlight lang="lua">int getAveragePing( )</syntaxhighlight> ===Returns=== Returns the average players ping as integer. <br> Returns '''0''' if no players are online. ==Code== <section name="Shared" class="both" show="true"> <syntaxhighlight lang="lua"> function getAveragePing() local players = getElementsByType("player") if #players == 0 then return 0 end...")

2 September 2025

     14:46  User:O22 diffhist +475 O22 talk contribs

28 August 2025

     11:41  Template:ModulesList diffhist +104 Xenius talk contribs
     09:14 User creation log User account Aym4n talk contribs was created ‎

27 August 2025

     19:04 User creation log User account R3dfield talk contribs was created ‎

26 August 2025

     22:18  Changes in 1.7‎‎ 2 changes history +570 [Shady‎; O22‎]
     
22:18 (cur | prev) +368 O22 talk contribs
     
14:53 (cur | prev) +202 Shady talk contribs (* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''Shady.lua'''))
     13:01  (User creation log) [Casti‎; Banmobil‎]
     
13:01 User account Casti talk contribs was created ‎
     
07:05 User account Banmobil talk contribs was created ‎

25 August 2025

     12:57 User creation log User account INawaF talk contribs was created ‎
     11:54  HasObjectPermissionTo‎‎ 2 changes history +319 [Srslyyyy‎; Arran Fortuna‎]
     
11:54 (cur | prev) +165 Srslyyyy talk contribs
     
08:22 (cur | prev) +154 Arran Fortuna talk contribs (Added note about defaultPermission defaulting to false in 1.7)

24 August 2025

     18:39  (User creation log) [Tzwer‎; Gallardo956‎]
     
18:39 User account Tzwer talk contribs was created ‎
     
09:11 User account Gallardo956 talk contribs was created ‎
     13:52  OnPlayerTriggerEventThreshold diffhist +37 Makaveli talk contribs (→‎Example)
     09:15  ResetTimer diffhist −9 Gallardo956 talk contribs (I've tested many timers that have a limited number of repeats with a range of 5,000 ms and a limited repeat of 1 time, and it works, so it can lead many people astray.)
     05:53  DgsMediaLoadMedia diffhist +74 Thisdp talk contribs (→‎Required Arguments)

23 August 2025

N    22:59  DgsGIFGetSize diffhist +1,846 Lettify talk contribs (Created page with "__NOTOC__ {{Client function}} Returns the dimensions (width and height) of a GIF element created using dgsCreateGIF. The values correspond to the original size extracted from the GIF file during loading. ==Syntax== <syntaxhighlight lang="lua"> int int dgsGIFGetSize( element gif ) </syntaxhighlight> ===Required Arguments=== *'''gif: ''' The '''dgs-dxgif''' type element you want to get the size of. ===Returns=== Returns two integers corresponding to ''width'' an...")
N    10:28  DgsCreateGIF‎‎ 2 changes history +707 [Thisdp‎ (2×)]
     
10:28 (cur | prev) −5 Thisdp talk contribs
N    
10:27 (cur | prev) +712 Thisdp talk contribs (Created page with "__NOTOC__ {{Client function}} This function creates a GIF interface plugin. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateGIF( string pathOrRaw ) </syntaxhighlight> ===Required Arguments=== *'''pathOrRaw: ''' A string representing the path to your GIF file, or the raw GIF data ===Returns=== Returns a dgs-dxgif element (DGS Plugin Type)[ dgs-dxgif (Element Type) ] if succeed, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> DGS = exports.dg...")
N    10:23  Template:DGS Plugin/Gif diffhist +262 Thisdp talk contribs (Created page with "*dgsCreateGIF *dgsGIFGetSize *dgsGIFGetImageCount *dgsGIFGetImages *dgsGIFPlay *dgsGIFStop *dgsGIFSetSpeed *dgsGIFGetSpeed *dgsGIFGetPlaying *dgsGIFSetLooped *dgsGIFGetLooped *dgsGIFSetFrameID *dgsGIFGetFrameID")
     10:21  Template:DGSFUNCTIONS diffhist +108 Thisdp talk contribs (→‎Other Plugins)

22 August 2025

     17:15  GetPedAnimationSpeed‎‎ 3 changes history +363 [Liwa‎ (3×)]
     
17:15 (cur | prev) −73 Liwa talk contribs (→‎Syntax)
     
17:15 (cur | prev) +57 Liwa talk contribs (→‎Syntax)
     
17:08 (cur | prev) +379 Liwa talk contribs (→‎Syntax)
     10:36  (Move log) [LLL1L‎ (4×)]
     
10:36 LLL1L talk contribs moved page XDrawSVG to DxDrawSVG over redirect ‎
     
10:36 LLL1L talk contribs moved page DXDrawSVG to XDrawSVG over redirect ‎(Fixing function name to proper case: dxDrawSVG)
     
10:35 LLL1L talk contribs moved page XDrawSVG to DXDrawSVG(Fixing function name to proper case: dxDrawSVG)
     
10:35 LLL1L talk contribs moved page DxDrawSVG to XDrawSVG(Fixing function name to proper case: dxDrawSVG)
     10:36  (Deletion log) [LLL1L‎ (2×)]
     
10:36 LLL1L talk contribs deleted redirect DxDrawSVG by overwriting ‎(Deleted to make way for move from "XDrawSVG")
     
10:36 LLL1L talk contribs deleted redirect XDrawSVG by overwriting ‎(Deleted to make way for move from "DXDrawSVG")
     09:24 User creation log User account LLL1L talk contribs was created ‎

21 August 2025

     05:10  Dgs-dxprogressbar‎‎ 2 changes history +658 [Thisdp‎ (2×)]
     
05:10 (cur | prev) +285 Thisdp talk contribs (→‎progress)
     
03:08 (cur | prev) +373 Thisdp talk contribs (→‎indicatorImage)
     03:29  DgsSVGNodeSetAttribute diffhist +2 Thisdp talk contribs (→‎Example)
     03:06  DgsProgressBarSetMode diffhist +17 Thisdp talk contribs (→‎Required Arguments)

20 August 2025

     17:58 User creation log User account Sohilkakaee talk contribs was created ‎
     17:47  Template:Useful Functions diffhist +172 Abolfazl talk contribs (→‎Utility)

19 August 2025

     18:10  SetElementData diffhist +154 Arran Fortuna talk contribs
     16:16 User creation log User account Makeshov talk contribs was created ‎