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).
- 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
- 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 created page File:DGSTooltipExample.png
- 11:09, 24 December 2022 Thisdp talk contribs uploaded 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")
- 08:56, 24 December 2022 User account MonsefGX talk contribs was created
- 22:33, 23 December 2022 Myonlake talk contribs created page ResourceRoot (Redirected page to Predefined variables list) Tag: New redirect
- 20:48, 23 December 2022 User account Santiago bayona talk contribs was created
- 17:13, 23 December 2022 LordHenry talk contribs uploaded a new version of File:LordHenry-Logo.png (Design update)
- 16:58, 23 December 2022 LordHenry talk contribs created page File:Instagram.png (icon)
- 16:58, 23 December 2022 LordHenry talk contribs uploaded File:Instagram.png (icon)
- 16:06, 21 December 2022 Abuse filter talk contribs blocked TelecomIndustry 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)
- 16:06, 21 December 2022 Abuse filter talk contribs blocked the autopromotion of TelecomIndustry for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 16:03, 21 December 2022 User account TelecomIndustry talk contribs was created
- 15:21, 20 December 2022 User account LeoN talk contribs was created
- 13:21, 18 December 2022 User account T1fey talk contribs was created
- 07:36, 17 December 2022 User account GamerYT GTASA talk contribs was created
- 12:12, 16 December 2022 User account JackFrost talk contribs was created
- 01:48, 16 December 2022 User account Amkolden talk contribs was created
- 21:21, 15 December 2022 User account Youcef123 talk contribs was created
- 19:21, 15 December 2022 User account Levid talk contribs was created
- 15:15, 15 December 2022 Botder talk contribs deleted page File:26e896c9-d723-49d9-9063-ebe7ea11a852.jpg (Inappropriate)
- 10:05, 15 December 2022 User account Ricardooo talk contribs was created
- 00:21, 15 December 2022 Cadup9 talk contribs created page File:26e896c9-d723-49d9-9063-ebe7ea11a852.jpg (Resumindo, Eu vim aki pedir desculpa por usar hack no mta, queria vim pedir pra vcs me desbani, juro pra voces que nunca mais vou usar esse hack, vim aki porque estou com saudades de jogar mta, se conseguirem me desbanir agradeço vou estar deixando meu ip aki em baixo, agradeço a suas compreensão. Pesso desculpa por usar hack, no mta, na real eu usei hack pra pegar loot no serve INFECTIONZ so usei o hack nele, se conseguirem me desbanir agradeço. Mais uma vez pesso desculpa e obrigado pela c...)
- 00:21, 15 December 2022 Cadup9 talk contribs uploaded File:26e896c9-d723-49d9-9063-ebe7ea11a852.jpg (Resumindo, Eu vim aki pedir desculpa por usar hack no mta, queria vim pedir pra vcs me desbani, juro pra voces que nunca mais vou usar esse hack, vim aki porque estou com saudades de jogar mta, se conseguirem me desbanir agradeço vou estar deixando meu ip aki em baixo, agradeço a suas compreensão. Pesso desculpa por usar hack, no mta, na real eu usei hack pra pegar loot no serve INFECTIONZ so usei o hack nele, se conseguirem me desbanir agradeço. Mais uma vez pesso desculpa e obrigado pela c...)