Advertisement
Guest User

Untitled

a guest
Dec 25th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. GUIEditor = {
  2. tab = {},
  3. tabpanel = {},
  4. edit = {},
  5. window = {},
  6. combobox = {},
  7. memo = {}
  8. }
  9. addEventHandler("onClientResourceStart", resourceRoot,
  10. function()
  11. GUIEditor.window[1] = guiCreateWindow(442, 197, 1038, 689, "", false)
  12. guiWindowSetSizable(GUIEditor.window[1], false)
  13.  
  14. GUIEditor.tabpanel[1] = guiCreateTabPanel(9, 21, 1019, 658, false, GUIEditor.window[1])
  15.  
  16. GUIEditor.tab[1] = guiCreateTab("1", GUIEditor.tabpanel[1])
  17. GUIEditor.tab[2] = guiCreateTab("Supporter", GUIEditor.tabpanel[1])
  18. GUIEditor.tab[3] = guiCreateTab("Moderator", GUIEditor.tabpanel[1])
  19. GUIEditor.tab[4] = guiCreateTab("Administrator", GUIEditor.tabpanel[1])
  20. GUIEditor.tab[5] = guiCreateTab("Inhaber", GUIEditor.tabpanel[1])
  21. GUIEditor.tab[6] = guiCreateTab("Shop", GUIEditor.tabpanel[1])
  22.  
  23. GUIEditor.combobox[1] = guiCreateComboBox(10, 71, 236, 100, "", false, GUIEditor.tab[6])
  24. guiComboBoxAddItem(GUIEditor.combobox[1], "Sniper")
  25. guiComboBoxAddItem(GUIEditor.combobox[1], "RPG")
  26. guiComboBoxAddItem(GUIEditor.combobox[1], "Skinpack")
  27. guiComboBoxAddItem(GUIEditor.combobox[1], "Waffe3")
  28. guiComboBoxAddItem(GUIEditor.combobox[1], "Waffe4")
  29. GUIEditor.memo[1] = guiCreateMemo(10, 14, 240, 37, " Shop-Element wählen", false, GUIEditor.tab[6])
  30. GUIEditor.memo[2] = guiCreateMemo(274, 14, 240, 37, " Preis ändern", false, GUIEditor.tab[6])
  31. GUIEditor.memo[3] = guiCreateMemo(537, 14, 240, 37, " AMMO ändern", false, GUIEditor.tab[6])
  32. GUIEditor.edit[1] = guiCreateEdit(274, 71, 240, 27, "Preis", false, GUIEditor.tab[6])
  33. GUIEditor.edit[2] = guiCreateEdit(537, 71, 240, 27, "AMMO", false, GUIEditor.tab[6])
  34. end
  35. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement