AR/addAccount: Difference between revisions
Jump to navigation
Jump to search
(→Syntax) |
No edit summary |
||
(26 intermediate revisions by 4 users not shown) | |||
Line 3: | Line 3: | ||
هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر. | هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر. | ||
==Syntax== | |||
<!-- NOTE: don't use 'special' names for variable names, e.g. you shouldn't be writing things like 'player player, vehicle vehicle', instead write something like 'player thePlayer, vehicle vehicleToGetInto'. This is less confusing and prevents the syntax highlighting being odd --> | |||
{{New feature/item|3|1.0|848| | |||
<syntaxhighlight lang="lua"> | |||
account addAccount ( string name, string pass ) | |||
</syntaxhighlight>|AR| | |||
}} | |||
{{Deprecated_feature|3|1.0| | |||
<syntaxhighlight lang="lua"> | |||
bool addAccount ( string name, string pass ) | |||
</syntaxhighlight>|AR| | |||
}} | |||
===العناصر المطلوبة=== | |||
<!-- List each argument one per line. This should be the argument's name as in the argument list above, NOT the argument's data type --> | |||
*'''name:''' أسم الحساب الجديد اللذي تريد تسجيلة. | |||
*'''pass:''' كلمة المرور للحساب اللذي تريد تسجيلة. | |||
===Returns=== | |||
<!-- Make this descriptive. Explain what cases will return false. If you're unsure, add a tag to it so we can check --> | |||
{{New feature|3|1.0 r848| | |||
إذا كان أسم هذا الحساب قد تم تسجيلة مسبقاً أو إذا حدث خطأ ما ''false'' يرجع عنصر ''الحساب'' اللذي تم تسجيلة, أو | |||
}} | |||
==مثال== | ==مثال== | ||
Line 12: | Line 32: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function registerPlayer(source, commandName, password) | function registerPlayer(source, commandName, password) | ||
-- | -- تحقق مما إذا كان حقل كلمة المرور فارغ أم لا (فارغ إلا إذا لم يدخل واحد) | ||
if (password ~= "" and password ~= nil) then | if (password ~= "" and password ~= nil) then | ||
-- | -- محاولة إضافة الحساب، وحفظ قيمته في فار | ||
local accountAdded = addAccount(getPlayerName(source), password) | local accountAdded = addAccount(getPlayerName(source), password) | ||
if (accountAdded) then | if (accountAdded) then | ||
-- | -- اخبار المستخدم ان كل شيء تم | ||
outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login", source) | outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login", source) | ||
else | else | ||
-- | -- اخبار المستخدم انا هناك خطا عند انشاء الحساب | ||
outputChatBox("Error creating account, contact the server admin", source) | outputChatBox("Error creating account, contact the server admin", source) | ||
end | end | ||
else | else | ||
-- | -- هناك خطأ في تركيب الامر ,اخبار المستخدم التركيب الصحيح | ||
outputChatBox("Error creating account, correct syntax: /register <password>", source) | outputChatBox("Error creating account, correct syntax: /register <password>", source) | ||
end | end | ||
end | end | ||
addCommandHandler("register", registerPlayer) -- | addCommandHandler("register", registerPlayer) -- اضافة امر | ||
</syntaxhighlight> | </syntaxhighlight> | ||
''' | '''هذا الرمز يختلف عن طريق السماح للمستخدم بتغيير اسم المستخدم الخاص بهم الذي كانوا يرغبون في استخدام.''' | ||
'''مثال 2 :''' | '''مثال 2 :''' ا يسمح للاعبين للتسجيل في الخادم الخاص بك باستخدام /register <username> <password> في نافذة الشات. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function registerPlayer(source, commandName, username, password) | function registerPlayer(source, commandName, username, password) | ||
Line 47: | Line 67: | ||
end | end | ||
end | end | ||
addCommandHandler("register", registerPlayer) -- | addCommandHandler("register", registerPlayer) -- اضافة امر | ||
</syntaxhighlight> | </syntaxhighlight> | ||
'''مثال 3 :''' | '''مثال 3 :''' هذا الرمز يختلف مرة أخرى بحيث يمكن للمستخدم تسجيل مرة واحدة فقط /register <username> <password>. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local bRegisteredOnce = false | local bRegisteredOnce = false | ||
Line 71: | Line 91: | ||
end | end | ||
end | end | ||
addCommandHandler("register", registerPlayer) -- | addCommandHandler("register", registerPlayer) -- اضافة امر | ||
</syntaxhighlight> | </syntaxhighlight> | ||
'''3B00DG4MER''' | |||
</section> | </section> | ||
Latest revision as of 20:58, 14 June 2021
هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر.
Syntax
account addAccount ( string name, string pass )
العناصر المطلوبة
- name: أسم الحساب الجديد اللذي تريد تسجيلة.
- pass: كلمة المرور للحساب اللذي تريد تسجيلة.
Returns
إذا كان أسم هذا الحساب قد تم تسجيلة مسبقاً أو إذا حدث خطأ ما false يرجع عنصر الحساب اللذي تم تسجيلة, أو
مثال
Click to collapse [-]
Serverمثال 1 : /register <password> هذا يسمح للاعبين بالتسجيل في السيرفر عن طريق أستخدام
function registerPlayer(source, commandName, password) -- تحقق مما إذا كان حقل كلمة المرور فارغ أم لا (فارغ إلا إذا لم يدخل واحد) if (password ~= "" and password ~= nil) then -- محاولة إضافة الحساب، وحفظ قيمته في فار local accountAdded = addAccount(getPlayerName(source), password) if (accountAdded) then -- اخبار المستخدم ان كل شيء تم outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login", source) else -- اخبار المستخدم انا هناك خطا عند انشاء الحساب outputChatBox("Error creating account, contact the server admin", source) end else -- هناك خطأ في تركيب الامر ,اخبار المستخدم التركيب الصحيح outputChatBox("Error creating account, correct syntax: /register <password>", source) end end addCommandHandler("register", registerPlayer) -- اضافة امر
هذا الرمز يختلف عن طريق السماح للمستخدم بتغيير اسم المستخدم الخاص بهم الذي كانوا يرغبون في استخدام.
مثال 2 : ا يسمح للاعبين للتسجيل في الخادم الخاص بك باستخدام /register <username> <password> في نافذة الشات.
function registerPlayer(source, commandName, username, password) if(password ~= "" and password ~= nil and username ~= "" and username ~= nil) then local accountAdded = addAccount(username,password) if(accountAdded) then outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login",source) else outputChatBox("Error creating account, contact the server admin.",source) end else outputChatBox("Error creating account, correct syntax: /register <nick> <pass>",source) end end addCommandHandler("register", registerPlayer) -- اضافة امر
مثال 3 : هذا الرمز يختلف مرة أخرى بحيث يمكن للمستخدم تسجيل مرة واحدة فقط /register <username> <password>.
local bRegisteredOnce = false function registerPlayer(source, commandName, username, password) if(password ~= "" and password ~= nil and username ~= "" and username ~= nil and bRegisteredOnce == false) then local accountAdded = addAccount(username,password) if(accountAdded) then outputChatBox("Thank you " .. getPlayerName(source)..", you're now registed, you can login with /login",source) bRegisteredOnce = true else outputChatBox("Error creating account, contact the server admin.",source) end else if bRegisteredOnce == true then outputChatBox("You already registered on this server!",source) else outputChatBox("Error creating account, correct syntax: /register <nick> <pass>",source) end end end addCommandHandler("register", registerPlayer) -- اضافة امر
3B00DG4MER