#TeKa Posted January 12, 2017 Share Posted January 12, 2017 السلام عليكم ف بعض السيرفرات اشوف شكل نجوم ال wanted متغيرة مثل ما في الصورة هكذا Spoiler لاحظو ان الشكل متغير !! ابي افهم كيف يفعلوها و بيستخدو فنكشن اي بظبط و بتتعمل ازاي ! Link to comment
Mr.CoR Posted January 12, 2017 Share Posted January 12, 2017 اعتقد هذا له علاقه بتصميم ال Hud تقدر تغير شكل النجوم عن طريق استبدال صورة النجمه بشكل اخر تبغاه بس صراحة ما ادري وين يكون ملف ال Hud Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 ما كان ليها لزمة انك تعلق اصلا Link to comment
Kara Posted January 12, 2017 Share Posted January 12, 2017 26 minutes ago, #TeKa said: ما كان ليها لزمة انك تعلق اصلا اولا حسن اسلوبك عشان الناس تساعدك, الرجل حب يعطي لي عنده فقط ثانيا طلبك يتعلق بي getPlayerWantedLevel هذا الفنكشن لي تحتاجه عشات تسوي نجوم جديده ولا تنسي تطفي النجوم الاصليه showPlayerHudComponent("wanted",true) Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: اولا حسن اسلوبك عشان الناس تساعدك, الرجل حب يعطي لي عنده فقط ثانيا طلبك يتعلق بي getPlayerWantedLevel هذا الفنكشن لي تحتاجه عشات تسوي نجوم جديده ولا تنسي تطفي النجوم الاصليه showPlayerHudComponent("wanted",true) اطفيها ب استخدام showPlayerHudComponent("wanted",true) ?? 1 Link to comment
Kara Posted January 12, 2017 Share Posted January 12, 2017 (edited) يب بس خليها false Edited January 12, 2017 by Kara Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: يب بس خليها false طب و استخدم شو عشان اظهر الصورة اول لما يخذ 1 wanted يظهر لك صورة واحدة من النجوم و هكذا و ايمكن انك تعطيني مثال 1 Link to comment
Kara Posted January 12, 2017 Share Posted January 12, 2017 مثال -- falseمثلا تسوي 6 نجوم وتسوي الشو حقهم --كل مايصعد لفل في الونتد تضهرله نجمه function test() local level = getPlayerWantedLevel ( thePlayer ) if ( level > 0 ) then --your code show th star elseif ( level > 1 ) then --your code show th star elseif ( level > 2 ) then --your code show th star elseif ( level > 3 ) then --your code show th star elseif ( level > 4 ) then --your code show th star elseif ( level > 5 ) then --your code show th star elseif ( level > 6 ) then --your code show th star end end Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: مثال -- falseمثلا تسوي 6 نجوم وتسوي الشو حقهم --كل مايصعد لفل في الونتد تضهرله نجمه function test() local level = getPlayerWantedLevel ( thePlayer ) if ( level > 0 ) then --your code show th star elseif ( level > 1 ) then --your code show th star elseif ( level > 2 ) then --your code show th star elseif ( level > 3 ) then --your code show th star elseif ( level > 4 ) then --your code show th star elseif ( level > 5 ) then --your code show th star elseif ( level > 6 ) then --your code show th star end end بعد ال elseif ( level > 6 ) then guiSetVisible(startimage1, true) مثل كذا ؟؟ 1 Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: يب طب كذا لو اللاعب نقص منه نجمة راح تتشال الصورة تلقائي ؟ 1 Link to comment
Kara Posted January 12, 2017 Share Posted January 12, 2017 ذي اشياء تسويها انت انا عطيتك الزبده وانت شغل مخخك واعرف كيف تستخدم الفنكشن Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: ذي اشياء تسويها انت انا عطيتك الزبده وانت شغل مخخك واعرف كيف تستخدم الفنكشن طب انصحني شو استخدم عند اول لما النجمة تروح الصورة تختفي Link to comment
Kara Posted January 12, 2017 Share Posted January 12, 2017 1 minute ago, #TeKa said: طب انصحني شو استخدم عند اول لما النجمة تروح الصورة تختفي استخدم حدث 'onClientRender' مع التحققات وكل تحقق تقفل النجمات وتضهر نجمات مثلا elseif ( level > 4 ) then guiSetVisible(four,true) guiSetVisible(five,false) guiSetVisible(six,false) Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: استخدم حدث 'onClientRender' مع التحققات وكل تحقق تقفل النجمات وتضهر نجمات مثلا elseif ( level > 4 ) then guiSetVisible(four,true) guiSetVisible(five,false) guiSetVisible(six,false) ما فهمت Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, Kara said: تعبتني بأسألتك الغبيه اعطيني مثال عشان افهم Link to comment
F_F Posted January 12, 2017 Share Posted January 12, 2017 (edited) --كل مايصعد لفل في الونتد تضهرله نجمه function test() local level = getPlayerWantedLevel ( thePlayer ) if ( level > 0 ) then guiSetVisible(zero, false) guiSetVisible(one, false) guiSetVisible(two,false) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 1 ) then guiSetVisible(one, true) guiSetVisible(two,false) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 2 ) then guiSetVisible(two,true) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 3 ) then guiSetVisible(three,true) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 4 ) then guiSetVisible(four,true) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 5 ) then guiSetVisible(five,true) guiSetVisible(six,false) elseif ( level > 6 ) then guiSetVisible(six,true) end end ذا مثال لو في غلط صححوه شباب Edited January 12, 2017 by F_F تم تعديل الكود لوجود خطاء بسيط Link to comment
#TeKa Posted January 12, 2017 Author Share Posted January 12, 2017 Just now, F_F said: --كل مايصعد لفل في الونتد تضهرله نجمه function test() local level = getPlayerWantedLevel ( thePlayer ) if ( level > 0 ) then guiSetVisible(one, false) guiSetVisible(two,false) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 1 ) then guiSetVisible(one, true) guiSetVisible(two,false) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 2 ) then guiSetVisible(two,true) guiSetVisible(three,false) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 3 ) then guiSetVisible(three,true) guiSetVisible(four,false) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 4 ) then guiSetVisible(four,true) guiSetVisible(five,false) guiSetVisible(six,false) elseif ( level > 5 ) then guiSetVisible(five,true) guiSetVisible(six,false) elseif ( level > 6 ) then guiSetVisible(six,true) end end ذا مثال لو في غلط صححوه شباب طب ما كدا لما ينقص لفل في الwated الصورة تفضل موجوده Link to comment
!#NssoR_) Posted January 14, 2017 Share Posted January 14, 2017 تمت إزالة الردود السابقة بسبب انها خارج محتوي الموضوع وبما ان صاحب الموضوع لم يستفد بعد ، لن يتم إغلاق الموضوع 1 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