New pages

Jump to navigation Jump to search
New pages
Hide bots | Show redirects
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 19:13, 8 January 2026RU/Script security (hist | edit) ‎[101,357 bytes]Flox (talk | contribs) (Created page with "==Внимание к клиентской памяти == Начнем с самых основ: * Вы должны знать, что все, что вы храните на стороне клиента, подвержено риску, в том числе и lua-файлы. Злоумышленники могут получить доступ к любым конфиденциальным (и/или) важным данным, которые хранятся ил...")
  • 20:15, 2 January 2026RU/Forks (hist | edit) ‎[11,849 bytes]Flox (talk | contribs) (Created page with "__NOTOC__ {{Note|Information on this page does not apply to the official builds of MTA.}} Multi Theft Auto - Это программное обеспечение с открытым исходным кодом, доступное бесплатно на [https://github.com/multitheftauto/mtasa-blue GitHub multitheftauto/mtasa-blue]. Любой может создать форк проекта, если будет соблюдать условия нашей лиценз...")
  • 18:09, 1 January 2026SetVehicleDirtEnabled (hist | edit) ‎[3,610 bytes]IManGaaX (talk | contribs) (add new useful function)
  • 11:08, 3 December 2025IsPostFXEnabled (hist | edit) ‎[878 bytes]O22 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6|23644 | Checks whether a specific PostFX effect is currently enabled. }} ==Syntax== <syntaxhighlight lang="lua"> bool IsPostFXEnabled ( string fxType ) </syntaxhighlight> ===Required arguments=== *'''fxType''': An string of the PostFX. Possible values are: **'''Gamma''' **'''Brightness''' **'''Contrast''' **'''Saturation''' ===Returns=== Returns '''true''' if the selected type is enabled, otherwise '''false...")
  • 11:06, 3 December 2025GetPostFXValue (hist | edit) ‎[835 bytes]O22 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6|23644| Gets the current float value of the selected PostFX type. }} ==Syntax== <syntaxhighlight lang="lua"> float getPostFXValue ( string fxType ) </syntaxhighlight> ===Required arguments=== *'''fxType''': An string of the PostFX. Possible values are: **'''Gamma''' **'''Brightness''' **'''Contrast''' **'''Saturation''' ===Returns=== Returns the current value of the specified PostFX parameter. ==Example== T...")
  • 11:05, 3 December 2025GetPostFXMode (hist | edit) ‎[813 bytes]O22 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6|23644| Gets the current mode of PostFX. }} ==Syntax== <syntaxhighlight lang="lua"> int getPostFXMode ( ) </syntaxhighlight> ===Returns=== An integer for the current PostFX mode: * 0: Disabled * 1: Enabled in fullscreen mode * 2: Enabled in windowed/borderless mode ==Example== This example gets the current PostFX mode and displays it in the chat. <syntaxhighlight lang="lua"> local modes = { [0] = "Disabl...")
  • 19:04, 1 December 2025IsPlayerNameRandomized (hist | edit) ‎[29,360 bytes]O22 (talk | contribs) (Created page with "{{Useful Function}} __NOTOC__ Checks whether the given player name looks like an automatically-generated random nickname. ==Syntax== <syntaxhighlight lang="lua">bool isPlayerNameRandomized ( string name )</syntaxhighlight> ===Required Arguments=== * '''name''': The player name to check. ===Returns=== Returns '''true''' if the given name is an auto-generated random nickname, or '''false''' otherwise. ==Code== <section name="Shared" class="both" show="true"> <syntaxhig...")
  • 01:31, 23 October 2025PT-BR/OnPlayerLogin (hist | edit) ‎[1,729 bytes]Lettify (talk | contribs) (Created page with "{{Server event}} __NOTOC__ Este evento é acionado quando um jogador se conecta em sua conta dentro do jogo. ==Parâmetros== <syntaxhighlight lang="lua"> account thePreviousAccount, account theCurrentAccount </syntaxhighlight> *'''thePreviousAccount''': A conta que o jogador se conectou anteriormente. *'''theCurrentAccount''': A conta que o jogador se conectou agora. ==Source== O source deste evento é o Elemen...")
  • 20:23, 22 October 2025Astrath:createTab (hist | edit) ‎[2,138 bytes]Sybellex (talk | contribs) (Created page with "= DxTab:new = {{Client function}} {{FuncDef|element DxTab:new ( element parent, string text, table color, table hoverColor, table activeColor, table tabColor )}} '''Description:''' Creates a new tab element inside a `DxTabPanel`. Tabs are linked to a panel and their positions are automatically managed according to the panel layout. Only usable with a valid `DxTabPanel` parent. '''Parameters:''' * parent (element) – A `DxTabPanel` element where this tab will be attac...")
  • 20:19, 22 October 2025Astrath:createTabPanel (hist | edit) ‎[2,529 bytes]Sybellex (talk | contribs) (Created page with "= DxTabPanel:new = {{Client function}} {{FuncDef|element DxTabPanel:new ( float posX, float posY, float width, float height, element parent, boolean relative, table color, table tabColor, table activeColor, table hoverColor, string font, float fontsize, string style, string tabStyle )}} '''Description:''' Creates a new tab panel DX element. A tab panel can hold multiple tabs and manage their selection and hover states. Automatically adjusts child tab positions and size...")
  • 20:17, 22 October 2025Astrath:createShape (hist | edit) ‎[1,657 bytes]Sybellex (talk | contribs) (Created page with "= DxShape:new = {{Client function}} {{FuncDef|element DxShape:new ( float posX, float posY, float width, float height, element parent, boolean relative, table color )}} '''Description:''' Creates a new DX-based shape element. Shapes can have custom colors, hover effects, and rounded corners. Each shape instance is automatically registered in the DX library. '''Parameters:''' * posX, posY (float) – Position on screen. * width, height (float) – Size of the shape. *...")
  • 20:15, 22 October 2025Astrath:createRadio (hist | edit) ‎[2,281 bytes]Sybellex (talk | contribs) (Created page with "= DxRadio:new = {{Client function}} {{FuncDef|element DxRadio:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string key, string font, float fontsize )}} '''Description:''' Creates a new DX-based radio button element. Radio buttons are single-select controls grouped by a key, allowing only one selection per group. Each radio instance is automatically registered in the DX library. '''Parameters:''' * text (string)...")
  • 20:14, 22 October 2025Astrath:createMemo (hist | edit) ‎[2,253 bytes]Sybellex (talk | contribs) (Created page with "= DxMemo:new = {{Client function}} {{FuncDef|element DxMemo:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string font, float fontsize )}} '''Description:''' Creates a new DX-based memo element. Memos are multi-line text boxes that support scrolling, cursor positioning, text input, custom fonts, colors, and read-only mode. Each memo instance is automatically registered in the DX library. '''Parameters:''' * text...")
  • 20:12, 22 October 2025Astrath:createLabel (hist | edit) ‎[2,542 bytes]Sybellex (talk | contribs) (Created page with "= DxLabel:new = {{Client function}} {{FuncDef|element DxLabel:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string font, float fontsize, string horizontalAlign, string verticalAlign )}} '''Description:''' Creates a new DX-based label element. Labels display text, support parent-relative positioning, custom fonts, colors, alignment, and optional hover effects. Each label instance is automatically registered in th...")
  • 19:59, 22 October 2025Astrath:createImage (hist | edit) ‎[1,621 bytes]Sybellex (talk | contribs) (Created page with "= DxImage:new = {{Client function}} {{FuncDef|element DxImage:new ( string path, float posX, float posY, float width, float height, element parent, boolean relative )}} '''Description:''' Creates a DX image element. An image element displays a static image from a file on the screen. '''Parameters:''' path (string) – Path to the image file (must exist). posX, posY (float) – Position on screen. width, height (float) – Size of the image. parent (element) – P...")
  • 19:56, 22 October 2025Astrath:createHidden (hist | edit) ‎[1,709 bytes]Sybellex (talk | contribs) (Created page with "= DxHidden:new = {{Client function}} {{FuncDef|element DxHidden:new ( float posX, float posY, float width, float height, element parent, boolean relative )}} '''Description:''' Creates a hidden DX element. Hidden elements are not drawn and can be used as containers or invisible parents for other DX elements. They can store position and size information and manage child elements. '''Parameters:''' * posX, posY (float) – Position on screen. * width, height (float)...")
  • 19:52, 22 October 2025Astrath:createGridList (hist | edit) ‎[3,670 bytes]Sybellex (talk | contribs) (Created page with "= DxGridlist:new = {{Client function}} {{FuncDef|element DxGridlist:new ( float posX, float posY, float width, float height, element parent, boolean relative, table columnSize, string font, float fontSize, table color, table headColor, table hoverColor, table activeColor, table scrollColor, table scrollBGColor )}} '''Description:''' Creates a new DX-based gridlist element. Gridlists display rows and columns of data, support scrolling, hover effects, row selection, and c...")
  • 19:48, 22 October 2025Astrath:createEditBox (hist | edit) ‎[2,726 bytes]Sybellex (talk | contribs) (Created page with "= DxEdit:new / Astrath:createEditBox = {{Client function}} {{FuncDef|element DxEdit:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string font, float fontsize, string placeholder )}} '''Description:''' Creates a new DX-based edit box element. Edit boxes allow text input with options for read-only mode, numeric-only input, hover effects, and color customization. Each edit box instance is automatically registered i...")
  • 19:43, 22 October 2025Astrath:createComboBox (hist | edit) ‎[3,214 bytes]Sybellex (talk | contribs) (Created page with "= DxCombobox:new / Astrath:createCombobox = {{Client function}} {{FuncDef|element DxCombobox:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string desc, number maxItems, table color, string font, float fontSize, table scrollColor, table scrollBGColor )}} '''Description:''' Creates a new DX-based combobox element. Comboboxes allow selecting from a list of items, support scrolling, hover effects, and color customiz...")
  • 19:40, 22 October 2025Astrath:createCheckBox (hist | edit) ‎[2,349 bytes]Sybellex (talk | contribs) (Created page with "= DxCheckbox:new / Astrath:createCheckbox = {{Client function}} {{FuncDef|element DxCheckbox:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, string font, float fontsize )}} '''Description:''' Creates a new DX-based checkbox element. Checkboxes can be attached to parent elements, support hover effects, custom colors, and selection state. Each checkbox instance is automatically registered in the DX library. '''Para...")
  • 19:33, 22 October 2025Astrath:createButton (hist | edit) ‎[2,568 bytes]Sybellex (talk | contribs) (Created page with "= DxButton:new = {{Client function}} {{FuncDef|element DxButton:new ( string text, float posX, float posY, float width, float height, element parent, boolean relative, table color, string font, float fontsize, string description, boolean isIcon, float iconWidth, float iconHeight )}} '''Description:''' Creates a new DX-based button element. Buttons can be attached to parent elements, support hover effects, custom colors, icons, fonts, and descriptions. Each button insta...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)