ES/getAccounts: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} Esta funcion devuelve una tabla con todas las cuentas del servidor. Nota: internal.db es lo que fue accounts.xml. ==Sintaxis== <syntaxhighlight lang="lua"> tabla get...")
 
No edit summary
 
Line 5: Line 5:
==Sintaxis==
==Sintaxis==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
tabla getAccounts ()
table getAccounts ()
</syntaxhighlight>
</syntaxhighlight>


Line 26: Line 26:
==Ver también==
==Ver también==
{{Funciones_de_Cuenta}}
{{Funciones_de_Cuenta}}
[[es:getAccounts]]

Latest revision as of 15:08, 10 June 2011

Esta funcion devuelve una tabla con todas las cuentas del servidor. Nota: internal.db es lo que fue accounts.xml.

Sintaxis

table getAccounts ()

Devuelve

Devuelve una tabla con todas las cuentas del servidor. Esta tabla tal vez este vacia.

Ejemplo

function printAmountOfAccounts ( thePlayer )
    local accountTable = getAccounts () -- obtenemos la tabla.
    if #accountTable == 0 then -- si la tabla esta vacia.
        outputChatBox( "No hay ninguna cuenta. :(", thePlayer )
    else -- si la tabla no esta vacia.
        outputChatBox( "Hay " .. #accountTable .. " cuentas en el servidor!", thePlayer )
    end
end
addCommandHandler( "accountcount", printAmountOfAccounts ) -- agregamos un comando para la funcion.

Ver también

BEFORE VERSION 1.0 :