Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.09 KB | None | 0 0
  1.  
  2. GUIEditor = {
  3.     checkbox = {},
  4.     label = {},
  5.     button = {},
  6.     window = {},
  7.     memo = {}
  8. }
  9. addEventHandler("onClientResourceStart", resourceRoot,
  10.     function()
  11.         GUIEditor.window[1] = guiCreateWindow(471, 245, 425, 278, "Logowanie Pogotowie by sGame", false)
  12.         guiWindowSetSizable(GUIEditor.window[1], false)
  13.  
  14.         GUIEditor.button[1] = guiCreateButton(14, 203, 396, 57, "Zamknij", false, GUIEditor.window[1])
  15.         guiSetFont(GUIEditor.button[1], "default-bold-small")
  16.         guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFFFFFF")
  17.         GUIEditor.button[2] = guiCreateButton(14, 39, 159, 57, "Zaloguj", false, GUIEditor.window[1])
  18.         guiSetFont(GUIEditor.button[2], "default-bold-small")
  19.         guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFFFFFF")
  20.         GUIEditor.button[3] = guiCreateButton(14, 121, 159, 57, "Zmień Skina", false, GUIEditor.window[1])
  21.         guiSetFont(GUIEditor.button[3], "default-bold-small")
  22.         guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFFFFFFF")
  23.         GUIEditor.label[1] = guiCreateLabel(242, 39, 201, 23, "Tabela Ze Skinami", false, GUIEditor.window[1])
  24.         guiSetFont(GUIEditor.label[1], "default-bold-small")
  25.         GUIEditor.memo[1] = guiCreateMemo(206, 69, 194, 109, "", false, GUIEditor.window[1])
  26.  
  27.         GUIEditor.checkbox[1] = guiCreateCheckBox(4, 10, 180, 15, "Skin ID: XXX", true, false, GUIEditor.memo[1])
  28.         guiSetFont(GUIEditor.checkbox[1], "default-bold-small")
  29.         guiSetProperty(GUIEditor.checkbox[1], "NormalTextColour", "FF000000")
  30.         GUIEditor.checkbox[2] = guiCreateCheckBox(4, 46, 180, 15, "Skin ID: XXX", true, false, GUIEditor.memo[1])
  31.         guiSetFont(GUIEditor.checkbox[2], "default-bold-small")
  32.         guiSetProperty(GUIEditor.checkbox[2], "NormalTextColour", "FF000000")
  33.         GUIEditor.checkbox[3] = guiCreateCheckBox(4, 84, 180, 15, "Skin ID: XXX", true, false, GUIEditor.memo[1])
  34.         guiSetFont(GUIEditor.checkbox[3], "default-bold-small")
  35.         guiSetProperty(GUIEditor.checkbox[3], "NormalTextColour", "FF000000")    
  36.     end
  37. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement