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:02, 2 October 2022 User account K2bi YT talk contribs was created
- 13:37, 2 October 2022 User account ShieldPro talk contribs was created
- 11:17, 2 October 2022 Myonlake talk contribs changed block settings for Exporthub110 talk contribs with an expiration time of indefinite (account creation disabled, autoblock disabled, cannot edit own talk page) (Automatically blocked by abuse filter.Description of matched rule: User page spam detection)
- 18:58, 1 October 2022 Abuse filter talk contribs blocked Exporthub110 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)
- 18:58, 1 October 2022 Abuse filter talk contribs blocked the autopromotion of Exporthub110 for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 18:54, 1 October 2022 User account Exporthub110 talk contribs was created
- 02:46, 30 September 2022 User account ModNic talk contribs was created
- 01:31, 30 September 2022 User account HURON talk contribs was created
- 09:52, 28 September 2022 User account NoRules talk contribs was created
- 01:58, 27 September 2022 Danilo talk contribs created page Talk:IsVehicleOnFire (Created page with "Things to fix in this code: 1 - Function's return can be improved; it will only return false/true if the code executes the if statements 2 - < 300 Is not the actual value the vehicle starts going on fire")
- 11:07, 25 September 2022 Lopez talk contribs created page IsCoronaReflectionEnabled (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.5.9|1.5.8|21251|Gets visibility of corona reflection.}} ==Syntax== <syntaxhighlight lang="lua"> bool isCoronaReflectionEnabled ( marker theMarker ) </syntaxhighlight> ===Required Arguments=== *'''theMarker:''' marker ===Returns=== * Returns ''false'' is marker type is not ''corona''. * Returns ''true'' if corona reflection is enabled, ''false'' otherwise. ==See Also== {{client marker functions}}")
- 11:05, 25 September 2022 Lopez talk contribs created page SetCoronaReflectionEnabled (Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflection.}} ==Syntax== <syntaxhighlight lang="lua"> bool setCoronaReflectionEnabled ( marker theMarker, bool enabled ) </syntaxhighlight> ===Required Arguments=== *'''bEnabled:''' whenever corona reflection should be visible ===Returns=== Returns ''true'' if marker type is ''corona'', ''false'' otherwise. ==See Also== {{client marker functions}}")
- 10:55, 25 September 2022 Lopez talk contribs created page GetCoronaReflectionsEnabled (Created page with "{{Client function}} __NOTOC__ {{New feature/item|1.5.9|1.5.8|21251|Gets visibility of corona reflections.}} ==Syntax== <syntaxhighlight lang="lua"> int getCoronaReflectionsEnabled ( ) </syntaxhighlight> ===Returns=== One of the following integers will be returned: * '''0''': corona reflections are disabled * '''1''': corona reflections are enabled * '''2''': corona reflections are force enabled, even if there is no rain ==See Also== {{client world functions}}")
- 10:52, 25 September 2022 Lopez talk contribs created page SetCoronaReflectionsEnabled (Created page with "{{Client function}} __NOTOC__ {{New feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflections.}} ==Syntax== <syntaxhighlight lang="lua"> bool setCoronaReflectionsEnabled ( int enabled ) </syntaxhighlight> ===Required Arguments=== *'''enabled:''' ** 0 - disabled ** 1 - enabled ** 2 - force enabled, even if there is no rain ===Returns=== Returns ''true'' if passed arguments are correct, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> -- For...")
- 08:20, 25 September 2022 User account Indereek talk contribs was created
- 07:27, 22 September 2022 Hydra talk contribs created page IsVehicleOnFire (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function checks if the vehicle is on fire. ==Syntax== <syntaxhighlight lang="lua">bool isVehicleOnFire(vehicle theVehicle)</syntaxhighlight> ===Required Arguments=== * '''vehicle''': vehicle element. ==Code== <section name="Function source" class="both" show="true"> <syntaxhighlight lang="lua"> function isVehicleOnFire(elementVehicle) if getElementType(elementVehicle) == "vehicle" then local...")
- 17:52, 21 September 2022 User account Евгений3111 talk contribs was created
- 08:52, 19 September 2022 AmirMmd talk contribs created page User:AmirMmd (Created page with "--[In The Name Of God]-- About Me Name : Amir Mohammad")
- 08:19, 19 September 2022 User account Fixlly75 talk contribs was created
- 07:09, 18 September 2022 User account Sory talk contribs was created
- 00:33, 18 September 2022 User account Zash001 talk contribs was created
- 17:50, 17 September 2022 User account Coyp talk contribs was created
- 16:39, 16 September 2022 User account F.Torres talk contribs was created
- 18:38, 15 September 2022 User account Samuel Rocha talk contribs was created
- 02:01, 14 September 2022 User account Lis Xl talk contribs was created
- 02:54, 13 September 2022 LordHenry talk contribs uploaded a new version of File:GTASAmap.jpeg
- 02:46, 13 September 2022 LordHenry talk contribs created page File:GTASAmap.jpeg (GTA SA all zones and cities)
- 02:46, 13 September 2022 LordHenry talk contribs uploaded File:GTASAmap.jpeg (GTA SA all zones and cities)
- 15:03, 12 September 2022 Lopez talk contribs created page Code snippet for extracting weapon stats (Created page with "Code snippet which might be used to extract weapon stats: <syntaxhighlight lang="lua"> count = 22 statid = 3 addCommandHandler("dump", function () while (count < 33) do hFile = fileOpen ( "dump.txt" ) fileSetPos(hFile, fileGetSize ( hFile )) i = count fileWrite(hFile, "// " .. i .. " - " .. getWeaponNameFromID( i ) .. " Stat: " .. statid ) fileWrite(hFile, "\r\n") for k,v in ipairs(props) do outputChatBox(...")
- 14:52, 11 September 2022 LopSided talk contribs created page IsCapsLockEnabled (Created page with "{{Client function}} ==Syntax== <syntaxhighlight lang="lua"> bool isCapsLockEnabled() </syntaxhighlight> ===Returns=== Returns ''true'' if caps lock is toggled (on), ''false'' otherwise. ==Example== <syntaxhighlight lang="lua">function checkCaps() iprint(isCapsLockEnabled(), getTickCount()) end addCommandHandler("caps", checkCaps)</syntaxhighlight> ==See Also== {{Input functions}}")
- 11:12, 10 September 2022 User account Speedy talk contribs was created
- 06:16, 9 September 2022 Abuse filter talk contribs blocked Taniyarajput483 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)
- 06:16, 9 September 2022 Abuse filter talk contribs blocked the autopromotion of Taniyarajput483 for a period of 5 days (Autopromotion automatically delayed by abuse filter. Rule description: User page spam detection)
- 06:00, 9 September 2022 User account Taniyarajput483 talk contribs was created
- 03:27, 9 September 2022 User account Alex4ndvr talk contribs was created
- 02:06, 9 September 2022 User account Eugene talk contribs was created
- 19:37, 7 September 2022 User account Elelze talk contribs was created
- 19:52, 2 September 2022 User account BO4MAN talk contribs was created
- 15:50, 2 September 2022 User account AmRAShams talk contribs was created
- 10:35, 30 August 2022 User account MrKhiyarAM talk contribs was created
- 20:40, 29 August 2022 LordHenry talk contribs created page Template talk:ZoneNames (Created page with "'''Las Venturas (Red County):''' *'''Position X''' = 2999.0001220704 *'''Position Y''' = 591.9999694825 *'''Position Z''' = -242.0000076293")
- 20:36, 29 August 2022 LordHenry talk contribs created page Template:ZoneNames (Created page with "* '''Whetstone''' ** Angel Pine ** Flint County ** Foster Valley ** Mount Chiliad ** Shady Cabin ** Shady Creeks * '''Flint County''' ** Back o Beyond ** Beacon Hill ** Easter Bay Chemicals ** Flint Intersection ** Flint Range ** Leafy Hollow ** Los Santos Inlet * '''Los Santos''' ** Commerce ** Conference Center ** Downtown Los Santos ** East Beach ** East Los Santos ** El Corona ** Ganton ** Glen Park ** Idlewood ** Jefferson ** Las Colinas ** Little Mexico ** Los Fl...")
- 17:17, 29 August 2022 User account 0xKendry talk contribs was created
- 12:36, 28 August 2022 User account AmirMmd talk contribs was created
- 11:18, 27 August 2022 Myonlake talk contribs deleted page Broken/ar:الصفحه الرئيسيه
- 18:34, 26 August 2022 User account Qsll talk contribs was created
- 18:24, 26 August 2022 User account Syaan talk contribs was created
- 06:02, 26 August 2022 User account Derx talk contribs was created
- 07:05, 24 August 2022 User account Lucku123 talk contribs was created
- 22:33, 23 August 2022 Lettify talk contribs created page GetElementDirectionCardialPoint (Created page with "__NOTOC__ {{Useful Function}} This function returns the direction of the element according to the ''wind rose''.<br> ==Syntax== <syntaxhighlight lang="lua">string getElementDirectionCardialPoint( element theElement )</syntaxhighlight> ===Required Arguments=== * '''theElement''': The element to be able to get direction. ==Returns== Returns a string indicating the cardinal direction the element is in (North, East, South and West). Otherwise nil. ==Code== <section n...")