AR/getAllAccountData

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

هذه الوظيفة تقوم بالرد بجدول يحتوي على جميع البيانات التي في الحساب

Syntax

table getAllAccountData ( account theAccount )

العناصر المطلوبة

  • theAccount: الحساب الذي تريد استرداد كافة البيانات منه

الرد

.يحتوي على جميع بيانات الحساب. قد يكون الجدول فارغاً table جدول

مــثال

function printAllData(thePlayer)
    local playerAccount = getPlayerAccount(thePlayer) -- الحصول على حسابة
    if (playerAccount) then -- إذا تم الحصول على حسابة
        local data = getAllAccountData(playerAccount) -- الحصول على الداتا ( البيانات ) 0
        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'

المتطلبات

Minimum server version 1.3.0-9.03804
Minimum client version n/a

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.3.0-9.03804" />

انظر ايضاً