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).
- 15:41, 11 July 2025 User account Blow1d talk contribs was created
- 15:13, 11 July 2025 User account 99 talk contribs was created
- 08:53, 10 July 2025 Mohab talk contribs created page DgsMenuRemoveItem (Created page with "{{Client function}} __NOTOC__ This function removes an item from a DGS menu element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuRemoveItem ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element from which to remove the item *'''uniqueID:''' The unique ID of the menu item to remove (returned by dgsMenuAddItem) ===Returns=== Returns ''true'' if the item was successfully removed, ''false'' if the item wit...")
- 08:32, 10 July 2025 Mohab talk contribs created page File:DGS Text Seperator.png
- 08:32, 10 July 2025 Mohab talk contribs uploaded File:DGS Text Seperator.png
- 08:28, 10 July 2025 Mohab talk contribs created page DgsMenuAddSeparator (Created page with "{{Client function}} __NOTOC__ This function adds a separator to a DGS menu. A separator is a visual divider that can be used to organize menu items into logical groups. It can be displayed as a horizontal line or as text. ==Syntax== <syntaxhighlight lang="lua"> int uniqueID, int position dgsMenuAddSeparator ( element menu [, string text, int parentItemID, int position ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to add the separator...")
- 07:53, 10 July 2025 Mohab talk contribs created page File:Dgs seperator.png
- 07:53, 10 July 2025 Mohab talk contribs uploaded File:Dgs seperator.png
- 06:43, 10 July 2025 Mohab talk contribs created page DgsMenuGetItemColor (Created page with "{{Client function}} __NOTOC__ This function gets the color of a specific menu item. You can retrieve the colors either as separate RGBA components or as color values. ==Syntax== <syntaxhighlight lang="lua"> int r, int g, int b, int a, int hr, int hg, int hb, int ha dgsMenuGetItemColor ( element menu, int uniqueID ) int normalColor, int hoverColor dgsMenuGetItemColor ( element menu, int uniqueID, bool notSplitColor ) </syntaxhighlight> ===Required Arguments=== *'''menu:...")
- 06:18, 10 July 2025 Mohab talk contribs created page DgsMenuSetItemColor (Created page with "{{Client function}} __NOTOC__ This function sets the color of a specific menu item. You can set both the normal and hover colors for the item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemColor ( element menu, int uniqueID, int r, int g, int b [, int a ] ) bool dgsMenuSetItemColor ( element menu, int uniqueID, int color ) bool dgsMenuSetItemColor ( element menu, int uniqueID, table colors ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS...")
- 06:06, 10 July 2025 Mohab talk contribs created page DgsMenuGetItemTextSize (Created page with "{{Client function}} __NOTOC__ This function gets the text size of a specific menu item. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsMenuGetItemTextSize ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Returns=== Returns two floats representing the horizontal and vertical text scale factors, or '...")
- 05:59, 10 July 2025 Mohab talk contribs created page DgsMenuSetItemTextSize (Created page with "{{Client function}} __NOTOC__ This function sets the text size of a specific menu item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemTextSize ( element menu, int uniqueID, float textSizeX [, float textSizeY ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''textSizeX:''' The horizontal scale of the text ===Optional Argum...")
- 04:49, 10 July 2025 Mohab talk contribs created page DgsMenuGetItemText (Created page with "{{Client function}} __NOTOC__ This function retrieves the displayed text of a menu item. ==Syntax== <syntaxhighlight lang="lua"> string dgsMenuGetItemText ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Returns=== Returns the text string if successful, ''false'' if the item doesn't exist. ==Examples== <sy...")
- 04:47, 10 July 2025 Mohab talk contribs created page DgsMenuSetItemText (Created page with "{{Client function}} __NOTOC__ This function changes the displayed text of an existing menu item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemText ( element menu, int uniqueID, string text ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''text:''' The new text to display for this menu item ===Returns=== Returns ''true'' i...")
- 04:44, 10 July 2025 Mohab talk contribs created page DgsMenuGetItemCommand (Created page with "{{Client function}} __NOTOC__ This function retrieves the command identifier of a menu item. The command is used to identify which action should be performed when the item is selected. ==Syntax== <syntaxhighlight lang="lua"> string dgsMenuGetItemCommand ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Retur...")
- 04:40, 10 July 2025 Mohab talk contribs created page DgsMenuSetItemCommand (Created page with "{{client function}} __NOTOC__ This function changes the command identifier of an existing menu item. The command is used to identify the item when it's selected. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemCommand ( element menu, int uniqueID, string command ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''command:''' Th...")
- 04:32, 10 July 2025 Mohab talk contribs created page DgsMenuAddItem (Created page with "{{client function}} __NOTOC__ This function adds a new item to a DGS menu. Each item can have text, a command identifier, and can optionally be a child of another item to create submenus. ==Syntax== <syntaxhighlight lang="lua"> int, int dgsMenuAddItem ( element menu, string text, string command [, int parentItemID, int position ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to add the item to *'''text:''' The text that will be display...")
- 04:28, 10 July 2025 Mohab talk contribs created page DgsMenuHide (Created page with "{{client function}} __NOTOC__ This function hides a DGS menu and cleans up any associated submenus. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuHide ( element menu ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to hide ===Returns=== Returns ''true'' if the menu was hidden successfully, ''false'' otherwise. ==Examples== <syntaxhighlight lang="lua"> loadstring(exports.dgs:dgsImportFunction())()-- load functions -- Create a menu...")
- 04:14, 10 July 2025 Mohab talk contribs created page DgsAddPropertyListener (Created page with "{{client function}} __NOTOC__ This function enables monitoring of property changes on DGS elements. When a property that has been added to the listener list changes via dgsSetProperty, it triggers the onDgsPropertyChange event. {{Note|Property listeners only trigger when using dgsSetProperty, not when using specific setter functions}} {{Note|The '''onDgsPropertyChange''' event is only triggered for properties that have been explicitly added to th...")
- 02:55, 10 July 2025 Mohab talk contribs created page User:Mohab (Created page with "__NOTOC__ I'm '''Mohab''' (also known as '''MohabCodeX'''), a Software Engineer & Content Creator ==Profile== *'''Username:''' Mohab *'''Also known as:''' MohabCodeX *'''Focus:''' MTA:SA Lua Scripting & Education ==Latest Contributions== ===Scripts & Resources=== *[https://community.multitheftauto.com/index.php?p=resources&s=details&id=18990 Debug GUI] - debugging tool with graphical interface *[https://community.multitheftauto.com/index.php?p=resources&s=details&id=1...")
- 02:44, 10 July 2025 Mohab talk contribs created page OnDgsPropertyChange (Created page with "__NOTOC__ {{Client event}} This event is triggered when a monitored property of a dgs element changes via dgsSetProperty. The property must be added to the listener using dgsAddPropertyListener for this event to fire. {{Note|This event only fires for properties that have been explicitly added as listeners using dgsAddPropertyListener}} {{Note|The event only triggers when using dgsSetProperty, not element-specific functions like dgsSetText}} {{Tip|Thi...")
- 10:38, 7 July 2025 User account Elena talk contribs was created
- 06:11, 2 July 2025 User account Kirt talk contribs was created
- 14:57, 1 July 2025 User account Ayoubgalai22 talk contribs was created
- 22:16, 30 June 2025 User account BaronScr talk contribs was created
- 10:26, 30 June 2025 O22 talk contribs created page User:O22 (Created page with "y")
- 17:20, 29 June 2025 User account Kuvasz talk contribs was created
- 13:59, 29 June 2025 User account Lola talk contribs was created
- 11:59, 29 June 2025 User account PanganibanPH talk contribs was created
- 05:11, 28 June 2025 User account 15qyd talk contribs was created
- 19:57, 25 June 2025 Alex7202 talk contribs created page DgsMenuShow (Create page with example)
- 14:25, 22 June 2025 User account Mm ghani01 talk contribs was created
- 21:00, 18 June 2025 User account GeladoxTec123 talk contribs was created
- 20:59, 18 June 2025 User account GeladoxTec talk contribs was created
- 06:19, 17 June 2025 User account Xqwize talk contribs was created
- 16:17, 16 June 2025 User account Paralox talk contribs was created
- 22:40, 14 June 2025 IManGaaX talk contribs created page IsPedFalling (Add new function)
- 21:25, 12 June 2025 User account Vitor Ruam talk contribs was created
- 19:53, 9 June 2025 User account DevASMRite talk contribs was created
- 13:16, 7 June 2025 Abuse filter talk contribs blocked Luminaire talk contribs with an expiration time of indefinite (account creation disabled, cannot edit own talk page) (Automatically blocked by abuse filter. Description of matched rule: User page spam detection)
- 13:16, 7 June 2025 Abuse filter talk contribs blocked the autopromotion of Luminaire for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 13:13, 7 June 2025 User account Luminaire talk contribs was created
- 02:44, 7 June 2025 User account Jose Alpaca talk contribs was created
- 11:56, 6 June 2025 -ffs-PLASMA talk contribs created page Client on Linux using Bottles/Soda Manual (Created page with "==Requirements== * A Linux Distro supporting Bottles/Soda, this guide uses Bazzite which is based on Fedora * Bottles with Soda runner * A copy of GTA:SA * [https://www.mtasa.com/ MTA Installer] ==Installing Bottles/Soda== # Install Bottles via your Distro packet manager, for Bazzite, the "Discover App Store" provides the latest builds to install # After installing, launch Bottles and let it do some initialization on first startup # When it's loaded up, click on the p...")
- 11:55, 6 June 2025 -ffs-PLASMA talk contribs created page File:Linux-bottles-soda-setup-4.png
- 11:55, 6 June 2025 -ffs-PLASMA talk contribs uploaded File:Linux-bottles-soda-setup-4.png
- 11:53, 6 June 2025 -ffs-PLASMA talk contribs created page File:Linux-bottles-soda-setup-5.png
- 11:53, 6 June 2025 -ffs-PLASMA talk contribs uploaded File:Linux-bottles-soda-setup-5.png
- 11:52, 6 June 2025 -ffs-PLASMA talk contribs created page File:Linux-bottles-soda-setup-3.png
- 11:52, 6 June 2025 -ffs-PLASMA talk contribs uploaded File:Linux-bottles-soda-setup-3.png