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).
- 16:49, 17 January 2023 User account Down MTA talk contribs was created
- 20:01, 16 January 2023 User account Mobin talk contribs was created
- 14:22, 16 January 2023 User account KBlack talk contribs was created
- 05:52, 16 January 2023 User account DColeman talk contribs was created
- 10:23, 15 January 2023 User account Mahmoud awad talk contribs was created
- 19:18, 14 January 2023 User account Lukas12 talk contribs was created
- 18:39, 13 January 2023 User account Shaneprod talk contribs was created
- 12:32, 13 January 2023 Thisdp talk contribs created page OnDgsKey (Created page with "{{Client event}} __NOTOC__ This event will be triggered when any key is pressed with a DGS element focused. ==Parameters== * '''button''': This refers the button pressed. See key names for a list of keys. * '''pressOrRelease''': This refers to whether they were pressing or releasing the key, ''true'' when pressing, ''false'' when releasing. ==Source== The source of this event is the DGS element which is focused. ==Example== <syntax...")
- 21:59, 12 January 2023 User account Bublik talk contribs was created
- 19:44, 12 January 2023 User account Gabriela023412 talk contribs was created
- 18:28, 12 January 2023 User account BK-STAFF talk contribs was created
- 19:03, 10 January 2023 User account Marcos1889 talk contribs was created
- 12:13, 10 January 2023 Thisdp talk contribs created page DgsLineGetItemWidth (Created page with "__NOTOC__ {{Client function}} This function gets the width of an item of DGS Line. ==Syntax== <syntaxhighlight lang="lua"> float dgsLineGetItemWidth( element line, int index ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line. *'''index''': The item index. ===Returns=== Returns a ''float'' indicates the width of the item if successful, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local line = DGS:dgsCreateLi...")
- 12:12, 10 January 2023 Thisdp talk contribs created page DgsLineSetItemWidth (Created page with "__NOTOC__ {{Client function}} This function sets the width of an item of DGS Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgsLineSetItemColor( element line, int index, int width ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line. *'''index''': The item index. *'''width:''' A float of the width of the item. ===Returns=== Returns ''true'' if successful, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local...")
- 12:02, 10 January 2023 Thisdp talk contribs created page DgsLineGetItemColor (Created page with "__NOTOC__ {{Client function}} This function gets the color of an item of DGS Line. ==Syntax== <syntaxhighlight lang="lua"> int dgsLineSetItemColor( element line, int index ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line. *'''index''': The item index. ===Returns=== Returns an ''integer'' indicates the color of the item if successful, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local line = DGS:dgsCreate...")
- 12:00, 10 January 2023 Thisdp talk contribs created page Dgs3DLineGetItemWidth (Created page with "__NOTOC__ {{Client function}} This function gets the width of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DLineGetItemWidth( element line3D, int index ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line. *'''index''': The item index of DGS 3D Line. ===Returns=== Returns an ''float'' indicates the width of the item if successful, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = ex...")
- 11:59, 10 January 2023 Thisdp talk contribs created page Dgs3DLineSetItemWidth (Created page with "__NOTOC__ {{Client function}} This function sets the width of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DLineSetItemWidth( element line3D, int index, float width ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line element. *'''index''': The item index of DGS 3D Line. *'''width :''' A float of the width of the item. ===Returns=== Returns ''true'' if successful, ''false'' otherwise. ==Example== <sy...")
- 11:53, 10 January 2023 Thisdp talk contribs created page Dgs3DLineGetItemColor (Created page with "__NOTOC__ {{Client function}} This function gets the color of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DLineSetItemColor( element line3D, int index, int color ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line. *'''index''': The item index of DGS 3D Line. ===Returns=== Returns an ''integer'' indicates the color of the item if successful, ''false'' otherwise. ==Example== <syntaxhighlight lang="l...")
- 11:50, 10 January 2023 Thisdp talk contribs created page Dgs3DLineSetItemColor (Created page with "__NOTOC__ {{Client function}} This function sets the color of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DLineSetItemColor( element line3D, int index, int color ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line element. *'''index''': The item index of DGS 3D Line. *'''color:''' An integer of color (0-4294967295), use tocolor for converting RGBA to color number. If not set, default color of DG...")
- 11:47, 10 January 2023 Thisdp talk contribs created page Dgs3DLineSetItemPosition (Created page with "__NOTOC__ {{Client function}} This function sets the position of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DLineSetItemPosition( element line3D , int index, float x, float y, float z ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line element. *'''index''': The item index of DGS 3D Line. *'''x:''' A float of the 3D x position of the item of DGS 3D Line in the world. *'''y:''' A float of the 3D y pos...")
- 11:41, 10 January 2023 Thisdp talk contribs created page Dgs3DLineGetItemPosition (Created page with "__NOTOC__ {{Client function}} This function gets the position of the specified item of DGS 3D Line. ==Syntax== <syntaxhighlight lang="lua"> float, float, float dgs3DLineGetItemPosition( element line3D , int index ) </syntaxhighlight> ===Required Arguments=== *'''line3D''': The DGS 3D Line element. *'''index ''': The item index of DGS 3D Line. ===Returns=== Returns 3 ''float''s indicates x, y and z coordinates of the item, ''false'' otherwise. ==Example== <syntax...")
- 00:05, 10 January 2023 User account BradW talk contribs was created
- 14:12, 9 January 2023 User account LeonSnov talk contribs was created
- 03:57, 8 January 2023 User account ETouker talk contribs was created
- 20:13, 6 January 2023 Noon talk contribs created page User talk:Noon (Created page with "Hello, my nickname is Non! You could visit my [http://nondev.netlify.app website]?, it's cool.")
- 17:35, 5 January 2023 OfficialMr3b talk contribs created page DxText (Created page with "__NOTOC__ {{Client function}} This function draws a dxText but it will make it relative. ==Syntax== <syntaxhighlight lang="lua"> bool dxDrawText ( string text, float leftX, float topY [, float rightX = leftX, float bottomY = topY, int color = white, float scaleXY = 1.0 [, float scaleY = 1.0 ], mixed font = "default", string alignX = "left", string alignY = "top", bool clip = false, bool wordBreak = false, bool postGUI = false, bool...")
- 17:27, 5 January 2023 OfficialMr3b talk contribs created page DxRectangle (Created page with "__NOTOC__ {{Client function}} This function draws a dxRectangle but it will make it relative. ==Syntax== <syntaxhighlight lang="lua"> bool dxRectangle ( float startX, float startY, float width, float height [, int color = white, bool postGUI = false, bool subPixelPositioning = false ] ) </syntaxhighlight> ===Required Arguments=== * '''startX:''' An float representing the '''absolute''' origin X position of the rectangle, represented by pixels on the screen. * '''sta...")
- 16:02, 5 January 2023 OfficialMr3b talk contribs moved page Resource:Fixing to Resource:RDX (Changed the Name)
- 14:51, 5 January 2023 OfficialMr3b talk contribs created page Resource:Fixing (Created page with "This resource helps you to make your script relative ===How to Use=== First you need to add to the top of your code `loadstring(exports.fixing:importSizes())()` then you have to change some codes as showing in examples ===Notes=== 1 - You need to change the resolution from ''fixing/config/data.lua'' to your resolution.<br> 2 - Do not change any thing in ''fixing/server-side/update.lua'' or ''fixing/update.cfg''.<br> 3 - To update the resource you need to type ''/update-...")
- 14:34, 5 January 2023 OfficialMr3b talk contribs created page User:OfficialMr3b (IDK)
- 14:32, 5 January 2023 User account OfficialMr3b talk contribs was created
- 20:25, 2 January 2023 User account Y4zn talk contribs was created
- 20:22, 2 January 2023 User account Selectvvod talk contribs was created
- 12:46, 1 January 2023 User account Kocsov talk contribs was created
- 21:04, 31 December 2022 User account Sajadzakariaie talk contribs was created
- 18:00, 31 December 2022 User account L1lsam talk contribs was created
- 14:18, 31 December 2022 Shady talk contribs created page DE/Resource:Editor/EDF (The translations I make are copy-paste, it forces me to make changes on the site because I don't want even the slightest mistake. Best regards Shady)
- 19:50, 30 December 2022 Myonlake talk contribs deleted page Template:GH Issue (Unused)
- 19:49, 30 December 2022 Myonlake talk contribs deleted page Template:Deprecable (Unused)
- 23:30, 29 December 2022 FeaturedPro talk contribs uploaded a new version of File:TrayNotification.gif (cropped)
- 23:28, 29 December 2022 FeaturedPro talk contribs created page File:TrayNotification.gif (A GIF preview of a tray notification)
- 23:28, 29 December 2022 FeaturedPro talk contribs uploaded File:TrayNotification.gif (A GIF preview of a tray notification)
- 18:54, 29 December 2022 User account Lucario talk contribs was created
- 18:53, 29 December 2022 User account CHWAKER DZ talk contribs was created
- 11:57, 29 December 2022 User account Mkl talk contribs was created
- 20:53, 28 December 2022 User account Amirikraken talk contribs was created
- 00:14, 28 December 2022 User account TripShip talk contribs was created
- 22:39, 25 December 2022 LopSided talk contribs created page GetChatboxCharacterLimit (Initial contents)
- 22:36, 25 December 2022 LopSided talk contribs created page SetChatboxCharacterLimit (Initial contents)
- 11:51, 25 December 2022 User account Mr Kqzi talk contribs was created