AR/getAllAccountData: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Fernando187 (talk | contribs) (Remove obsolete Requirements section) |
||
(4 intermediate revisions by one other user not shown) | |||
Line 7: | Line 7: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | ===العناصر المطلوبة=== | ||
*'''theAccount:''' الحساب الذي تريد استرداد كافة البيانات منه | *'''theAccount:''' الحساب الذي تريد استرداد كافة البيانات منه | ||
=== | ===الرد=== | ||
.يحتوي على جميع بيانات الحساب. قد يكون الجدول فارغاً [[table]] جدول | .يحتوي على جميع بيانات الحساب. قد يكون الجدول فارغاً [[table]] جدول | ||
== | ==مــثال== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function printAllData ( thePlayer ) | function printAllData(thePlayer) | ||
local playerAccount = getPlayerAccount( thePlayer ) -- | local playerAccount = getPlayerAccount(thePlayer) -- الحصول على حسابة | ||
if ( playerAccount ) then -- | if (playerAccount) then -- إذا تم الحصول على حسابة | ||
local data = getAllAccountData( playerAccount ) -- | local data = getAllAccountData(playerAccount) -- الحصول على الداتا ( البيانات ) 0 | ||
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 | ||
outputChatBox ( "table holds " .. count .. " entries" ) -- output number of rows | outputChatBox("table holds " .. count .. " entries") -- output number of rows | ||
if ( data ) then | if (data) then | ||
for k,v in pairs ( data ) do | for k,v in pairs(data) do | ||
outputChatBox(k..": "..v) -- print the key and value of each entry of data | outputChatBox(k..": "..v) -- print the key and value of each entry of data | ||
end | end | ||
Line 29: | Line 29: | ||
end | end | ||
end | end | ||
addCommandHandler( "getall", printAllData ) -- add a command handler for command 'getall' | addCommandHandler("getall", printAllData) -- add a command handler for command 'getall' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==انظر ايضاً== | ==انظر ايضاً== |
Latest revision as of 17:05, 7 November 2024
هذه الوظيفة تقوم بالرد بجدول يحتوي على جميع البيانات التي في الحساب
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'