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).
- 16:14, 11 January 2025 FileEX talk contribs deleted page RestoreGameWorld (content was: "__NOTOC__ {{Client function}} Coming soon, see [https://github.com/multitheftauto/mtasa-blue/pull/3627 mtasa-blue PR #3627] ==See Also== {{Building functions}}", and the only contributor was "Fernando187" (talk))
- 16:14, 11 January 2025 FileEX talk contribs deleted page RemoveGameWorld (content was: "__NOTOC__ {{Client function}} Coming soon, see [https://github.com/multitheftauto/mtasa-blue/pull/3627 mtasa-blue PR #3627] ==See Also== {{Building functions}}", and the only contributor was "Fernando187" (talk))
- 19:28, 10 January 2025 User account Souzacristiana talk contribs was created
- 09:16, 10 January 2025 User account Baraa talk contribs was created
- 23:26, 9 January 2025 User account Soylaparadeahorayellaquiereconmigo talk contribs was created
- 17:24, 9 January 2025 User account Nnforyou talk contribs was created
- 19:55, 8 January 2025 Botder talk contribs created page FetchServerIp (Created page with "{{Useful_Function}} <lowercasetitle/> __NOTOC__ This function returns the server ip as reported by a third-party service. ==Syntax== <syntaxhighlight lang="lua"> string fetchServerIp ( ) </syntaxhighlight> ==Code== <section name="Server" class="server" show="true"> <syntaxhighlight lang="lua"> SERVER_IP = "127.0.0.1" function fetchServerIp() return SERVER_IP end fetchRemote("http://checkip.dyndns.com/", function (response) if response ~= "ERROR" then...")
- 19:45, 8 January 2025 Botder talk contribs created page GetServerIpFromMasterServer (Created page with "__NOTOC__ {{Server function}} {{New feature/item|3.0161|1.6.0|22890|This function returns the remote address as reported by the first master server that provides this value.}} {{Note|It might take a while until the master server responds to the query sent out by the server, which in turn means that this function will not return any IP until the information has been received.}} {{Note|On client-side there is the getServerIp function, in case you need the remote addre...")
- 10:59, 4 January 2025 Srslyyyy talk contribs created page IsWeaponRenderEnabled (Add isWeaponRenderEnabled by FileEX (https://github.com/multitheftauto/mtasa-blue/pull/3917))
- 10:54, 4 January 2025 Srslyyyy talk contribs created page SetWeaponRenderEnabled (Add setWeaponRenderEnabled by FileEX (https://github.com/multitheftauto/mtasa-blue/pull/3917))
- 11:14, 3 January 2025 Fernando187 talk contribs created page Server Browser Rules (Created page with "==About== "'''Server Browser Rules'''" are ''key-value'' string pairs defined server-side. These values are transmitted/announced/broadcasted by your MTA Server using the ASE (All-Seeing Eye) protocol, when queried on the main UDP Port (default 22003). The purpose of this data is to be received and parsed by MTA Clients in the Server Browser, to display the list of online MTA servers with custom information for each server. WIP")
- 19:33, 31 December 2024 FileEX talk contribs created page ResetPlayerHudComponentProperty (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22868|This function resets the specified property to its default value.}} ==Syntax== <syntaxhighlight lang="lua"> bool resetPlayerHudComponentProperty (string component, string property) </syntaxhighlight> {{OOP||player:getHudComponentProperty||setPlayerHudComponentProperty}} ===Required Arguments=== *'''component:''' The component whose property you want to reset. See HUD Components. *'''property:'...")
- 19:27, 31 December 2024 FileEX talk contribs created page GetPlayerHudComponentProperty (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22868|This function gets the value of the specified HUD property.}} ==Syntax== <syntaxhighlight lang="lua"> mixed getPlayerHudComponentProperty (string component, string property) </syntaxhighlight> {{OOP||player:getHudComponentProperty||setPlayerHudComponentProperty}} ===Required Arguments=== *'''component:''' The component whose property you want to retrieve. See HUD Components. *'''property:''' T...")
- 19:10, 31 December 2024 FileEX talk contribs created page HUD Components (Created page with "This page contains a list of HUD components and their properties. ===Components=== :*'''all:''' All of the following at the same time :*'''ammo:''' The display showing how much ammo the player has in their weapon :*'''area_name:''' The text that appears containing the name of the area a player has entered :*'''armour:''' The display showing the player's armor :*'''breath:''' The display showing the player's breath :*'''clock:''' The display showing the in-game time :*''...")
- 18:57, 31 December 2024 FileEX talk contribs created page SetPlayerHudComponentProperty (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22868|This function allows for modifying HUD properties, such as text or bar color, position, size, and more.}} {{Note|Due to a rendering bug in GTA, setting transparency for text with outline or shadow causes a visual glitch, resulting in blurred/smudged text. Transparency only works correctly on text without outline and shadow.}} thumb|right|Example of a modified HUD. ==Syntax=...")
- 18:55, 31 December 2024 FileEX talk contribs created page File:HUD properties.png
- 18:55, 31 December 2024 FileEX talk contribs uploaded File:HUD properties.png
- 14:00, 31 December 2024 User account Miliomos talk contribs was created
- 03:16, 31 December 2024 FileEX talk contribs created page IsElementOnFire (Created page with "__NOTOC__ {{Shared function}} {{New feature/item|3.0161|1.6.0|22864|This function checks if the specified element is on fire or not.}} ==Syntax== <syntaxhighlight lang="lua"> bool isElementOnFire ( element theElement ) </syntaxhighlight> {{OOP||element:isOnFire|onFire|setElementOnFire}} ===Required Arguments=== *'''theElement''': The element to check. ===Returns=== Returns ''true'' if the element is on fire, ''false'' otherwise. ==Example== {{Needs Ex...")
- 03:11, 31 December 2024 FileEX talk contribs created page SetElementOnFire (Created page with "__NOTOC__ {{Shared function}} {{New feature/item|3.0161|1.6.0|22864| This function can be used to set a element on fire or extinguish a fire on it. Supported types are ped, vehicle and object.}} ==Syntax== <syntaxhighlight lang="lua"> bool setElementOnFire ( element theElement, bool isOnFire ) </syntaxhighlight> {{OOP||element:setOnFire|onFire|isElementOnFire}} ===Required Arguments=== *'''theElement:''' The element that we want to set/unset....")
- 02:59, 31 December 2024 FileEX talk contribs created page SetElementLighting (Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.0161|1.6.0|22862|This function changes the lighting value for the specified element. This can be a player, ped, vehicle, object, weapon.}} {{Note|Lighting is calculated in real-time, so you will likely need onClientRender or onClientPreRender.}} ==Syntax== <syntaxhighlight lang="lua"> bool setElementLighting ( element theElement, float lighting ) </syntaxhighlight> {{OOP||element:set...")
- 02:27, 31 December 2024 FileEX talk contribs created page GetVehicleRotorState (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22862|This function returns a vehicle's (plane or helicopter) rotor state (on or off).}} ==Syntax== <syntaxhighlight lang="lua"> bool getVehicleRotoState ( vehicle theVehicle ) </syntaxhighlight> {{OOP||vehicle:getRotorState|rotorState|setVehicleRotorState}} ===Required Arguments=== *'''theVehicle''': the vehicle you wish to get the engine state of. ===Returns=== Returns '''true''' if the vehicle's...")
- 02:19, 31 December 2024 FileEX talk contribs created page SetVehicleRotorState (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6.0|22862| Turns the rotor on/off for an plane or helicopter. A vehicle with the rotor turned off cannot hover in the air.}} {{Note|The function should not be confused with setVehicleEngineState.}} ==Syntax== <syntaxhighlight lang="lua"> bool setVehicleRotorState(vehicle theVehicle, bool state [, bool stopRotor = true ] ) </syntaxhighlight> {{OOP||vehicle:setRotorState|rotorState|getRotorState}} ===Requ...")
- 16:39, 28 December 2024 User account Makson talk contribs was created
- 16:27, 28 December 2024 User account Wassmas talk contribs was created
- 15:20, 26 December 2024 Prox talk contribs created page IsVehicleSmokeTrailEnabled (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22815 | This function is used to check planes smoke trail enabled or disabled. }} {{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}} ==Syntax== <syntaxhighlight lang="lua"> isVehicleSmokeTrailEnabled( vehicle veh ) </syntaxhighlight> ===Required arguments=== *'''theVehicle:''' The vehicle that you want to set the smoke trail. ===Returns=...")
- 14:43, 26 December 2024 Prox talk contribs created page File:Mta-screen 2024-12-26 17-38-53.png
- 14:43, 26 December 2024 Prox talk contribs uploaded File:Mta-screen 2024-12-26 17-38-53.png
- 14:36, 26 December 2024 Prox talk contribs created page SetVehicleSmokeTrailEnabled (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22815 | This function used to set planes smoke trail enabled or disabled. }} ==Syntax== <syntaxhighlight lang="lua"> setVehicleSmokeTrailEnabled ( vehicle veh, bool enable ) </syntaxhighlight> ===Required arguments=== *'''theVehicle:''' The vehicle that you want to set the smoke trail. *'''enable:''' A boolean if set to true it will enabled the smoke trail. *'''note''' this only works with vehicl...")
- 13:58, 22 December 2024 Prox talk contribs created page KillPedTask (killPedTask adding latest functions)
- 02:01, 22 December 2024 FileEX talk contribs created page OnShutdown (Created page with "__NOTOC__ {{Server event}} {{New feature/item|3.161|1.6.0|22837|This event is triggered when the server is about to be stopped using the server console or the shutdown function.}} ==Parameters== <syntaxhighlight lang="lua"> resource theResource, string reason </syntaxhighlight> *'''theResource:''' The resource that stops the server using the shutdown function. If the server is being stopped from the console, the '''resource''' is set to '''nil'''. *'''reaso...")
- 01:52, 22 December 2024 FileEX talk contribs created page TestSphereAgainstWorld (Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.161|1.6.0|22837| The function checks whether there is an object within the given radius and returns information about it. The function works similarly to processLineOfSight, but instead of a straight line, it operates based on the specified radius, forming a sphere.}} ==Syntax== Return values labelled for ease of reference. <syntaxhighlight lang="lua"> bool -- hit element -- hitElement floa...")
- 23:52, 21 December 2024 User account Luigui talk contribs was created
- 07:45, 21 December 2024 User account Sosa talk contribs was created
- 03:22, 19 December 2024 Noithatsdphome talk contribs created page User:Noithatsdphome (Nội Thất SDP Home chuyên sản xuất đồ nội thất, cung cấp dịch vụ thiết kế và thi công nội thất)
- 03:13, 19 December 2024 User account Noithatsdphome talk contribs was created
- 19:21, 17 December 2024 User account Khalid talk contribs was created
- 07:50, 17 December 2024 LopSided talk contribs blocked 94.246.156.114 talk with an expiration time of indefinite (account creation disabled, cannot edit own talk page)
- 03:58, 17 December 2024 User account Duceara talk contribs was created
- 11:29, 16 December 2024 User account Ragqem talk contribs was created
- 14:23, 15 December 2024 Shady talk contribs created page Script güvenliği-TEST (Created page with "==Müşteri hafızasının farkındalığı== En temelden başlayarak: * Herhangi bir verinin istemci tarafında (client-side) saklanmasının risk altında olduğunu bilmelisiniz; buna .lua dosyaları da dahildir. İstemci tarafında (oyuncunun bilgisayarında) saklanan veya bu taraf üzerinden iletilen gizli ve/veya önemli veriler, kötü niyetli istemciler tarafından erişilebilir. * Hassas verileri ve/veya Lua mantığını güvende tutmak için sunucu tarafını...")
- 14:06, 15 December 2024 User account Ammar1 talk contribs was created
- 14:05, 15 December 2024 Shady talk contribs created page Script güvenliği (Created page with "Düzenlenecek.")
- 16:37, 13 December 2024 Zeratul97 talk contribs created page HU/onClientPickupHit (Created page with "{{Client event}} __NOTOC__ Ez az esemény akkor aktiválódik, amikor egy játékos belelép egy pickupba. ==Paraméterek== <syntaxhighlight lang="lua"> player thePlayer, bool matchingDimension </syntaxhighlight> *'''thePlayer:''' a játékos aki belelép a pickupba. *'''matchingDimension:''' ''true'' ha a játékos ugyanabban a dimenzióban van, amiben a pickup is van, egyébként ''false''. ==Forrás== Az esemény forrása az a pickup, amibe egy játékos belemegy. =...")
- 16:30, 13 December 2024 Zeratul97 talk contribs created page HU/onClientPedWeaponFire (Created page with "{{Client event}} __NOTOC__ Ezt az eseményt akkor hívják meg, amikor ped fegyverre lő. Ez nem aktiválja a lövedék alapú vagy közelharci fegyvereket. {{Note|Ez az esemény csak a streamelt ped-ek esetében aktiválódik.}} ==Paraméterek== <syntaxhighlight lang="lua"> int weapon, int ammo, int ammoInClip, float hitX, float hitY, float hitZ, element hitElement </syntaxhighlight> *'''weapon''': egy int, amely a lövéshez használt fegyvert adja...")
- 16:28, 13 December 2024 Abuse filter talk contribs blocked Coursefpx 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:28, 13 December 2024 Abuse filter talk contribs blocked the autopromotion of Coursefpx for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 16:22, 13 December 2024 Zeratul97 talk contribs created page HU/onClientPedWasted (Created page with "__NOTOC__ {{Client event}} Ez az esemény akkor indul el, amikor egy ped meghal. ==Paraméterek== <syntaxhighlight lang="lua"> element killer, int weapon, int bodypart, float loss / bool stealth </syntaxhighlight> *'''killer''': A gyilkost jelképező játékos, ped vagy jármű elem. *'''weapon''': Egy integer amely a gyilkos fegyvert vagy a sérülés típust adja vissza. *'''bodypart''': Egy integer amely...")
- 16:11, 13 December 2024 Zeratul97 talk contribs created page HU/onClientPedHitByWaterCannon (Created page with "__NOTOC__ {{Client event}} Ez az esemény akkor indul el, amikor egy pedet egy vízágyú talált el. {{Note|Ez az esemény csak a streamelt ped-ek esetében aktiválódik.}} ==Paraméterek== <syntaxhighlight lang="lua"> ped pedHit </syntaxhighlight> *'''pedHit:''' az a ped akit egy vízágyú eltalált. ==Forrás== Ennek az eseménynek a forrása az a jármű, amit egy vízágyú talált el. ==Típus== Ez az esemény egy reakció előtti esemény, ami azt jelenti, hogy...")
- 16:11, 13 December 2024 User account Coursefpx talk contribs was created