Jump to content

سويت لوحة لكن ماتشتغل !!


#H[ee]bh

Recommended Posts

ابيكم تصححون لي الاكواد اذا فيها اخطاء

هذي اكواد الكلنت

GUIEditor = {
    button = {},
    label = {},
    window = {},
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
Function( )
    guiSetVisible( GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] ) )
        showCursor( not isCursorShowing( ) )

end )

هذي اكواد الميتا

<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua />
</meta>

و ملف سيرفر ماحطيت فيه شي !

Link to comment
10 minutes ago, #H[ee]bh said:

ابيكم تصححون لي الاكواد اذا فيها اخطاء

هذي اكواد الكلنت

GUIEditor = {
    button = {},
    label = {},
    window = {},
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
Function( )
    guiSetVisible( GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] ) )
        showCursor( not isCursorShowing( ) )

end )

هذي اكواد الميتا

<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua />
</meta>

و ملف سيرفر ماحطيت فيه شي !

GUIEditor = {
    button = {},
    label = {},
    window = {},
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
function( )
    if guiGetVisible( GUIEditor.window[1] ) then
    guiSetVisible( GUIEditor.window[1], false )
	showCursor( false )
    else
    guiSetVisible( GUIEditor.window[1], true )
	showCursor( true )
    end
end
)

-- اكواد الميتا
<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua" type="server" />
</meta>

 

Link to comment
9 hours ago, Source|> said:

GUIEditor = {
    button = {},
    label = {},
    window = {},
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
function( )
    if guiGetVisible( GUIEditor.window[1] ) then
    guiSetVisible( GUIEditor.window[1], false )
	showCursor( false )
    else
    guiSetVisible( GUIEditor.window[1], true )
	showCursor( true )
    end
end
)

-- اكواد الميتا
<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua" type="server" />
</meta>

 

مشكور الوحة اشتغلت لكن شف كيف صارت يوم شغلتها

p_6200nvue2.png

Link to comment
GUIEditor = {
    button = {},
    label = {},
    window = {}
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
function( )
    if guiGetVisible( GUIEditor.window[1] ) then
    guiSetVisible( GUIEditor.window[1], false )
	showCursor( false )
    else
    guiSetVisible( GUIEditor.window[1], true )
	showCursor( true )
    end
end
)

-- اكواد الميتا
<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua" type="server" />
</meta>

 

Link to comment
5 minutes ago, #_iMr.[E]coo said:

GUIEditor = {
    button = {},
    label = {},
    window = {}
}

GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")

bindKey( 'F2', 'down', 
function( )
    if guiGetVisible( GUIEditor.window[1] ) then
    guiSetVisible( GUIEditor.window[1], false )
	showCursor( false )
    else
    guiSetVisible( GUIEditor.window[1], true )
	showCursor( true )
    end
end
)

-- اكواد الميتا
<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua" type="server" />
</meta>

 

شكرااً

Edited by #H[ee]bh
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...