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).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 07:35, 12 August 2023 Thisdp talk contribs created page OnDgsMenuHover (Created page with "{{Client event}} __NOTOC__ This event is fired when cursor enters an item of a DGS menu. ==Parameters== <syntaxhighlight lang="lua"> dgs-dxmenu subMenu, integer itemUniqueIndex </syntaxhighlight> * '''subMenu''': The sub dgs-dxmenu that the item in. * '''itemUniqueIndex''': The item id. ==Source== The source of this event is the root dgs menu element. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local menu = DGS:dgsCreat...")
  • 07:34, 12 August 2023 Thisdp talk contribs created page OnDgsMenuSelect (Created page with "{{Client event}} __NOTOC__ This event is fired when the item of a DGS menu is clicked. ==Parameters== <syntaxhighlight lang="lua"> dgs-dxmenu subMenu, integer itemUniqueIndex </syntaxhighlight> * '''subMenu''': The sub dgs-dxmenu that the item in. * '''previous''': The item id that last selected. ==Source== The source of this event is the root dgs menu element. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local menu = DG...")
  • 07:29, 12 August 2023 Thisdp talk contribs created page Template:DGS Events/Menu (Created page with "*onDgsMenuHover *onDgsMenuSelect")
  • 07:25, 12 August 2023 Thisdp talk contribs created page Template:DGS Menu Functions (Created page with "*dgsCreateMenu *dgsMenuShow *dgsMenuHide *dgsMenuAddItem *dgsMenuSetItemCommand *dgsMenuGetItemCommand *dgsMenuSetItemText *dgsMenuGetItemText *dgsMenuSetItemTextSize *dgsMenuGetItemTextSize *dgsMenuSetItemColor *dgsMenuGetItemColor *dgsMenuAddSeparator *dgsMenuRemoveItem")
  • 10:39, 5 August 2023 Thisdp talk contribs created page DgsComboBoxRemoveItemImage (Created page with "{{Client function}} This function remove the image from the combo box item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxRemoveItemImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item. ===Returns=== Returns '''true''' if set successfully, ''false'' if one of the arguments was invalid. ==Example==...")
  • 10:37, 5 August 2023 Thisdp talk contribs created page DgsComboBoxGetItemImage (Created page with "{{Client function}} This function gets the image from a combo box item. ==Syntax== <syntaxhighlight lang="lua"> texture, int, float, float, float, float dgsComboBoxGetItemImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item. ===Returns=== Returns texture, Color, PosX, PosY, Width, Height if success , ''false'...")
  • 10:35, 5 August 2023 Thisdp talk contribs created page DgsComboBoxSetItemImage (Created page with "{{Client function}} This function sets the image on a combo box item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetItemImage( element comboBox, int itemIndex, element texture [, int color = 0xFFFFFFFF, float offsetX = 0, float offsetY = 0, float width, float height, bool relative ] ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item...")
  • 11:51, 11 February 2023 Thisdp talk contribs created page OnDgsElementLeave (Created page with "{{Client event}} __NOTOC__ This event is fired when the user moves the mouse away from a DGS element even this DGS element is blocked by other DGS elements. '''But you have to set property enableFullEnterLeaveCheck of the DGS element to ''true'''''. ==Parameters== <syntaxhighlight lang="lua"> int absoluteX, int absoluteY </syntaxhighlight> * '''absoluteX''': the X position of the mouse cursor, in pixels, measured from the left side of the screen. * '''absoluteY'...")
  • 11:49, 11 February 2023 Thisdp talk contribs created page OnDgsElementEnter (Created page with "{{Client event}} __NOTOC__ This event is fired when the user moves the mouse over a DGS element even this DGS element is blocked by other DGS elements. '''But you have to set property enableFullEnterLeaveCheck of the DGS element to ''true'''''. ==Parameters== <syntaxhighlight lang="lua"> int absoluteX, int absoluteY, element leftGUI </syntaxhighlight> * '''absoluteX''': the X position of the mouse cursor, in pixels, measured from the left side of the screen. * '...")
  • 15:59, 5 February 2023 Thisdp talk contribs created page DgsRadioButtonGetButtonAlign (Created page with "{{Client function}} __NOTOC__ This function gets the alignment of the button of a dgs radio button. ==Syntax== <syntaxhighlight lang="lua"> string dgsRadioButtonGetButtonAlign ( dgsRadioButton ) </syntaxhighlight> ===Required Arguments=== *'''radioButton:''' The dgs radio button. ===Returns=== Returns a ''string'' indicates the alignment of the button of a dgs radio button if successful, ''false'' otherwise. Valid type strings are: **"left": The dgs radio button wi...")
  • 15:54, 5 February 2023 Thisdp talk contribs created page DgsRadioButtonGetButtonSide (Created page with "{{Client function}} __NOTOC__ This function gets the side of the button of a dgs radio button. ==Syntax== <syntaxhighlight lang="lua"> string dgsRadioButtonGetButtonSide ( dgsRadioButton [, string side = "left" ] ) </syntaxhighlight> ===Required Arguments=== *'''radioButton:''' The dgs radio button. ===Returns=== Returns a ''string'' indicates side of the button if successful, ''false'' otherwise. Valid type strings are: *"left": The dgs radio button will be placed i...")
  • 15:49, 5 February 2023 Thisdp talk contribs created page DgsCheckBoxGetButtonSide (Created page with "{{Client function}} __NOTOC__ This function gets the side of the button of a dgs check box. ==Syntax== <syntaxhighlight lang="lua"> string dgsCheckBoxGetButtonSide ( dgsCheckBox [, string side = "left" ] ) </syntaxhighlight> ===Required Arguments=== *'''checkBox:''' The dgs check box. ===Returns=== Returns a ''string'' indicates side of the button if successful, ''false'' otherwise. Valid type strings are: **"left": The dgs check box will be placed in the left side o...")
  • 15:47, 5 February 2023 Thisdp talk contribs created page DgsRadioButtonSetButtonSide (Created page with "{{Client function}} __NOTOC__ This function sets the side of the button of a dgs radio button. ==Syntax== <syntaxhighlight lang="lua"> bool dgsRadioButtonSetButtonSide ( dgsRadioButton [, string side = "left" ] ) </syntaxhighlight> ===Required Arguments=== *'''checkBox:''' The dgs radio button. *'''side:''' The side of the button of the dgs radio button is placed. Valid type strings are: **"left": The dgs radio button will be placed in the left side of the text. **"ri...")
  • 15:41, 5 February 2023 Thisdp talk contribs created page DgsCheckBoxSetButtonSide (Created page with "{{Client function}} __NOTOC__ This function sets the side of the button of a dgs check box. ==Syntax== <syntaxhighlight lang="lua"> bool dgsCheckBoxSetButtonSide ( dgsCheckBox [, string side = "left" ] ) </syntaxhighlight> ===Required Arguments=== *'''checkBox:''' The dgs check box. *'''side:''' The side of the button of the dgs check box is aligned to. Valid type strings are: **"left": The dgs check box will be placed at the left side of the text. **"right": The dgs...")
  • 15:35, 5 February 2023 Thisdp talk contribs created page DgsRadioButtonSetButtonAlign (Created page with "{{Client function}} __NOTOC__ This function sets the alignment of the button of a dgs radio button. ==Syntax== <syntaxhighlight lang="lua"> bool dgsRadioButtonSetButtonAlign ( dgsRadioButton [, string side = "left"] ) </syntaxhighlight> ===Required Arguments=== *'''radioButton:''' The dgs radio button to set the vertical alignment. *'''side:''' The side the dgs radio button's button is aligned to. Valid type strings are: **"left": The dgs radio button will be aligne...")
  • 13:43, 29 January 2023 Thisdp talk contribs moved page AR/Resource:Dgs to AR/Resource:DGS
  • 13:43, 29 January 2023 Thisdp talk contribs moved page PL/Resource:Dgs to PL/Resource:DGS
  • 13:43, 29 January 2023 Thisdp talk contribs moved page Talk:PL/Resource:Dgs to Talk:PL/Resource:DGS
  • 13:43, 29 January 2023 Thisdp talk contribs moved page ZH-CN/Resource:Dgs to ZH-CN/Resource:DGS
  • 13:43, 29 January 2023 Thisdp talk contribs moved page Talk:ZH-CN/Resource:Dgs to Talk:ZH-CN/Resource:DGS
  • 12:08, 29 January 2023 Thisdp talk contribs moved page PL/Dgs to PL/Resource:Dgs
  • 12:08, 29 January 2023 Thisdp talk contribs moved page Talk:PL/Dgs to Talk:PL/Resource:Dgs
  • 12:05, 29 January 2023 Thisdp talk contribs moved page ZH-CN/Dgs to ZH-CN/Resource:Dgs
  • 12:05, 29 January 2023 Thisdp talk contribs moved page Talk:ZH-CN/Dgs to Talk:ZH-CN/Resource:Dgs
  • 12:04, 29 January 2023 Thisdp talk contribs created page AR/Resource:Dgs (Created page with "1")
  • 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...")
  • 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...")
  • 11:27, 24 December 2022 Thisdp talk contribs created page DgsSetMouseStayDelay (Created page with "{{Client function}} __NOTOC__ This function sets the delay time that from mouse stops moving and cursor stays at a DGS element to onDgsMouseStay event triggers. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetMouseStayDelay( int interval ) </syntaxhighlight> ===Required Arguments=== *'''delay:''' An int of the delay time. ===Returns=== Returns ''true'' if successful, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs DGS:dgsSetMou...")
  • 11:24, 24 December 2022 Thisdp talk contribs created page DgsGetMouseStayDelay (Created page with "{{Client function}} __NOTOC__ This function gets the delay time that from mouse stops moving and cursor stays at a DGS element to onDgsMouseStay event triggers. ==Syntax== <syntaxhighlight lang="lua"> int dgsGetMouseStayDelay( ) </syntaxhighlight> ===Returns=== Returns a ''integer'' indicates the delay of staying of mouse. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local interval = DGS:dgsGetMouseStayDelay() outputChatBox(interval) </syntaxhighli...")
  • 11:18, 24 December 2022 Thisdp talk contribs created page DgsTooltipRemoveFrom (Created page with "__NOTOC__ {{Client function}} This function removes tooltip from a DGS element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsTooltipRemoveFrom( element targetElement ) </syntaxhighlight> thumb|example ===Required Arguments=== *'''targetElement:''' A DGS element that you want to remove the tooltip from. ===Returns=== Returns ''true'' if successful, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs --...")
  • 11:10, 24 December 2022 Thisdp talk contribs created page DgsCreateToolTip (Created page with "__NOTOC__ {{Client function}} This function creates a tooltip as template that can be applied to any DGS elements. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateToolTip( [ int textColor = 0xFFFFFFFF, int bgColor = 0x80000000, texture bgImage = nil ] ) </syntaxhighlight> thumb|example ===Optional Arguments=== *'''textColor :''' An integer of the color of the text of the tooltip. *'''bgColor:''' An integer of the background c...")
  • 11:09, 24 December 2022 Thisdp talk contribs uploaded File:DGSTooltipExample.png
  • 11:09, 24 December 2022 Thisdp talk contribs created page File:DGSTooltipExample.png
  • 11:08, 24 December 2022 Thisdp talk contribs created page DgsTooltipApplyTo (Created page with "__NOTOC__ {{Client function}} This function creates a tooltip as template that can be applied to any DGS elements. ==Syntax== <syntaxhighlight lang="lua"> element dgsTooltipApplyTo( [ int textColor = 0xFFFFFFFF, int bgColor = 0x80000000, texture bgImage = nil ] ) </syntaxhighlight> thumb|example ===Optional Arguments=== *'''textColor :''' An integer of the color of the text of the tooltip. *'''bgColor:''' An integer of the background color of...")
  • 11:01, 24 December 2022 Thisdp talk contribs created page OnDgsMouseStay (Created page with "{{Client event}} __NOTOC__ This event is fired when the cursor first stays at a DGS element without moving. ==Parameters== <syntaxhighlight lang="lua"> int absoluteX, int absoluteY, element leftGUI </syntaxhighlight> * '''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 pixels, measured from the top of the screen. ==Source== The event system#Event sour...")
  • 10:55, 24 December 2022 Thisdp talk contribs created page OnDgsMouseDoubleClickDown (Created page with "{{Client event}} __NOTOC__ This event will be fired when double clicking on any dgs element but detects clicking down (Mouse press). {{Note|This event will not trigger when onDgsMouseClick is cancelled.}} ==Parameters== <syntaxhighlight lang="lua"> string button, string state, int absoluteX, int absoluteY, bool isCoolingDown </syntaxhighlight> *'''button''': the name of the button which will be clicked , it can be ''left'', ''right'', ''middle''. *'''state''': a s...")
  • 10:54, 24 December 2022 Thisdp talk contribs created page OnDgsMouseDoubleClickUp (Created page with "{{Client event}} __NOTOC__ This event will be fired when double clicking on any dgs element but detects clicking up (Mouse release). {{Note|This event will not trigger when onDgsMouseClick is cancelled.}} ==Parameters== <syntaxhighlight lang="lua"> string button, string state, int absoluteX, int absoluteY, bool isCoolingDown </syntaxhighlight> *'''button''': the name of the button which will be clicked , it can be ''left'', ''right'', ''middle''. *'''state''': a s...")
  • 10:49, 24 December 2022 Thisdp talk contribs created page Template:DGS Plugin/Tooltips (Created page with " *dgsCreateToolTip *dgsTooltipApplyTo *dgsTooltipRemoveFrom")
  • 14:00, 3 November 2022 Thisdp talk contribs created page DgsWindowGetTextSize (Created page with "{{Client function}} __NOTOC__ This function retrieves the theoretical width and height (in pixels) of a certain piece of title text of dgs window. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsWindowGetTextSize( element theWindow ) </syntaxhighlight> ===Required Arguments=== *'''theWindow:''' The window of whose text you wish to retrieve the width and height. ===Returns=== Returns two floats representing the width and height of the text in pixels. ==Examp...")
  • 13:55, 3 November 2022 Thisdp talk contribs created page DgsWindowGetFontHeight (Created page with "{{Client function}} __NOTOC__ This function returns the height of the font currently used in title text of a DGS window. ==Syntax== <syntaxhighlight lang="lua"> float dgsWindowGetFontHeight ( element theWindow ) </syntaxhighlight> ===Required Arguments=== *'''theWindow:''' The window to get the font height from. ===Returns=== Returns the absolute height of the font currently used in the window if the function is successful, ''false'' otherwise. ==Example== This ex...")
  • 13:52, 3 November 2022 Thisdp talk contribs created page DgsButtonGetFontHeight (Created page with "{{Client function}} __NOTOC__ This function returns the height of the font currently used in a DGS button. ==Syntax== <syntaxhighlight lang="lua"> float dgsButtonGetFontHeight ( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button to get the font height from. ===Returns=== Returns the absolute height of the font currently used in the button if the function is successful, ''false'' otherwise. ==Example== This example creates...")
  • 13:51, 3 November 2022 Thisdp talk contribs created page DgsButtonGetTextExtent (Created page with "{{Client function}} __NOTOC__ This function returns the extent, or width, of the current text inside a DGS button. ==Syntax== <syntaxhighlight lang="lua"> float dgsButtonGetTextExtent ( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button to get the text extent from. ===Returns=== Returns the absolute width of the current text inside the button if the function is successful, ''false'' otherwise. ==Example== This example crea...")
  • 13:50, 3 November 2022 Thisdp talk contribs created page DgsButtonGetTextSize (Created page with "{{Client function}} __NOTOC__ This function retrieves the theoretical width and height (in pixels) of a certain piece of text of dgs button. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsButtonGetTextSize( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button of whose text you wish to retrieve the width and height. ===Returns=== Returns two floats representing the width and height of the text in pixels. ==Example==...")
  • 13:49, 3 November 2022 Thisdp talk contribs created page DgsWindowGetTextExtent (Created page with "{{Client function}} __NOTOC__ This function returns the extent, or width, of the current title text of a DGS window. ==Syntax== <syntaxhighlight lang="lua"> float dgsWindowGetTextExtent ( element theWIndow ) </syntaxhighlight> ===Required Arguments=== *'''theWIndow:''' The window to get the title text extent from. ===Returns=== Returns the absolute width of the the current title text of a DGS window if the function is successful, ''false'' otherwise. ==Example== T...")
  • 15:35, 9 July 2022 Thisdp talk contribs moved page Resource:Dgs to Resource:DGS
  • 15:33, 9 July 2022 Thisdp talk contribs moved page DgsEditSetWhiteList to DgsEditSetTextFilter
  • 16:52, 11 April 2022 Thisdp talk contribs created page DGS Style System (Created page with "==<span style="color:#000000;text-shadow:0.05em 0.05em 0.2em #00000099;">Description</span>== *DGS Style System is another way to change the colors or images of the DGS elements to be created except for the use of dgsSetproperty. *DGS Style System has a '''Default ''' style that will be loaded on start. The '''Default''' style is '''not''' recommended to modify, because '''/updatedgs''' will override your changes.")
  • 13:26, 5 April 2022 Thisdp talk contribs created page DgsComboBoxGetItemData (Created page with "{{Client function}} This function gets an Item Data associated to a combo box item. ==Syntax== <syntaxhighlight lang="lua"> mixed dgsComboBoxGetItemData ( element combobox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''combobox:''' the combobox containing the item you're interested in. *'''itemIndex:''' the item index of the item. ===Returns=== Returns the item data of the specified item, ''false'' otherwise. ==Example== This example displays a...")
  • 17:29, 23 March 2022 Thisdp talk contribs created page DgsIsDragNDropData (Created page with "__NOTOC__ {{Client function}} This function checks whether there is some data holding on cursor. ==Syntax== <syntaxhighlight lang="lua"> bool dgsIsDragNDropData ( ) </syntaxhighlight> ===Required Arguments=== None ===Returns=== Returns ''true'' if there is some data holding on cursor, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> loadstring(exports.dgs:dgsImportFunction())()-- load functions local sender = dgsCreateButton(200,200,200,200,"Sender"...")
  • 17:25, 23 March 2022 Thisdp talk contribs created page DgsRetrieveDragNDropData (Created page with "__NOTOC__ {{Client function}} This function retrieves the Drag&Drop data that is holding on cursor. ==Syntax== <syntaxhighlight lang="lua"> bool dgsRetrieveDragNDropData ( [ bool retainData = false ] ) </syntaxhighlight> ===Required Arguments=== None ===Optional Arguments=== *'''retainData''': A bool indicates whether the data will be retain holding or just cleared. ===Returns=== Returns ''true'' if successful, ''false'' otherwise ==Example== <syntaxhighlight l...")
  • 17:16, 23 March 2022 Thisdp talk contribs created page DgsSendDragNDropData (Created page with "__NOTOC__ {{Client function}} This function makes the possibility of transfering '''dynamic''' data between dgs elements by Drag&Drop, which is useful for inventory system. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSendDragNDropData ( mixed dragData [, material preview = nil, int previewColor = tocolor(255,255,255,255), float previewOffsetX = 0, float previewOffsetY = 0, float previewWidth = 20, float previewHeight = 20, string previewHorizontalAlign = "center",...")
  • 16:50, 23 March 2022 Thisdp talk contribs moved page DgsGetDxGUIFromResource to DgsGetElementsFromResource
  • 16:49, 23 March 2022 Thisdp talk contribs moved page DgsGetDxGUINoParent to DgsGetElementsInLayer
  • 06:45, 21 March 2022 Thisdp talk contribs created page Dgs-dxline (Created page with "DGS Properties is always used to change the gui style and make it more fantastic. This page shows the properties of dgs-dxline that you could use. ==Main Functions== *dgsSetProperty *dgsGetProperty ==Properties== ===color=== The color which can be translated by tocolor of the default color of the line. If the color of item is not specified, this color will be used. <syntaxhighlight lang="lua">dgsSetProperty(line,"color",color)</syntaxhighlight> *''...")
  • 06:42, 21 March 2022 Thisdp talk contribs created page Dgs-dx3dline (Created page with "DGS Properties is always used to change the gui style and make it more fantastic. This page shows the properties of dgs-dx3dline that you could use. ==Main Functions== *dgsSetProperty *dgsGetProperty ==Properties== ===color=== The color which can be translated by tocolor of the default color of the 3d line. If the color of item is not specified, this color will be used. <syntaxhighlight lang="lua">dgsSetProperty(line3D,"color",color)</syntaxhighlig...")
  • 15:59, 16 March 2022 Thisdp talk contribs created page DgsLabelGetTextSize (Created page with "{{Client function}} __NOTOC__ This function retrieves the theoretical width and height (in pixels) of a certain piece of text of dgs label. ==Syntax== <syntaxhighlight lang="lua"> float float dgsLabelGetTextSize( element theLabel ) </syntaxhighlight> ===Required Arguments=== *'''theLabel:''' The label of whose text you wish to retrieve the width and height. ===Returns=== Returns two floats representing the width and height of the text in pixels. ==Example== This e...")
  • 16:35, 14 March 2022 Thisdp talk contribs created page DgsComboBoxSetItemData (Created page with "{{Client function}} This function sets an Item Data associated to a combo box item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetItemData ( element combobox, int itemIndex, mixed data ) </syntaxhighlight> ===Required Arguments=== *'''combobox:''' the combobox containing the item you're interested in. *'''itemIndex:''' the item index of the item. *'''data:''' the data you want to set. ===Returns=== Returns '''true''' if set successfully, ''false'' if...")
  • 17:20, 26 February 2022 Thisdp talk contribs created page DgsSVGGetRawDocument (Created page with "{{Client function}} __NOTOC__ Gets the raw xml data from an svg or an svg node. ==Syntax== <syntaxhighlight lang="lua"> string dgsSVGGetRawDocument( mixed svgNode ) </syntaxhighlight> ===Required Arguments=== *'''svgNode:''' The svg element or the xml node you want to get the raw data from. ===Returns=== * Returns a ''string'' if successful, ''false'' otherwise. ==Example== <section name="Client" class="client" show="true"> <syntaxhighlight lang="lua"> loadstrin...")
  • 12:49, 7 February 2022 Thisdp talk contribs created page DgsLineSetItemColor (Created page with "__NOTOC__ {{Client function}} This function sets the color of an item of dgs line. ==Syntax== <syntaxhighlight lang="lua"> bool dgsLineSetItemColor( element line, int index, int color ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line element. *'''index''': The item index. *'''color:''' An integer of color (0-‭4294967295‬), use tocolor for converting RGBA to color number. ===Returns=== Returns ''true'' if successful, ''false'' otherwis...")
  • 12:44, 7 February 2022 Thisdp talk contribs created page DgsLineGetItemPosition (Created page with "__NOTOC__ {{Client function}} This function gets the position of an item of dgs line. ==Syntax== <syntaxhighlight lang="lua"> float/nil, float/nil, float, float, bool dgsLineGetItemPosition (element line, int index ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line element. *'''index''': The item index. ===Returns=== Returns 4 ''float''s and a ''bool'' Or 2 ''nil''s, 2 ''float''s and a ''bool'' indicates the startX, startY, endX, endY and rel...")
  • 12:34, 7 February 2022 Thisdp talk contribs created page DgsLineSetItemPosition (Created page with "__NOTOC__ {{Client function}} This function sets the position of an item of dgs line. ==Syntax== <syntaxhighlight lang="lua"> bool dgsLineSetItemPosition (element line, int index, float startX = previousEndX, float startY = previousEndY, float endX, float endY [, float relative = false ] ) </syntaxhighlight> ===Required Arguments=== *'''line''': The DGS Line element. *'''startX:''' A float of the 2D x position of start position of the line on a player's screen, set...")
  • 10:53, 7 February 2022 Thisdp talk contribs created page DgsScrollBarSetArrowSize (Created page with "{{client function}} This function changes the size of arrow. ==Syntax== <syntaxhighlight lang="lua"> bool dgsScrollBarSetArrowSize( element scrollBar, float size [, bool relative ] ) </syntaxhighlight> thumb|DGS Scroll Detail ===Required Arguments=== *'''scrollBar:''' The dgs scrollbar you want to set arrow size to. *'''size:''' A number of the size of scroll bar's arrow. ===Optional Arguments=== *'''relative:''' This is whether size...")
  • 10:51, 7 February 2022 Thisdp talk contribs created page DgsScrollBarGetArrowSize (Created page with "{{client function}} This function gets the size of arrow. ==Syntax== <syntaxhighlight lang="lua"> float dgsScrollBarGetArrowSize( element scrollBar [, bool relative ] ) </syntaxhighlight> thumb|DGS Scroll Detail ===Required Arguments=== *'''scrollBar:''' The dgs scrollbar you want to get arrow size from. ===Optional Arguments=== *'''relative:''' This is whether sizes and positioning are relative. If this is true, then width must be b...")
  • 10:47, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceGetDimension to Dgs3DGetDimension
  • 10:44, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceSetDimension to Dgs3DSetDimension
  • 10:43, 7 February 2022 Thisdp talk contribs created page Template:DGS 3D Element Functions (Created page with "*dgs3DInterfaceGetPosition *dgs3DInterfaceSetPosition *dgs3DInterfaceGetInterior *dgs3DInterfaceSetInterior *dgs3DInterfaceSetDimension *dgs3DInterfaceGetDimension")
  • 10:42, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceSetInterior to Dgs3DSetInterior
  • 10:41, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceGetInterior to Dgs3DGetInterior
  • 09:54, 7 February 2022 Thisdp talk contribs moved page Dgs3DGetRotation to Dgs3DInterfaceGetRoll
  • 09:53, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceGetRotation to Dgs3DGetRotation
  • 09:52, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceSetRotation to Dgs3DInterfaceSetRoll
  • 09:51, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceSetPosition to Dgs3DSetPosition
  • 09:50, 7 February 2022 Thisdp talk contribs moved page Dgs3DInterfaceGetPosition to Dgs3DGetPosition
  • 06:05, 7 February 2022 Thisdp talk contribs created page DgsScrollBarGetTroughWidth (Created page with "{{client function}} This function gets the width of trough. ==Syntax== <syntaxhighlight lang="lua"> float dgsScrollBarGetTroughWidth( element scrollBar [, bool relative ] ) </syntaxhighlight> thumb|DGS Scroll Detail ===Required Arguments=== *'''scrollBar:''' The dgs scrollbar you want to get trough width from. ===Optional Arguments=== *'''relative:''' This is whether sizes and positioning are relative. If this is true, then width mus...")
  • 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...")
  • 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")
  • 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...")
  • 15:04, 22 December 2021 Thisdp talk contribs created page Template:DGS Layout Functions (Created page with "*dgsCreateLayout *dgsLayoutAddItem *dgsLayoutRemoveItem *dgsLayoutGetItemIndex")
  • 02:46, 20 December 2021 Thisdp talk contribs created page DgsGetClickingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function gets the volume of the clicking sound of a dgs element ==Syntax== <syntaxhighlight lang="lua"> number dgsGetClickingSoundVolume( element dgsElement ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to set. ===Returns=== Returns a ''float'' indicates the volume of the clicking sound if succeed, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs btn = DG...")
  • 02:45, 20 December 2021 Thisdp talk contribs created page DgsSetClickingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function changes the volume of the clicking sound to a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetClickingSoundVolume( element dgsElement, number volume ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to set. *'''volume:''' A floating point number representing the desired clicking sound volume level. Range is from 0.0 to 1.0. This can go above 1.0 for amplification. ===...")
  • 02:44, 20 December 2021 Thisdp talk contribs created page DgsGetClickingSound (Created page with "{{Client function}} __NOTOC__ This function gets the clicking sound that has already been applied. ==Syntax== <syntaxhighlight lang="lua"> string dgsGetClickingSound( element dgsElement ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to get from. ===Returns=== Returns a string if there is a clicking sound applied, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs btn = DGS:dgsCreateButton(0.2...")
  • 02:42, 20 December 2021 Thisdp talk contribs created page DgsSetClickingSound (Created page with "{{Client function}} __NOTOC__ This function applies a clicking sound to a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetClickingSound( element dgsElement, string soundPath ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to apply to. *'''soundPath :''' A string of the path of the sound ( url is supported ) '''nil for disabled''' ===Returns=== Returns ''true'' if succeed, ''false'' otherwise. ==Example== <sy...")
  • 04:28, 21 November 2021 Thisdp talk contribs created page DgsGradientSetColorOverwritten (Created page with "__NOTOC__ {{Client function}} This function sets whether the color of gradient will overwrite the color of dx functions. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten ) </syntaxhighlight> ===Required Arguments=== *'''gradient:''' A dgs gradient element. *'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader...")
  • 04:28, 21 November 2021 Thisdp talk contribs created page DgsGradientGetColorOverwritten (Created page with "__NOTOC__ {{Client function}} This function sets whether the color of gradient will overwrite the color of dx functions. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten ) </syntaxhighlight> ===Required Arguments=== *'''gradient:''' A dgs gradient element. *'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader...")
  • 04:23, 21 November 2021 Thisdp talk contribs created page File:DGS Gradient.png
  • 04:23, 21 November 2021 Thisdp talk contribs uploaded File:DGS Gradient.png
  • 15:08, 5 November 2021 Thisdp talk contribs created page DgsBlurBoxSetFilter (Created page with "__NOTOC__ {{Client function}} This function applies a dgs shape plugin to a blurbox. ==Syntax== <syntaxhighlight lang="lua"> bool dgsBlurBoxSetFilter( element blurbox [, s...")
  • 06:00, 9 October 2021 Thisdp talk contribs created page DgsCircleSetTextureRotation (Created page with "__NOTOC__ {{Client function}} This function changes the texture rotation of the dgs circle. ==Syntax== <syntaxhighlight lang="lua"> bool dgsCircleSetTextureRotation( eleme...")
  • 05:55, 9 October 2021 Thisdp talk contribs created page DgsCircleGetTexture (Created page with "__NOTOC__ {{Client function}} This function gets the texture from the dgs circle. ==Syntax== <syntaxhighlight lang="lua"> element dgsCircleGetTexture( element circle ) </s...")
  • 05:53, 9 October 2021 Thisdp talk contribs created page DgsCircleSetTexture (Created page with "__NOTOC__ {{Client function}} This function applies a texture into dgs circle. ==Syntax== <syntaxhighlight lang="lua"> bool dgsCircleSetTexture( element circle [ element t...")
  • 05:49, 9 October 2021 Thisdp talk contribs created page DgsCircleGetRadius (Created page with "__NOTOC__ {{Client function}} This function set the outside/inside radius of the dgs circle. ==Syntax== <syntaxhighlight lang="lua"> float,float dgsCircleGetRadius( dgs-dx...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)