Bassam*Syria Posted June 23, 2014 Share Posted June 23, 2014 السلام عليكم كيفكوم شباب اليوم وقسم وقعت ب مشكلة و ضليت اكتر من ساعتين ما عرفت السبب المهم انا سويت لوحة و برمجتها و كل شي تمام بس الصورة ما تجي !!! الصورة الوحيدة الي ما تجي !! انا متئكد انو مافي خطأ هذه الاكواد ح الوححة كلنت GUIEditor = { gridlist = {}, window = {}, button = {}, label = {}, Image = {} } local Skins2 = {{"1","Skin 1"},{"157","Skin 2"}} local x = x - 629 local y = y - 485 Harvest_window = guiCreateWindow(x/2,y/2, 629, 485, "Harvest Job", false) guiWindowSetSizable(Harvest_window, false) guiSetVisible(Harvest_window,false) guiSetAlpha(Harvest_window,1) carPic = guiCreateStaticImage( 321,90,292,332, "Png\rien.png", false, Harvest_window ) GUIEditor.button[1] = guiCreateButton(9, 433, 138, 43, "Take Job", false, Harvest_window) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.button[2] = guiCreateButton(484, 433, 136, 43, "Close", false, Harvest_window) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") GUIEditor.label[1] = guiCreateLabel(218, 32, 193, 35, "By Gta-Monsters", false, Harvest_window) guiSetFont(GUIEditor.label[1],"sa-header") GUIEditor.gridlist[1] = guiCreateGridList(11, 91, 300, 334, false, Harvest_window) guiGridListAddColumn(GUIEditor.gridlist[1], "#", 0.3) guiGridListAddColumn(GUIEditor.gridlist[1], "Skin Number", 0.3) guiGridListAddColumn(GUIEditor.gridlist[1], "Skin Name", 0.3) for i,v in ipairs(Skins2) do local row = guiGridListAddRow(GUIEditor.gridlist[1]) guiGridListSetItemText(GUIEditor.gridlist[1], row, 1, i, false, false) guiGridListSetItemText(GUIEditor.gridlist[1], row, 2, v[1], false, false) guiGridListSetItemText(GUIEditor.gridlist[1], row, 3, v[2], false, false) end يرجة المساعدة Link to comment
The Killer Posted June 23, 2014 Share Posted June 23, 2014 GUIEditor = { gridlist = {}, window = {}, button = {}, label = {}, Image = {} } local Skins2 = {{"1","Skin 1"},{"157","Skin 2"}} local x = x - 629 local y = y - 485 Harvest_window = guiCreateWindow(x/2,y/2, 629, 485, "Harvest Job", false) guiWindowSetSizable(Harvest_window, false) guiSetVisible(Harvest_window,false) guiSetAlpha(Harvest_window,1) carPic = guiCreateStaticImage( 321,90,292,332, "Png/rien.png", false, Harvest_window ) GUIEditor.button[1] = guiCreateButton(9, 433, 138, 43, "Take Job", false, Harvest_window) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.button[2] = guiCreateButton(484, 433, 136, 43, "Close", false, Harvest_window) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") GUIEditor.label[1] = guiCreateLabel(218, 32, 193, 35, "By Gta-Monsters", false, Harvest_window) guiSetFont(GUIEditor.label[1],"sa-header") GUIEditor.gridlist[1] = guiCreateGridList(11, 91, 300, 334, false, Harvest_window) guiGridListAddColumn(GUIEditor.gridlist[1], "#", 0.3) guiGridListAddColumn(GUIEditor.gridlist[1], "Skin Number", 0.3) guiGridListAddColumn(GUIEditor.gridlist[1], "Skin Name", 0.3) for i,v in ipairs(Skins2) do local row = guiGridListAddRow(GUIEditor.gridlist[1]) guiGridListSetItemText(GUIEditor.gridlist[1], row, 1, i, false, false) guiGridListSetItemText(GUIEditor.gridlist[1], row, 2, v[1], false, false) guiGridListSetItemText(GUIEditor.gridlist[1], row, 3, v[2], false, false) 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