Jump to content

x[ isGuestAccount شرح وظيفة ]x


Recommended Posts

السلام عليكم ورحمة الله وبركاته

شرح اليوم هو وظيفة اذا كان اللاعب زائر

تركيب الوظيفة , :-

isGuestAccount ( account theAccount )

account theAccount :- إسم الحساب , طبعا نجلب إسم الحساب عن طريق الوظيفة الآتية 

getPlayerAccount 

 

ناخذ مثآل :

في هذا المثال ، يتحقق اذا كان بحساب زائر او غير مسجل ,ف يخرج له نص بالشات بانه زائر 

addCommandHandler ( "CheckAccount" , -- كوماند 
  function ( aPlayer ) -- وظيفة 
    if ( isGuestAccount ( getPlayerAccount ( aPlayer ) ) then -- التحقق من أن اللاعب غير مسجل او زائر 
        outputChatBox ( " انت زائر " , aPlayer ) -- اخراج نص بالشات 
      end 
    end 
  ) 
  

 

مثال 2 :-

( إرجاع ) return في هذا المثال ، نتحقق اذا كان اللاعب زائر ، نقوم بعمل شيء يسمى 

function isGuest ( aPlayer ) -- وظيفة ( useful function )
  return isGuestAccount ( getPlayerAccount ( aPlayer ) ) -- اذا كان اللاعب زائر نقوم بالرجوع 
end -- انهاء الوظيفة 

addCommandHandler ( "Check" , 
  function ( plr ) 
    if ( isGuest ( plr ) ) then return end 
  end 
) 

والسلام عليكم ورحمة الله وبركاته :)

Edited by #_iMr.[E]coo
  • Like 2
  • Thanks 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...