AR/isGuestAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Добавление языков)
 
(6 intermediate revisions by 2 users not shown)
Line 5: Line 5:
guest account
guest account


هو حساب يُنشئ اوتوماتيكياً عند دخول الاعب ويُمسح اوتوماتيكياً الا اذا كان الاعب مسجل في السيرفر من قبل
هو حساب يُنشئ اوتوماتيكياً عند دخول الاعب ويُمسح اوتوماتيكياً عند خروجه الا اذا كان الاعب مسجل في السيرفر من قبل
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 12: Line 12:


===Required Arguments===  
===Required Arguments===  
*'''theAccount:''' The account you want to check to see if it is a guest account.
*'''theAccount:''' الحساب الذي تريد ان تتحقق منه اذا كان غير مسجل


===Returns===
===Returns===
Returns ''true'' if the account is a guest account, ''false'' otherwise.
Returns ''true'' if the account is a guest account, ''false'' otherwise.


==Example==  
==مثال==  
This example shows how you could create a ''call_admin'' function that only could be run by registered users.
هذا المثال سوف يُريك كيف تستطيع ان تُنشئ كلمة للاعبين المسجلين فقط
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function callAdmin ( playerSource )
function callAdmin ( playerSource )
     -- get the account of the user trying to use this function first
     -- اختصار للتحقق من حساب اللاعب
     sourceAccount = getPlayerAccount ( playerSource )
     sourceAccount = getPlayerAccount ( playerSource )
     -- if they're a guest
     -- اذا كان غير مسجل
     if isGuestAccount ( sourceAccount ) then
     if isGuestAccount ( sourceAccount ) then
         -- tell them to register
         -- يقول لهم في لوحة اف 8 الآتي
         outputConsole ( "Please register to use this function!", playerSource )
         outputConsole ( "الرجاء التسجيل لـ تستخدم هذه الوظيفة", playerSource )
     else
     else
        -- your code to call the admin would go here
      -- الطريقة التي تريد بها أن تصل للأدمن هنا
     end
     end
end
end
-- attach the function 'callAdmin' as a handler to the command "call_admin"
-- يُمثَل الحدث هنا بـ كلمة " الادمن " لكي يتم الاتصال به
addCommandHandler ( "call_admin", callAdmin )
addCommandHandler ( "الادمن", callAdmin )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==أنظر أيضاً==
{{AR Account_functions}}
{{AR Account_functions}}
[[en:isGuestAccount]]
[[en:isGuestAccount]]
[[ru:isGuestAccount]]
[[ar:isGuestAccount]]
[[zh-cn:isGuestAccount]]

Latest revision as of 14:02, 12 April 2021

هذه الوظيفة تتحقق من حساب الاعب إذا كان مسجل الدخول أو لا

guest account

هو حساب يُنشئ اوتوماتيكياً عند دخول الاعب ويُمسح اوتوماتيكياً عند خروجه الا اذا كان الاعب مسجل في السيرفر من قبل

Syntax

bool isGuestAccount ( account theAccount )

Required Arguments

  • theAccount: الحساب الذي تريد ان تتحقق منه اذا كان غير مسجل

Returns

Returns true if the account is a guest account, false otherwise.

مثال

هذا المثال سوف يُريك كيف تستطيع ان تُنشئ كلمة للاعبين المسجلين فقط

function callAdmin ( playerSource )
    -- اختصار للتحقق من حساب اللاعب
    sourceAccount = getPlayerAccount ( playerSource )
    -- اذا كان غير مسجل
    if isGuestAccount ( sourceAccount ) then
        -- يقول لهم في لوحة اف 8 الآتي
        outputConsole ( "الرجاء التسجيل لـ تستخدم هذه الوظيفة", playerSource )
    else
       -- الطريقة التي تريد بها أن تصل للأدمن هنا
    end
end
-- يُمثَل الحدث هنا بـ كلمة " الادمن " لكي يتم الاتصال به
addCommandHandler ( "الادمن", callAdmin )

أنظر أيضاً