<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/wiki/ES/getPlayerName?action=history&amp;feed=atom</id>
	<title>ES/getPlayerName - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/wiki/ES/getPlayerName?action=history&amp;feed=atom"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/getPlayerName&amp;action=history"/>
	<updated>2026-05-22T07:43:44Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/getPlayerName&amp;diff=49537&amp;oldid=prev</id>
		<title>CiBeR: CiBeR moved page Es/getPlayerName to ES/getPlayerName</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/getPlayerName&amp;diff=49537&amp;oldid=prev"/>
		<updated>2016-10-19T20:23:44Z</updated>

		<summary type="html">&lt;p&gt;CiBeR moved page &lt;a href=&quot;/wiki/Es/getPlayerName&quot; class=&quot;mw-redirect&quot; title=&quot;Es/getPlayerName&quot;&gt;Es/getPlayerName&lt;/a&gt; to &lt;a href=&quot;/wiki/ES/getPlayerName&quot; title=&quot;ES/getPlayerName&quot;&gt;ES/getPlayerName&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 20:23, 19 October 2016&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>CiBeR</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ES/getPlayerName&amp;diff=35344&amp;oldid=prev</id>
		<title>Emiliano Castro: Created page with &quot;__NOTOC__ {{Server client function}} Esta funcion devuelve un string conteniendo el nombre de un jugador especifico.  ==Syntax== &lt;syntaxhighlight lang=&quot;lua&quot;&gt; string getPlayerName ( player thePl...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ES/getPlayerName&amp;diff=35344&amp;oldid=prev"/>
		<updated>2013-04-13T00:10:04Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;__NOTOC__ {{Server client function}} Esta funcion devuelve un string conteniendo el nombre de un jugador especifico.  ==Syntax== &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; string getPlayerName ( player thePl...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Server client function}}&lt;br /&gt;
Esta funcion devuelve un string conteniendo el nombre de un jugador especifico.&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 getPlayerName ( player thePlayer )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Argumentos requeridos===&lt;br /&gt;
* '''thePlayer:''' el jugador de quien quieres obtener el nombre.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Devuelve un string conteniendo el nombre del jugador, o ''false'' si el jugador pasado en el argumento no es valido.&lt;br /&gt;
&lt;br /&gt;
===Limites===&lt;br /&gt;
* El nombre de un jugador puede en caracteres ASCII entre 33 y 126 estan permitidos ( latino basico ):&lt;br /&gt;
    &amp;lt;nowiki&amp;gt;!&amp;quot;#$%&amp;amp;'()*+,-./0123456789:;&amp;lt;=&amp;gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Minimo de caracteres en el nombre de un jugador es de 1.&lt;br /&gt;
* Maximo de caracteres en el nombre de un jugador es de 22.&lt;br /&gt;
* No es posible obtener el nombre de un jugador repetido.&lt;br /&gt;
&lt;br /&gt;
==Ejemplo==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Server&amp;quot; class=&amp;quot;server&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;myname&amp;quot;,&lt;br /&gt;
  function(playerSource)&lt;br /&gt;
    outputChatBox(&amp;quot;Tu nombre: &amp;quot;..getPlayerName(playerSource), playerSource)&lt;br /&gt;
  end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Client&amp;quot; class=&amp;quot;client&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
Este ejemplo pone el nombre del jugador en el chat.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;myname&amp;quot;,&lt;br /&gt;
  function()&lt;br /&gt;
   local localPlayerName = getPlayerName(getLocalPlayer())&lt;br /&gt;
   --y nosotros lo ponemos en el chat&lt;br /&gt;
   outputChatBox(localPlayerName)&lt;br /&gt;
  end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mira tambien==&lt;br /&gt;
{{Client player functions}}&lt;/div&gt;</summary>
		<author><name>Emiliano Castro</name></author>
	</entry>
</feed>