Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 | 60 | 90 | 120 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Show minor edits
Show new changes starting from 02:55, 26 June 2024
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

25 June 2024

     18:57  Talk:New coding guidelines diffhist +530 Tracer talk contribs (→‎auto vs auto*: new section)
N    08:42  User:AirNewSCR diffhist +18 AirNewSCR talk contribs (Created page with "Discord: airnewscr")
     08:36  TriggerClientEvent diffhist +820 AirNewSCR talk contribs (Added example 3 (with resourceRoot))

24 June 2024

     16:28  FileRead diffhist +551 Tracer talk contribs
     16:23  FileGetContents diffhist +697 Tracer talk contribs
     01:02  Changes in 1.6.1 diffhist +2,067 FileEX talk contribs (Update)

22 June 2024

N    14:16  EngineSetPoolCapacity diffhist +505 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.0|22471|This function changes the capacity of the provided pool.}} ==Syntax== <syntaxhighlight lang="lua"> boolean engineSetPoolCapacity( string pool, number capacity ) </syntaxhighlight> ===Required Arguments=== * '''pool''': Name of the pool * '''capacity ''': New size ===Returns=== '''true''' if the pool capacity was changed and '''false''' if not. Throws an error if the pool is invalid. {{Engine_pools}} ==S...")
N    14:11  EngineGetPoolCapacity diffhist +404 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.0|22471|This function returns the capacity of the provided pool.}} ==Syntax== <syntaxhighlight lang="lua"> number engineGetPoolCapacity( string pool ) </syntaxhighlight> ===Required Arguments=== * '''pool''': Name of the pool ===Returns=== The capacity of the provided pool as positive number {{Engine_pools}} ==See Also== {{Engine_functions}}")
N    14:08  EngineGetPoolUsedCapacity diffhist +418 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.0|22471|This function returns the used capacity of the provided pool.}} ==Syntax== <syntaxhighlight lang="lua"> number engineGetPoolUsedCapacity( string pool ) </syntaxhighlight> ===Required Arguments=== * '''pool''': Name of the pool ===Returns=== The used capacity of the provided pool as positive number {{Engine_pools}} ==See Also== {{Engine_functions}}")
N    14:08  EngineGetPoolDefaultCapacity diffhist +427 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.0|22471|This function returns the default capacity of the provided pool.}} ==Syntax== <syntaxhighlight lang="lua"> number engineGetPoolDefaultCapacity( string pool ) </syntaxhighlight> ===Required Arguments=== * '''pool''': Name of the pool ===Returns=== The default capacity of the provided pool as positive number {{Engine_pools}} ==See Also== {{Engine_functions}}")
N    13:59  Template:Engine pools diffhist +918 TheNormalnij talk contribs (Created page with "===Engine pools=== {|class="wikitable sortable" |- ! Name || Default size || Resizable || Description |- | building || 13000 || yes || Static world objects. Terrain, roads, buildings... |- | dummy|| 2500 || no || Dynamic world objects. Doors, fences, boxes |- | ped || 140 || no || Peds |- | object || 1200 || no || Scriptable objects |- | vehicle || 110 || no || Vehicles |- | col-model || 12000 || no || |- | task || 5000 || no || |- | event || 5000 || no || |- | task-allo...")
     11:44  HU/Coding guidelines diffhist +9 Tracer talk contribs (Marked for deletion) Tag: Manual revert

21 June 2024

N    18:08  PL/Filepath diffhist +1,864 FileEX talk contribs (Translate)

20 June 2024

     15:29  OutputDebugString‎‎ 2 changes history −36 [Srslyyyy‎ (2×)]
     
15:29 (cur | prev) −35 Srslyyyy talk contribs (Remove new item template.)
     
14:55 (cur | prev) −1 Srslyyyy talk contribs (→‎Optional Arguments)

19 June 2024

N    17:14  User:Selective diffhist +71 Selective talk contribs (don't remember to smile 🙂)
N    17:10  User talk:Selective diffhist +37 Selective talk contribs (Life Is Good ☕)
N    15:40  Talk:New coding guidelines diffhist 0 Tracer talk contribs (For further discussions about the guidelines)
N    14:55  New coding guidelines diffhist +6,316 FileEX talk contribs (Created page with "This page contains new and unofficial coding guidelines. <br><br> <ol> <li>Use '''const''' and '''constexpr''' wherever possible.</li> <li>Use the '''noexcept''' specifier whenever possible.</li> <li>Use '''nullptr''' instead of '''NULL''' when setting or returning a null pointer.</li> <li>Functions that only return a value should be placed in header files. For example, instead of: <syntaxhighlight lang="cpp"> // In .cpp file int GetGameSpeed() { return m_iGameSp...")

17 June 2024

     17:31  Changes in 1.6 diffhist −64 TheNormalnij talk contribs (Vladislav Nikolaevich and Uladzislau Nikalayevich and TheNormalnij is me)

12 June 2024

     21:14  Template:Building functions diffhist 0 TheNormalnij talk contribs (Fix mta version)
     11:17  GetVehicleType diffhist +86 Srslyyyy talk contribs (Replace to predefined variables.)

11 June 2024

     14:34  Server mtaserver.conf diffhist −518 Megadreams talk contribs (Remove vehicle_contact_sync_radius) Tag: Manual revert
     14:33  SetServerConfigSetting diffhist −71 Megadreams talk contribs (Remove vehicle_contact_sync_radius) Tag: Manual revert
N    13:55  FxCreateParticle diffhist +2,155 FileEX talk contribs (Created page with "__NOTOC__ {{Client function}} Creates the given particles of the specified color. Can be useful for creating flares, toxic fumes, reward effects, etc. ==Syntax== <syntaxhighlight lang="lua"> bool fxCreateParticle(string particle, float posX, float posY, float posZ, float dirX, float dirY, float dirZ, float r, float g, float b, float a [, bool randomizeColors = false, int count = 1, float brightness = 1.0, float size = 0.3, bool randomSizes = false, float life = 1.0 ]) <...")
N    13:41  Particles‎‎ 2 changes history +2,656 [FileEX‎ (2×)]
     
13:41 (cur | prev) +45 FileEX talk contribs
N    
13:06 (cur | prev) +2,611 FileEX talk contribs (Created page with "This page contains a list of particles that can be created by fxCreateParticle <div> <ul> <li style="display:inline-block;">frame|'''Particle:''' blood<br>'''Color:''' 59, 245, 146, 255<br>'''Count:''' 20</li> <li style="display:inline-block;">frame|'''Particle:''' boat_splash<br>'''Color:''' 92, 177, 237, 255<br>'''Count:''' 20</li> <li style="display:inline-block;">File:Prt_bubble.gif|frame|'''Particle:''' bubbl...")

9 June 2024

N    09:44  GetVehicleIdleRespawnDelay diffhist +1,063 Tracer talk contribs (Created page with "__NOTOC__ {{Server function}} {{Added feature/item|1.6.1|1.6.0|22505|This function gets the time delay (in milliseconds) the vehicle will remain at its position while empty.}} ==Syntax== <syntaxhighlight lang="lua"> int getVehicleIdleRespawnDelay ( vehicle theVehicle ) </syntaxhighlight> {{OOP||vehicle:getIdleRespawnDelay|idleRespawnDelay|setVehicleIdleRespawnDelay}} ===Required Arguments=== *'''theVehicle''': The vehicle you wish to get the idle delay of. ==...")
     09:41  Template:Vehicle functions diffhist +69 Tracer talk contribs
N    09:41  GetVehicleRespawnDelay diffhist +993 Tracer talk contribs (Created page with "__NOTOC__ {{Server function}} This function gets the time delay (in milliseconds) the vehicle will remain wrecked before respawning. ==Syntax== <syntaxhighlight lang="lua"> int getVehicleRespawnDelay ( vehicle theVehicle ) </syntaxhighlight> {{OOP||vehicle:getRespawnDelay|respawnDelay|setVehicleRespawnDelay}} ===Required Arguments=== *'''theVehicle''': The vehicle you wish to get the respawn delay of. ==Returns== Returns the delay in milliseconds. ==Example=...")
N    09:33  IsVehicleRespawnable diffhist +939 Tracer talk contribs (Created page with "{{Server function}} __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22505|This function check if the vehicle is respawnable.}} ==Syntax== <syntaxhighlight lang="lua"> bool isVehicleRespawnable ( vehicle theVehicle ) </syntaxhighlight> {{OOP||vehicle:isRespawnable}} ===Required Arguments=== *'''theVehicle:''' The vehicle which you'd like to get respawn state of. ===Returns=== Returns three '''true''' if the vehicle is respawnable, '''false''' otherwise. ==Example==...")
     09:25  Changes in 1.6.1 diffhist +411 Tracer talk contribs (Added changes)
     00:32  Script security‎‎ 3 changes history +345 [Srslyyyy‎ (3×)]
     
00:32 (cur | prev) +1 Srslyyyy talk contribs (→‎Securing setElementData)
     
00:30 (cur | prev) +204 Srslyyyy talk contribs (→‎Securing setElementData)
     
00:13 (cur | prev) +140 Srslyyyy talk contribs (→‎Securing setElementData)

8 June 2024

     19:18  ProcessLineOfSight‎‎ 2 changes history +234 [Pirulax‎ (2×)]
     
19:18 (cur | prev) +4 Pirulax talk contribs
     
19:18 (cur | prev) +230 Pirulax talk contribs (Fix last edit (Clarify function arguments))
     14:51  Template:Engine functions diffhist +195 TheNormalnij talk contribs (Pool functions added)
     13:37  GetVehicleRespawnRotation diffhist 0 Srslyyyy talk contribs (→‎Syntax)
     13:36  GetVehicleRespawnPosition diffhist 0 Srslyyyy talk contribs (→‎Syntax)
     11:39  Client Manual diffhist −399 Nico834 talk contribs (Remove the note, as we have a built-in patcher)
     08:59  OnClientElementDestroy diffhist −18 Srslyyyy talk contribs (Replace to predefined variables.)
N    08:25  RU/OOP diffhist +20 Tracer talk contribs (Redirected page to Ru/OOP) Tag: New redirect
N    08:19  Template:Audio Containers diffhist +276 Tracer talk contribs (Added audio containers)
     08:13  PL/Zdarzenia po stronie klienta diffhist −815 Tracer talk contribs (Redirected) Tag: New redirect
     08:12  Zdarzenia po stronie klienta diffhist +812 Tracer talk contribs (Redirected pages to its polish counterparts) Tag: Removed redirect
N    08:10  Gdzie kupić GTASA diffhist +35 Tracer talk contribs (Added redirection) Tag: New redirect
     07:49  Math diffhist +1 Srslyyyy talk contribs (→‎See Also)
     07:29  Meta.xml‎‎ 2 changes history +1,007 [Srslyyyy‎ (2×)]
     
07:29 (cur | prev) +148 Srslyyyy talk contribs (→‎Tags)
     
07:28 (cur | prev) +859 Srslyyyy talk contribs (Add meta.xml loading files pattern by W3lac3 (https://github.com/multitheftauto/mtasa-blue/pull/3203))