Mr.king Posted February 28, 2013 Author Share Posted February 28, 2013 حتا كلنت ماله دخل بالهرجة Link to comment
#Al-Ha[J]aRii Posted February 28, 2013 Share Posted February 28, 2013 وكمان ابيكم تعدلون ذا الكود يعني لو كان الفرغين مافيهم شيء مايسير شيء لو كانو معبين يشتغل التريقر بس المشكلة لو ضغط الزر مايسير شيء وينحذف رقم البطاقة ليش؟ 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) انت ماقلة تبي تعديل للكود هذه عدلته انا لك او هو موجود في الكلنت Link to comment
iMr.Dawix~# Posted February 28, 2013 Share Posted February 28, 2013 حتا كلنت ماله دخل بالهرجة ركب المود بدون ضغط Link to comment
iMr.Dawix~# Posted February 28, 2013 Share Posted February 28, 2013 حتا كلنت ماله دخل بالهرجة ركب المود بدون ضغط Link to comment
Mr.king Posted February 28, 2013 Author Share Posted February 28, 2013 حتا كلنت ماله دخل بالهرجة ركب المود بدون ضغط برضه ماجات ولا معلومة وانا خيلته في مجلد وليس في مجلد مضغوط بس ماجا شيء Link to comment
#Al-Ha[J]aRii Posted February 28, 2013 Share Posted February 28, 2013 حتا كلنت ماله دخل بالهرجة ركب المود بدون ضغط برضه ماجات ولا معلومة وانا خيلته في مجلد وليس في مجلد مضغوط بس ماجا شيء المفروض يشتغلل السيرفر صح Link to comment
PaiN^ Posted February 28, 2013 Share Posted February 28, 2013 جرب 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
Mr.king Posted February 28, 2013 Author Share Posted February 28, 2013 شباب تكفى حد يدور حل Link to comment
#Al-Ha[J]aRii Posted February 28, 2013 Share Posted February 28, 2013 جرب 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
Mr.king Posted February 28, 2013 Author Share Posted February 28, 2013 طيب يليت حد يعطيني مود فيه الكودين xmlLoadFile xmlNodeSetValue Link to comment
Mr.king Posted February 28, 2013 Author Share Posted February 28, 2013 قصدي الثلاث امثلة ذي xmlLoadFile xmlNodeSetValue xmlCreateChild انا على ماظن المشكلة من ملف conf.xml فجربت ذي الاكواد فيه او Says = {} او Says = {""} او Says = {" "} او Says = {"" } او Says = { ""} او اخيله فاضي او اخلي } و { بدالهم اقواس هل في من هذولي الخيارات صح او غير؟؟ Link to comment
Mr.king Posted March 1, 2013 Author Share Posted March 1, 2013 خذو المود وحملوه وحلو المشكلة وحطوه على نفس المود باصدار جديد المود https://community.multitheftauto.com/index.php?p=resources&s=details&id=6585 Link to comment
TD[M]ER Posted March 1, 2013 Share Posted March 1, 2013 خذو المود وحملوه وحلو المشكلة وحطوه على نفس المود باصدار جديدالمود https://community.multitheftauto.com/index.php?p=resources&s=details&id=6585 رفعته على الـ community عشان تحل المشكلة ارفعه mediafire او اي مكان ثاني , =\ Link to comment
yazan Posted March 1, 2013 Share Posted March 1, 2013 عندك مشكله في ملف سيرفر xmlNodeSetValue(xmlCreateChild(file, "Says"), "Name Player : "..getPlayerAccount(source).." **** "..ggt.." ***** "..gtt.."")[/lua] Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now