AR/isGuestAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:


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


===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 )

Revision as of 14:56, 30 August 2012

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

guest account

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

Syntax

bool isGuestAccount ( account theAccount )

Required Arguments

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

guest account

Returns

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

مثال

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

function callAdmin ( playerSource )
    -- get the account of the user trying to use this function first
    sourceAccount = getPlayerAccount ( playerSource )
    -- if they're a guest
    if isGuestAccount ( sourceAccount ) then
        -- tell them to register
        outputConsole ( "Please register to use this function!", playerSource )
    else
        -- your code to call the admin would go here
    end
end
-- attach the function 'callAdmin' as a handler to the command "call_admin"
addCommandHandler ( "call_admin", callAdmin )

See Also