^iiEcoo'x_) Posted April 26, 2017 Share Posted April 26, 2017 (edited) السلام عليكم ورحمة الله وبركاته شرح اليوم هو وظيفة اذا كان اللاعب زائر تركيب الوظيفة , :- 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 April 26, 2017 by #_iMr.[E]coo 2 1 Link to comment
Adham Posted April 26, 2017 Share Posted April 26, 2017 (edited) عليكم السلام شرح مفيد وممتاز بس في خطا بسيط if ( isGuest ( aPlayer ) ) then return end --aPlayer x --plr Edited April 26, 2017 by Deativated 1 Link to comment
^iiEcoo'x_) Posted April 26, 2017 Author Share Posted April 26, 2017 16 minutes ago, Deativated said: عليكم السلام شرح مفيد وممتاز بس في خطا بسيط if ( isGuest ( aPlayer ) ) then return end --aPlayer x --plr منور وشكرا على التنبيه Link to comment
MR.StoRm Posted April 26, 2017 Share Posted April 26, 2017 شرح رآئع .., إستمر في شروحاتك الجميلة .! 1 Link to comment
AHMED MOSTAFA Posted April 26, 2017 Share Posted April 26, 2017 function MrEcooEx () acc = getPlayerAccount ( source ) if acc and isGuestAccount ( acc ) then cancelEvent() outputChatBox ( "Please Login First", source, 255,255,0 ) end end addEventHandler( "onPlayerChat", root, MrEcooEx ) 1 Link to comment
MR.StoRm Posted April 27, 2017 Share Posted April 27, 2017 14 hours ago, #_iMr.[E]coo said: if ( isGuestAccount ( getPlayerAccount ( aPlayer ) ) then ناقص قوس ولا انا غلطان ؟ ! Link to comment
^iiEcoo'x_) Posted April 27, 2017 Author Share Posted April 27, 2017 3 hours ago, MR.StoRm said: ناقص قوس ولا انا غلطان ؟ ! وضعي خربان ذذ ! / شكرا على التنبيه 1 Link to comment
MR.StoRm Posted April 27, 2017 Share Posted April 27, 2017 7 minutes ago, #_iMr.[E]coo said: وضعي خربان ذذ ! / شكرا على التنبيه العفو .. خذلك سنكرز @#_iMr.[E]coo Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now