<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Carlos+III</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Carlos+III"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Carlos_III"/>
	<updated>2026-04-13T22:51:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetElementStreamable&amp;diff=26171</id>
		<title>SetElementStreamable</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetElementStreamable&amp;diff=26171"/>
		<updated>2011-06-25T03:04:35Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
This function can be used to disable streaming for an element. This will make sure the element is not virtualized (streamed out from GTA) when the player moves far away from it. If the limit for that element type is reached, the furthest away elements that are streamable will be streamed out until it's below the limit.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''Note:''' You shouldn't disable streaming on too many elements as there are limits for every GTA element type. Disabling streaming for some far-away elements will reduce number of elements that can be shown nearby.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Note:''' Disabling streaming for extremely many vehicles (&amp;gt;80) can cause low FPS and unwanted effect when warping players into far away vehicles.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setElementStreamable ( element theElement, bool streamable ) &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theElement:''' The element you wish to set the streaming of&lt;br /&gt;
*'''streamable:''' True if this element should stream in/out like normal, false if it should always be streamed in&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the element was streamed in successfully right now, ''false'' if it could not be streamed in for some reason, for example limit reached, or invalid element.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function setStreams()&lt;br /&gt;
object1 = createObject ( 1097, 0, 0, 5 )&lt;br /&gt;
setElementStreamable ( object1, true )&lt;br /&gt;
end&lt;br /&gt;
addEventHandler ( &amp;quot;onClientResourceStart&amp;quot;, resourceRoot, setStreams )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_element_functions}}&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Server_Scripting_Functions&amp;diff=25982</id>
		<title>Server Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Server_Scripting_Functions&amp;diff=25982"/>
		<updated>2011-06-09T06:02:42Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
This page lists all the '''server-side''' scripting functions that have been implemented and are available as native functions. To request a function or event, use [[Requested Functions and Events]] or http://bugs.mtasa.com.&lt;br /&gt;
&lt;br /&gt;
Please note that the scripting functions can also be extended by loading in dynamic modules that provide new functionality, such as MySQL database access. These scripting functions are non-native and require the module to be loaded in order to work.&lt;br /&gt;
&lt;br /&gt;
Head over to [[Modules]] for a list of non-native serverside functions and modules that are available.&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
&lt;br /&gt;
'''Client-side scripting functions can be found here: [[Client Scripting Functions]].'''&lt;br /&gt;
 &lt;br /&gt;
==Account functions==&lt;br /&gt;
{{Account_functions}}&lt;br /&gt;
&lt;br /&gt;
==ACL functions==&lt;br /&gt;
{{ACL_functions}}&lt;br /&gt;
&lt;br /&gt;
==Admin functions==&lt;br /&gt;
{{Admin_functions}}&lt;br /&gt;
&lt;br /&gt;
==Audio functions==&lt;br /&gt;
{{Audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==Announcement functions==&lt;br /&gt;
{{Announce_functions}}&lt;br /&gt;
&lt;br /&gt;
==Blip functions==&lt;br /&gt;
{{Blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==Camera functions==&lt;br /&gt;
{{Camera functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{Collision shape functions}}&lt;br /&gt;
&lt;br /&gt;
==Clothes and body functions==&lt;br /&gt;
{{Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{Cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{Element functions}}&lt;br /&gt;
&lt;br /&gt;
==Event functions==&lt;br /&gt;
{{Event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{Explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==File functions==&lt;br /&gt;
{{File_functions}}&lt;br /&gt;
&lt;br /&gt;
==HTTP functions==&lt;br /&gt;
{{HTTP_functions}}&lt;br /&gt;
&lt;br /&gt;
==Input functions==&lt;br /&gt;
{{Input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Map functions==&lt;br /&gt;
{{Map_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{Marker functions}}&lt;br /&gt;
&lt;br /&gt;
==Module functions==&lt;br /&gt;
{{Module functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{Object functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{Ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{Pickup functions}}&lt;br /&gt;
&lt;br /&gt;
==Player functions==&lt;br /&gt;
{{Player functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar area functions==&lt;br /&gt;
{{Radar area functions}}&lt;br /&gt;
&lt;br /&gt;
==Resource functions==&lt;br /&gt;
{{Resource functions}}&lt;br /&gt;
&lt;br /&gt;
==Serial functions==&lt;br /&gt;
{{Serial functions}}&lt;br /&gt;
&lt;br /&gt;
==Server functions==&lt;br /&gt;
{{Server functions}}&lt;br /&gt;
&lt;br /&gt;
==Settings registry functions==&lt;br /&gt;
{{Settings registry functions}}&lt;br /&gt;
&lt;br /&gt;
==SQL functions==&lt;br /&gt;
{{SQL_functions}}&lt;br /&gt;
&lt;br /&gt;
==Team functions==&lt;br /&gt;
{{Team functions}}&lt;br /&gt;
&lt;br /&gt;
==Text functions==&lt;br /&gt;
{{Text functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{Utility functions}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle functions==&lt;br /&gt;
{{Vehicle functions}}&lt;br /&gt;
&lt;br /&gt;
==Water functions==&lt;br /&gt;
{{Water functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon functions==&lt;br /&gt;
{{Weapon functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{World functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ru:Server Scripting Functions]]&lt;br /&gt;
[[es:Funciones_del_Server]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/Server_Scripting_Functions&amp;diff=25981</id>
		<title>ES/Server Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/Server_Scripting_Functions&amp;diff=25981"/>
		<updated>2011-06-09T06:01:15Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: moved ES/Server Scripting Functions to ES/Funciones del Server&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[ES/Funciones del Server]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/Funciones_de_Servidor&amp;diff=25980</id>
		<title>ES/Funciones de Servidor</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/Funciones_de_Servidor&amp;diff=25980"/>
		<updated>2011-06-09T06:01:15Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: moved ES/Server Scripting Functions to ES/Funciones del Server&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
Esta pagina muestra todas las funciones del '''servidor''' que han sido implementadas y disponibles como funciones nativas. Para pedir una función o un evento, usa [[Requested Functions and Events|pedido de funciones y eventos]] o http://bugs.mtasa.com.&lt;br /&gt;
&lt;br /&gt;
Por favor ten en cuenta que las funciones se pueden también extender cargando un modulo dinámico que entregue una nueva funcionalidad, como el MySQL database access. Estas funciones no son nativas y requieren que el modulo este cargado para funcionar.&lt;br /&gt;
&lt;br /&gt;
Vea [[Modules|Modulos]] para una lista de funciones de servidor no-nativas y módulos que están disponibles.&lt;br /&gt;
&lt;br /&gt;
Para mas funciones, vea la pagina de [[Useful_Functions|funciones útiles]].&lt;br /&gt;
&lt;br /&gt;
'''Las funciones de cliente se pueden encontrar aqui: [[Client Scripting Functions|Funciones de cliente]].'''&lt;br /&gt;
&lt;br /&gt;
'''Tenga en cuenta que casi todas las funciones presentes no presentan una traducción en su definición'''&lt;br /&gt;
 &lt;br /&gt;
==Funciones de cuenta==&lt;br /&gt;
{{Funciones_de_Cuenta}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de ACL==&lt;br /&gt;
{{Funciones_de_ACL}}&lt;br /&gt;
&lt;br /&gt;
==Funciones Administrativas==&lt;br /&gt;
{{Funciones_Administrativas}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de audio==&lt;br /&gt;
{{Audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de anuncio==&lt;br /&gt;
{{Announce_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de blip==&lt;br /&gt;
{{Blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de cámara==&lt;br /&gt;
{{Camera functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de colisión==&lt;br /&gt;
{{Collision shape functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de ropa y cuerpo==&lt;br /&gt;
{{Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de cursor==&lt;br /&gt;
{{Cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de elemento==&lt;br /&gt;
{{Element functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de evento==&lt;br /&gt;
{{Event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones explosivas==&lt;br /&gt;
{{Explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de archivos==&lt;br /&gt;
{{File_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de HTTP==&lt;br /&gt;
{{HTTP_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de Input==&lt;br /&gt;
{{Input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de mapa==&lt;br /&gt;
{{Map_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de marcadores==&lt;br /&gt;
{{Marker functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de modulos==&lt;br /&gt;
{{Module functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de objetos==&lt;br /&gt;
{{Object functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de peds==&lt;br /&gt;
{{Ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de pickup==&lt;br /&gt;
{{Pickup functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de jugadores==&lt;br /&gt;
{{Player functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de area de radar==&lt;br /&gt;
{{Radar area functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de recursos==&lt;br /&gt;
{{Resource functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de serial==&lt;br /&gt;
{{Serial functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de servidor==&lt;br /&gt;
{{Server functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de registro de propiedades==&lt;br /&gt;
{{Settings registry functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de SQL==&lt;br /&gt;
{{SQL_functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de equipo==&lt;br /&gt;
{{Team functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de texto==&lt;br /&gt;
{{Text functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de utilidad==&lt;br /&gt;
{{Utility functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de vehiculos==&lt;br /&gt;
{{Vehicle functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de agua==&lt;br /&gt;
{{Water functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de arma==&lt;br /&gt;
{{Weapon functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones del mundo==&lt;br /&gt;
{{World functions}}&lt;br /&gt;
&lt;br /&gt;
==Funciones de XML==&lt;br /&gt;
{{XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ru:Server Scripting Functions]]&lt;br /&gt;
[[en:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetAccountName&amp;diff=25979</id>
		<title>GetAccountName</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetAccountName&amp;diff=25979"/>
		<updated>2011-06-09T05:39:13Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function retrieves the name of an account.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string getAccountName ( account theAccount )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theAccount:''' The account you wish to get the name of&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a string containing the account's name, ''false'' if the account does not exist or an invalid argument was passed to the function.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example announces into the console when a player logs into his account.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function outputOnLogin ( previous_account, current_account, auto-login ) --when a player logs in&lt;br /&gt;
	outputConsole(getAccountName(previous_account)..&amp;quot; Logged into &amp;quot;..getAccountName(current_account)) -- announce it into chatbox&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientLogin&amp;quot;,getRootElement(),outputOnLogin ) --add an event handler using onClientLogin&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Account_functions}}&lt;br /&gt;
&lt;br /&gt;
[[es:getAccountName]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetAccountName&amp;diff=25978</id>
		<title>GetAccountName</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetAccountName&amp;diff=25978"/>
		<updated>2011-06-09T05:37:46Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function retrieves the name of an account.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string getAccountName ( account theAccount )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theAccount:''' The account you wish to get the name of&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a string containing the account's name, ''false'' if the account does not exist or an invalid argument was passed to the function.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example announces into the console when a player logs into his account.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function outputOnLogin ( previous_account, current_account, auto-login ) --when a player logs in&lt;br /&gt;
	outputConsole(getAccountName(previous_account)..&amp;quot; Logged into &amp;quot;..getAccountName(current_account)) -- announce it into chatbox&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientLogin&amp;quot;,getRootElement(),outputOnLogin ) --add an event handler using onClientLogin&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Account_functions}}&lt;br /&gt;
&lt;br /&gt;
[[es:GetAccountName]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/getAccountName&amp;diff=25977</id>
		<title>ES/getAccountName</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/getAccountName&amp;diff=25977"/>
		<updated>2011-06-09T05:34:55Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: Created page with &amp;quot;{{Server function}} __NOTOC__ Esta función recupera el nombre de una cuenta.  ==Sintaxis==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; string getAccountName ( account lacuenta ) &amp;lt;/syntaxhighlight&amp;gt;   ===Required Argume...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
Esta función recupera el nombre de una cuenta.&lt;br /&gt;
&lt;br /&gt;
==Sintaxis== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string getAccountName ( account lacuenta )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''lacuenta:''' La cuenta que desea obtener el nombre&lt;br /&gt;
&lt;br /&gt;
===Retornos===&lt;br /&gt;
Retorna un secuencia que contiene el nombre de la cuenta, &amp;quot;false&amp;quot; si la cuenta no existe o un argumento inválido se pasa a la función.&lt;br /&gt;
&lt;br /&gt;
==Ejemplo== &lt;br /&gt;
En este ejemplo se anuncia en la consola cuando un jugador entra a su cuenta.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function outputOnLogin ( previous_account, current_account, auto-login ) --cuando un jugador entra&lt;br /&gt;
	outputConsole(getAccountName(previous_account)..&amp;quot; Iniciado sesión en  &amp;quot;..getAccountName(current_account)) -- anunciar en el chat&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientLogin&amp;quot;,getRootElement(),outputOnLogin ) --agrega un manejador de eventos usando onClientLogin&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Ver también==&lt;br /&gt;
{{Account_functions}}&lt;br /&gt;
&lt;br /&gt;
[[es:getAccountName]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/P%C3%A1gina_Principal&amp;diff=25976</id>
		<title>ES/Página Principal</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/P%C3%A1gina_Principal&amp;diff=25976"/>
		<updated>2011-06-09T05:12:00Z</updated>

		<summary type="html">&lt;p&gt;Carlos III: /* Traducción */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left;&amp;quot;&amp;gt;&amp;lt;div style=&amp;quot;float:right;&amp;quot;&amp;gt;[[Image:Scripting.jpg]]&amp;lt;/div&amp;gt;Bienvenido al wiki de Multi Theft Auto: San Andreas en Español. En este wiki encontrarás una gran cantidad de información sobre el desarrollo de mapas y modos de juego para Multi Theft Auto.&lt;br /&gt;
&lt;br /&gt;
Hay muchas [[How you can help|cosas que puedes hacer para ayudarnos]] a mejorar MTA - crear mapas, modos de juego, ayudar con scripts y comandos, escribir un código de ejemplo, traducir páginas del wiki, escribir tutoriales, o tan sólo jugar MTA, y reportar los errores que encuentres, en el [http://forum.multitheftauto.com| Foro de MTA].&lt;br /&gt;
&lt;br /&gt;
Si tienes preguntas, dudas o consultas acerca de alguna función, o script, no dudes en consultarnos por el [[IRC Channel|Canal de IRC ]][[Image:flag_us.png|En Inglés]] o en la [http://forum.mtasa.com/viewforum.php?f=122 Sección en Español del Foro MTA].&lt;br /&gt;
&lt;br /&gt;
'''Para aportar en el wiki nececitas tener una cuenta OpenID. Si borras contenido que no es propio o haces SPAM, serás penalizado con el banneo de la cuenta en el wiki.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 2px dotted navy; padding: 4px; margin: 10px&amp;quot;&amp;gt;La última versión estable de '''Multi Theft Auto: San Andreas''' es '''{{Current Version|full}}'''. Visita la [http://mtasa.com/ página oficial] para obtenerla. También puedes elegir una versión &amp;quot;nightly&amp;quot; (sólo para desarrolladores o gente que quiera ayudar reportando bugs) en la sección de [http://code.google.com/p/multitheftauto/wiki/NightlyBuilds?tm=2 versiones &amp;quot;nightly&amp;quot;], recuerda que estas versión se actualizan casi a diario, y son poco estables en lo que a errores se refiere (además son incompatibles con la mayoría de los servidores).&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
====Cómo empezar====&lt;br /&gt;
&lt;br /&gt;
* [[ES/Manual_Cliente_Deathmatch| Manual del Cliente]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
* [[ES/Manual Servidor Deathmatch| Manual del Servidor]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
* [[ES/Problemas_Conocidos_-_FAQ| Problemas Conocidos]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
====Programación====&lt;br /&gt;
* [[ES/Introducción a la Programación| Introducción a la Programación en LUA]] (en construcción) [[Image:flag_es.png|En Español]]&lt;br /&gt;
* [[Introduction to Scripting the GUI| Introducción a la Programación del GUI]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[Debugging| Tutorial de Depuración]] [[Image:flag_us.png|En Inglés]] - Cómo encontrar errores en tus scripts.&lt;br /&gt;
&lt;br /&gt;
* [[ES/Resources| Introducción a los Resources]]  [[Image:flag_es.png|En Español]]&lt;br /&gt;
** [[Resource Web Access| Acceso de Web con Resources]] [[Image:flag_us.png|En Inglés]] - Cómo escribir páginas web.&lt;br /&gt;
** [[:Category:Resource| Catálogo de Resources]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
** [[Meta.xml| Sobre el archivo &amp;quot;meta.xml&amp;quot;]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[Map_manager| El Resource &amp;quot;Map Manager&amp;quot;]] (en construcción) [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[Writing_Gamemodes| Escribiendo Modos de Juego]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[Useful_Functions| Funciones útiles]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Base de Datos====&lt;br /&gt;
Esta sección provee de todas las capacidades de LUA y también algunos resources importantes.&lt;br /&gt;
* [[:Category:Resource| Catálogo de Resources]] [[Image:flag_us.png|En Inglés]] - Debes aprender a manejarlos para hacer buenos scripts.&lt;br /&gt;
* [[ES/Scripts de Cliente| Scripts de Cliente]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Ayuda General de LUA====&lt;br /&gt;
Éstas páginas te pueden ayudar a manejar mejor LUA.&lt;br /&gt;
*[http://www.lua.org/manual/5.1/es/manual.html &amp;quot;Manual de Referencia de LUA 5.1&amp;quot;]  [[Image:flag_es.png|En Español]]&lt;br /&gt;
*[http://www.lua.org/pil/index.html Manual &amp;quot;Programando en LUA&amp;quot;]  [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
*[http://lua-users.org/wiki/TutorialDirectory Lua Wiki LUA Wiki]  [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
*[http://nixstaller.berlios.de/manual/0.2/nixstaller_9.html Guía general de LUA de Nixstaller]  [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Editor de Mapas====&lt;br /&gt;
*[[ES/Resource:Editor| Manual]]  [[Image:flag_es.png|En Traducción]] (EN TRADUCCION)&lt;br /&gt;
*[[Resource:Editor/EDF| EDF: Formato de Definiciones del Editor]]  [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
*[[Resource:Editor/Plugins| Plugins]]  [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px; background:#CCCCFF;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Referencias====&lt;br /&gt;
* [[Client Scripting Functions|Funciones de Cliente]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[Client Scripting Events|Eventos de Cliente]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
* [[ES/Server Scripting Functions|Funciones de Servidor]] [[Image:flag_es.png|En Español]]&lt;br /&gt;
* [[Server Scripting Events|Eventos de Servidor]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
&amp;lt;!-- Incomplete * [[Module functions|Lista de funciones de módulos externos de servidor]] [[Image:flag_us.png|En Inglés]] --&amp;gt;&lt;br /&gt;
* [[ES/Clases MTA| Clases de MTA]] [[Image:flag_es.png|En Español]] - Descripción de cada uno de los &amp;quot;tipos&amp;quot; personalizados de MTA.&lt;br /&gt;
** [[ES/Elemento| Definición de Elemento]] [[Image:flag_es.png|En Español]] &lt;br /&gt;
**[[Element tree| Árbol de Elementos]] [[Image:flag_us.png|En Inglés]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====[[Id|Lista de IDs]]====&lt;br /&gt;
*[[Animations|Animaciones]]&lt;br /&gt;
*[[ES/Skins de Personajes|Skins]]&lt;br /&gt;
*[[CJ_Clothes|Ropa]]&lt;br /&gt;
*[[Garage|Garajes]]&lt;br /&gt;
*[[Interior IDs|Interiores]]&lt;br /&gt;
*[[Projectiles|Proyectiles]]&lt;br /&gt;
*[[Radar Blips|Iconos de Radar]]&lt;br /&gt;
*[[Sounds|Sonidos]]&lt;br /&gt;
*[[Vehicle IDs|ID's de Vehículos]]&lt;br /&gt;
*[[Vehicle Colors|Colores de Vehículos]]&lt;br /&gt;
*[[Vehicle Upgrades|Mejoras de Vehículos]]&lt;br /&gt;
*[[Weapons|Armas]]&lt;br /&gt;
*[[Weather|Climas]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Traducción====&lt;br /&gt;
* ¿Quieres ayudar a traducir el wiki? ¡Qué esperas! Deja tu e-mail (si quieres) aquí y empieza a hacerlo.&lt;br /&gt;
Traductores:&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:zorrigas@gtagamingchile.com zorrigas@gtagamingchile.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:Brijido_XD@hotmail.com Brijido_XD@hotmail.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:benxamix2@hotmail.com benxamix2@hotmail.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:matiuno@gmail.com matiuno@gmail.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:cesarcastillo4@gmail.com cesarcastillo4@gmail.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:alex_firexx@hotmail.com alex_firexx@hotmail.com]&amp;lt;br&amp;gt;&lt;br /&gt;
* [mailto:carlos_olivo@msn.com carlos_olivo@msn.com]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''¡NO ELIMINES CONTENIDO SIN AUTORIZACIÓN!'''&amp;lt;br&amp;gt; Tampoco uses modismos, usa el Castellano (Internacional), y trata de que al traducir todo quede tan claro como puedas, así nos ayudas más.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
[[en:Main Page]]&lt;br /&gt;
[[pl:Main Page]]&lt;br /&gt;
[[ru:Main Page]]&lt;br /&gt;
[[it:Pagina principale]]&lt;br /&gt;
[[nl:Main Page]]&lt;br /&gt;
[[de:Hauptseite]]&lt;/div&gt;</summary>
		<author><name>Carlos III</name></author>
	</entry>
</feed>