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).
- 18:01, 22 August 2023 User account FullOffeD talk contribs was created
- 18:32, 20 August 2023 User account Lima talk contribs was created
- 03:46, 20 August 2023 User account Ceevyl talk contribs was created
- 23:54, 19 August 2023 User account Kleber talk contribs was created
- 00:30, 19 August 2023 Sousateew talk contribs created page PT-BR/Introdução OOP (Created page with "{{Nota|Se você contribuiu editando e ajustando esta página do fórum, se você se beneficiou deste tutorial ou se você tem algo a dizer; por favor, me dê um feedback no link do fórum fornecido abaixo.}} Este é um tutorial de script que explica o que é programação orientada a objetos e ensina como usar os recursos de OOP (Programação Orientada a Objetos) do MTA. Isso foi originalmente criado por qaisjp (discussão)...")
- 04:33, 18 August 2023 User account Z4 talk contribs was created
- 00:05, 18 August 2023 Sousateew talk contribs created page DxDrawDiamond (Create (eS/dxDrawRombo by ClawSuit))
- 21:13, 16 August 2023 User account Sladess talk contribs was created
- 08:20, 16 August 2023 User account Grzzly talk contribs was created
- 11:40, 15 August 2023 Thisdp talk contribs created page DgsComboBoxSetItemBackGroundColor (Created page with "{{Client function}} This function sets the background color of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetItemBackGroundColor( element comboBox, int itemIndex, texture imageDefault, texture imageHoving, texture imageSelected ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. *'''colorDefault:''' An integer of the colo...")
- 11:37, 15 August 2023 Thisdp talk contribs created page DgsComboBoxGetItemBackGroundColor (Created page with "{{Client function}} This function gets the background color of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> int, int, int dgsComboBoxGetRowBackGroundColor( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. ===Returns=== Returns 3 integers if exist are '''colorDefault''', '''colorHoving''', '''colorSelecte...")
- 11:34, 15 August 2023 Thisdp talk contribs created page DgsComboBoxGetItemBackGroundImage (Created page with "{{Client function}} This function gets the background texture of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> texture/nil, texture/nil, texture/nil dgsComboBoxGetItemBackGroundImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. ===Returns=== Returns 3 textures if exist are '''imageDefault''', '''imag...")
- 11:31, 15 August 2023 Thisdp talk contribs created page DgsComboBoxSetItemBackGroundImage (Created page with "{{Client function}} This function sets the row background texture of the combo box. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetRowBackGroundImage( element comboBox, int itemIndex, texture imageDefault, texture imageHoving, texture imageSelected ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. *'''imageDefault:''' An integer of the image of the item...")
- 11:12, 15 August 2023 User account King Ross talk contribs was created
- 06:54, 15 August 2023 User account TheRealSadra talk contribs was created
- 01:49, 15 August 2023 User account Carlosp talk contribs was created
- 17:44, 13 August 2023 User account Shehap010 talk contribs was created
- 21:22, 12 August 2023 User account RubyCommunity talk contribs was created
- 17:05, 12 August 2023 ClawSuit talk contribs created page DxGetLibrary (Created page with "__NOTOC__ {{Client Function}} Esta funcion extrae los diferentes exports de la libreria en forma de variables para hacer el uso de la libreria mas facil para ello debe de complementarse con '''<span style="color:#00ff00; text-shadow:black 0em 0.1em 0.1em;">loadstring</span>'''. <small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por Modern-Library!''</span>'''</small> ==Sintaxis== <syntaxhighlight lang="l...")
- 09:02, 12 August 2023 User account Angeotjon talk contribs was created
- 07:52, 12 August 2023 Thisdp talk contribs created page File:DGS Menu 1.png
- 07:52, 12 August 2023 Thisdp talk contribs uploaded File:DGS Menu 1.png
- 07:40, 12 August 2023 Thisdp talk contribs created page DgsCreateMenu (Created page with "__NOTOC__ {{Client function}} frame|Example DGS Menu. This function is for creating a DGS menu. DGS menu is '''invisible''' by default. To show menu, use dgsMenuShow. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateMenu( float x, float y, float width, float height, bool relative [, element parent = nil ] ) </syntaxhighlight> ===Required Arguments=== *'''x:''' A float of the 2D x position of the DGS menu on a player's screen. This i...")
- 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")
- 19:28, 11 August 2023 User account RealMANI talk contribs was created
- 17:24, 10 August 2023 User account Mohamed Zagalo talk contribs was created
- 16:33, 10 August 2023 CrosRoad95 talk contribs created page Surface format (Add surface format page)
- 10:47, 10 August 2023 ExMohmD talk contribs created page User:ExMohmD (Created page with " '''ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ...")
- 00:37, 10 August 2023 ClawSuit talk contribs created page DxListRemoveItem (Created page with "__NOTOC__ {{Client Function}} Esta funcion elimina un texto o item de una dxList. <small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por Modern-Library!''</span>'''</small> ==Sintaxis== <syntaxhighlight lang="lua">bool dxListRemoveItem(element, index int)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': Elemento dxList creado previamente. * '''index''': Un entero que representa la...")
- 00:20, 10 August 2023 ClawSuit talk contribs created page DxListAddItem (Created page with "__NOTOC__ {{Client Function}} Esta funcion agrega un texto al final de la una dxList. <small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por Modern-Library!''</span>'''</small> ==Sintaxis== <syntaxhighlight lang="lua">bool dxListAddItem(element, item)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': La dxList creada. * '''item''': Un texto(string) que se agregara a la lista. ==Eje...")
- 10:23, 8 August 2023 Abuse filter talk contribs blocked LussoBologna 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)
- 10:23, 8 August 2023 Abuse filter talk contribs blocked the autopromotion of LussoBologna for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 10:06, 8 August 2023 User account LussoBologna talk contribs was created
- 19:16, 7 August 2023 Botder talk contribs created page FileGetContents (Created page with "__NOTOC__ {{Server client function}} Reads the entire contents of the file '''starting from the current file position''', optionally verifies the read contents by computing and comparing the checksum with the expected one, and returns the content as string. Please note that even if you enable SD #22 and #23 on your server, you are not protected from user attacks, which can happen after verification of the file, but before you read the contents of such verified file. Th...")
- 15:20, 7 August 2023 Tracer talk contribs created page Funkcje wspólne (Redirected page to Shared Scripting Functions) Tag: New redirect
- 15:20, 7 August 2023 Tracer talk contribs created page PL/Shared Scripting Functions (Redirected page to Funkcje wspólne) Tag: New redirect
- 14:35, 7 August 2023 Tracer talk contribs created page Template:Server input functions (Created page with "<ul> <li>isKeyBound</li> <li>getControlState</li> <li>setControlState</li> </ul> {{Input_functions}}")
- 14:14, 7 August 2023 Tracer talk contribs created page Zdarzenia po stronie Klienta (Created page with "<pageclass class="client"></pageclass> Ta strona zawiera wszystkie zdarzenia po '''stronie klienta''' i są dostępne w Deathmatch mod. Jeśli chciałbyś zaproponować nowe zdarzenie, napisz w Requested Functions and Events. '''Zdarzenia po stronie serwera można znaleźć tutaj: Server Scripting Events ==Zdarzenia kolizji figur== {{Client_colshape_events}} ==Zdarzenie elementów== {{Client_element_events}} ==Zdarzenia GUI== {{GUI_events}} ==Zdar...")
- 14:13, 7 August 2023 Tracer talk contribs created page Zdarzenia po stronie Serwera (Redirected page to Server Scripting Events) Tag: New redirect
- 14:13, 7 August 2023 Tracer talk contribs created page PL/Server Scripting Events (Redirected page to Zdarzenia po stronie Serwera) Tag: New redirect
- 15:53, 5 August 2023 User account Decro talk contribs was created
- 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...")
- 12:30, 4 August 2023 User account Ademw999444 talk contribs was created
- 10:22, 1 August 2023 User account BR4 talk contribs was created
- 19:38, 31 July 2023 User account LusuyMorj talk contribs was created