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).
- 08:11, 25 November 2022 IcENog talk contribs created page IsDimFree (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function checks whether the passed dimension is free or not. ==Syntax== <syntaxhighlight lang="lua"> bool IsDimFree (Type,Dim ) </syntaxhighlight> ===Required Arguments=== *'''Type:''' The element type to check *'''Dim:''' The dimension to check ===Returns=== Returns ''true'' if the dimension is free, ''false'' otherwise. ==Code== <section name="Function source" class="server" show="true"> <synta...")
- 07:32, 25 November 2022 User account IcENog talk contribs was created
- 21:58, 22 November 2022 User account Down talk contribs was created
- 02:38, 21 November 2022 User account Sheenidgs137 talk contribs was created
- 11:27, 19 November 2022 User account Lucid talk contribs was created
- 14:13, 17 November 2022 User account Mooounly talk contribs was created
- 10:00, 16 November 2022 JeViCo talk contribs created page User talk:JeViCo (Created page with "Wiki-related only discussions below")
- 09:45, 16 November 2022 JeViCo talk contribs created page User:JeViCo (Basic info added)
- 09:37, 16 November 2022 JeViCo talk contribs uploaded a new version of File:Discord.png (Brighter version)
- 09:34, 16 November 2022 JeViCo talk contribs created page File:Discord.png (Official discord logo)
- 09:34, 16 November 2022 JeViCo talk contribs uploaded File:Discord.png (Official discord logo)
- 23:59, 15 November 2022 User account Coyotebr120 talk contribs was created
- 19:47, 15 November 2022 User account SrFilif talk contribs was created
- 19:13, 14 November 2022 User account M7mood talk contribs was created
- 01:47, 14 November 2022 User account BuilderDemo7 talk contribs was created
- 14:50, 13 November 2022 User account Jamie talk contribs was created
- 22:37, 12 November 2022 User account Lucks8784575 talk contribs was created
- 08:24, 10 November 2022 User account MGRM talk contribs was created
- 18:31, 9 November 2022 Shady talk contribs created page TR/OyunModları yazma (The translations I make are copy-paste, it forces me to make changes on the site because I don't want even the slightest mistake. Best regards Shady)
- 15:27, 8 November 2022 User account Abnergamerpro831 talk contribs was created
- 19:29, 7 November 2022 User account Tyreek talk contribs was created
- 12:05, 7 November 2022 User account Vanyadumer talk contribs was created
- 19:05, 3 November 2022 User account MAFIOSO talk contribs was created
- 16:28, 3 November 2022 User account FLUXY talk contribs was created
- 14:12, 3 November 2022 Botder talk contribs created page GetProcessMemoryStats (Created page with "__NOTOC__ {{Shared function}} {{Added feature/item|1.6.0|1.5.9|21389|This function returns a breakdown of the process memory usage. The reported numbers are always byte units and these numbers can be '''inaccurate'''.}} ==Syntax== <syntaxhighlight lang="lua"> table|nil getProcessMemoryStats ( ) </syntaxhighlight> ==Returns== Returns a table if successful, otherwise returns '''nil''' {| class="wikitable" style="cellpadding: 10px;" |- ! Property || Description |- | <c...")
- 14:00, 3 November 2022 Thisdp talk contribs created page DgsWindowGetTextSize (Created page with "{{Client function}} __NOTOC__ This function retrieves the theoretical width and height (in pixels) of a certain piece of title text of dgs window. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsWindowGetTextSize( element theWindow ) </syntaxhighlight> ===Required Arguments=== *'''theWindow:''' The window of whose text you wish to retrieve the width and height. ===Returns=== Returns two floats representing the width and height of the text in pixels. ==Examp...")
- 13:55, 3 November 2022 Thisdp talk contribs created page DgsWindowGetFontHeight (Created page with "{{Client function}} __NOTOC__ This function returns the height of the font currently used in title text of a DGS window. ==Syntax== <syntaxhighlight lang="lua"> float dgsWindowGetFontHeight ( element theWindow ) </syntaxhighlight> ===Required Arguments=== *'''theWindow:''' The window to get the font height from. ===Returns=== Returns the absolute height of the font currently used in the window if the function is successful, ''false'' otherwise. ==Example== This ex...")
- 13:52, 3 November 2022 Thisdp talk contribs created page DgsButtonGetFontHeight (Created page with "{{Client function}} __NOTOC__ This function returns the height of the font currently used in a DGS button. ==Syntax== <syntaxhighlight lang="lua"> float dgsButtonGetFontHeight ( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button to get the font height from. ===Returns=== Returns the absolute height of the font currently used in the button if the function is successful, ''false'' otherwise. ==Example== This example creates...")
- 13:51, 3 November 2022 Thisdp talk contribs created page DgsButtonGetTextExtent (Created page with "{{Client function}} __NOTOC__ This function returns the extent, or width, of the current text inside a DGS button. ==Syntax== <syntaxhighlight lang="lua"> float dgsButtonGetTextExtent ( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button to get the text extent from. ===Returns=== Returns the absolute width of the current text inside the button if the function is successful, ''false'' otherwise. ==Example== This example crea...")
- 13:50, 3 November 2022 Thisdp talk contribs created page DgsButtonGetTextSize (Created page with "{{Client function}} __NOTOC__ This function retrieves the theoretical width and height (in pixels) of a certain piece of text of dgs button. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsButtonGetTextSize( element theButton ) </syntaxhighlight> ===Required Arguments=== *'''theButton:''' The button of whose text you wish to retrieve the width and height. ===Returns=== Returns two floats representing the width and height of the text in pixels. ==Example==...")
- 13:49, 3 November 2022 Thisdp talk contribs created page DgsWindowGetTextExtent (Created page with "{{Client function}} __NOTOC__ This function returns the extent, or width, of the current title text of a DGS window. ==Syntax== <syntaxhighlight lang="lua"> float dgsWindowGetTextExtent ( element theWIndow ) </syntaxhighlight> ===Required Arguments=== *'''theWIndow:''' The window to get the title text extent from. ===Returns=== Returns the absolute width of the the current title text of a DGS window if the function is successful, ''false'' otherwise. ==Example== T...")
- 20:50, 2 November 2022 User account Stucmo talk contribs was created
- 10:11, 31 October 2022 User account Mustikdev talk contribs was created
- 10:10, 31 October 2022 User account Mustik talk contribs was created
- 11:37, 30 October 2022 User account Mayor Pein talk contribs was created
- 13:58, 29 October 2022 User account Golodupiec talk contribs was created
- 04:06, 28 October 2022 User account Luxzues talk contribs was created
- 16:35, 27 October 2022 Snow-Man talk contribs created page DxDrawBordered3DLine (Created page with "{{Useful Function}} This function creates a bordered area with 3D dx lines. * '''NOTE:''' this is made to be only client side <syntaxhighlight lang="lua">bool dxDrawBordered3DLine(float startX, float startY, float startZ, float endX, float endY, float endZ, color, width) </syntaxhighlight> ===Required Arguments=== * '''startX/startY/startZ:'''The start position of the 3D Line, representing a coordinate in the GTA world. * '''endX/endY/endZ:'''The end position of t...")
- 22:18, 26 October 2022 User account The Shadow talk contribs was created
- 20:23, 26 October 2022 User account Snow-Man talk contribs was created
- 08:25, 24 October 2022 Myonlake talk contribs blocked Absolwent talk contribs with an expiration time of indefinite (account creation disabled, cannot edit own talk page) (Vandalism)
- 08:02, 24 October 2022 User account Absolwent talk contribs was created
- 00:10, 24 October 2022 LordHenry talk contribs created page Template talk:Garages (Created page with "== Missing garage positions == ==== Use this information to createObject ==== '''LSPD Police Impound Garage''':<br> ''Model ID:'' 3055<br> ''XYZ Position:'' 1588.56, -1637.953, 14.58<br> ''XYZ Rotation:'' 0, 0, 180.5<br> <br> '''SFPD Police Impound Garage''':<br> ''Model ID:'' 10184<br> ''XYZ Position:'' -1631.7, 688.40002, 8.7<br> ''XYZ Rotation:'' 0, 0, 90<br> <br> '''LVPD Police Impound Garage (front)''':<br> ''Model ID:'' 3055<br> ''XYZ Position:'' 2293.8, 2498.8...")
- 13:35, 22 October 2022 Samr46 talk contribs created page GetElementLighting (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.5.9|1.5.9|21367|This function returns the lighting value for the specified element. This can be a player, ped, vehicle, object.}} ==Syntax== <syntaxhighlight lang="lua"> float getElementLighting ( element theElement ) </syntaxhighlight> {{OOP||element:getLighting|lighting}} ===Required Arguments=== *'''theElement:''' The element whose lighting you want to retrieve. ===Returns=== Returns a...")
- 19:14, 18 October 2022 長瀞早瀬 talk contribs created page DxDrawCircleOnElement (Created page with "{{Useful Function}}<lowercasetitle/> __NOTOC__ This useful client function draws a circle on any element you choose. {{Note|You have to use onClientRender or onClientPreRender events with this function.}} ==Syntax== <syntaxhighlight lang="lua">boolean dxDrawCircleOnElement(element TheElement, int marginFromTop = 1.25, int radius = 1, int distance = 20, int color = tocolor(255,255,255), int centerColor = tocolor(255,255,255))</syntaxhighlight> Image:Drawcircleo...")
- 19:01, 18 October 2022 長瀞早瀬 talk contribs created page File:Drawcircleonelementdemo.jpg (dxDrawCircleOnElement demonstration image Category:Useful Functions)
- 19:01, 18 October 2022 長瀞早瀬 talk contribs uploaded File:Drawcircleonelementdemo.jpg (dxDrawCircleOnElement demonstration image Category:Useful Functions)
- 18:50, 18 October 2022 User account 長瀞早瀬 talk contribs was created
- 07:07, 16 October 2022 User account 2d talk contribs was created
- 01:32, 16 October 2022 User account Mmd1212 talk contribs was created