Nickelz Posted October 4, 2012 Share Posted October 4, 2012 السسسلآآم عليكم.. ممكن آعررف لو آعطآني هذآ الكود( مثلا)كيف اركبه؟ bool givePlayerMoney ( player thePlayer, int amount ) مآآبي آحد يحوله ليي آبي ششرح كيف آحوله؟! شكرآآ Link to comment
abu5lf Posted October 4, 2012 Share Posted October 4, 2012 انا حقيقة مافهمت وش تقصد بالتحويل لكن لكي تعرف كيف تستخدم الكود اقرأ Syntax Link to comment
Nickelz Posted October 4, 2012 Author Share Posted October 4, 2012 انا حقيقة مافهمت وش تقصد بالتحويللكن لكي تعرف كيف تستخدم الكود اقرأ Syntax آيييوآآ الكود اللي حطيته آنـآ من syntax آبي آسسويه زي كذآآ function checkMoney(thePlayer, command) local money = getPlayerMoney(thePlayer) -- get the amount of money from the player who entered the command if (money > 1000) then -- if money is more than 1000 outputChatBox("You are rich: " .. tostring(money), thePlayer) -- output this message together with the money else outputChatBox("Poor guy...", thePlayer) -- and else, output this message end end addCommandHandler("checkMoney", checkMoney) -- add the console command Link to comment
Nickelz Posted October 4, 2012 Author Share Posted October 4, 2012 طيب سوه دآآم آنك مآتعرف لييه ترد؟ Link to comment
abu5lf Posted October 4, 2012 Share Posted October 4, 2012 ههههههههههع اعرف ايش انت قايل ابسويه كذا طيب؟ وش الي رادك سوه تراني محب كثر الحكي والقيل والقال Link to comment
Nickelz Posted October 4, 2012 Author Share Posted October 4, 2012 ههههههههههعاعرف ايش انت قايل ابسويه كذا طيب؟ وش الي رادك سوه تراني محب كثر الحكي والقيل والقال هههههه طيب آسسف بسس هو كآتب آكسمبل يعني مثثآل على الكود !! يعني تقصد آني آركب المثآل في المود اللي بسويه؟ Link to comment
abu5lf Posted October 4, 2012 Share Posted October 4, 2012 لا المثال هو توضيح بس عشان تعرف كيف تستخدم الوظيفة شف شرح من الاخ العقرب اقراه https://wiki.multitheftauto.com/wiki/AR/مقدمه_في_البرمجه Link to comment
Nickelz Posted October 4, 2012 Author Share Posted October 4, 2012 لا المثال هو توضيح بس عشان تعرف كيف تستخدم الوظيفةشف شرح من الاخ العقرب اقراه https://wiki.multitheftauto.com/wiki/AR/مقدمه_في_البرمجه مآآ آفدتني بششي Link to comment
==>ҭᾄlᾄl Posted October 4, 2012 Share Posted October 4, 2012 bool givePlayerMoney ( player thePlayer, int amount ) Required Arguments thePlayer: the player you are giving the money to. --هو اللاعب الذي سوف تعطيه المال amount: a positive integer number specifying the amount of money to give to the player.--المال الذي سوف تعطيه الاعب bool and player and int --باختصار الي باللون الاخضر لا تكتبها في الكود في النهايه سوف يصبح الكود كذا givePlayerMoney ( source , 1000) سوف يعطي اللاعب 1000 ملاحظه:- الرجاء استخدام الكود سيرفر وليس كلنت لانه اذا كان كلنت لن يسحب شي وتعلم الانجليزي لانها مهمه في البرمجه اذا كان في خطا العذر والسموحه Link to comment
Nickelz Posted October 5, 2012 Author Share Posted October 5, 2012 bool givePlayerMoney ( player thePlayer, int amount ) Required Arguments thePlayer: the player you are giving the money to. --هو اللاعب الذي سوف تعطيه المال amount: a positive integer number specifying the amount of money to give to the player.--المال الذي سوف تعطيه الاعب bool and player and int --باختصار الي باللون الاخضر لا تكتبها في الكود في النهايه سوف يصبح الكود كذا givePlayerMoney ( source , 1000) سوف يعطي اللاعب 1000 ملاحظه:- الرجاء استخدام الكود سيرفر وليس كلنت لانه اذا كان كلنت لن يسحب شي وتعلم الانجليزي لانها مهمه في البرمجه اذا كان في خطا العذر والسموحه طيب مششكؤور بسس ليه كتبت source؟ وهل آرركب الكود عـ طول ولآآ في زيآآدة؟ آدري كثثرت عليكم بسس آبي ىتعلم Link to comment
abu5lf Posted October 5, 2012 Share Posted October 5, 2012 source : عنصر الحدث مثال نقوم بأنشاء وظيفة جديدة ونسميها function onJoin ( ) end بعد ذلك نضيف حدث للوظيفة اخترت الحدث عند دخول الاعب نربطه مع الوظيفة بكتابه اسم الوظيفة اخر الكود function onJoin ( ) end addEventHandler( 'onPlayerJoin', root, onJoin ) بعد ذلك نضع الوظيفة التي تشتغل عند دخول الاعب ابحط اعطاء الاعب فلوس function onJoin ( ) givePlayerMoney ( source, 100 ) end addEventHandler( 'onPlayerJoin', root, onJoin ) 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