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).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 14:44, 29 January 2022 Vampire talk contribs created page PT-BR/Crashs famosos e seu significado (Created page with "<big>Esta página da wiki contém o motivo de muitos crashs conhecidas do MTA que podem acontecer com você. Use CTRL + F e procure pelo Offset do seu crash para encontrar alguma informação relevante.</big> Exemplo de uma mensagem de crash: <syntaxhighlight lang="xml"> Version = 1.5.6-release-14664.0.000 Time = Mon Oct 8 12:20:00 2018 Module = C:\Program Files (x86)\Rockstar Games\GTA San Andreas\gta_sa.exe Code = 0xC0000005 Offset = 0x003C91CC EAX=0F77A3C8 EBX=0F...")
  • 14:08, 29 January 2022 Vampire talk contribs created page PT-BR/Como você pode ajudar (Created page with "__NOTOC__ O Multi Theft Auto tem muitas áreas nas quais você pode nos ajudar. Por sua vez, teremos o maior prazer em ajudá-lo a começar com quaisquer ideias que você tenha, ajudar a testá-las e - se forem boas o suficiente - divulgá-las para toda a comunidade. Esta página descreve as principais áreas em que você pode fazer algo, é claro, há muitas coisas nas quais não pensamos, então pense fora da caixa! ==Codando para o MTA:SA== * Torne-se um contribuidor...")
  • 10:04, 29 January 2022 User account Ragnarok talk contribs was created
  • 00:43, 29 January 2022 User account Vampire talk contribs was created
  • 19:13, 28 January 2022 Nurupo talk contribs created page Template:DGS Events/ScrollBar (Created page with "* onDgsScrollBarScrollPositionChange")
  • 11:15, 28 January 2022 User account Sryujdtryj talk contribs was created
  • 00:35, 27 January 2022 User account Carlos12 talk contribs was created
  • 02:16, 26 January 2022 User account Nundang talk contribs was created
  • 19:46, 22 January 2022 User account Jerari talk contribs was created
  • 15:20, 22 January 2022 User account Quit talk contribs was created
  • 22:16, 21 January 2022 LordHenry talk contribs created page AutoAttach (Created page with "{{Useful Function}} <lowercasetitle/> __NOTOC__ This function attach an element into another by calculating the rotation and position offset automatically. It works exactly like attachElements but you don't need to provide offset parameters. ==Syntax== <syntaxhighlight lang="lua">bool autoAttach ( element theElement, element theAttachToElement)</syntaxhighlight> ===Required Arguments=== *'''theElement:''' The element to be attached. *'''theAttachToElement:''' The...")
  • 16:07, 20 January 2022 Tracer talk contribs moved page User:Tracer/mta-dark.css to User:Tracer/commons.css
  • 16:06, 20 January 2022 Tracer talk contribs created page User:Tracer/mta-dark.css (Created page with "#mw-content-text, #firstHeading, #p-cactions{ background-color: #101010 !important; } #column-content, li.interlanguage-link, form#searchform { background-color: #272727 !important; } Text colors: #firstHeading, p, h1, h2, h3, h4, h5, b, li { color: #DCDCDC !important; } .toctext{ color: #0c3c88; } a { color: #7c7c7c !important; } #contentSub { background-color: #252525 !important; } .toc { background: transparent !important; b...")
  • 13:33, 20 January 2022 Quiret talk contribs created page Talk:Modules/FileSystem (Created page with "==Linux version is being held back== Due to a GCC bug related to a new-ish C++ feature the Linux version of the Eir FileSystem module has to be held back until further notice by the GCC developers. You can find the status of the bug here: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104079 I truly wish for a very quick resolution of all impeding GCC issues but I do recognize that it is not a paid product. Although it is free there could be an entire IT industry that de...")
  • 10:50, 20 January 2022 User account Saatanikk talk contribs was created
  • 07:29, 20 January 2022 User account Edward talk contribs was created
  • 23:02, 19 January 2022 Quiret talk contribs created page Modules/FileSystem/object/destroy (Created page with "__NOTOC__ This function destroys the underlying object passed to it, rendering all Lua references to it null and void. All OS handles that have been associated with it are released. ==Syntax== <syntaxhighlight lang="lua"> nil fsobject:destroy () </syntaxhighlight> ==Returns== This function returns nil. ==Remarks== It is a good idea to call this function on all files or translators whose use has expired. This way the release of OS resources is guarranteed to happen at...")
  • 22:55, 19 January 2022 Quiret talk contribs created page Modules/FileSystem/object/functions (Created page with "==FileSystem Object Functions== *destroy")
  • 19:33, 19 January 2022 User account Incama talk contribs was created
  • 08:03, 19 January 2022 User account DARK talk contribs was created
  • 03:51, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/functions (Created page with "==FileSystem File Functions== *read *readByte *readUByte *readShort *readUShort *readInt *readUInt *readFloat *Modules/FileSystem/file/readDouble|readDoub...")
  • 03:49, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/isReadable (Created page with "__NOTOC__ This function returns whether a stream is readable. If a stream is not readable, then all read operations should result in nil operations (they will return zero bytes read or false if value reading). This state should be immutable across the lifetime of a file/stream class. ==Syntax== <syntaxhighlight lang="lua"> boolean file:isReadable () </syntaxhighlight> ==Returns== Returns '''true''' if the file/stream is readable, '''false''' otherwise. ==Example== <se...")
  • 03:49, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/isWritable (Created page with "__NOTOC__ This function returns whether a stream is writable. If a stream is not writable, then all write operations should result in nil operations (they will return zero bytes written). This state should be immutable across the lifetime of a file/stream class. ==Syntax== <syntaxhighlight lang="lua"> boolean file:isWritable () </syntaxhighlight> ==Returns== Returns '''true''' if the file/stream is writable, '''false''' otherwise. ==Example== <section name="Client" cl...")
  • 03:48, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/flush (Created page with "__NOTOC__ This function writes all temporary buffers of a file/stream object into the output storage. This feature shall be interpreted as a hint, not a necessity. Implementations do not have to support this feature. ==Syntax== <syntaxhighlight lang="lua"> boolean file:flush () </syntaxhighlight> ==Returns== Returns '''true''' if the file/stream has been successfully flushed, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> This sn...")
  • 03:47, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/eof (Created page with "__NOTOC__ This function returns whether the runtime can still read data from the file/stream. This is an implementation defined state that should return false if no data can be immediately received using '''read operations'''. Asynchronous file/stream objects could use this function to return true when new data is available to receive from the socket. If wanting to read an entire file/stream object, this function is more reliable than the MTA:Eir/FileSystem/file/size|f...")
  • 03:47, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/seek (Created page with "__NOTOC__ This function changes the location of the current stream pointer. Like that you can skip file sections, set the stream pointer to a specific location or head to the end of the file/stream object. Not all stream classes have to support this operation. ==Syntax== <syntaxhighlight lang="lua"> int file:seek ( int offset, string mode ) </syntaxhighlight> ==Arguments== *'''offset:''' the amount of bytes that should be used for the seeking operation *'''mode:''' a s...")
  • 03:46, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/tell (Created page with "__NOTOC__ This function returns the current absolute position inside of the file/stream object. It should be the number of bytes that the current stream pointer is set from the beginning of the object. Not all stream classes have to support this operation. ==Syntax== <syntaxhighlight lang="lua"> int file:tell () </syntaxhighlight> ==Returns== Returns the amount of bytes that this file/stream object has already traversed. If the operation is not supported by the underly...")
  • 03:46, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/stat (Created page with "__NOTOC__ This function returns immediate statistics about this file/stream object. The output should be of same structure like that of translator.stat. ==Syntax== <syntaxhighlight lang="lua"> dictionary file:stat () </syntaxhighlight> ==Returns== Returns a dictionary that contains the immediate file statistics. ==Example== todo. {{:Modules/FileSystem/file/functions}}")
  • 03:45, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/size (Created page with "__NOTOC__ This function returns the size of a specific file/stream from beginning to end. Not all streams have to support this operation. ==Syntax== <syntaxhighlight lang="lua"> int file:size () </syntaxhighlight> ==Returns== Returns the amount of bytes that this file/stream object is made of. ==Example== <section name="Client" class="client" show="true"> This snippet returns the contents of a file in a string buffer. <syntaxhighlight lang="lua"> local function fileGe...")
  • 03:44, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeBoolean (Created page with "__NOTOC__ This function attempts to write a boolean into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. ==Syntax== <syntaxhighlight lang="lua"> int file:writeBoolean ( boolean value ) </syntaxhighlight> ==Arguments== *'''value:''' a boolean value to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. Returns '''false''' if '''value''' is not a valid bool...")
  • 03:44, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeDouble (Created page with "__NOTOC__ This function attempts to write a double into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be eight. ==Syntax== <syntaxhighlight lang="lua"> int file:writeDouble ( double value ) </syntaxhighlight> ==Arguments== *'''value:''' a number to write into the file/stream using '''double floating point precision'''; this is the highest precision and range possible ==Returns== Returns the amount of bytes writ...")
  • 03:43, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeFloat (Created page with "__NOTOC__ This function attempts to write a float into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four. ==Syntax== <syntaxhighlight lang="lua"> int file:writeFloat ( float value ) </syntaxhighlight> ==Arguments== *'''value:''' a number to write into the file/stream using '''single floating point precision''' ==Returns== Returns the amount of bytes written during the write operation. Returns '''false''' if...")
  • 03:42, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeUInt (Created page with "__NOTOC__ This function attempts to write an unsigned integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four. ==Syntax== <syntaxhighlight lang="lua"> int file:writeUInt ( unsigned_int value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [0..4294967295] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. Returns '''false...")
  • 03:42, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeInt (Created page with "__NOTOC__ This function attempts to write an integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four. ==Syntax== <syntaxhighlight lang="lua"> int file:writeInt ( int value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [-2147483648..2147483647] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. Returns '''false''' if ''...")
  • 03:41, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeUShort (Created page with "__NOTOC__ This function attempts to write an unsigned short integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be two. ==Syntax== <syntaxhighlight lang="lua"> int file:writeUShort ( unsigned_short value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [0..65535] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. Return false...")
  • 03:40, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeShort (Created page with "__NOTOC__ This function attempts to write a short integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be two. ==Syntax== <syntaxhighlight lang="lua"> int file:writeShort ( short value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [-32786..32785] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. ==Example== todo. {{:Modul...")
  • 03:40, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeUByte (Created page with "__NOTOC__ This function attempts to write an unsigned byte into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. ==Syntax== <syntaxhighlight lang="lua"> int file:writeUByte ( unsigned_byte value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [0..255] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. ==Example== todo. {{:Mod...")
  • 03:39, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/writeByte (Created page with "__NOTOC__ This function attempts to write a signed byte into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. ==Syntax== <syntaxhighlight lang="lua"> int file:writeByte ( signed_byte value ) </syntaxhighlight> ==Arguments== *'''value:''' a number in the range of [-128..127] to write into the file/stream ==Returns== Returns the amount of bytes written during the write operation. ==Example== todo. {{:Module...")
  • 03:38, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/write (Created page with "__NOTOC__ This function attempts to write a string of bytes (characters) into the file. It returns the amount of bytes that have actually been written. ==Syntax== <syntaxhighlight lang="lua"> int file:write ( string dataString ) </syntaxhighlight> ==Arguments== *'''dataString:''' the string of data that should be written into the file ==Returns== Returns the amount of bytes that have been actually written into the file. Returns false if '''dataString''' is not a valid...")
  • 03:37, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readBoolean (Created page with "__NOTOC__ This function attempts to read a boolean (native type) from a file and return it. The amount of bytes read should be one. ==Syntax== <syntaxhighlight lang="lua"> boolean file:readBoolean () </syntaxhighlight> ==Returns== Returns a boolean if it was successfully read from the file, '''nil''' otherwise. ==Example== <section name="Client" class="client" show="true"> This snippet demonstrates a variable file format that stores player properties depending on whet...")
  • 03:36, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readDouble (Created page with "__NOTOC__ This function attempts to read a double (native type) from a file and return it. The amount of bytes read should be eight. ==Syntax== <syntaxhighlight lang="lua"> double file:readDouble () </syntaxhighlight> ==Returns== Returns a double if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Server" class="server" show="true"> This snippet demonstrates a basic binary object map format. It can be extended to support more p...")
  • 03:35, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readFloat (Created page with "__NOTOC__ This function attempts to read a float (native type) from a file and return it. The amount of bytes read should be four. ==Syntax== <syntaxhighlight lang="lua"> float file:readFloat () </syntaxhighlight> ==Returns== Returns a float if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Server" class="server" show="true"> This snippet demonstrates a binary vehicle handling format. This saves space in comparison to a .XML...")
  • 03:34, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readUInt (Created page with "__NOTOC__ This function attempts to read an unsigned integer (native type) from a file and returns it. The amount of bytes read should be four. ==Syntax== <syntaxhighlight lang="lua"> unsigned_int file:readUInt () </syntaxhighlight> ==Returns== Returns an unsigned integer if it was successfully read from the file, '''false''' otherwise. ==Example== todo. {{:Modules/FileSystem/file/functions}}")
  • 03:33, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readInt (Created page with "__NOTOC__ This function attempts to read an integer (native type) from a file and return it. The amount of bytes read should be four. ==Syntax== <syntaxhighlight lang="lua"> int file:readInt () </syntaxhighlight> ==Returns== Returns an integer if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> This snippet demonstrates an encrypted Lua source code format. <syntaxhighlight lang="lua"> -- Have...")
  • 03:32, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readUShort (Created page with "__NOTOC__ This function attempts to read an unsigned short (native type) from a file and returns it. The amount of bytes read should be two. ==Syntax== <syntaxhighlight lang="lua"> unsigned_short file:readUShort () </syntaxhighlight> ==Returns== Returns the unsigned short integer if it was successfully read from the file, '''false''' otherwise. ==Example== todo. {{:Modules/FileSystem/file/functions}}")
  • 03:31, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readShort (Created page with "__NOTOC__ This function attempts to read a short (native type) from a file and returns it. The amount of bytes read should be two. ==Syntax== <syntaxhighlight lang="lua"> short file:readShort () </syntaxhighlight> ==Returns== Returns the short integer if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> This snippet reads and writes string buffers into a custom file format. <syntaxhighlight la...")
  • 03:30, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readUByte (Created page with "__NOTOC__ This function attempts to read an unsigned byte (native type) from a file and returns it. The amount of bytes read should be one. ==Syntax== <syntaxhighlight lang="lua"> unsigned_byte file:readUByte () </syntaxhighlight> ==Returns== Returns the unsigned byte if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> This snippet writes a Lua type into a file stream. The lua type can be any...")
  • 03:28, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/readByte (Created page with "__NOTOC__ This function attempts to read a signed byte (native type) from a file and returns it. The amount of bytes read should be one. ==Syntax== <syntaxhighlight lang="lua"> signed_byte file:readByte () </syntaxhighlight> ==Returns== Returns the signed byte if it was successfully read from the file, '''false''' otherwise. ==Example== <section name="Server" class="server" show="true"> This snippet writes a snapshot of server-side player information into a file. This...")
  • 03:27, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/file/read (Created page with "__NOTOC__ This function attempts to read the specified amount of bytes from the file. The actual amount of bytes read equals to the length of the Lua string. ==Syntax== <syntaxhighlight lang="lua"> string file:read ( int readCount ) </syntaxhighlight> ==Arguments== *'''readCount:''' the amount of bytes to read from the file ==Returns== This function returns a string that contains the bytes that have been read from the file. ==Example== <section name="Client" class="c...")
  • 03:19, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/functions (Created page with "==FileSystem Translator Functions== *open *exists *createDir *chdir *delete *copy *rename *size *Modules/FileSystem/translator...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)