AR/getAccounts: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
table getAccounts () | table getAccounts() | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 14:03, 30 August 2012
internal.db هذه الوظيفة تقوم بالرد بجدول يحتوي على جميع الحسابات الموجودة في السيرفر في الملف
(1.0.4 لم يعد يستخدم في الأصدارات الأحدث من accounts.xml ملاحظة: الملف)
Syntax
table getAccounts()
Returns
قد يكون الجدول فارغاً . internal.db يحتوي على جميع الحسابات الموجودة في السيرفر في الملف table جدول
مـــثال
يستخدم هذا المثال في معرفة عدد الحسابات المسجلة في السيرفر
function printAmountOfAccounts(thePlayer) local accountTable = getAccounts() -- الجدول الذي يحتوي على الحسابات if #accountTable == 0 then -- إذا كان الجدول فارغاً outputChatBox("There are no accounts. :(", thePlayer) else -- إذا كان الجدول غير فارغاً outputChatBox("There are "..#accountTable.." accounts in this server!", thePlayer) end end addCommandHandler("accountcount", printAmountOfAccounts) -- add a command handler for command 'accountcount'