Jump to content

ليش ذي اللوحة ماتفتح


Recommended Posts

السلام عليكم

شوفولي حل مع ذي اللوحة جربت كل الطرق والكودات بس مافتحت

c

GUIEditor = { 
  
    gridlist = {}, 
  
    button = {}, 
  
    checkbox = {}, 
  
    window = {}, 
  
} 
addEventHandler("onClientResourceStart", resourceRoot, 
  
    function() 
  
  
        GUIEditor.window[1] = guiCreateWindow(211, 80, 387, 484, "panel", false) 
  
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
  
        GUIEditor.gridlist[1] = guiCreateGridList(21, 45, 160, 384, false, GUIEditor.window[1]) 
  
  
        guiGridListAddColumn(GUIEditor.gridlist[1], "a", 0.9) 
  
        GUIEditor.button[1] = guiCreateButton(22, 440, 74, 35, "S", false, GUIEditor.window[1]) 
  
        GUIEditor.button[3] = guiCreateButton(100, 439, 74, 35, "d", false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[1] = guiCreateCheckBox(185, 406, 98, 15, "b", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[2] = guiCreateCheckBox(185, 386, 98, 15, "d", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[3] = guiCreateCheckBox(185, 366, 98, 15, "n", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[4] = guiCreateCheckBox(185, 346, 98, 15, "l", false, false, GUIEditor.window[1]) 
guiSetVisible (GUIEditor.window[1], false)   
    end 
  
) 
  
function OpenWin()   
    if guiGetVisible (GUIEditor.window[1] ) then    
       guiSetVisible ( GUIEditor.window[1], false )    
       showCursor(false)   
       guiSetInputEnabled(false) 
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
        guiSetInputEnabled(true) 
  
    end   
end   
bindKey("F7", "down", OpenWin) 
  

Link to comment

GUIEditor = { 
    gridlist = {}, 
    button = {}, 
    checkbox = {}, 
    window = {}, } 
     
addEventHandler( "onClientResourceStart", resourceRoot, function(    ) 
        GUIEditor.window[1] = guiCreateWindow(211, 80, 387, 484, "panel", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        GUIEditor.gridlist[1] = guiCreateGridList(21, 45, 160, 384, false, GUIEditor.window[1]) 
        guiGridListAddColumn(GUIEditor.gridlist[1], "a", 0.9) 
        GUIEditor.button[1] = guiCreateButton(22, 440, 74, 35, "S", false, GUIEditor.window[1]) 
        GUIEditor.button[3] = guiCreateButton(100, 439, 74, 35, "d", false, GUIEditor.window[1]) 
        GUIEditor.checkbox[1] = guiCreateCheckBox(185, 406, 98, 15, "b", false, false, GUIEditor.window[1]) 
        GUIEditor.checkbox[2] = guiCreateCheckBox(185, 386, 98, 15, "d", false, false, GUIEditor.window[1]) 
        GUIEditor.checkbox[3] = guiCreateCheckBox(185, 366, 98, 15, "n", false, false, GUIEditor.window[1]) 
        GUIEditor.checkbox[4] = guiCreateCheckBox(185, 346, 98, 15, "l", false, false, GUIEditor.window[1]) 
        guiSetVisible ( GUIEditor.window[1], false )   
end ) 
  
bindKey( "F7", "down", function(  ) 
     guiSetVisible ( GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] ) )   
     showCursor( guiGetVisible( GUIEditor.window[1] ) )   
     guiSetInputEnabled( guiGetVisible( GUIEditor.window[1] ) ) 
end ) 
Link to comment
GUIEditor = { 
  
    gridlist = {}, 
  
    button = {}, 
  
    checkbox = {}, 
  
    window = {}, 
  
} 
addEventHandler("onClientResourceStart", resourceRoot, 
  
    function() 
  
  
        GUIEditor.window[1] = guiCreateWindow(211, 80, 387, 484, "panel", false) 
  
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
  
        GUIEditor.gridlist[1] = guiCreateGridList(21, 45, 160, 384, false, GUIEditor.window[1]) 
  
  
        guiGridListAddColumn(GUIEditor.gridlist[1], "a", 0.9) 
  
        GUIEditor.button[1] = guiCreateButton(22, 440, 74, 35, "S", false, GUIEditor.window[1]) 
  
        GUIEditor.button[3] = guiCreateButton(100, 439, 74, 35, "d", false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[1] = guiCreateCheckBox(185, 406, 98, 15, "b", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[2] = guiCreateCheckBox(185, 386, 98, 15, "d", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[3] = guiCreateCheckBox(185, 366, 98, 15, "n", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[4] = guiCreateCheckBox(185, 346, 98, 15, "l", false, false, GUIEditor.window[1]) 
guiSetVisible (GUIEditor.window[1], false)   
    end 
  
) 
  
  
        guiSetVisible (GUIEditor.window[1], false)   
function OpenWin() 
    if guiGetVisible (  
  
GUIEditor.window[1] ) then 
       guiSetVisible (  
  
GUIEditor.window[1], false ) 
       showCursor(false) 
       guiSetInputEnabled(false) 
    else 
        guiSetVisible (  
  
GUIEditor.window[1], true ) 
        showCursor(true) 
        guiSetInputEnabled(true) 
  
    end 
end 
bindKey("F4", "down", OpenWin) 
  

Link to comment
  
GUIEditor = { 
  
    gridlist = {}, 
  
    button = {}, 
  
    checkbox = {}, 
  
    window = {}, 
  
} 
  
  
  
        GUIEditor.window[1] = guiCreateWindow(211, 80, 387, 484, "panel", false) 
  
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
  
        GUIEditor.gridlist[1] = guiCreateGridList(21, 45, 160, 384, false, GUIEditor.window[1]) 
  
  
        guiGridListAddColumn(GUIEditor.gridlist[1], "a", 0.9) 
  
        GUIEditor.button[1] = guiCreateButton(22, 440, 74, 35, "S", false, GUIEditor.window[1]) 
  
        GUIEditor.button[3] = guiCreateButton(100, 439, 74, 35, "d", false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[1] = guiCreateCheckBox(185, 406, 98, 15, "b", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[2] = guiCreateCheckBox(185, 386, 98, 15, "d", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[3] = guiCreateCheckBox(185, 366, 98, 15, "n", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[4] = guiCreateCheckBox(185, 346, 98, 15, "l", false, false, GUIEditor.window[1]) 
guiSetVisible (GUIEditor.window[1], false)   
  
  
  
        guiSetVisible (GUIEditor.window[1], false)   
function OpenWin() 
    if guiGetVisible ( 
  
GUIEditor.window[1] ) then 
       guiSetVisible ( 
  
GUIEditor.window[1], false ) 
       showCursor(false) 
       guiSetInputEnabled(false) 
    else 
        guiSetVisible ( 
  
GUIEditor.window[1], true ) 
        showCursor(true) 
        guiSetInputEnabled(true) 
  
    end 
end 
bindKey("F4", "down", OpenWin)  

دائمآ تواجهني نفس المشكلة , لازم ماتحط النافذه داخل وظيفة .

Link to comment
السلام عليكم

شوفولي حل مع ذي اللوحة جربت كل الطرق والكودات بس مافتحت

c

GUIEditor = { 
  
    gridlist = {}, 
  
    button = {}, 
  
    checkbox = {}, 
  
    window = {}, 
  
} 
addEventHandler("onClientResourceStart", resourceRoot, 
  
    function() 
  
  
        GUIEditor.window[1] = guiCreateWindow(211, 80, 387, 484, "panel", false) 
  
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
  
        GUIEditor.gridlist[1] = guiCreateGridList(21, 45, 160, 384, false, GUIEditor.window[1]) 
  
  
        guiGridListAddColumn(GUIEditor.gridlist[1], "a", 0.9) 
  
        GUIEditor.button[1] = guiCreateButton(22, 440, 74, 35, "S", false, GUIEditor.window[1]) 
  
        GUIEditor.button[3] = guiCreateButton(100, 439, 74, 35, "d", false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[1] = guiCreateCheckBox(185, 406, 98, 15, "b", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[2] = guiCreateCheckBox(185, 386, 98, 15, "d", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[3] = guiCreateCheckBox(185, 366, 98, 15, "n", false, false, GUIEditor.window[1]) 
  
        GUIEditor.checkbox[4] = guiCreateCheckBox(185, 346, 98, 15, "l", false, false, GUIEditor.window[1]) 
guiSetVisible (GUIEditor.window[1], false)   
    end 
  
) 
  
function OpenWin()   
    if guiGetVisible (GUIEditor.window[1] ) then    
       guiSetVisible ( GUIEditor.window[1], false )    
       showCursor(false)   
       guiSetInputEnabled(false) 
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
        guiSetInputEnabled(true) 
  
    end   
end   
bindKey("F7", "down", OpenWin) 
  

شغال الكود ..

المشكلة في مكان ثاني حط كامل الملف ولو فيه سيرفر حطه

وايضا الميتا

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...