Mr.Mostafa Posted July 2, 2019 Share Posted July 2, 2019 سلام عليكم ابي لما احد يضرب صاروخ ويقتل احد يجيب بالشات مين صاحب الصاروخ ومين الي مات وهكذا وش الافكار الي اقدر اسويها عشان اطبق الفكرة هادي ؟ Link to comment
Hakan Posted July 3, 2019 Share Posted July 3, 2019 (edited) 'onClientVehicleDamage' setElementData 'onPlayerWasted' getElementData outputChatBox Edited July 3, 2019 by Hakan Link to comment
Mr.Mostafa Posted July 3, 2019 Author Share Posted July 3, 2019 1 hour ago, Hakan said: 'onClientVehicleDamage' setElementData 'onPlayerWasted' getElementData outputChatBox بيحط داتا علي وش ؟ Link to comment
Hakan Posted July 3, 2019 Share Posted July 3, 2019 حط داتا على صاحب السيارة الي تضررت وخلي القيمة حقتها الـ attacker Link to comment
Mr.Mostafa Posted July 3, 2019 Author Share Posted July 3, 2019 1 hour ago, Hakan said: حط داتا على صاحب السيارة الي تضررت وخلي القيمة حقتها الـ attacker طيب ال attacker بيكون الصاروخ !! Link to comment
Hakan Posted July 3, 2019 Share Posted July 3, 2019 لا الاتاكر راح يكون اللاعب الي طلق الصاروخ Link to comment
Mr.Mostafa Posted July 3, 2019 Author Share Posted July 3, 2019 8 minutes ago, Hakan said: لا الاتاكر راح يكون اللاعب الي طلق الصاروخ الي بيخرب سيارة الاعب التاني هو الصاروخ , كيف بيكون الاعب الاول اتاكر مب متعرف الاتاكر Link to comment
Hakan Posted July 3, 2019 Share Posted July 3, 2019 لول انا مسويها من قبل , ليه ماتجرب انت وماتتفلسف واجد الله يهديك . Link to comment
Mr.Mostafa Posted July 3, 2019 Author Share Posted July 3, 2019 5 minutes ago, Hakan said: لول انا مسويها من قبل , ليه ماتجرب انت وماتتفلسف واجد الله يهديك . انا الي اتفلسف ؟ , تمام بجربها ابشر 10 minutes ago, Hakan said: لول انا مسويها من قبل , ليه ماتجرب انت وماتتفلسف واجد الله يهديك . قصدك كدا ؟ addEventHandler("onClientVehicleDamage", root, function(attacker) if attacker and getElementType(attacker) == "vehicle" then if getPedOccupiedVehicle(localPlayer) == source then local sourcePlayer, attackerPlayer = getVehicleController(source), getVehicleController(attacker) if sourcePlayer and attackerPlayer then setElementData(localPlayer,"killerName",getPlayerName(attackerPlayer)) end end end end ) Link to comment
Hakan Posted July 4, 2019 Share Posted July 4, 2019 لا انا قلت لك ان الاتاكر يكون player وانت مسوي تحقق انه يكون سيارة -- Client addEventHandler ( "onClientVehicleDamage" , root , function (att) if ( att and isElement ( att ) and getElementType ( att ) == "player" and getVehicleController(source) ~= att ) then setElementData ( getVehicleController ( source ) , "killedBy" , getPlayerName ( att ) ) end end ) -- Server addEventHandler ( "onPlayerWasted" , root , function ( ) if ( getElementData ( source , "killedBy" ) ) then outputChatBox(getPlayerName(source).." Killed By "..tostring(getElementData(source,"killedBy"))) removeElementData ( source , "killedBy" ) end end ) ; Link to comment
nxFairlywell Posted July 4, 2019 Share Posted July 4, 2019 (edited) Projectile/Element bindKey -- تحط زر الاطلاق projectile = createProjectile -- يعطيك الصاروخ setElementData(projectile,"projectile_attacker",attacker); -- تعطي داتا للصاروخ قيمتها اللاعب اللي اطلق الصاروخ "onClientVehicleDamage" -- اول برامتر راح يكون الشيء اللي دمج السياره -- تجيب الداتا حقت الشيء اللي دمج السياره function myfunc(element) attacker = getElementData(element,"projectile_attacker"); -- attacker = اللاعب اللي اطلق الصاروخ end Edited July 4, 2019 by NX_CI Link to comment
Hakan Posted July 4, 2019 Share Posted July 4, 2019 مالها داعي الي فوق لأن لو السيارة تضررت من صاروخ الاتاكر بيكون بلاير addEventHandler ( "onClientVehicleDamage" , root , function (att) if ( att and isElement ( att ) ) then outputChatBox ( tostring ( getElementType ( att ) ) ) end end ) 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