Simba Posted August 18, 2015 Share Posted August 18, 2015 (edited) السلام عليكم زمان عن البرمجة وعن مواضيعي القيمة مثل مو واضح في العنوان فنكشنات سلاح الــ mp5 يصير رشاش صواريخ يعني كل ما اطلق يتحول الطلق الى صاروخ مو قنبلة صاروخ Rocket بالانجليزي وشكرا مقدما Edited August 19, 2015 by Guest Link to comment
</Mr.Tn6eL> Posted August 18, 2015 Share Posted August 18, 2015 function onClientPlayerWeaponFireFunc(weapon,ammo,ammoInClip,hitX,hitY,hitZ,hitElement) if weapon == 38 then -- if source is a local player and he uses minigun... x,y,z = getElementPosition(getLocalPlayer()) if not createProjectile(getLocalPlayer(),19,x,y,z,200) then -- then we either create a projectile... outputChatBox ( "Rocket minigun overheated! Give it a rest pal!", source ) -- or if projectile limit is reached we output player a chat message end end end -- Don't forget to add the onClientPlayerWeaponFireFunc function as a handler for onClientPlayerWeaponFire. addEventHandler("onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc) Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 هذا حدث ؟ onClientPlayerWeaponFire ؟؟ وليش اسم الوظيفية نفس اسم الحدث ؟ + جاري التجربة Link to comment
</Mr.Tn6eL> Posted August 18, 2015 Share Posted August 18, 2015 هذا حدث ؟ onClientPlayerWeaponFire ؟؟ وليش اسم الوظيفية نفس اسم الحدث ؟ + جاري التجربة انا جبته من الويكي Link to comment
TAPL Posted August 18, 2015 Share Posted August 18, 2015 onClientPlayerWeaponFireFunc Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 طيب بس طلب ثاني ذذ مافي داعي افتح موضوع جديد فنكشن ان اللاعب الي يكتب امر في اف 8 ما يموت ابدا امر محدد طبعا بس الفنكشنز وانا اسويه ان شاء الله Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 onClientPlayerWeaponFireFunc يب مشكور توي الاحظها Link to comment
!#NssoR_) Posted August 18, 2015 Share Posted August 18, 2015 addCommandHandler onClientPlayerDamage cancelEvent Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 addCommandHandleronClientPlayerDamage cancelEvent كيف اسوي حدثين ؟ يعني حدثين مع بعض مدري كيف اشرح لك Link to comment
Professional Posted August 18, 2015 Share Posted August 18, 2015 addCommandHandleronClientPlayerDamage cancelEvent كيف اسوي حدثين ؟ يعني حدثين مع بعض مدري كيف اشرح لك addCommandHandler("m", function() if not undamageable then outputChatBox("الان لا ينقص دمك", 0, 255, 0) undamageable = true else outputChatBox("الان سوف ينقص دمك", 255, 0, 0) undamageable = false end end) addEventHandler("onClientPlayerDamage", localPlayer, function() if undamageable then cancelEvent() end end) Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 if not undamageable then ما فهمتها ومن وين جبتها ؟ هل بارميتر ؟ عادي احطها ??? if not dmg then Link to comment
!#NssoR_) Posted August 18, 2015 Share Posted August 18, 2015 يب + هاذي مجرد اسم للمتغير Link to comment
iMr.SFA7 Posted August 18, 2015 Share Posted August 18, 2015 if not undamageable then ما فهمتها ومن وين جبتها ؟ هل بارميتر ؟ عادي احطها ??? if not dmg then متغيرات فقط .. اذا تبي تغير اسمها غير المتغيرات كلها موب التحقق بس Link to comment
Simba Posted August 18, 2015 Author Share Posted August 18, 2015 فين المتغير ؟ اعرف ان المتغير يجي كذا marker = createMarker (.......) Link to comment
iMr.SFA7 Posted August 18, 2015 Share Posted August 18, 2015 فين المتغير ؟ اعرف ان المتغير يجي كذا marker = createMarker (.......) يجي كذا ويجي كذا كل واحد وطريقته بالبرمجة فـ نآس تبرمج وتستخدم المتغيرات Link to comment
TAPL Posted August 19, 2015 Share Posted August 19, 2015 فين المتغير ؟ اعرف ان المتغير يجي كذا marker = createMarker (.......) ذي متغيرات undamageable = true undamageable = false Link to comment
Professional Posted August 19, 2015 Share Posted August 19, 2015 فين المتغير ؟ اعرف ان المتغير يجي كذا marker = createMarker (.......) ذي متغيرات undamageable = true undamageable = false ذا تابل عمللي ياه من زمان يعني لو تمت الافاده ذذ حط تمت الافاده من قبل تابل 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