0 Üye ve 1 Ziyaretçi konuyu incelemekte.
sC,sD = guiGetScreenSize()C,D = 460,330 --> Panelin genişlik ve uzunluğunu yazacaksınız.A = (sC/2) - (C/2)B = (sD/2) - (D/2)
panel = guiCreateWindow(A, B, C, D, "Panel", false) --> Panel oluşumu.guiSetProperty(panel, "CaptionColour", "FF12FE00") --> Panel adının rengini belirler. Şuan yeşil renk kodu var.guiWindowSetSizable(panel, false) --> Paneli oyun içinden büyültme ve küçültmeyi kapatma.guiWindowSetMovable(panel, false) --> Paneli oyun içinden taşımayı kapatma.guiSetVisible(panel, false) --> Startlıyınca panelin açılmamasını sağlar.guiSetAlpha(panel, 1) --> Panel şeffaflığını ayarlar. Şeffaflığı "1" olursa %100 olur "0.5" olursa %50 olur.
buton = guiCreateButton(356, 275, 84, 35, "Kapat", false, panel) --> Buton oluşumu.guiSetProperty(buton, "NormalTextColour", "FF17FE00") --> Buton renkleştirme. Şuan yeşil renk kodu var.guiSetProperty(buton, "HoverTextColour", "FFFE0000") --> Butonun üstüne gelinceki renkleştirme. Şuan kırmızı renk kodu var.guiSetProperty(buton, "PushedTextColour", "FFFD7100") --> Butona tıklayıncaki renkleştirme. Şuan turuncu renk kodu var.guiSetFont(buton, "default-bold-small") --> Butona font ekler.guiSetAlpha(buton, 1) --> Buton şeffaflığını ayarlar. Şeffaflığı "1" olursa %100 olur "0.5" olursa %50 olur.
function kapat()if source == buton then --> Butonu aktifleştirme.guiSetVisible(panel, false) --> Paneli aktifleştirme.showCursor(false)endendaddEventHandler("onClientGUIClick", root, kapat)
function ackapa()if (guiGetVisible (panel) == true) then --> Paneli aktifleştirme.guiSetVisible(panel, false) --> Paneli aktifleştirme.showCursor(false)elseif (guiGetVisible (panel) == false) then --> Paneli aktifleştirme.guiSetVisible(panel, true) --> Paneli aktifleştirme.showCursor(true)endendbindKey("F2", "down", ackapa) --> Panelin açma kapama tuşu.addCommandHandler("panel", ackapa) --> Panelin açma kapama komutu.
sC,sD = guiGetScreenSize()C,D = 460,330A = (sC/2) - (C/2)B = (sD/2) - (D/2)panel = guiCreateWindow(A, B, C, D, "Panel", false)guiSetProperty(panel, "CaptionColour", "FF12FE00")guiWindowSetSizable(panel, false)guiWindowSetMovable(panel, false)guiSetVisible(panel, false)guiSetAlpha(panel, 1)buton = guiCreateButton(356, 275, 84, 35, "Kapat", false, panel)guiSetProperty(buton, "NormalTextColour", "FF17FE00")guiSetProperty(buton, "HoverTextColour", "FFFE0000")guiSetProperty(buton, "PushedTextColour", "FFFD7100")guiSetFont(buton, "default-bold-small")guiSetAlpha(buton, 1)function kapat()if source == buton thenguiSetVisible(panel, false)showCursor(false)endendaddEventHandler("onClientGUIClick", root, kapat)function ackapa()if (guiGetVisible (panel) == true) thenguiSetVisible(panel, false)showCursor(false)elseif (guiGetVisible (panel) == false) thenguiSetVisible(panel, true)showCursor(true)endendbindKey ("F2", "down", ackapa)addCommandHandler("panel", ackapa)
Yeni başlıyanlar için yararlı bir konu.
Yararlı bir konu. Teşekkürler.
Yeni başlayanlar için yararlı bir konu.