Jump to content

خطأ بالكود غير معروف


#Rmad~>

Recommended Posts

السلام عليكم والرحمة..

ممكن تشوفولي الخطأ بالكود

addEventHandler("onClientGUIClick",root, 
    function() 
        if source == mage then 
            guiSetVisible ( Window , true ) 
        end 
    end 
) 

ومضهه:ترا الكود من عناد بس انا جربته ومانفع معي

Link to comment
  • Replies 65
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

مايضهر لي النافذة حبيبي ,

متأكد ان اسم النافذة Window ؟؟

يب يالغالي

بس عندي استفسار النافذة تكون

غير عن الصورة ومالها خص فيها

يعني زي

spawnScreenMenu = guiCreateWindow ( 0.15, 0.33, 0.7, 0.34, "Select your weapons", true )

لان في واحد سالني وقلت له يب قالي لا لازم تسويها مع الصورة وانا قلت له اني مابغاها تكون مع الصورة ابغاها لما اظغط الزر تفتح لي النافذة

Link to comment

ممكن تفهمني وش سويت انت يا عبقري ؟ ^

نسخت الكود الي فوق وحطيته تحت ,, ما سويت شي

وحتى لو ما نسخته

نفس الشي

+

صاحب الموضوع

تأكد من النافذه

+

الزر

اذا ما اشتغل

ديبوق

او اطرح اكوادك هنا

Link to comment
ممكن تفهمني وش سويت انت يا عبقري ؟ ^

نسخت الكود الي فوق وحطيته تحت ,, ما سويت شي

وحتى لو ما نسخته

نفس الشي

+

صاحب الموضوع

تأكد من النافذه

+

الزر

اذا ما اشتغل

ديبوق

او اطرح اكوادك هنا

اقول احترم نفسك ومابي انتفك بالموضوع انا ماني ناسخ الي فوق بس مانتبهت للكود زين :mrgreen:

Link to comment

خخخخخ حلوه احترم نفسك ,,, ما قلت شي غلط ,, كلامي صح انا

قال احترم نفسك خخخ الله يصلحك بس

اذا كلامي غلط ,, ورني وش سويت جديد ,, ما اشوف فيه فرق

بين الكود الي فوق والي طارحه انت يا عبقري

خخخ

لا ويقول ما ابي انتفك

الله يصلحك بس

Link to comment
خخخخخ حلوه احترم نفسك ,,, ما قلت شي غلط ,, كلامي صح انا

قال احترم نفسك خخخ الله يصلحك بس

اذا كلامي غلط ,, ورني وش سويت جديد ,, ما اشوف فيه فرق

بين الكود الي فوق والي طارحه انت يا عبقري

خخخ

لا ويقول ما ابي انتفك

الله يصلحك بس

Sorry :roll:

Link to comment

  
GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true )  
        end 
    end 
)      
  
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "", false) 
  
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then 
           guiSetVisible ( GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] ) ) 
       end 
end )  
Link to comment
نفس الحكاية يالغالي
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == enksar then 
guiSetVisible(wnd, false) 
 showCursor ( false ) 
end 
end 
) 

جرب كذآ اذا مازبط تاكد ان الملف كيلنت : )

اذا مازبطط

اطرحح كودكك كلهآ

Link to comment
      
    GUIEditor = { 
        window = {} 
        button = {} 
    } 
    GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
    guiWindowSetSizable(GUIEditor.window[1], false) 
    GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "close", false) 
     guiSetVisible ( GUIEditor.window[1], false ) 
      
function OpenWin()  
    if guiGetVisible ( GUIEditor.window[1] ) then    
       guiSetVisible ( GUIEditor.window[1], false )    
       showCursor(false)   
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
  
    end  
end   
bindKey("F2", "down", OpenWin) 
      
      
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
        if ( source == GUIEditor.button[1] ) then 
               guiSetVisible ( GUIEditor.window[1], false )    
                showCursor(false)   
           end 
    end )  

Link to comment

GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true )  
        end 
    end 
)      
  
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "", false) 
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == GUIEditor.button[1] then 
guiSetVisible(GUIEditor.window[1], false) 
 showCursor ( false ) 
end 
end 
) 

<meta> 
<info author="Test" version="1.0.0" type="script" /> 
    <script src="1.lua" type="client"/> 
</meta> 
  

نفس الحكاية

Link to comment
GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
  
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true )  
        end 
    end 
)      
  
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "", false) 
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == GUIEditor.button[1] then 
guiSetVisible(GUIEditor.window[1], false) 
 showCursor ( false ) 
end 
end 
) 

<meta> 
<info author="Test" version="1.0.0" type="script" /> 
    <script src="1.lua" type="client"/> 
</meta> 
  

نفس الحكاية

بآلله هذآ وشو ؟

GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "", false) 

شآطحح بآمهه في اخر الكودد : /

Link to comment
GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "ok", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
             guiSetVisible ( GUIEditor.window[1] , false ) 
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true ) 
        end 
    end 
)     
  
  
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == GUIEditor.button[1] then 
guiSetVisible(GUIEditor.window[1], false) 
 showCursor ( false ) 
end 
end 
) 

جرب كذآ : /

Link to comment

^

هريس

ي صاحب الموضوع جرب كودي

كودكك الهريسةة يآقلبي : )

  
    
GUIEditor_Window = {} 
GUIEditor_Button = {} 
  
    wnd = guiCreateWindow(495, 206, 335, 363, "Test", false) 
enksar = guiCreateButton(872, 269, 329, 216,"close",false,wnd) 
            guiSetVisible ( wnd, false )   
  
  
function OpenWin() 
    if guiGetVisible ( wnd ) then   
       guiSetVisible ( wnd, false )   
       showCursor(false)   
    else 
        guiSetVisible ( wnd, true )   
        showCursor(true)   
  
    end 
end   
bindKey("F2", "down", OpenWin) 
      
    
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == enksar then 
guiSetVisible(wnd, false) 
 showCursor ( false ) 
end 
end 
) 

جرب ذآ : )

Edited by Guest
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...