Ja[B]er[X]Pro Posted February 29, 2016 Share Posted February 29, 2016 السلام عليكم ورحمة الله وبركاته اين الخطأ بالكود دا ؟؟ local serialConsole = if getPlayerSerial(source,"سيريالك") then aReportForm1 = guiCreateWindow(213, 54, 381, 479, "لوحة الشراء", false) guiWindowSetSizable(aReportForm1, false) guiSetAlpha(aReportForm1, 1.00) label1 = guiCreateLabel(148, 36, 223, 15, "لوحة شراء السيرفر يمكنك شراء فيب + مقر", false, aReportForm1) guiLabelSetColor(label1, 219, 160, 34) memo1 = guiCreateMemo(14, 99, 357, 174, "هذا مثال الرجاء حذف الكلام والكتابة هنا :\n\nنوع البطاقة : ****\n\nرقم البطاقة : **********\n\nالشيئ الذي اريد شرائه : مقر لجروب [DX]\n\n\"\"ويمكن ايضاً\"\"\n\nالشيئ الذي اريد شرائه : فيب لمدة اسبوع", false, aReportForm1) label2 = guiCreateLabel(316, 78, 50, 16, "الرسالة :", false, aReportForm1) guiLabelSetColor(label2, 28, 224, 143) label3 = guiCreateLabel(14, 294, 172, 22, ": يجب ملئ الرسالة بالامور التالية", false, aReportForm1) GUIEditor.label[4] = guiCreateLabel(305, 331, 66, 15, "1-نوع البطاقة", false, aReportForm1) GUIEditor.label[5] = guiCreateLabel(305, 371, 66, 15, "2-رقم البطاقة", false, aReportForm1) GUIEditor.label[6] = guiCreateLabel(242, 411, 129, 15, "3-الشيئ الذي تريد شرائه", false, aReportForm1) aReportAccept1 = guiCreateButton(134, 444, 84, 26, "ارسال", false, aReportForm1) --[[لوحة القبول]]-- GUIEditor.window[1] = guiCreateWindow(209, 52, 381, 480, "لوحة الكونسل للبيع", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.memo[1] = guiCreateMemo(16, 84, 355, 182, "", false, GUIEditor.window[1]) GUIEditor.memo[2] = guiCreateMemo(-2, 243, 200, 46, "", false, GUIEditor.memo[1]) GUIEditor.label[1] = guiCreateLabel(317, 59, 50, 15, "الرسالة :", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(317, 303, 50, 15, "السيريال :", false, GUIEditor.window[1]) GUIEditor.memo[3] = guiCreateMemo(372, 332, 0, 20, "", false, GUIEditor.window[1]) GUIEditor.memo[4] = guiCreateMemo(21, 336, 350, 33, "", false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(316, 384, 50, 15, "الحساب :", false, GUIEditor.window[1]) GUIEditor.memo[5] = guiCreateMemo(21, 418, 350, 33, "", false, GUIEditor.window[1]) addCommandHandler("sellpanel", function() if guiGetVisible(aReportForm1,false) then guiSetVisible(aReportForm1,true) showCursor(true) else guiGetVisible(aReportForm1,true) guiSetVisible(aReportForm1,false) showCursor(false) end end) addEventHandler("onClientGUIClick",root, function() if (source == aReportAccept1) then local message = guiGetText(memo1) local username = getAccountName(localPlayer) local serial = getPlayerSerial(localPlayer) guiSetText(GUIEditor.memo[1],message) guiSetText(GUIEditor.memo[4],serial) guiSetText(GUIEditor.memo[5],username) if (serialConsole) then guiSetVisible(GUIEditor.window[1],true) showCursor(true) end end end) addCommandHandler("adminwindow", function() if (serialConsole) then guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetText(GUIEditor.memo[1],"None") guiSetText(GUIEditor.memo[4],"None") guiSetText(GUIEditor.memo[5],"None") end end) Link to comment
</Mr.Tn6eL> Posted February 29, 2016 Share Posted February 29, 2016 الخطأ هنا local serialConsole = if getPlayerSerial(source,"سيريالك") then Link to comment
iMr.SFA7 Posted February 29, 2016 Share Posted February 29, 2016 سطر 53 سيرفر مع كلنت؟ ( = Link to comment
MoDeR2014 Posted February 29, 2016 Share Posted February 29, 2016 Serial = "سيريالك"; serialConsole = function () if getPlayerSerial(localPlayer) == Serial then return true; end return false; end; aReportForm1 = guiCreateWindow(213, 54, 381, 479, "لوحة الشراء", false) guiWindowSetSizable(aReportForm1, false) guiSetAlpha(aReportForm1, 1.00) label1 = guiCreateLabel(148, 36, 223, 15, "لوحة شراء السيرفر يمكنك شراء فيب + مقر", false, aReportForm1) guiLabelSetColor(label1, 219, 160, 34) memo1 = guiCreateMemo(14, 99, 357, 174, "هذا مثال الرجاء حذف الكلام والكتابة هنا :\n\nنوع البطاقة : ****\n\nرقم البطاقة : **********\n\nالشيئ الذي اريد شرائه : مقر لجروب [DX]\n\n\"\"ويمكن ايضاً\"\"\n\nالشيئ الذي اريد شرائه : فيب لمدة اسبوع", false, aReportForm1) label2 = guiCreateLabel(316, 78, 50, 16, "الرسالة :", false, aReportForm1) guiLabelSetColor(label2, 28, 224, 143) label3 = guiCreateLabel(14, 294, 172, 22, ": يجب ملئ الرسالة بالامور التالية", false, aReportForm1) GUIEditor.label[4] = guiCreateLabel(305, 331, 66, 15, "1-نوع البطاقة", false, aReportForm1) GUIEditor.label[5] = guiCreateLabel(305, 371, 66, 15, "2-رقم البطاقة", false, aReportForm1) GUIEditor.label[6] = guiCreateLabel(242, 411, 129, 15, "3-الشيئ الذي تريد شرائه", false, aReportForm1) aReportAccept1 = guiCreateButton(134, 444, 84, 26, "ارسال", false, aReportForm1) --[[لوحة القبول]]-- GUIEditor.window[1] = guiCreateWindow(209, 52, 381, 480, "لوحة الكونسل للبيع", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.memo[1] = guiCreateMemo(16, 84, 355, 182, "", false, GUIEditor.window[1]) GUIEditor.memo[2] = guiCreateMemo(-2, 243, 200, 46, "", false, GUIEditor.memo[1]) GUIEditor.label[1] = guiCreateLabel(317, 59, 50, 15, "الرسالة :", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(317, 303, 50, 15, "السيريال :", false, GUIEditor.window[1]) GUIEditor.memo[3] = guiCreateMemo(372, 332, 0, 20, "", false, GUIEditor.window[1]) GUIEditor.memo[4] = guiCreateMemo(21, 336, 350, 33, "", false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(316, 384, 50, 15, "الحساب :", false, GUIEditor.window[1]) GUIEditor.memo[5] = guiCreateMemo(21, 418, 350, 33, "", false, GUIEditor.window[1]) addCommandHandler("sellpanel", function() if serialConsole() then guiSetVisible(aReportForm1, not guiGetVisible(aReportForm1)) showCursor(guiGetVisible(aReportForm1)) end end ) addEventHandler("onClientGUIClick", root, function() if source == aReportAccept1 then local message = guiGetText(memo1) local username = getAccountName(localPlayer) local serial = getPlayerSerial(localPlayer) guiSetText(GUIEditor.memo[1],message) guiSetText(GUIEditor.memo[4],serial) guiSetText(GUIEditor.memo[5],username) if serialConsole() then guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end end end ) addCommandHandler("adminwindow", function() if serialConsole() then guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetText(GUIEditor.memo[1],"None") guiSetText(GUIEditor.memo[4],"None") guiSetText(GUIEditor.memo[5],"None") end end ) كودك مليان اخطاء .. صلحته لك وعندك سطر 53 حاط فيه وظيفه Server Side Link to comment
Ja[B]er[X]Pro Posted February 29, 2016 Author Share Posted February 29, 2016 Serial = "سيريالك"; serialConsole = function () if getPlayerSerial(localPlayer) == Serial then return true; end return false; end; aReportForm1 = guiCreateWindow(213, 54, 381, 479, "لوحة الشراء", false) guiWindowSetSizable(aReportForm1, false) guiSetAlpha(aReportForm1, 1.00) label1 = guiCreateLabel(148, 36, 223, 15, "لوحة شراء السيرفر يمكنك شراء فيب + مقر", false, aReportForm1) guiLabelSetColor(label1, 219, 160, 34) memo1 = guiCreateMemo(14, 99, 357, 174, "هذا مثال الرجاء حذف الكلام والكتابة هنا :\n\nنوع البطاقة : ****\n\nرقم البطاقة : **********\n\nالشيئ الذي اريد شرائه : مقر لجروب [DX]\n\n\"\"ويمكن ايضاً\"\"\n\nالشيئ الذي اريد شرائه : فيب لمدة اسبوع", false, aReportForm1) label2 = guiCreateLabel(316, 78, 50, 16, "الرسالة :", false, aReportForm1) guiLabelSetColor(label2, 28, 224, 143) label3 = guiCreateLabel(14, 294, 172, 22, ": يجب ملئ الرسالة بالامور التالية", false, aReportForm1) GUIEditor.label[4] = guiCreateLabel(305, 331, 66, 15, "1-نوع البطاقة", false, aReportForm1) GUIEditor.label[5] = guiCreateLabel(305, 371, 66, 15, "2-رقم البطاقة", false, aReportForm1) GUIEditor.label[6] = guiCreateLabel(242, 411, 129, 15, "3-الشيئ الذي تريد شرائه", false, aReportForm1) aReportAccept1 = guiCreateButton(134, 444, 84, 26, "ارسال", false, aReportForm1) --[[لوحة القبول]]-- GUIEditor.window[1] = guiCreateWindow(209, 52, 381, 480, "لوحة الكونسل للبيع", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.memo[1] = guiCreateMemo(16, 84, 355, 182, "", false, GUIEditor.window[1]) GUIEditor.memo[2] = guiCreateMemo(-2, 243, 200, 46, "", false, GUIEditor.memo[1]) GUIEditor.label[1] = guiCreateLabel(317, 59, 50, 15, "الرسالة :", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(317, 303, 50, 15, "السيريال :", false, GUIEditor.window[1]) GUIEditor.memo[3] = guiCreateMemo(372, 332, 0, 20, "", false, GUIEditor.window[1]) GUIEditor.memo[4] = guiCreateMemo(21, 336, 350, 33, "", false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(316, 384, 50, 15, "الحساب :", false, GUIEditor.window[1]) GUIEditor.memo[5] = guiCreateMemo(21, 418, 350, 33, "", false, GUIEditor.window[1]) addCommandHandler("sellpanel", function() if serialConsole() then guiSetVisible(aReportForm1, not guiGetVisible(aReportForm1)) showCursor(guiGetVisible(aReportForm1)) end end ) addEventHandler("onClientGUIClick", root, function() if source == aReportAccept1 then local message = guiGetText(memo1) local username = getAccountName(localPlayer) local serial = getPlayerSerial(localPlayer) guiSetText(GUIEditor.memo[1],message) guiSetText(GUIEditor.memo[4],serial) guiSetText(GUIEditor.memo[5],username) if serialConsole() then guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end end end ) addCommandHandler("adminwindow", function() if serialConsole() then guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetText(GUIEditor.memo[1],"None") guiSetText(GUIEditor.memo[4],"None") guiSetText(GUIEditor.memo[5],"None") end end ) كودك مليان اخطاء .. صلحته لك وعندك سطر 53 حاط فيه وظيفه Server Side شكراً لك ودا الكود بعد تصحيح خطأ سطر 53 --client Serial = "سيريالك"; serialConsole = function () if getPlayerSerial(localPlayer) == Serial then return true; end return false; end; aReportForm1 = guiCreateWindow(213, 54, 381, 479, "لوحة الشراء", false) guiWindowSetSizable(aReportForm1, false) guiSetAlpha(aReportForm1, 1.00) label1 = guiCreateLabel(148, 36, 223, 15, "لوحة شراء السيرفر يمكنك شراء فيب + مقر", false, aReportForm1) guiLabelSetColor(label1, 219, 160, 34) memo1 = guiCreateMemo(14, 99, 357, 174, "هذا مثال الرجاء حذف الكلام والكتابة هنا :\n\nنوع البطاقة : ****\n\nرقم البطاقة : **********\n\nالشيئ الذي اريد شرائه : مقر لجروب [DX]\n\n\"\"ويمكن ايضاً\"\"\n\nالشيئ الذي اريد شرائه : فيب لمدة اسبوع", false, aReportForm1) label2 = guiCreateLabel(316, 78, 50, 16, "الرسالة :", false, aReportForm1) guiLabelSetColor(label2, 28, 224, 143) label3 = guiCreateLabel(14, 294, 172, 22, ": يجب ملئ الرسالة بالامور التالية", false, aReportForm1) GUIEditor.label[4] = guiCreateLabel(305, 331, 66, 15, "1-نوع البطاقة", false, aReportForm1) GUIEditor.label[5] = guiCreateLabel(305, 371, 66, 15, "2-رقم البطاقة", false, aReportForm1) GUIEditor.label[6] = guiCreateLabel(242, 411, 129, 15, "3-الشيئ الذي تريد شرائه", false, aReportForm1) aReportAccept1 = guiCreateButton(134, 444, 84, 26, "ارسال", false, aReportForm1) --[[لوحة القبول]]-- GUIEditor.window[1] = guiCreateWindow(209, 52, 381, 480, "لوحة الكونسل للبيع", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.memo[1] = guiCreateMemo(16, 84, 355, 182, "", false, GUIEditor.window[1]) GUIEditor.memo[2] = guiCreateMemo(-2, 243, 200, 46, "", false, GUIEditor.memo[1]) GUIEditor.label[1] = guiCreateLabel(317, 59, 50, 15, "الرسالة :", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(317, 303, 50, 15, "السيريال :", false, GUIEditor.window[1]) GUIEditor.memo[3] = guiCreateMemo(372, 332, 0, 20, "", false, GUIEditor.window[1]) GUIEditor.memo[4] = guiCreateMemo(21, 336, 350, 33, "", false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(316, 384, 50, 15, "الحساب :", false, GUIEditor.window[1]) GUIEditor.memo[5] = guiCreateMemo(21, 418, 350, 33, "", false, GUIEditor.window[1]) addCommandHandler("sellpanel", function() if serialConsole() then guiSetVisible(aReportForm1, not guiGetVisible(aReportForm1)) showCursor(guiGetVisible(aReportForm1)) end end ) addEventHandler("onClientGUIClick", root, function() if source == aReportAccept1 then local message = guiGetText(memo1) local serial = getPlayerSerial(localPlayer) triggerServerEvent("username",localPlayer) end end ) addCommandHandler("adminwindow", function() if serialConsole() then guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetText(GUIEditor.memo[1],"None") guiSetText(GUIEditor.memo[4],"None") guiSetText(GUIEditor.memo[5],"None") end end ) addEvent("windowopen",true) addEventHandler("winodwopen",root, function() guiSetText(GUIEditor.memo[1],message) guiSetText(GUIEditor.memo[4],serial) guiSetText(GUIEditor.memo[5],username) if serialConsole() then guiSetVisible(GUIEditor.window[1],true) end end) --server addEvent("username",true) addEventHandler("username",root, function() local username = getAccountName(source) triggerClientEvent("windowopen",source,username) end) Link to comment
YourMind Posted February 29, 2016 Share Posted February 29, 2016 addEvent("windowopen",true) addEventHandler("winodwopen",root غير متطابقتين سطر 72 و 73 كلينت Link to comment
Ja[B]er[X]Pro Posted February 29, 2016 Author Share Posted February 29, 2016 addEvent("windowopen",true) addEventHandler("winodwopen",root غير متطابقتين سطر 72 و 73 كلينت شكراً لك ما انتبهت هل هناك اخطاء غيره؟ Link to comment
YourMind Posted February 29, 2016 Share Posted February 29, 2016 addEvent("windowopen",true) addEventHandler("winodwopen",root غير متطابقتين سطر 72 و 73 كلينت شكراً لك ما انتبهت هل هناك اخطاء غيره؟ انا مش ملاحظ اي اخطاء غير اللي فوق جرب انت بنفسك و لو في خطأ نصلحهولك Link to comment
</Mr.Tn6eL> Posted March 1, 2016 Share Posted March 1, 2016 ما يمديك تجيب سيريال لاعب ثاني في الكلنت غير اللوكال بلاير Link to comment
7up2016 Posted March 1, 2016 Share Posted March 1, 2016 ما يمديك تجيب سيريال لاعب ثاني في الكلنت غير اللوكال بلاير +1 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