panel = {
paneladi = "Donate Panel", --//Panelin adını ayarlıyabileceğiniz kısım.
komut = "donate", --//Panelin Açma/Kapatma komutunu ayarlıyabileceğiniz kısım.
yatay = 445, --//Panelin yatay boyutunu ayarlıyabileceğiniz kısım.
dikey = 300, --//Panelin dikey boyutunu ayarlıyabileceğiniz kısım.
}
terimler = {
ekran = {guiGetScreenSize()}, --//Ekran terimi.
panel = "panel.png", --//Resim dosyası (1).
baslik = "baslik.png", --//Resim dosyası (2).
buton = "buton.png", --//Resim dosyası (3).
font = "default-bold-small", --//Panelin fontunu ayarlıyabileceğiniz kısım.
}
x = (terimler.ekran[1]/2-panel.yatay/2)
y = (terimler.ekran[2]/2-panel.dikey/2)
--//Panel
donate_panel = guiCreateStaticImage(x, y, panel.yatay, panel.dikey, terimler.panel, false)
guiSetVisible(donate_panel, false)
--//Başlık
panel_baslik = guiCreateStaticImage(0, 0, panel.yatay, 35, terimler.baslik, false, donate_panel)
baslik_label = guiCreateLabel(0, -10, panel.yatay, 35, panel.paneladi, false, panel_baslik)
guiLabelSetHorizontalAlign(baslik_label, "center")
guiLabelSetVerticalAlign(baslik_label, "bottom")
guiSetFont(baslik_label, terimler.font)
--//Kapat Butonu
kapat_buton = guiCreateStaticImage(panel.yatay-50, 0, 50, 35, terimler.buton, false, panel_baslik)
kapat_label = guiCreateLabel(0, -12, 50, 35, "X", false, kapat_buton)
guiLabelSetHorizontalAlign(kapat_label, "center")
guiLabelSetVerticalAlign(kapat_label, "bottom")
guiSetFont(kapat_label, terimler.font)
--//Fonksiyonlar
addEventHandler("onClientGUIClick", getRootElement(),
function()
if source == kapat_label then
guiSetVisible(donate_panel, false)
showCursor(false)
end
end)
addCommandHandler(panel.komut,
function()
if guiGetVisible(donate_panel) == false then
guiSetVisible(donate_panel, true)
showCursor(true)
elseif guiGetVisible(donate_panel) == true then
guiSetVisible(donate_panel, false)
showCursor(false)
end
end)