zudokuxD Posted August 18, 2014 Share Posted August 18, 2014 function PanelC() Panel = guiCreateWindow (X, Y, Width, Height, "Panel", true) guiWindowSetSizable(Panel, false) GUIEditor.tabpanel[1] = guiCreateTabPanel(10, 29, 789, 395, false, Panel) Info = guiCreateTab("Info", GUIEditor.tabpanel[1]) Armass = guiCreateTab("Armas", GUIEditor.tabpanel[1]) imagen1 = guiCreateStaticImage(16, 9, 94, 69, ":guieditor/images/examples/imaneuno.png", false, Armass) imagen2 = guiCreateStaticImage(120, 9, 100, 69, ":guieditor/images/examples/imagendos.png", false, Armass) imagen2 = guiCreateStaticImage(235, 9, 115, 69, ":guieditor/images/examples/imagentres.png", false, Armass) cuchillo = guiCreateButton(21, 83, 79, 30, "cuchillo", false, Armass) guiSetProperty(cuchillo, "NormalTextColour", "FFAAAAAA") silenciador = guiCreateButton(130, 84, 79, 30, "pistol silenciador", false, Armass) guiSetProperty(silenciador, "NormalTextColour", "FFAAAAAA") deglade = guiCreateButton(252, 84, 79, 30, "Deglade", false, Armass) guiSetProperty(deglade, "NormalTextColour", "FFAAAAAA") help Link to comment
Mr_Moose Posted August 18, 2014 Share Posted August 18, 2014 You forgot the end of your function, see this sample function for correct syntax: function sampleFunction(args) -- ... end Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now