AR/isGuestAccount

From Multi Theft Auto: Wiki
Revision as of 14:56, 30 August 2012 by Tete (talk | contribs)
Jump to navigation Jump to search

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

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