Jump to content

طلب كود ظغط الزر كل 5 ثواني


Recommended Posts

السلام عليكم ورحمه الله وبركاته

ابي الكود ذا الي معروف من عنوانه

ان اول ظغطه

يقفل الزر وبعد 5 ثواني يفتح

بنتضار الردود

Link to comment

خلاص هذا ضبط

addEventHandler("onClientGUIClick",resourceRoot, function ( ) 
if ( source == GUIEditor.button[2] ) then 
guiSetEnabled(GUIEditor.button[2],false) 
setTimer(guiSetEnabled, 5000, 1, GUIEditor.button[2],true ) 
end 
end) 

Link to comment

يقدر يقول كذا بعد

addEventHandler( "onClientGUIClick", root, function (    ) 
  if ( source == اسم الزر ) then 
   if ( isTimer ( Timer ) ) then return end 
     Timer = setTimer ( function (  ) end, 5000, 1 ) 
    end 
end ) 

Link to comment

سهلة ماتحتاج سحر

انا مسويلك الكود على أنه تضيف اكثر من زر

Table = { } 
local time = 3000 -- غير الوقت 
button = guiCreateButton(...) -- حط الزر هنا 
Table[button] = true 
-- button2 = guiCreateButton(...) -- ازرار اكثر 
-- Table[button2] = true 
  
addEventHandler("onClientGUIClick", resourceRoot, function( ) 
    if Table[source] then 
        guiSetEnabled(source, false) 
        setTimer(guiSetEnabled, time, 1, source, true) 
    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...