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:51, 20 December 2023 Lettify talk contribs created page PT-BR/fileGetPos (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Retorna a posição atual na leitura/gravação de um determinado arquivo. ==Sintaxe== <syntaxhighlight lang="lua"> int fileGetPos ( file theFile ) </syntaxhighlight> {{PT-BR/POO||file:getPos|pos|PT-BR/fileSetPos}} ===Argumentos necessários=== *'''theFile:''' o '''arquivo''' que você deseja obter a posição. ===Retorna=== Retorna a posição do arquivo, ou ''false'' se tiver ocorrido algum erro (ex.: um '''arquivo''' inv...")
- 18:43, 20 December 2023 Lettify talk contribs created page PT-BR/fileGetPath (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} {{PT-BR/New feature/item|3.0153|1.5.3|7446| Esta função retorna o caminho de um determinado arquivo. }} ==Sintaxe== <syntaxhighlight lang="lua"> string fileGetPath ( file theFile ) </syntaxhighlight> {{PT-BR/POO||file:getPath|path}} ===Argumentos necessários=== *'''theFile:''' O '''arquivo''' que você quer obter o caminho. ===Retorno=== Retorna uma ''string'' representando o caminho do arquivo, ''false'' se um arquivo inv...")
- 18:30, 20 December 2023 Lettify talk contribs created page PT-BR/fileGetContents (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} {{PT-BR/Added feature/item|1.6.1|1.6.0|21938| Faz a leitura de todo o conteúdo do arquivo, opcionalmente verifica o arquivo lido calculando e comparando a soma de verificação com o que é esperado, e retorna o conteúdo em formato de ''string''. A posição do cursor (caret) do arquivo não é modificada pelas execuções dessa função. }} Por favor note que sempre que você habilitar SD #22 e #23 no seu servidor, você não es...")
- 18:17, 20 December 2023 Lettify talk contribs created page Template:PT-BR/Added feature/item (Created page with "<includeonly>{{#ifexpr: ({{{1|}}}) = {{Next Stable Version}} and ({{{2|}}}) = {{Current Stable Version}} |<div style='border: 2px solid #1b2027; border-radius: 10px; margin: 14px 0; overflow: hidden'><div style='background: #1b2027; color: #fff; font-weight: bold; padding: 4px 8px'><span style="color: #fff; text-decoration: underline">BETA</span>: NOVO RECURSO (BUILD: {{{2}}} {{r|{{{3}}}}})</div><div style='padding: 4px 8px'>{{{4}}}</div></div> |{{#ifex...")
- 18:14, 20 December 2023 Lettify talk contribs created page PT-BR/fileFlush (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Força a execução de gravações pendentes no disco. fileWrite não grava diretamente no disco, mas coloca os dados em um buffer temporário; só quando existe dados o suficiente nesse buffer é que as informações são gravadas no disco. Execute essa função se você precisar que os dados sejam gravados no instante em que chamar, sem precisar fechar o arquivo que estiver aberto com as gravações pendentes....")
- 17:59, 20 December 2023 Lettify talk contribs created page PT-BR/fileExists (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Esta função verifica se um determinado arquivo existe em um resource. ==Sintaxe== <syntaxhighlight lang="lua"> bool fileExists ( string filePath ) </syntaxhighlight> {{PT-BR/POO|Esta é uma função estática abaixo da classe File.|File.exists}} ===Argumentos necessários=== *'''filePath:''' O caminho do arquivo a ser criado seguindo o seguinte formato: '''":resourceName/path"'''. '''resourceName''' é o nome do...")
- 17:45, 20 December 2023 Lettify talk contribs created page PT-BR/fileDelete (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Deleta um determinado arquivo. ==Sintaxe== <syntaxhighlight lang="lua"> bool fileDelete ( string filePath ) </syntaxhighlight> {{PT-BR/POO|Esta é uma função estática abaixo da classe File.|File.delete}} ===Argumentos necessários=== *'''filePath:''' O caminho do arquivo para deletar no seguinte formadt: '''":resourceName/path"'''. ''resourceName'' é o nome do resource do arquivo que vai estar lá, e ''path''...")
- 17:35, 20 December 2023 Lettify talk contribs created page PT-BR/fileCopy (Created page with "{{BR/Funcao compartilhada}} __NOTOC__ Esta função copia um arquivo. {{BR/Nota|As funções que manipulam arquivos não devem ser utilizadas para implementar arquivos de configuração. É recomendado usar as funções XML.}} {{BR/Tip|Se você não quiser compartilhar o conteúdo do arquivo criado com outros servidores, nomeie o caminho do arquivo com '''@''' no início. Veja a página filepath para entender melhor.}} ==...")
- 17:24, 20 December 2023 Lettify talk contribs created page PT-BR/fileClose (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Fecha um '''arquivo''' obtido por fileCreate ou fileOpen. ==Sintaxe== <syntaxhighlight lang="lua"> bool fileClose ( file theFile ) </syntaxhighlight> {{PT-BR/POO||file:close}} ===Argumentos necessários=== *'''theFile:''' O '''arquivo''' que quer fechar. ===Retorno=== Retorna ''true'' se o arquivo tiver sido fechado com sucesso, ''false'' caso contrário. ==Exemplo== Este exemplo cria u...")
- 17:13, 20 December 2023 Lettify talk contribs created page PT-BR/fileCreate (Created page with "__NOTOC__ {{BR/Funcao compartilhada}} Cria um novo arquivo em um diretório do resource. Se já existir algum arquivo com o nome e caminho especificado, então haverá uma substituição para este novo arquivo vazio criado. {{BR/Nota|Para prevenir perdas de memória, certifique que está fechando o arquivo com fileClose depois de aberto e trabalhado com esse arquivo.}} {{BR/Nota|As funções que manipulam arquivos não devem ser utilizadas para implementar arquivos...")
- 17:13, 20 December 2023 Lettify talk contribs created page Template:PT-BR/File functions (Created page with "<ul> <li>fileClose</li> <li>fileCopy</li> <li>fileCreate</li> <li>fileDelete</li> <li>fileExists</li> <li>fileFlush</li> {{PT-BR/New items|3.0161|1.6.0| <li>fileGetContents</li> |21938}} {{PT-BR/New items|3.0153|1.5.3| <li>fileGetPath</li> |7446}} <li>fileGetPos</li> <li>fileGetSize</li> <li>fileIsEOF</li> <li>fileOpen</li> <li>fileRead</li> <li>fileRename</li> <li>fileSetPos</li> <li>fileWrit...")
- 16:23, 20 December 2023 Lettify talk contribs created page Template:BR/Tip (Created page with "{{PT-BR/MessageBox| bordercolorhex = 98fb98 | bgcolorhex = ceffd3 | image = File:tip-ptbr.png| imageSize = 24px| message = '''Dica:''' {{{1}}} | }}")
- 16:17, 20 December 2023 Lettify talk contribs created page File:Tip-ptbr.png
- 16:17, 20 December 2023 Lettify talk contribs uploaded File:Tip-ptbr.png
- 18:23, 19 December 2023 User account ALVISHOWSPEED talk contribs was created
- 21:24, 17 December 2023 User account Marlonzemella talk contribs was created
- 20:06, 17 December 2023 User account Vladimir talk contribs was created
- 17:13, 17 December 2023 Fernando187 talk contribs created page Category:Changes in 1.6.0 (Created blank page)
- 04:59, 17 December 2023 User account Zjoaoftw talk contribs was created
- 13:09, 15 December 2023 User account REBELmickelson talk contribs was created
- 14:09, 14 December 2023 Deiwn talk contribs created page Math.absin (This function returns a formula representing the just positive half of a sine wave.)
- 11:47, 14 December 2023 User account Deiwn talk contribs was created
- 01:08, 14 December 2023 User account Eduardo talk contribs was created
- 19:49, 13 December 2023 User account FJS talk contribs was created
- 04:04, 13 December 2023 User account Kidzonio talk contribs was created
- 19:06, 10 December 2023 User account Niker.ZX123 talk contribs was created
- 19:05, 10 December 2023 User account Miguelmarcilio123 talk contribs was created
- 12:47, 10 December 2023 Znajder talk contribs created page GetDiscordRichPresenceUserID (Created page with "__NOTOC__ {{Client function}} {{Important Note|The function will correctly display the UserID when the user has given consent and successfully connected to the Rich Presence application.}} {{New feature/item|3.0161|1.6.0|22329| The function returns the client Discord UserID. }} ==Syntax== <syntaxhighlight lang="lua"> string getDiscordRichPresenceUserID() </syntaxhighlight> ===Returns=== It will return an ''empty string ("")'' if the user has not given consent or has...")
- 09:45, 9 December 2023 User account Lassaliziad talk contribs was created
- 00:18, 8 December 2023 User account Adadada talk contribs was created
- 22:37, 7 December 2023 User account Makson039 talk contribs was created
- 21:54, 6 December 2023 User account Bo3zh talk contribs was created
- 08:12, 6 December 2023 User account Ang3ldev talk contribs was created
- 07:51, 5 December 2023 User account EliteSG talk contribs was created
- 22:57, 1 December 2023 User account Soumar talk contribs was created
- 01:09, 1 December 2023 User account Alessandra talk contribs was created
- 14:41, 30 November 2023 User account JOA talk contribs was created
- 18:38, 28 November 2023 User account Joni Limber talk contribs was created
- 16:52, 28 November 2023 User account Killer5 talk contribs was created
- 13:51, 27 November 2023 LopSided talk contribs created page OnPlayerTriggerEventThreshold (Created page with "__NOTOC__ {{Server event}} {{Added feature/item|1.6.1|1.6.0|22311|This event is triggered when a player exceeds the maximum threshold for events via triggerServerEvent.}} ==Parameters== None ==Source== The source of this event is the player who exceeded the threshold. ===Canceling=== Canceling this event has no effect. ==Example== <syntaxhighlight lang="lua"> function start() setServerConfigSetting("player_triggered_event_inte...")
- 21:36, 26 November 2023 KhaledX talk contribs created page SCamera (Created page with "== sCamera == '''The function creates a speed camera in-game, fines speeding vehicles, and notifies the driver and take money from player based on vehicle speed. ''' == Syntax == <syntaxhighlight lang="lua"> function sCamera(modelId, x, y, z, speed, between) </syntaxhighlight> == Parameters == * modelId: The model ID of the camera object to be created. * x, y, z: The coordinates where the camera object will be placed in the game world. * speed: The speed limit tha...")
- 21:21, 26 November 2023 User account Gonnzza132 talk contribs was created
- 13:48, 26 November 2023 User account KhaledX talk contribs was created
- 05:17, 24 November 2023 Mtaowner talk contribs created page User:Mtaowner (Created blank page)
- 09:31, 23 November 2023 Vietchamsingapore talk contribs created page User:Vietchamsingapore (Created page with "Việc mở công ty tại Singapore đã trở thành một lựa chọn hấp dẫn cho nhiều doanh nghiệp quốc tế, và để làm điều này thành công, bạn cần một đối tác đáng tin cậy và chuyên nghiệp. VietCham Singapore, với nhiều năm kinh nghiệm trong lĩnh vực này, đã nổi lên như một lựa chọn hàng đầu cho các dịch vụ liên quan đến việc thành lập công ty tại đảo quốc sư tử. VietCham...")
- 09:30, 23 November 2023 User account Vietchamsingapore talk contribs was created
- 21:33, 22 November 2023 User account Netoplocksdc talk contribs was created
- 19:49, 21 November 2023 User account Gregori 25 talk contribs was created
- 14:31, 21 November 2023 Mtaowner talk contribs created page Fingerprint (Created page with "{{Useful Function}} __NOTOC__ This function calculates a fingerprint unique to each computer. ==Syntax== <syntaxhighlight lang="lua"> void fingerprint ( function callback ) </syntaxhighlight> ===Required arguments=== *'''callback''': a callback function with syntax as described below ====Callback syntax==== <syntaxhighlight lang="lua"> function ( int value ) </syntaxhighlight> ==Code== <section name="Code" class="client" show="true"> <syntaxhighlight lang="lua"> func...")
- 13:56, 21 November 2023 User account BillThosena talk contribs was created