momar5600 Posted June 7, 2016 Share Posted June 7, 2016 سلام عليكم ورحمة الله وبركاتة كل عام وانتم بخير ابي كود قفل شات يعني كلمة تكتبها في اف 8 يقفل شات ولما تيجي تكتب بالشات يطلع له تم قفل شات ونفس كلمة تكتبها مره اخر تفتح شات فهتم علي Link to comment
taha201100 Posted June 7, 2016 Share Posted June 7, 2016 تبي توقفها يعني الاعبين ما يقدرون يكتبون؟؟ ولا تقصد تخفي الشات عندك؟ Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 الاعبين مايقدرون يكتبون Link to comment
taha201100 Posted June 7, 2016 Share Posted June 7, 2016 اتوقع تحتاج onPlayerChat cancelEvent ما قد سويتها لكن اتوقع ذول يلي تحتاجه Link to comment
Me[Z]oO Posted June 7, 2016 Share Posted June 7, 2016 addEventHandler("onPlayerChat",root, function() outputChatBox("الشات مقفول الان يرجي الانتظار",source) cancelEvent() end) Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 addEventHandler("onPlayerChat",root, function() outputChatBox("الشات مقفول الان يرجي الانتظار",source) cancelEvent() end) وين كلمة يلي اضغط علية علشان تقفل شات Link to comment
Me[Z]oO Posted June 7, 2016 Share Posted June 7, 2016 اها انت تبي لما يضغط علي زر يقفل الشات ولما يضغط علي زر اخر يفتح الشات صح ؟ Link to comment
Ja[B]er[X]Pro Posted June 7, 2016 Share Posted June 7, 2016 addEventHandler("onCleintGUIClick",root,function() if (source == button) then setElementData(root,"chatlock",true) end end) addEventHandler("onClientPlayerChat",root,function() if getElementData(root,"localChat") == "true" then cancelEvent() outputChatBox("الشات مقفل ",localPlayer,255,0,0) end end) Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 addEventHandler("onCleintGUIClick",root,function() if (source == button) then setElementData(root,"chatlock",true) end end) addEventHandler("onClientPlayerChat",root,function() if getElementData(root,"localChat") == "true" then cancelEvent() outputChatBox("الشات مقفل ",localPlayer,255,0,0) end end) ايوه ابيها كذا تحت تجربة شكرا لك بس انا ابي كلمة تكتبها باف 8 يلا بسوية بلوحة Link to comment
iMr.SFA7 Posted June 7, 2016 Share Posted June 7, 2016 addEventHandler("onCleintGUIClick",root,function() if (source == button) then setElementData(root,"chatlock",true) end end) addEventHandler("onClientPlayerChat",root,function() if getElementData(root,"localChat") == "true" then cancelEvent() outputChatBox("الشات مقفل ",localPlayer,255,0,0) end end) 'onClientPlayerChat' مافي حدث اسمه مافيها أرقمنت لاعب بالكلنت outputChatBox والوظيفـة خطأ 'onCleintGUIClick' وأنت كاتب الايفينت وتحقق من اسم الداتا Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 ايش ده كله خطا طيب عطوني فتكشنات علي الاقل احاول اسوية انا مشكلة انا انا اتكلم بالجوال اللاب بالبيت Link to comment
Adham Posted June 7, 2016 Share Posted June 7, 2016 addCommandHandler setElementData setElementData addEventHandler + "onPlayerChat" getElementData cancelEvent() outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 طيب انا عدلت يلي فوق تشتغل كذا addEventHandler("onClientGUIClick",root,function() if (source == button) then setElementData(root,"chatlock",true) end end) addEventHandler("onPlayerChat",root,function() if getElementData(root,"localChat") == "true" then cancelEvent() outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) end end) Link to comment
Adham Posted June 7, 2016 Share Posted June 7, 2016 addEventHandler("onClientGUIClick", root, function() if source == GUIEditor.button[1] then triggerServerEvent("Chat", localPlayer, "Open") elseif source == GUIEditor.button[2] then triggerServerEvent("Chat", localPlayer, "Close") end end) addEvent("Chat", true) addEventHandler("Chat", root, function(Event) if Event == "Open" then for index, value in ipairs(getElementsByType("player")) do setElementData(value, "ChatStat", "Lock") end elseif Event == "Close" then for index, value in ipairs(getElementsByType("player")) do setElementData(value, "ChatStat", "Open") end end end) addEventHandler("onPlayerChat", root, function() if getElementData(source, "ChatStat") == "Lock" then cancelEvent() outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) else end end ) اعمل 2 زر فتح وقفل - Link to comment
Me[Z]oO Posted June 7, 2016 Share Posted June 7, 2016 (edited) Deleted Edited June 7, 2016 by Guest Link to comment
Me[Z]oO Posted June 7, 2016 Share Posted June 7, 2016 بطل نسخ ولصق احذف تعليقك قال يبيه ب امر -___- Link to comment
iMr.SFA7 Posted June 7, 2016 Share Posted June 7, 2016 @Ma[Z]en: اعتبر أن لاعب دخل للسيرفر أكيد الداتا ما راح تكون موجودة وعليه ويقدر يكتب بالشات فالأفضل تحط الداتا ع السكربت Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 بس سوال لو انا لو سويتها كذا تشتغل كلنت addEventHandler("onClientGUIClick",root,function() if (source == button) then triggerServerEvent("Chat", localPlayer, "Open") end end) سيرفر addEvent("Chat", true) addEventHandler("Chat", root, function(Event) if Event == "Open" then setElementData(root,"chatlock",true) end end)) addEventHandler("onPlayerChat",root,function() if getElementData(root,"localChat") == "true" then cancelEvent() outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) end end) تشتغل Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 ايه طبعا انا بطل بالنسخ والصق شوف ده نسخ ولصق نسخ والصق Link to comment
Adham Posted June 7, 2016 Share Posted June 7, 2016 بطل نسخ ولصق احذف تعليقك قال يبيه ب امر -___- وش النسخ ولص؟؟؟؟؟؟ انت شكلك ما تفهم شوف كودك وشوف كودي شوف كودي قبلك Link to comment
Me[Z]oO Posted June 7, 2016 Share Posted June 7, 2016 --Created By Me[Z]oO addCommandHandler("ChatState", function(p,c,s) local players = getElementsByType ( "player" ) setElementData(getResourceRootElement(getThisResource()),"ChatSystem",tostring(s)) if s == "False" then outputChatBox("تم اغلاق الشات من قبل الكونسل "..getPlayerName(p).."",root,0,255,0) else outputChatBox("تم فتح الشات من قبل الكونسل "..getPlayerName(p).."",root,0,255,0) end end) addEventHandler("onPlayerChat",root, function() if getElementData(getResourceRootElement(getThisResource()),"ChatSystem") == "False" then outputChatBox("لقد قام الكونسول بقفل الشات الان يرجي الانتظار حتي يقوم بفتحه",source,255,0,0) cancelEvent() else return end end) اكتب باف 8 ChatState False رح ينقفل كذا ChatState True رح يفتح الشات اتمني اكون افدتك Link to comment
momar5600 Posted June 7, 2016 Author Share Posted June 7, 2016 @Ma[Z]en: اعتبر أن لاعب دخل للسيرفر أكيد الداتا ما راح تكون موجودة وعليه ويقدر يكتب بالشات فالأفضل تحط الداتا ع السكربت كيف اسويها 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