Jump to content

عاوز كود او حل


Recommended Posts

ماله دخل القروب سستم استخدم

  
"onClientPlayerDamage"--حدث اذا تضرر الشيء 
getElementType--- تتأكد من ان الي تضرر هو لاعب 
getElementData---تجيب القروب حق الي ضرب والي انضرب 
cancelEvent()---الغاء الحدث عشان مايتضرر 
  

Link to comment

ماله دخل القروب سستم استخدم

  
"onClientPlayerDamage"--حدث اذا تضرر الشيء 
getElementType--- تتأكد من ان الي تضرر هو لاعب 
getElementData---تجيب القروب حق الي ضرب والي انضرب 
cancelEvent()---الغاء الحدث عشان مايتضرر 
  

مايوصله إشارة غير لين لاعب يتضرر عشان كذا ما onClientPlayerDamage للتأكد من إلي تضرر، لأن الحدث getElementType ما يحتاج يستخدم وظيفة

يحتاج تتحقق اذا الي تضرر لاعب او لا

+ أنه لاعب (attacker) للتأكد من الهاجم getLocalPlayer مفروض يستخدم وظيفة

Link to comment

# لم يتم التججربة .

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 by Guest
Link to comment
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
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
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...