Jump to content

كود يقفل الزر


SCi

Recommended Posts

3 hours ago, SCi said:

كود لقفل زر مثلا اف ١ وقت ادخل للوحة ولما اخرج يفتح الزر المقفول

هوا destroyElement 

او انا غلطان؟

 

اذا بدك وظيفه تدمير الكائن تقدر تستخدم

او ممكن تستخدمه لاكثر من شي

انا عطيتك مثالين لها

addEventHandler("onClientGUIClick", root, 
function()
    if source == button then
	destroyElement(button)
  end
end)
--------------------------------------------
addEventHandler("onPickupHit",root,
function(player)
   if source == pickup then
     destroyElement(pickup)
  end
end)

    
    

 

او ممكن تستخدم كمان شيئ ثاني يلي هو

 وظيفه تعطيل الزر او يفعل الزر بهاذا شكل

addEventHandler("onClientGUIClick", root,
function() 
    if source == button then       
    guiSetEnabled(button, not guiGetEnabled(button))
   end
end) 

 

 

Edited by JoOdSyria
  • Thanks 1
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...