Jump to content

طلب يمكن يكون صعب


Mr.king

Recommended Posts

  • Replies 63
  • Created
  • Last Reply

Top Posters In This Topic

وكمان ابيكم تعدلون ذا الكود يعني لو كان الفرغين مافيهم شيء مايسير شيء لو كانو معبين يشتغل التريقر بس المشكلة لو ضغط الزر مايسير شيء وينحذف رقم البطاقة ليش؟

addEventHandler("onClientGUIClick",getRootElement(), 
    function () 
  local ggt = guiGetText(GUIEditor_Edit[1]) 
  local gtt = guiGetText(GUIEditor_Edit[2]) 
    if ( source == GUIEditor_Button[1] ) then 
       if ( guiSetText(GUIEditor_Edit[1], "") ) then 
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
       elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
   else 
        triggerServerEvent("XX",localPlayer,guiGetText(GUIEditor_Edit[1]),guiGetText(GUIEditor_Edit[2])) 
        cleanInfos() 
    end 
    end 
end) 

انت ماقلة تبي تعديل للكود هذه

عدلته انا لك

او هو موجود في الكلنت

:rightfighter1:

Link to comment

جرب

  
GUIEditor_Window = {} 
  
GUIEditor_Label = {} 
  
GUIEditor_Edit = {} 
  
GUIEditor_Button = {}  
  
  
  
GUIEditor_Window[1] = guiCreateWindow(0.1807,0.1745,0.6641,0.6745,"لوحة ",true) 
  
guiSetAlpha(GUIEditor_Window[1],1) 
  
GUIEditor_Label[1] = guiCreateLabel(165,50,340,81,"",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[1],23,200,150) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"center",false) 
  
guiSetFont(GUIEditor_Label[1],"default-bold-small") 
  
GUIEditor_Label[2] = guiCreateLabel(165,134,340,81,"",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[2],23,200,150) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[2],"center",false) 
  
guiSetFont(GUIEditor_Label[2],"default-bold-small") 
  
GUIEditor_Label[3] = guiCreateLabel(458,241,218,87,"اسمك :",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[3],233,53,243) 
  
guiSetFont(GUIEditor_Label[3],"default-bold-small") 
  
GUIEditor_Label[4] = guiCreateLabel(137,241,218,87,"رقم البطاقة :",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[4],233,53,243) 
  
guiSetFont(GUIEditor_Label[4],"default-bold-small") 
  
GUIEditor_Edit[1] = guiCreateEdit(42,275,260,66,"",false,GUIEditor_Window[1]) 
  
GUIEditor_Edit[2] = guiCreateEdit(353,275,260,66,"",false,GUIEditor_Window[1]) 
  
GUIEditor_Button[1] = guiCreateButton(280,381,96,62,"ارسال",false,GUIEditor_Window[1]) 
  
GUIEditor_Label[5] = guiCreateLabel(59,475,538,33,"لم يتم ارسال الرسالة",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[5],"center",false) 
  
guiSetVisible(GUIEditor_Window[1], false) 
  
  
  
  
  
function wnd () 
  
        guiSetVisible ( GUIEditor_Window[1], not guiGetVisible ( GUIEditor_Window[1] ) ) 
  
        showCursor ( guiGetVisible ( GUIEditor_Window[1] ) ) 
  
        guiSetInputEnabled( guiGetVisible ( GUIEditor_Window[1] ) ) 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
end 
  
bindKey( "F10", "down", wnd) 
  
  
  
  
  
addEventHandler("onClientGUIClick",getRootElement(), 
  
    function () 
  
  local ggt = guiGetText(GUIEditor_Edit[1]) 
  
  local gtt = guiGetText(GUIEditor_Edit[2]) 
  
     if ( source == GUIEditor_Button[1] ) then 
  
     elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
       elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
   else 
  
        triggerServerEvent("XX",localPlayer,guiGetText(GUIEditor_Edit[1]),guiGetText(GUIEditor_Edit[2])) 
  
        cleanInfos() 
  
    end 
     
end) 
  
  
  
  
function cleanInfos() 
  
    guiSetText(GUIEditor_Edit[1], "") 
  
    guiSetText(GUIEditor_Edit[2], "") 
  
    guiSetText(GUIEditor_Label[5], "لقد ارسلت الرسالة بنجاح ارجع بعد 24 ساعة لكي تحصل على البيت") 
  
    guiLabelSetColor(GUIEditor_Label[5],0,255,0) 
  
end 
  
  
  
  

استبدل الكلنت الي عندك

في هذه

X

Link to comment

جرب

  
GUIEditor_Window = {} 
  
GUIEditor_Label = {} 
  
GUIEditor_Edit = {} 
  
GUIEditor_Button = {}  
  
  
  
GUIEditor_Window[1] = guiCreateWindow(0.1807,0.1745,0.6641,0.6745,"لوحة ",true) 
  
guiSetAlpha(GUIEditor_Window[1],1) 
  
GUIEditor_Label[1] = guiCreateLabel(165,50,340,81,"",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[1],23,200,150) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"center",false) 
  
guiSetFont(GUIEditor_Label[1],"default-bold-small") 
  
GUIEditor_Label[2] = guiCreateLabel(165,134,340,81,"",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[2],23,200,150) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[2],"center",false) 
  
guiSetFont(GUIEditor_Label[2],"default-bold-small") 
  
GUIEditor_Label[3] = guiCreateLabel(458,241,218,87,"اسمك :",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[3],233,53,243) 
  
guiSetFont(GUIEditor_Label[3],"default-bold-small") 
  
GUIEditor_Label[4] = guiCreateLabel(137,241,218,87,"رقم البطاقة :",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[4],233,53,243) 
  
guiSetFont(GUIEditor_Label[4],"default-bold-small") 
  
GUIEditor_Edit[1] = guiCreateEdit(42,275,260,66,"",false,GUIEditor_Window[1]) 
  
GUIEditor_Edit[2] = guiCreateEdit(353,275,260,66,"",false,GUIEditor_Window[1]) 
  
GUIEditor_Button[1] = guiCreateButton(280,381,96,62,"ارسال",false,GUIEditor_Window[1]) 
  
GUIEditor_Label[5] = guiCreateLabel(59,475,538,33,"لم يتم ارسال الرسالة",false,GUIEditor_Window[1]) 
  
guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
guiLabelSetHorizontalAlign(GUIEditor_Label[5],"center",false) 
  
guiSetVisible(GUIEditor_Window[1], false) 
  
  
  
  
  
function wnd () 
  
        guiSetVisible ( GUIEditor_Window[1], not guiGetVisible ( GUIEditor_Window[1] ) ) 
  
        showCursor ( guiGetVisible ( GUIEditor_Window[1] ) ) 
  
        guiSetInputEnabled( guiGetVisible ( GUIEditor_Window[1] ) ) 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
end 
  
bindKey( "F10", "down", wnd) 
  
  
  
  
  
addEventHandler("onClientGUIClick",getRootElement(), 
  
    function () 
  
  local ggt = guiGetText(GUIEditor_Edit[1]) 
  
  local gtt = guiGetText(GUIEditor_Edit[2]) 
  
     if ( source == GUIEditor_Button[1] ) then 
  
     elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
       elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
   else 
  
        triggerServerEvent("XX",localPlayer,guiGetText(GUIEditor_Edit[1]),guiGetText(GUIEditor_Edit[2])) 
  
        cleanInfos() 
  
    end 
     
end) 
  
  
  
  
function cleanInfos() 
  
    guiSetText(GUIEditor_Edit[1], "") 
  
    guiSetText(GUIEditor_Edit[2], "") 
  
    guiSetText(GUIEditor_Label[5], "لقد ارسلت الرسالة بنجاح ارجع بعد 24 ساعة لكي تحصل على البيت") 
  
    guiLabelSetColor(GUIEditor_Label[5],0,255,0) 
  
end 
  
  
  
  

استبدل الكلنت الي عندك

في هذه

X

هذه الكلنت ماله

انا عدلت له بس

    function () 
  
  local ggt = guiGetText(GUIEditor_Edit[1]) 
  
  local gtt = guiGetText(GUIEditor_Edit[2]) 
  
     if ( source == GUIEditor_Button[1] ) then 
  
     elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  
       elseif ( guiSetText(GUIEditor_Edit[1], "") ) then 
  
    guiSetText(GUIEditor_Label[5], "لم يتم ارسال الرسالة") 
  
        guiLabelSetColor(GUIEditor_Label[5],255,0,0) 
  

Link to comment

قصدي الثلاث امثلة ذي

xmlLoadFile 

xmlNodeSetValue 

xmlCreateChild 

انا على ماظن المشكلة من ملف conf.xml

فجربت ذي الاكواد فيه


او

Says = {} 

او

Says = {""} 

او

Says = {" 
"} 

او

Says = {"" 
} 

او

Says = { 
""} 

او اخيله فاضي او اخلي } و { بدالهم اقواس

هل في من هذولي الخيارات صح او غير؟؟

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