Jump to content

مشكلة في النافذة


Mando

Recommended Posts

سلام عليكم

انا سويته نافذة والمود شغال 100%

لكن المشكلة لما اخرج وادخل للسيرفر تفتح لوحة في وجهي :lol: ضض1

ولما اسوي رستارت للمود نفس المشكلة تفتح في وجهي

الكود اللي انا مستخدمة

  
GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
    end 
) 
function Mando() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
    guiSetInputEnabled(guiGetVisible(GUIEditor.window[1])) 
    guiSetText(GUIEditor.edit[1],"") 
end 
bindKey("F7","down",Mando) 

طبعآ في اشياء تحت لكن مابي احطها عشان راح اشفره في ناس تبدل الاكاود المهم ياريت تشوفو حل

Link to comment

جـرب *

GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
    end 
) 
  
guiSetVisible (GUIEditor.window[1], false)   
bindKey ( "F7" , "down" , function() 
      guiSetVisible(GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] )) 
      showCursor( not isCursorShowing( ) ) 
  end 
) 

Link to comment
جـرب *
GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
    end 
) 
  
guiSetVisible (GUIEditor.window[1], false)   
bindKey ( "F7" , "down" , function() 
      guiSetVisible(GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] )) 
      showCursor( not isCursorShowing( ) ) 
  end 
) 

X

GUIEditor = { 
button = {}, 
window = {}, 
edit = {}, 
label = {} 
 } 
  
GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
guiSetAlpha(GUIEditor.window[1], 1.00) 
guiSetVisible(GUIEditor.window[1], false) 
  
GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.label[1], "default-bold-small") 
guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
  
    guiSetVisible (GUIEditor.window[1], false)   
    bindKey ( "F7" , "down" , function() 
          guiSetVisible(GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] )) 
          showCursor( not isCursorShowing( ) ) 
      end 
    ) 

Link to comment
جـرب *
GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
    end 
) 
  
guiSetVisible (GUIEditor.window[1], false)   
bindKey ( "F7" , "down" , function() 
      guiSetVisible(GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] )) 
      showCursor( not isCursorShowing( ) ) 
  end 
) 

X

GUIEditor = { 
button = {}, 
window = {}, 
edit = {}, 
label = {} 
 } 
  
GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
guiSetAlpha(GUIEditor.window[1], 1.00) 
guiSetVisible(GUIEditor.window[1], false) 
  
GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.label[1], "default-bold-small") 
guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
  
    guiSetVisible (GUIEditor.window[1], false)   
    bindKey ( "F7" , "down" , function() 
          guiSetVisible(GUIEditor.window[1], not guiGetVisible( GUIEditor.window[1] )) 
          showCursor( not isCursorShowing( ) ) 
      end 
    ) 

؟

مافي فرق بس قدمت الكود

Link to comment

شكلك كدا جاي تهاوش !

انا قبل ماحط ردي اكيد شوفت

وجربته بنافذة تانية لكن نفس المشكلة

يعني الكود شغال علي النافذة هذه

سويت نافذة جديدة يجي نفس المشكلة !

Link to comment

همم افضل انك لا تستخدم حدث

حق

'onResourceStart'

في النافذه

+

ضفت لك

guiSetVisible

عشان لا تظهر اذا اشتغل المود

^_^ !

+

max ur

وش الي مافي فرق

شوف زين

وتعرف اذا فييه فرق

ما يحتاج تتكلم قبل تتأكد

Link to comment
همم افضل انك لا تستخدم حدث

حق

'onResourceStart'

في النافذه

+

ضفت لك

guiSetVisible

عشان لا تظهر اذا اشتغل المود

^_^ !

+

max ur

وش الي مافي فرق

شوف زين

وتعرف اذا فييه فرق

ما يحتاج تتكلم قبل تتأكد

onClientResourceStart ***

---

https://forum.multitheftauto.com/viewtopic.php?f=160&t=67335&p=631795#p631795

يكون له فائدة كبيرة يوم تحط وظايف واجهة المستخدم الرسومية فيه في بعض الأوقات onClientResourceStart للمعلومية حدث

رح يصير أخطاء يوم تشغل السكربت (cache) لأنه يوم الواحد يحذف ملف الكلنت الي فيه وظايف انشاء النوافذ وغيرهـ عن طريق الميتا

رح تلاحظ ان النوافذ بتجيك كبر الشاشة وتكون كلها ملخبطة ولا شي راكب ع بعضه والصور الي بالنافذة ما بتجي ولا شي في المرة الأولى الي يتحمل فيها السكربت على جهازكـ

.. مع هالوظايف، رح يريحكـ من هالمشاكل ذي كلها onClientResourceStart عشان كذا يوم تستخدم حدث

Link to comment
همم افضل انك لا تستخدم حدث

حق

'onResourceStart'

في النافذه

+

ضفت لك

guiSetVisible

عشان لا تظهر اذا اشتغل المود

^_^ !

+

max ur

وش الي مافي فرق

شوف زين

وتعرف اذا فييه فرق

ما يحتاج تتكلم قبل تتأكد

onClientResourceStart ***

---

https://forum.multitheftauto.com/viewtopic.php?f=160&t=67335&p=631795#p631795

يكون له فائدة كبيرة يوم تحط وظايف واجهة المستخدم الرسومية فيه في بعض الأوقات onClientResourceStart للمعلومية حدث

رح يصير أخطاء يوم تشغل السكربت (cache) لأنه يوم الواحد يحذف ملف الكلنت الي فيه وظايف انشاء النوافذ وغيرهـ عن طريق الميتا

رح تلاحظ ان النوافذ بتجيك كبر الشاشة وتكون كلها ملخبطة ولا شي راكب ع بعضه والصور الي بالنافذة ما بتجي ولا شي في المرة الأولى الي يتحمل فيها السكربت على جهازكـ

.. مع هالوظايف، رح يريحكـ من هالمشاكل ذي كلها onClientResourceStart عشان كذا يوم تستخدم حدث

!! وكان في مشأكل كثير ويجي اللبلأات قبل التحميل وخرأب cache فعلأ كلأم صحيح انا كنت استخدم

Link to comment

ي اخون انا مابي احد يشرح للتاني

انا ابي اعرف

لية لما اسوي نافذة جديدة واحط فيه كود يفتح بـ ف 9

اول لما اشغل المود يظهر مره واحدة ابيه لما اضغط اف 9

Link to comment
ي اخون انا مابي احد يشرح للتاني

انا ابي اعرف

لية لما اسوي نافذة جديدة واحط فيه كود يفتح بـ ف 9

اول لما اشغل المود يظهر مره واحدة ابيه لما اضغط اف 9

تحط بـ السكربت تحت النافذة او في اي مكان ..

guiSetVisible( WindowName, false ) 

Link to comment
    GUIEditor = { 
        button = {}, 
        window = {}, 
        edit = {}, 
        label = {} 
    } 
    addEventHandler("onClientResourceStart", resourceRoot, 
        function() 
            GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
            guiWindowSetSizable(GUIEditor.window[1], false) 
            guiSetVisible ( GUIEditor.window[1],false) 
            guiSetAlpha(GUIEditor.window[1], 1.00) 
            GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
            guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
            GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
            guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
            GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.label[1], "default-bold-small") 
            guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
            GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
        end 
    ) 
    function Mando() 
        guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
        showCursor(guiGetVisible(GUIEditor.window[1])) 
        guiSetInputEnabled(guiGetVisible(GUIEditor.window[1])) 
        guiSetText(GUIEditor.edit[1],"") 
    end 
    bindKey("F7","down",Mando) 

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

انا سويته نافذة والمود شغال 100%

لكن المشكلة لما اخرج وادخل للسيرفر تفتح لوحة في وجهي :lol: ضض1

ولما اسوي رستارت للمود نفس المشكلة تفتح في وجهي

الكود اللي انا مستخدمة

  
GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
    end 
) 
function Mando() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
    guiSetInputEnabled(guiGetVisible(GUIEditor.window[1])) 
    guiSetText(GUIEditor.edit[1],"") 
end 
bindKey("F7","down",Mando) 

طبعآ في اشياء تحت لكن مابي احطها عشان راح اشفره في ناس تبدل الاكاود المهم ياريت تشوفو حل

^ السكربت لطلال 07 سرقة حقوق عيني عينك

Link to comment
GUIEditor = { 
    button = {}, 
    window = {}, 
    edit = {}, 
    label = {} 
} 
  
  
        GUIEditor.window[1] = guiCreateWindow(281, 173, 189, 322, "[ Arabic Name V1.0 By Mando ]", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        GUIEditor.button[1] = guiCreateButton(9, 176, 170, 42, "Set Name ", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFCF900") 
        GUIEditor.button[2] = guiCreateButton(9, 246, 170, 42, "Remove Name", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF33F705") 
        GUIEditor.label[1] = guiCreateLabel(10, 40, 172, 32, "ضع اسمك بالعربي", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 129, 121, 121) 
        GUIEditor.edit[1] = guiCreateEdit(11, 74, 168, 35, "", false, GUIEditor.window[1])     
                guiSetVisible ( GUIEditor.window[1], false ) 
  
function Mando() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
    guiSetInputEnabled(guiGetVisible(GUIEditor.window[1])) 
    guiSetText(GUIEditor.edit[1],"") 
end 
bindKey("F7","down",Mando) 

جرب : )

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...