GetAllAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (moved GetAccountAllData to GetAllAccountData: changed function name)
No edit summary
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
table getAccountAllData ( account theAccount )
table getAllAccountData ( account theAccount )
</syntaxhighlight>
</syntaxhighlight>


Line 15: Line 15:
     local playerAccount = getPlayerAccount( thePlayer ) -- get his account
     local playerAccount = getPlayerAccount( thePlayer ) -- get his account
     if ( playerAccount ) then -- if we got the account then
     if ( playerAccount ) then -- if we got the account then
         local data = getAccountAllData( playerAccount ) -- get data
         local data = getAllAccountData( playerAccount ) -- get data
         count = 0
         count = 0
         for _ in pairs(data) do count = count + 1 end -- get the count
         for _ in pairs(data) do count = count + 1 end -- get the count

Revision as of 20:39, 21 March 2012

This function returns a table containing all the user data for the account provided

Syntax

table getAllAccountData ( account theAccount )

Returns

A table containing all the user data. This table might be empty.

Example

function printAllData ( thePlayer )
    local playerAccount = getPlayerAccount( thePlayer ) -- get his account
    if ( playerAccount ) then -- if we got the account then
        local data = getAllAccountData( playerAccount ) -- get data
        count = 0
        for _ in pairs(data) do count = count + 1 end -- get the count
        outputChatBox ( "table holds " .. count .. " entries" ) -- output number of rows
        if ( data ) then
            for k,v in pairs ( data ) do
                outputChatBox(k..": "..v) -- print the key and value of each entry of data
            end
        end
    end
end
addCommandHandler( "getall", printAllData ) -- add a command handler for command 'getall'

See Also