Jump to content

x[ تصحيح ]x كود


#STZ

Recommended Posts

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

ابي لما اضغط الزر يسوي تحقكك اذا الزرين الثانين مقفلين تطلع رسالة بالشات

اذا مفتوحين اللوحة تختفي

addEventHandler( 'onClientGUIClick', root,
function()
if (source == Enterbtn) 
guiGetEnabled ( Conf, true )
guiGetEnabled ( Conf2, true ) then
outputChatBox("خطا : جميع الازرار مقفلة",255,0,0)
else
guiSetVisible ( Window,false )
end
end
)

دي بق

p_345at0ry1.png

Link to comment


addEventHandler( 'onClientGUIClick', root,
function()
if (source == Enterbtn) then
if guiGetEnabled ( Conf) == false then  outputChatBox("خطا : جميع الازرار مقفلة",255,0,0) return end
if guiGetEnabled ( Conf2) == false then  outputChatBox("خطا : جميع الازرار مقفلة",255,0,0) return end
guiSetVisible ( Window,false )
end
end
)

 

Link to comment
addEventHandler( 'onClientGUIClick', root,
function()
if (source == Enterbtn) then
if guiGetEnabled ( Conf) == false then   return outputChatBox("خطا : جميع الازرار مقفلة",255,0,0) end
if guiGetEnabled ( Conf2) == false then   return outputChatBox("خطا : جميع الازرار مقفلة",255,0,0) end
guiSetVisible ( Window,false )
end
end
)

 

Link to comment
addEventHandler( 'onClientGUIClick', root,
	function ( )
		if ( source == Enterbtn ) then
			if guiGetEnabled ( Conf ) == false and guiGetEnabled ( Conf2 ) == false then
				outputChatBox("خطا : جميع الازرار مقفلة", 255, 0, 0 ) 
			else
				guiSetVisible ( Window, false )
			end
		end
	end
)

 

  • Like 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...