DontTrustMe Posted November 28, 2013 Share Posted November 28, 2013 السلام عليكم بسم الله الرحمن الرحيم عاوز كود مقتلشي ال معايا في الجروب عشان ال في جروب سيستم بتعات العقرب بايظة تمام معلش ي عقرب Link to comment
iMr.Dawix~# Posted November 28, 2013 Share Posted November 28, 2013 ماله دخل القروب سستم استخدم "onClientPlayerDamage"--حدث اذا تضرر الشيء getElementType--- تتأكد من ان الي تضرر هو لاعب getElementData---تجيب القروب حق الي ضرب والي انضرب cancelEvent()---الغاء الحدث عشان مايتضرر Link to comment
jafar Posted November 28, 2013 Share Posted November 28, 2013 مدام المود بايظ ليه تستخدمه Link to comment
K1NG Posted November 28, 2013 Share Posted November 28, 2013 ماله دخل القروب سستم استخدم "onClientPlayerDamage"--حدث اذا تضرر الشيء getElementType--- تتأكد من ان الي تضرر هو لاعب getElementData---تجيب القروب حق الي ضرب والي انضرب cancelEvent()---الغاء الحدث عشان مايتضرر مايوصله إشارة غير لين لاعب يتضرر عشان كذا ما onClientPlayerDamage للتأكد من إلي تضرر، لأن الحدث getElementType ما يحتاج يستخدم وظيفة يحتاج تتحقق اذا الي تضرر لاعب او لا + أنه لاعب (attacker) للتأكد من الهاجم getLocalPlayer مفروض يستخدم وظيفة Link to comment
#DRAGON!FIRE Posted November 28, 2013 Share Posted November 28, 2013 (edited) # لم يتم التججربة . Groups = { ["Your Name Group"] = true, } local cancel = "true" -- true or false Just . addEventHandler ( "onClientPlayerDamage", localPlayer, function ( attacker _,_ ) if attacker and attacker ~= source then if Groups[getElementData( source , "Group" )] and Groups[getElementData( attacker, "Group" )] then cancelEvent ( tostring ( cancel ) ); end; end; end ); Edited November 28, 2013 by Guest Link to comment
TAPL Posted November 28, 2013 Share Posted November 28, 2013 addEventHandler("onClientPlayerDamage", localPlayer, function(attacker) if attacker and getElementType(attacker) == "player" and attacker ~= source then local sGroup = getElementData(source, "Group") local aGroup = getElementData(attacker, "Group") if sGroup and aGroup and sGroup == aGroup then cancelEvent() end end end) Link to comment
DontTrustMe Posted November 29, 2013 Author Share Posted November 29, 2013 addEventHandler("onClientPlayerDamage", localPlayer, function(attacker) if attacker and getElementType(attacker) == "player" and attacker ~= source then local sGroup = getElementData(source, "Group") local aGroup = getElementData(attacker, "Group") if sGroup and aGroup and sGroup == aGroup then cancelEvent() end end end) تسلم ي تابل الكود اتشغل تسلم Link to comment
Recommended Posts