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).
- 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...")
- 05:47, 9 October 2021 Thisdp talk contribs created page DgsCircleSetRadius (Created page with "__NOTOC__ {{Client function}} This function set the outside/inside radius of the dgs circle. ==Syntax== <syntaxhighlight lang="lua"> bool dgsCircleSetRadius( dgs-circle ci...")
- 12:23, 14 September 2021 Thisdp talk contribs created page Math.rotVecToEulerAngle (Created page with "{{Useful Function}} ==Syntax== <syntaxhighlight lang="lua">float float float math.rotVecToEulerAngle( float x, float y, float z, float rot )</syntaxhighlight> ===Required Arg...")
- 16:20, 6 September 2021 Thisdp talk contribs created page Template:DGS Plugin/Screen Source Functions (Created page with "*dgsCreateScreenSource *dgsScreenSourceSetUVPosition *dgsScreenSourceGetUVPosition *dgsScreenSourceSetUVSize *dgsScreenSourceGetUVSize")
- 03:10, 9 August 2021 Thisdp talk contribs created page DgsSelectorSetItemFont (Created page with "{{Client function}} This function changes the font of an item of a dgs selector. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSelectorSetItemFont( element selector, int...")
- 03:07, 9 August 2021 Thisdp talk contribs created page DgsGridListSetItemFont (Created page with "{{Client function}} This function changes the font of an item of a dgs grid list. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGridListSetItemFont( element gridList, int...")
- 02:59, 9 August 2021 Thisdp talk contribs created page DgsScrollBarGetCursorWidth (Created page with "{{client function}} This function gets the width of cursor. ==Syntax== <syntaxhighlight lang="lua"> float dgsScrollBarGetCursorWidth( element scrollBar [, bool relative ] ) <...")
- 17:19, 7 August 2021 Thisdp talk contribs created page Template:DGS Plugin/Gradient (Created page with "*dgsCreateGradient *dgsGradientSetColor *dgsGradientGetColor *dgsGradientSetRotation *dgsGradientGetRotation *dgsGradientSetTexture *dgsGradientGetTe...")
- 11:58, 17 July 2021 Thisdp talk contribs created page DgsLineRemoveItem (Created page with "__NOTOC__ {{Client function}} This function removes an item from DGS Line. ==Syntax== <syntaxhighlight lang="lua"> bool dgsLineRemoveItem( element line, int itemIndex ) </s...")
- 11:56, 17 July 2021 Thisdp talk contribs created page DgsLineAddItem (Created page with "__NOTOC__ {{Client function}} This function adds an item into DGS Line. ==Syntax== <syntaxhighlight lang="lua"> int dgsLineAddItem( element line , float startX, float start...")
- 11:48, 17 July 2021 Thisdp talk contribs created page DgsPasteHandlerIsEnabled (Created page with "__NOTOC__ {{Client function}} This function gets whether the DGS Paste Handler is enabled or not. ==Syntax== <syntaxhighlight lang="lua"> bool dgsPasteHandlerIsEnabled ( )...")
- 11:47, 17 July 2021 Thisdp talk contribs created page DgsPasteHandlerIsFocused (Created page with "__NOTOC__ {{Client function}} This function gets whether the DGS Paste Handler is focused or not. ==Syntax== <syntaxhighlight lang="lua"> bool dgsPasteHandlerIsFocused( ) <...")
- 11:44, 17 July 2021 Thisdp talk contribs created page DgsPasteHandlerSetFocused (Created page with "__NOTOC__ {{Client function}} This function focus/blur DGS Paste Handler. ==Syntax== <syntaxhighlight lang="lua"> bool dgsPasteHandlerSetEnabled( bool state ) </syntaxhighl...")
- 11:31, 17 July 2021 Thisdp talk contribs created page DgsPasteHandlerSetEnabled (Created page with "__NOTOC__ {{Client function}} This function enables/disables DGS Paste Handler. This paste handler will enable player to paste (ctrl+v) something with format. ==Syntax== <...")
- 12:59, 18 June 2021 Thisdp talk contribs created page DgsRemoveDropHandler (Created page with "__NOTOC__ {{Client function}} This function removes the '''Drop''' handler from a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsRemoveDropHandler( element dg...")
- 12:53, 18 June 2021 Thisdp talk contribs created page DgsEditSetTypingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function changes the volume of the typing sound to a dgs edit. ==Syntax== <syntaxhighlight lang="lua"> bool dgsEditSetTypingSoundVolume( e...")
- 12:53, 18 June 2021 Thisdp talk contribs created page DgsEditGetTypingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function gets the volume of the typing sound of a dgs edit ==Syntax== <syntaxhighlight lang="lua"> number dgsEditGetTypingSoundVolume( ele...")
- 12:52, 18 June 2021 Thisdp talk contribs created page DgsMemoGetTypingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function gets the volume of the typing sound of a dgs memo ==Syntax== <syntaxhighlight lang="lua"> number dgsMemoGetTypingSoundVolume( ele...")
- 12:48, 18 June 2021 Thisdp talk contribs created page DgsMemoSetTypingSoundVolume (Created page with "{{Client function}} __NOTOC__ This function applies a typing sound to a dgs memo. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMemoSetTypingSoundVolume( element memo, num...")
- 08:02, 23 May 2021 Thisdp talk contribs created page DgsGetValueFromStyle (Created page with "{{Client function}} __NOTOC__ This function returns the value from a '''loaded''' style( current style if not specified ) from DGS global or a specific resource. ==Syntax==...")
- 07:55, 23 May 2021 Thisdp talk contribs created page DgsGetAddedStyleList (Created page with "{{Client function}} __NOTOC__ This function get the added style list from DGS global or a specific resource. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGetAddedStyleLis...")