Jump to content

كل مرة نفس المشكلة


hunter96

Recommended Posts

كل مرة نفس المشكلة اسوي مود شوب

كل شي فيه تمام يعني ازرار و الوظائف

تمام

بس الخطأ الا يطلع لي ان من اشغل المود من لوحة ادمن يطلع لي لوحة ولين اضغط حرف فتح اللوحة تختفي اللوحة يظهر الماوس

يا ريت احد يفيدني

الكود مال الشوب

GUIEditor = { 
    window = {}, 
    staticimage = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(0, 0, 123, 360, "CAR PANEL ver1.0", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFF0000") 
  
        GUIEditor.staticimage[1] = guiCreateStaticImage(21, 30, 84, 74, ":carpanel/fix.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[2] = guiCreateStaticImage(21, 133, 83, 73, ":carpanel/flip.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[3] = guiCreateStaticImage(22, 236, 84, 66, ":carpanel/Nitro.png", false, GUIEditor.window[1]) 
        GUIEditor.label[1] = guiCreateLabel(9, 337, 119, 27, "      BY HUNTER", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "clear-normal") 
        fix = guiCreateButton(0.15, 0.28, 0.70, 0.08, "$1500", true, GUIEditor.window[1]) 
        guiSetFont(fix, "sa-header") 
        guiSetProperty(fix, "NormalTextColour", "FF2EF905") 
        flip = guiCreateButton(19, 208, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(flip, "sa-header") 
        guiSetProperty(flip, "NormalTextColour", "FF2EF905") 
        Nitro = guiCreateButton(19, 305, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(Nitro, "sa-header") 
        guiSetProperty(Nitro, "NormalTextColour", "FF2EF905")     
    end 
) 
  
  
guiSetVisible(GUIEditor.window[1],false) 
  
bindKey ( "N" , "down" , function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(not isCursorShowing()) 
    end 
) 
  
  
  
  
addEventHandler ("onClientGUIClick", root, 
function() 
if ( source ==  fix ) then 
triggerServerEvent("fix",getLocalPlayer()) 
elseif (source == flip) then 
triggerServerEvent("flip",getLocalPlayer()) 
elseif (source == Nitro) then 
triggerServerEvent("Nitro",getLocalPlayer()) 
end 
end 
) 

Link to comment

GUIEditor = { 
    window = {}, 
    staticimage = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(0, 0, 123, 360, "CAR PANEL ver1.0", false) 
        guiSetVisible(GUIEditor.window[1],false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFF0000") 
        GUIEditor.staticimage[1] = guiCreateStaticImage(21, 30, 84, 74, ":carpanel/fix.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[2] = guiCreateStaticImage(21, 133, 83, 73, ":carpanel/flip.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[3] = guiCreateStaticImage(22, 236, 84, 66, ":carpanel/Nitro.png", false, GUIEditor.window[1]) 
        GUIEditor.label[1] = guiCreateLabel(9, 337, 119, 27, "      BY HUNTER", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "clear-normal") 
        fix = guiCreateButton(0.15, 0.28, 0.70, 0.08, "$1500", true, GUIEditor.window[1]) 
        guiSetFont(fix, "sa-header") 
        guiSetProperty(fix, "NormalTextColour", "FF2EF905") 
        flip = guiCreateButton(19, 208, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(flip, "sa-header") 
        guiSetProperty(flip, "NormalTextColour", "FF2EF905") 
        Nitro = guiCreateButton(19, 305, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(Nitro, "sa-header") 
        guiSetProperty(Nitro, "NormalTextColour", "FF2EF905")     
    end 
) 
  
  
bindKey ( "N" , "down" , function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(not isCursorShowing()) 
    end 
) 
  
  
  
  
addEventHandler ("onClientGUIClick", root, 
function() 
if ( source ==  fix ) then 
triggerServerEvent("fix",getLocalPlayer()) 
elseif (source == flip) then 
triggerServerEvent("flip",getLocalPlayer()) 
elseif (source == Nitro) then 
triggerServerEvent("Nitro",getLocalPlayer()) 
end 
end 
) 

للمعلوميه ما يحتاج حدث اساسا -__-

Link to comment
GUIEditor = { 
    window = {}, 
    staticimage = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(0, 0, 123, 360, "CAR PANEL ver1.0", false) 
        guiSetVisible(GUIEditor.window[1],false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetAlpha(GUIEditor.window[1], 1.00) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFF0000") 
        GUIEditor.staticimage[1] = guiCreateStaticImage(21, 30, 84, 74, ":carpanel/fix.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[2] = guiCreateStaticImage(21, 133, 83, 73, ":carpanel/flip.png", false, GUIEditor.window[1]) 
        GUIEditor.staticimage[3] = guiCreateStaticImage(22, 236, 84, 66, ":carpanel/Nitro.png", false, GUIEditor.window[1]) 
        GUIEditor.label[1] = guiCreateLabel(9, 337, 119, 27, "      BY HUNTER", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "clear-normal") 
        fix = guiCreateButton(0.15, 0.28, 0.70, 0.08, "$1500", true, GUIEditor.window[1]) 
        guiSetFont(fix, "sa-header") 
        guiSetProperty(fix, "NormalTextColour", "FF2EF905") 
        flip = guiCreateButton(19, 208, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(flip, "sa-header") 
        guiSetProperty(flip, "NormalTextColour", "FF2EF905") 
        Nitro = guiCreateButton(19, 305, 86, 27, "$1500", false, GUIEditor.window[1]) 
        guiSetFont(Nitro, "sa-header") 
        guiSetProperty(Nitro, "NormalTextColour", "FF2EF905")     
    end 
) 
  
  
bindKey ( "N" , "down" , function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(not isCursorShowing()) 
    end 
) 
  
  
  
  
addEventHandler ("onClientGUIClick", root, 
function() 
if ( source ==  fix ) then 
triggerServerEvent("fix",getLocalPlayer()) 
elseif (source == flip) then 
triggerServerEvent("flip",getLocalPlayer()) 
elseif (source == Nitro) then 
triggerServerEvent("Nitro",getLocalPlayer()) 
end 
end 
) 

للمعلوميه ما يحتاج حدث اساسا -__-

يعني الخطأ في

guiSetVisible(GUIEditor.window[1],false) 

Link to comment

الخطأ اتوقع انك حاط

guiSetVisible(GUIEditor.window[1],false) 

خارج الحدث المفروض تكون ملحوقه بالنافذه,

ذا كيلير , موجوده بالسطر 31

كذا يضبط onClientResourceStart بالاضافه انه ما يحتاح حدث

GUIEditor = { 
    window = {}, 
    staticimage = {}, 
    label = {} 
} 
  
  
GUIEditor.window[1] = guiCreateWindow(0, 0, 123, 360, "CAR PANEL ver1.0", false) 
guiSetVisible(GUIEditor.window[1],false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
guiSetAlpha(GUIEditor.window[1], 1.00) 
guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFF0000") 
GUIEditor.staticimage[1] = guiCreateStaticImage(21, 30, 84, 74, ":carpanel/fix.png", false, GUIEditor.window[1]) 
GUIEditor.staticimage[2] = guiCreateStaticImage(21, 133, 83, 73, ":carpanel/flip.png", false, GUIEditor.window[1]) 
GUIEditor.staticimage[3] = guiCreateStaticImage(22, 236, 84, 66, ":carpanel/Nitro.png", false, GUIEditor.window[1])GUIEditor.label[1] = guiCreateLabel(9, 337, 119, 27, "      BY HUNTER", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.label[1], "clear-normal") 
fix = guiCreateButton(0.15, 0.28, 0.70, 0.08, "$1500", true, GUIEditor.window[1]) 
guiSetFont(fix, "sa-header") 
guiSetProperty(fix, "NormalTextColour", "FF2EF905") 
flip = guiCreateButton(19, 208, 86, 27, "$1500", false, GUIEditor.window[1]) 
guiSetFont(flip, "sa-header") 
guiSetProperty(flip, "NormalTextColour", "FF2EF905") 
Nitro = guiCreateButton(19, 305, 86, 27, "$1500", false, GUIEditor.window[1]) 
guiSetFont(Nitro, "sa-header") 
guiSetProperty(Nitro, "NormalTextColour", "FF2EF905")     
  
  
  
bindKey ( "N" , "down" , function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(not isCursorShowing()) 
    end 
) 
  
  
  
  
addEventHandler ("onClientGUIClick", root, 
function() 
if ( source ==  fix ) then 
triggerServerEvent("fix",getLocalPlayer()) 
elseif (source == flip) then 
triggerServerEvent("flip",getLocalPlayer()) 
elseif (source == Nitro) then 
triggerServerEvent("Nitro",getLocalPlayer()) 
end 
end 
) 
Link to comment
الخطأ اتوقع انك حاط

guiSetVisible(GUIEditor.window[1],false) 

خارج الحدث المفروض تكون ملحوقه بالنافذه,

ذا كيلير , موجوده بالسطر 31

كذا يضبط onClientResourceStart بالاضافه انه ما يحتاح حدث

GUIEditor = { 
    window = {}, 
    staticimage = {}, 
    label = {} 
} 
  
  
GUIEditor.window[1] = guiCreateWindow(0, 0, 123, 360, "CAR PANEL ver1.0", false) 
guiSetVisible(GUIEditor.window[1],false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
guiSetAlpha(GUIEditor.window[1], 1.00) 
guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFF0000") 
GUIEditor.staticimage[1] = guiCreateStaticImage(21, 30, 84, 74, ":carpanel/fix.png", false, GUIEditor.window[1]) 
GUIEditor.staticimage[2] = guiCreateStaticImage(21, 133, 83, 73, ":carpanel/flip.png", false, GUIEditor.window[1]) 
GUIEditor.staticimage[3] = guiCreateStaticImage(22, 236, 84, 66, ":carpanel/Nitro.png", false, GUIEditor.window[1])GUIEditor.label[1] = guiCreateLabel(9, 337, 119, 27, "      BY HUNTER", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.label[1], "clear-normal") 
fix = guiCreateButton(0.15, 0.28, 0.70, 0.08, "$1500", true, GUIEditor.window[1]) 
guiSetFont(fix, "sa-header") 
guiSetProperty(fix, "NormalTextColour", "FF2EF905") 
flip = guiCreateButton(19, 208, 86, 27, "$1500", false, GUIEditor.window[1]) 
guiSetFont(flip, "sa-header") 
guiSetProperty(flip, "NormalTextColour", "FF2EF905") 
Nitro = guiCreateButton(19, 305, 86, 27, "$1500", false, GUIEditor.window[1]) 
guiSetFont(Nitro, "sa-header") 
guiSetProperty(Nitro, "NormalTextColour", "FF2EF905")     
  
  
  
bindKey ( "N" , "down" , function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(not isCursorShowing()) 
    end 
) 
  
  
  
  
addEventHandler ("onClientGUIClick", root, 
function() 
if ( source ==  fix ) then 
triggerServerEvent("fix",getLocalPlayer()) 
elseif (source == flip) then 
triggerServerEvent("flip",getLocalPlayer()) 
elseif (source == Nitro) then 
triggerServerEvent("Nitro",getLocalPlayer()) 
end 
end 
) 

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

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

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

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

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