Jump to content

تعديل كود الطيآرآن بالسيآرهة


Recommended Posts

السلآم عليكم ورحمة الله ,,

ابي احول ذآ الكود من شيك بوكس آلى image

function flyCheck() 
    local checked = guiCheckBoxGetSelected(cW.chFly)  
    if checked then 
        setWorldSpecialPropertyEnabled("aircars", true) 
    else 
        setWorldSpecialPropertyEnabled("aircars", false) 
    end 
end 
addEventHandler("onClientGUIClick", cW.chFly, flyCheck, false) 

فهمتو كيف ؟

يعني هو آذآ ظظغطت على الهذآ شيك بوكس يطير

آنآ آبيهة آذآ ظظغط على صورهة يطير

الصورهة بنفس آسم آلشيك بوكس

وششكرآً

Link to comment
function flyCheck() 
   if not isWorldSpecialPropertyEnabled("aircars") then 
        setWorldSpecialPropertyEnabled("aircars", true) 
    else 
        setWorldSpecialPropertyEnabled("aircars", false) 
    end 
end 
addEventHandler("onClientGUIClick", cW.chFly, flyCheck, false) 

cW.chFly -- اسم صورتك

Link to comment
addEventHandler("onClientGUIClick",root, 
        function ( ) 
            if ( source == cW.chFly ) then 
                 setWorldSpecialPropertyEnabled("aircars", true) 
    else 
        setWorldSpecialPropertyEnabled("aircars", false) 
    end 
        end 
    ) 

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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