Popular Post #Major . Posted August 4, 2018 Popular Post Share Posted August 4, 2018 (edited) اليوم بشرح الوضائف الجديدة الخاصة بالاكاونت { getAccountByID , getAccountID , getAccountIP , getAccountsByData , getAccountsByIP , setAccountName } بسم الله نبدأ x[ getAccountByID ]x شرح الوضيفة \ Explain the function This function returns the account with the specific ID. / تقوم الوضيفة بإرجاع الحساب عبر الايدي او المعرف الخآص به السانتكس \ Syntax account getAccountByID ( int id ) id = The ID to get account from / الآيدي الي تبي تجلب فيه الحساب عن طريقة العائدات / Returns Returns account associated with specified ID. Returns false if invalid arguments were specified or there is no account with this ID. / ارجاع الحساب المرتبط بالمعرف او الإيدي ,إرجاع قيمة منطقية بـ فولس إذا كان الحساب غير موجود مثآل \ Examble addCommandHandler("getAccount", -- نسوي امر جديد function (player, cmd, id) id = tonumber(id) -- نجلب الايدي من الامر local account = getAccountByID(id) -- نجيب الحساب من الايدي if account then -- نتحقق ان الحساب موجود او لا outputChatBox("The name of the account with that ID is: "..getAccountName(account), player) -- اخراج نص بـ أسم الحساب الي جبناه else -- اذا الحساب مو موجود outputChatBox("There is no account with this ID.", player) -- اخراج نص بـ ان لا يوجد حساب يمتلك هذا الاي دي end end) x[ getAccountID ]x شرح الوضيفة \ Explain the function This function retrieves the ID of an account. / تستخدم هذه الوضيفة لجلب الآيدي او المعرف الخاص بالحساب السانتكس \ Syntax int getAccountID ( account theAccount ) theAccount = The account you wish to get the ID of. / الحساب الذي تريد جلب الآيدي او المعرف الخاص به العائدات / Returns Returns a int containing the account's ID, false if the account does not exist or an invalid argument was passed to the function. / ارجاع رقم انتقر او رقم صحيح يحتوي ع ايدي الحساب المُدخل, إرجاع قيمة منطقية بـ فولس إذا كان الحساب غير موجود مثآل \ Examble function outputOnLogin ( previous_account, current_account, auto_login ) --when a player logs in / لما الاعب يسجل دخول outputConsole("["..getAccountID(previous_account).."] "..getAccountName(previous_account).." Logged into ["..getAccountID(current_account).."]"..getAccountName(current_account)) -- announce it into the console / استخراج نص للكونسل بـ أيدي حسابة القديم و الجديد end addEventHandler("onPlayerLogin",getRootElement(),outputOnLogin ) --add an event handler / اضافة حدث x[ getAccountIP ]x شرح الوضيفة \ Explain the function This function retrieves the IP-address of an account. / تستخدم هذي الوضيفة لجلب عنوان الايبي ادريسس للحساب المحدد السانتكس \ Syntax string getAccountIP ( account theAccount ) theAccount = The account you wish to get the IP of. / الحساب الذي تريد جلب الايبي ادريسس الخاص به العائدات / Returns Returns a string containing the account's IP, false if the account does not exist or an invalid argument was passed to the function. / إرجاع سلسلة نصية تحتوي على عنوان الايبي ادريسس للحساب المُدخل, إرجاع قيمة منطقية بـ فولس إذا كان الحساب غير موجود مثآل \ Examble function outputOnLogin ( previous_account, current_account, auto_login ) --when a player logs in / عند تسجيل دخول الاعب outputDebugScript(getPlayerName(source).."logged into his account with IP "..getAccountIP(previous_account)) -- announce it into the debugscript / إخراج نص للدي بق بـ عنوان الاإيبي ادريس للحساب إو الاعب end addEventHandler("onPlayerLogin",getRootElement(),outputOnLogin ) --add an event handler / اضافة حدث x[ getAccountsByData ]x شرح الوضيفة \ Explain the function This function returns a table containing all accounts with specified dataName and value (set with setAccountData). / تقوم هذه الوضيفة بإرجاع جدول يحتوي على جميع الحسابات التي تمتلك على داتا محددة ( setAccountData ) :تم تعينها بإستخدام وضيفة السانتكس \ Syntax table getAccountsByData ( string dataName, string value ) dataName = The name of the data / اسم الداتا value = The value the dataName should have / اشتراط ان تكون قيمة الداتا العائدات / Returns Returns table containing the accounts associated with specified value at dataName. Returns false if invalid arguments were specified. / جدول يحتوي على الحسابات المرتبطة بالقيمة المحددة في الداتا, إرجاع قيمة منطقية بـ فولس إذا تم تحديد ارقمنات غير صالحة مثآل \ Examble addCommandHandler("accountsbydata", function (player) -- add Command / إضافة امر local account = getPlayerAccount(player) -- Set the variable to the player account / تعين المتغير بـ حساب الاعب setAccountData(account, "test", "hello") -- Set the data and the value set on the account / وضع داتا معينة وقيمة لها على الحساب local accounts = getAccountsByData("test", "hello") -- Set the variable to the table containing the accounts associated with dataName and valueData / تعين المتغير بجدول يحتوي على الحسابات المرتبطة بالداتا والقيمة الخاصة بها outputChatBox(getAccountName(accounts[1]), player) -- The output text that contains the first account in the table / إخراج نص يحتوي على إول حساب في الجدول end) x[ getAccountsByIP ]x شرح الوضيفة \ Explain the function This function returns a table containing all accounts that were logged onto from specified IP-address. / تقوم هذه الوضيفة بإرجاع جدول يحتوي على كافة الحسابات التي تم تسجيلها من عنوان الإيبي ادريس المحدد السانتكس \ Syntax table getAccountsByIP ( string ip ) ip = The IP to get accounts from / الإيبي ادريس المراد الحصول على الحسابات المسجلة به العائدات / Returns Returns table containing the accounts associated with specified IP-address. Returns false if invalid arguments were specified. / تقوم هذه الوضيفة بإرجاع جدول يحتوي على الحسابات المرتبطة بعنوان الايبي ادريس المحدد, إرجاع قيمة منطقية بـ فولس اذا تم تحديد ارقمنات غير صالحة مثآل \ Examble addCommandHandler("getAccounts", -- add Command / إضافة امر function (player, cmd) local ip = getPlayerIP(player) -- Set the variable to the player IP / تعين المتغير بـ إيبي الاعب local accounts = getAccountsByIP(ip) -- Set the variable to the table containing the accounts associated with IP / تعين المتغير بجدول يحتوي على الحسابات المرتبطة بالإيبي المسجل بها outputChatBox("You have " .. #accounts .. " accounts.", player) -- Output text in the number of recorded accounts in player IP-address / إخراج نص بعدد الحسابات المسجلة في إيبي ادريس الاعب end) x[ setAccountName ]x شرح الوضيفة \ Explain the function This function sets the name of an account. / تقوم هذه الوضيفة بتحديد اسم الحساب المحدد السانتكس \ Syntax bool setAccountName ( account theAccount, string name [, bool allowCaseVariations = false] ) theAccount = The account you wish to change the name./الحساب الذي تريد تعين الاسم له name = The new name.. / الإسم الجديد للحساب allowCaseVariations = Whether the username is case sensitive (if this is set to true, usernames "Bob" and "bob" will refer to different accounts) 18 minutes ago, !#NssoR_) said: هذا ماهو ضروري ولكن وظيفته يكون دقيق اكثر بالحروف الي تكتبها يعني علي سبيل المثال حسابي اسمه كذا NssoR راح يقولك الاكاونت هذا موموجود , والسبب ان انت حاط " ترو" وبكذا راح يدقق ع الاحرف nssor وانت استخدمت هالخيار وخليته " ترو " وكتبت اسم الحساب اتمني وضحت المعلومة , العائدات/ Returns Returns a true if the account name was set, false if an invalid argument was specified. / تقوم هذه الوضيفة بإرجاع قيمة منطقية بـ ترو إذا تم تعين اسم الحساب, إرجاع قيمة منطقية بـ فولس اذا تم تحديد ارقمنات غير صالحة مثآل \ Examble addCommandHandler("changeaccountname", function(player, _, oldname, newname) -- add Command / اضافة امر if not oldname or not newname then -- Verify that the oldname and newname value exist / تحقق من وجود قيمة oldname و newname return end local account = getAccount(oldname)-- Set the variable to the account whose name will be changed / تعين المتغير بـ الحساب المراد تغير اسمه if not account then -- Verify that the specified account exists / تحقق من وجود الحساب المحدد return end setAccountName(account, newname) -- Set the specified account name to the newname / وضع إسم الحساب المحدد إلى الـ newname end) الحمد لله وصلنآ إلى نهاية الشرح إتمنى انه اعجبكم وماكان صعب عليكم الإهداءات/ Dedications @KhaledAlamri @#َxLysandeR @!#NssoR_) @#_iMr,[E]coo @#StrOnG_,) @iMr.WiFi..! @بويكا @Master_MTA @N3xT @#DRAGON!FIRE @[T]|O|[P]George @MrKAREEM @ccz @killerProject @#DesTroeyR @Rakan# @الباقي بالقلب Edited August 4, 2018 by *RayaN-Alharbi. 5 8 Link to comment
,#Savage Posted August 4, 2018 Share Posted August 4, 2018 شرح رائع ومنسق جدا ومفهوم , واصل 2 Link to comment
بويكا Posted August 4, 2018 Share Posted August 4, 2018 (edited) اموت عالشرح انا شو هاد يا زلمه شرح جميل يسطا وآصل يبعدي وتسلم عالاهداء Edited August 4, 2018 by بويكا 2 Link to comment
SycroX Posted August 4, 2018 Share Posted August 4, 2018 ما شاء الله شرح كامل مع امثله و تنصيق جميل بالتوفيق 2 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 21 minutes ago, ,#Savage said: شرح رائع ومنسق جدا ومفهوم , واصل شكرا لك حبيبي 15 minutes ago, بويكا said: اموت عالشرح انا شو هاد يا زلمه شرح جميل يسطا وآصل يبعدي وتسلم عالاهداء هههههههه حياك الله حبيبي شكرا 1 minute ago, #َxLysandeR said: ما شاء الله شرح كامل مع امثله و تنصيق جميل بالتوفيق وياك ي رب منور الموضوع حبيبي 30 minutes ago, *RayaN-Alharbi. said: allowCaseVariations = Whether the username is case sensitive (if this is set to true, usernames "Bob" and "bob" will refer to different accounts) / ما إذا كان اسم المستخدم حساسًا لحالة الأحرف (إذا تم تعيين هذا على "true" ، فستشير أسماء المستخدمين "Bob" و "bob" إلى حسابات مختلفة) -- ترجمة قوقل لأني م فهمت لها اذا فيه احد يشرح هذي لو تكرمتوا لاني م فهمتها شكرا 2 Link to comment
[T]|O|[P]George Posted August 4, 2018 Share Posted August 4, 2018 (edited) شرح ولا اروع ولا شفت مثله - شخص مبدع و محترف واصل يالحبيب و شكرا علي الاهداء Edited August 4, 2018 by !#NssoR_) إزالة الإقتباس 2 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 Just now, [T]|O|[P]George said: شرح ولا اروع ولا شفت مثله - شخص مبدع و محترف واصل يالحبيب و شكرا علي الاهداء منور الموضوع ي بعد قلبي العفو 1 2 Link to comment
georgia09 Posted August 4, 2018 Share Posted August 4, 2018 أقدٌر تعبك ي عيني - .. إستمر بآلشروحآت ألحلوه هذي 1 Link to comment
#DRAGON!FIRE Posted August 4, 2018 Share Posted August 4, 2018 3> يعطيك العافيه ي حبيبي ع الشرح المفيد وع الاهداء . 1 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 3 hours ago, 8HR said: أقدٌر تعبك ي عيني - .. إستمر بآلشروحآت ألحلوه هذي حياك الله ي بعيد 3 hours ago, #DRAGON!FIRE said: 3> يعطيك العافيه ي حبيبي ع الشرح المفيد وع الاهداء . الله يعافيك هذا واجبناه 1 Link to comment
MrKAREEM Posted August 4, 2018 Share Posted August 4, 2018 كفوو والله شرح روعة من شخص أروع تحياتي لك والي الأمام يبطل 1 Link to comment
^iiEcoo'x_) Posted August 4, 2018 Share Posted August 4, 2018 شرح ممتأز , setAccountName @ لعناد , مدري ليه شايلين حقوقه 1 Link to comment
KillerX Posted August 4, 2018 Share Posted August 4, 2018 شرح جميل ومنظم ترا استفدت منوا كتير | واصل يا وجش 1 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 56 minutes ago, MrKAREEM said: كفوو والله شرح روعة من شخص أروع تحياتي لك والي الأمام يبطل حياك الله حبيبي شكرا لك 23 minutes ago, #_iMr,[E]coo said: شرح ممتأز , setAccountName @ لعناد , مدري ليه شايلين حقوقه شكرا لك 16 minutes ago, KillerX said: شرح جميل ومنظم ترا استفدت منوا كتير | واصل يا وجش حيآك الله بأي وقت هذا هو الهدف من الموضوع شكرا 1 Link to comment
Master_MTA Posted August 4, 2018 Share Posted August 4, 2018 12 minutes ago, N3xT said: شرح جميل ومفيد جداً اول مره اشوفك تسلك 1 Link to comment
N3xT Posted August 4, 2018 Share Posted August 4, 2018 9 minutes ago, Master_MTA said: اول مره اشوفك تسلك على أي اساس حكمت اني اسلك 1 Link to comment
Master_MTA Posted August 4, 2018 Share Posted August 4, 2018 14 minutes ago, N3xT said: على أي اساس حكمت اني اسلك على اساس انك ما ترد بازيد من كلمه بالرد (فنانه-كويس-ممتاز) فاذا طال كلامك فانت تسلك 1 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 40 minutes ago, N3xT said: شرح جميل ومفيد جداً شكرا 2 minutes ago, Master_MTA said: على اساس انك ما ترد بازيد من كلمه بالرد (فنانه-كويس-ممتاز) فاذا طال كلامك فانت تسلك ههههههههههههههههههههههههههه 1 1 Link to comment
N3xT Posted August 4, 2018 Share Posted August 4, 2018 2 minutes ago, Master_MTA said: على اساس انك ما ترد بازيد من كلمه بالرد (فنانه-كويس-ممتاز) فاذا طال كلامك فانت تسلك تزيد كلماتي بحسب اعجابي بالموضوع 1 Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 1 minute ago, N3xT said: تزيد كلماتي بحسب اعجابي بالموضوع كفو اقنعتني صراحة هههههههههههههههههههههه حبيب قلبي شكرا 1 1 Link to comment
Master_MTA Posted August 4, 2018 Share Posted August 4, 2018 25 minutes ago, N3xT said: تزيد كلماتي بحسب اعجابي بالموضوع افا Link to comment
Rakan# Posted August 4, 2018 Share Posted August 4, 2018 شرح جميل ولآ دريت عن الوظائف الجديده ومفيده جدًأ وتسلم ع الإهداء . استمر ي بطل Link to comment
#Major . Posted August 4, 2018 Author Share Posted August 4, 2018 1 minute ago, Rakan# said: شرح جميل ولآ دريت عن الوظائف الجديده ومفيده جدًأ وتسلم ع الإهداء . استمر ي بطل حيآك الله حبيبي شكرا ع التعليق البطل 1 1 Link to comment
!#NssoR_) Posted August 4, 2018 Share Posted August 4, 2018 الله يعطيك العافية ع الموضوع المنسق و المفيد , وبخصوص هاذا الاوبشن 8 hours ago, *RayaN-Alharbi. said: allowCaseVariations = Whether the username is case sensitive (if this is set to true, usernames "Bob" and "bob" will refer to different accounts) / ما إذا كان اسم المستخدم حساسًا لحالة الأحرف (إذا تم تعيين هذا على "true" ، فستشير أسماء المستخدمين "Bob" و "bob" إلى حسابات مختلفة) -- ترجمة قوقل لأني م فهمت لها هذا ماهو ضروري ولكن وظيفته يكون دقيق اكثر بالحروف الي تكتبها يعني علي سبيل المثال حسابي اسمه كذا NssoR راح يقولك الاكاونت هذا موموجود , والسبب ان انت حاط " ترو" وبكذا راح يدقق ع الاحرف nssor وانت استخدمت هالخيار وخليته " ترو " وكتبت اسم الحساب اتمني وضحت المعلومة , تم وضع الموضوع كـ مميز و يثبت لفترة مؤقتة وشكرا لمساهمتك 3 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