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
  • 20:04, 24 October 2023 IManGaaX talk contribs created page DxDrawEditbox (add new function)
  • 12:13, 23 October 2023 IManGaaX talk contribs created page OnServerVehicleSpawn (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This code implements an event that is triggered when a new vehicle is spawned in the server. ==Parameters== <syntaxhighlight lang="lua">string vehicleName, int vehicleModel, float posX, float posY, float posZ, float spawnRotation, int vehicleInterior, int vehicleDimension</syntaxhighlight> * vehicleName: the name of the vehicle that was spawned. * vehicleModel: the model of the vehicle that...")
  • 16:20, 18 October 2023 IManGaaX talk contribs created page IsPedNearbyWall (Created page with "{{Useful Function}} __NOTOC__ <lowercasetitle></lowercasetitle> This function checks if player/ped is nearby walls like buildings or objects. ==Syntax== <syntaxhighlight lang="lua">bool isPedNearbyWall( element element[player/ped] )</syntaxhighlight> ===Required Arguments=== * '''element''': the player/ped element to check. ===Returns=== * ''true'' if the player/ped is nearby a wall. * ''false'' otherwise. ==Code== <section name="Client" class="client...")
  • 07:30, 10 October 2023 IManGaaX talk contribs moved page OnClientPlayerRealTimeChange to OnClientPlayerTimeChange
  • 05:38, 9 October 2023 IManGaaX talk contribs created page AR/table.flip (Created page with "{{Useful Function}} __NOTOC__ <lowercasetitle></lowercasetitle> هذه الوظيفة تقوم بإرجاع الجدول بالقيم من اخر قيمه لاول قيمه مثل الانعكاس ==Syntax== <syntaxhighlight lang="lua">table table.flip( table theTable )</syntaxhighlight> ===Required Arguments=== * '''theTable''': الجدول الذى تريد انعكاس قيمه. ===Returns=== إرجاع الجدول بالقيم من اخر الجدول إلى ا...")
  • 05:46, 8 October 2023 IManGaaX talk contribs uploaded File:IManGaaX-Prank.png
  • 05:46, 8 October 2023 IManGaaX talk contribs created page File:IManGaaX-Prank.png
  • 03:49, 8 October 2023 IManGaaX talk contribs created page OnClientPlayerRealTimeChange (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This code implements an event that is triggered when the client's real time change (The time as set on client's computer) ==Parameters== <syntaxhighlight lang="lua">int hour, int minute</syntaxhighlight> * hour: The time hour. * minute: The time minute. ==Source== The source of this event is the client whose time changed ==Code== <section name="Client" class="client" show="true"> <syntaxhighlight lang="l...")
  • 04:51, 7 October 2023 IManGaaX talk contribs created page GetElementZoneFullName (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function allows you to retrieve the zone full name of a element ==Syntax== <syntaxhighlight lang="lua">string getElementZoneFullName( element theElement )</syntaxhighlight> ===Required Arguments=== * '''theElement''': The element to get its full zone name ===Returns=== Returns the full name of the element zone ==Code== <section name="Shared" class="both" show="true"> <syntaxhighlight lang="lua"> fun...")
  • 07:49, 6 October 2023 IManGaaX talk contribs created page OnPlayerZoneChange (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This code implements an event that is triggered when the player enters a new area on the map ==Parameters== <syntaxhighlight lang="lua">string newCity, string newZone</syntaxhighlight> * newCity: New city is name. * newZone: New zone is name. ==Source== The source of this event is the player whose zone was changed <section name="Shared event" class="both" show="true"> <syntaxhighlight lang="lua"> local p...")
  • 07:24, 5 October 2023 IManGaaX talk contribs created page GetAccountRanks (Created page with "{{Useful Function}} __NOTOC__ This function is used to detect the account name groups and put them in the chat. ==Syntax== <syntaxhighlight lang="lua"> player getAccountRanks ( string accountName ) </syntaxhighlight> ===Required Arguments=== * '''accountName''': A string containing account name of a player you want to know his groups. * '''theplayer''': the player that we tells him. ==Code== <syntaxhighlight lang="lua"> function getAccountRanks( accName,thePlayer ) --...")
  • 12:02, 3 October 2023 IManGaaX talk contribs created page IsLastExecuteInTimer (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function check if the execute in timer is the last execute ==Syntax== <syntaxhighlight lang="lua">bool isLastExecuteInTimer( timer theTimer )</syntaxhighlight> ===Required Arguments=== * '''theTimer''': The timer to check. ===Returns=== Returns ''true'' if the execute is the last execute in the timer, ''false'' if the execute is not the last execute in the timer <section name="Shared function" class...")
  • 03:30, 3 October 2023 IManGaaX talk contribs created page User:IManGaaX (Created page with "__NOTOC__ == Pages created by Youssef Maged (iManGaaX) == table.flip<br> getPlayerGroups == Wiki contributions by Lord Henry == Special:Contributions/LordHenry == External Links to Lord Henry == 32px [https://www.youtube.com/c/YoussefMaged Youssef Maged - Youtube Channel]<br>")
  • 08:02, 1 October 2023 IManGaaX talk contribs created page GetPlayerGroups (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function return a table with the player groups ==Syntax== <syntaxhighlight lang="lua">table getPlayerRanks( player thePlayer )</syntaxhighlight> ===Required Arguments=== * '''thePlayer''': the player to get his groups ===Returns=== Returns a table with the player groups <section name="Server function" class="server" show="true"> <syntaxhighlight lang="lua"> function getPlayerGroups(thePlayer) if...")
  • 07:52, 1 October 2023 IManGaaX talk contribs created page GetPlayerRanks (Created page with "{{Useful Function}} <lowercasetitle></lowercasetitle> __NOTOC__ This function return a table with the player ranks ==Syntax== <syntaxhighlight lang="lua">table getPlayerRanks( player thePlayer )</syntaxhighlight> ===Required Arguments=== * '''thePlayer''': the player to get his ranks ===Returns=== Returns a table with the player ranks <section name="Server function" class="server" show="true"> <syntaxhighlight lang="lua"> function getPlayerRanks(thePlayer) local...")
  • 07:12, 1 October 2023 IManGaaX talk contribs created page Table.flip (Created page with "==Syntax== <syntaxhighlight lang="lua">string table.flip( table )</syntaxhighlight> ===Required Arguments=== * '''tbl''': The table to convert. ===Returns=== Returns table with flip values <section name="Shared function" class="both" show="true"> <syntaxhighlight lang="lua"> function table.flip(theTable) if (type(theTable) == "table") then local newTable = {} local tableNumber = -1 for i = 1, #theTable do tableNumber = tableNumber + 1 table.insert(newTabl...")
  • 00:22, 27 March 2021 User account IManGaaX talk contribs was created