Rm-Dj Posted March 6, 2013 Share Posted March 6, 2013 سلالام عليكم بغيت لما واحد يكرر نفس الكلام يقوله لاتكرر او يقوله انتضر 10 ثواني وبعدين يقدر يتكلم وسلامتكم Link to comment
PaiN^ Posted March 6, 2013 Share Posted March 6, 2013 لا تكرر هذي موجودة في اللعبة أصلا أما الثاني ما أعرفله Link to comment
кιηg-αвα∂у Posted March 6, 2013 Share Posted March 6, 2013 "onPlayerChat" setElementData getElementData setTimer outputChatBox Link to comment
Tete omar Posted March 6, 2013 Share Posted March 6, 2013 لا تكرر هذي موجودة في اللعبة أصلا أما الثاني ما أعرفله موجودة بالفري روم بس مو بالام تي اي كله سلالام عليكمبغيت لما واحد يكرر نفس الكلام يقوله لاتكرر او يقوله انتضر 10 ثواني وبعدين يقدر يتكلم وسلامتكم استخدم الحدث onPlayerChat وسوي تايمر كل ما اللاعب يتكلم الا اذا ما انتهت مدة الانتظار وبس .. Link to comment
PaiN^ Posted March 6, 2013 Share Posted March 6, 2013 لا تكرر هذي موجودة في اللعبة أصلا أما الثاني ما أعرفله موجودة بالفري روم بس مو بالام تي اي كله كان قصدي كذا Link to comment
xX|KeMo|Xx Posted March 6, 2013 Share Posted March 6, 2013 سلالام عليكمبغيت لما واحد يكرر نفس الكلام يقوله لاتكرر او يقوله انتضر 10 ثواني وبعدين يقدر يتكلم وسلامتكم اذا تقصد مود جاهز نفس كذا 7 7 حمله من هنا (عربي) https://community.multitheftauto.com/in ... w&pic=5381 (انقليزي) https://community.multitheftauto.com/in ... ils&id=202 Link to comment
Rm-Dj Posted March 6, 2013 Author Share Posted March 6, 2013 "onPlayerChat" setElementData getElementData setTimer outputChatBox ي ليت واحد يعطينا مثال عن اكواد الاخو عبادي Link to comment
Tete omar Posted March 7, 2013 Share Posted March 7, 2013 addEventHandler("onPlayerChat", root, function() if not availability then availability = setTimer( function() availability = nil end, 3000, 1 ) else return outputChatBox("لا يمكنك التحدث لمدة 3 ثواني", source) end end ) Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 اخوي تي تي هذا بس يطلعلي بـ الشات لاتحاول تكرر بس يمديني اسولف يعني انا ابي الاعب لما يرسل يطلعله لايمكنك التكلم + الرساله الي رسلها مابيها تطلع بـ الشات !! Link to comment
Tete omar Posted March 7, 2013 Share Posted March 7, 2013 cancelEvent() استخدم كانسل ايفنت قبل كلمة ريترن وكذلك مع وظيفة الشات edit: معليش نسيت احط لك الشرح + ما يمديني اعدل الكود لاني على الجوال Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 معليش اخوي تيتي كودك لحس مخي مادري كيف جاي + مادري وين احط ذا cancelEvent() Link to comment
iMr.Dawix~# Posted March 7, 2013 Share Posted March 7, 2013 addEventHandler("onPlayerChat", root, function() if not availability then availability = setTimer( function() availability = nil end, 3000, 1 ) else return outputChatBox("لا يمكنك التحدث لمدة 3 ثواني", source) cancelEvent() end end ) او function chat() if not availability then availability = setTimer( function() availability = nil end, 3000, 1 ) else return outputChatBox("لا يمكنك التحدث لمدة 3 ثواني", source) removeEventHandler("onPlayerChat", root, chat) end end addEventHandler("onPlayerChat", root, chat) Link to comment
Tete omar Posted March 7, 2013 Share Posted March 7, 2013 ضاوي مثالك الاول قريب بس وظيفة الشات ووظيفة كانسل ايفنت المفروض يكونو قبل ريترن مو بعدها واذا مللت او ما عرفت امسح ريترن هذي وخلي الكانسل ايفنت والشات بس وراح يشتغل ان شاء الله Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 ياااخي ترا انتو معقدين اوم السالفه ووصلنا صفحتين مع ان الكود مايستاهل بـ النسبه لكم بس انتو مكبرين الموضوع ع شنو مادري -_-" + لحستو مخي ذذ Link to comment
iMr.Dawix~# Posted March 7, 2013 Share Posted March 7, 2013 ضاوي مثالك الاول قريب بس وظيفة الشات ووظيفة كانسل ايفنت المفروض يكونو قبل ريترن مو بعدها واذا مللت او ما عرفت امسح ريترن هذي وخلي الكانسل ايفنت والشات بس وراح يشتغل ان شاء الله يعني كذا؟ function chat() if not availability then availability = setTimer( function() availability = nil end, 3000, 1 ) else outputChatBox("لا يمكنك التحدث لمدة 3 ثواني", source) removeEventHandler("onPlayerChat", root, chat) return end end addEventHandler("onPlayerChat", root, chat) Link to comment
3NAD Posted March 7, 2013 Share Posted March 7, 2013 -- Server side ChatTable = { } addEventHandler ( "onPlayerChat", root, function ( msg, type ) if ChatTable [ source ] then cancelEvent ( ); return outputChatBox ( "لا يمكنك التحدث لمدة 3 ثواني", source, 255, 0, 0, true ); end if type ~= 0 then return end local r, g, b = getPlayerNametagColor ( source ); cancelEvent ( ); outputChatBox ( getPlayerName ( source ).. ": #FFFFFF"..msg, root, r, g, b, true ); unBlockChat_ ( source, true ); setTimer ( unBlockChat_, 3000, 1, source, false ); end ) addEventHandler ( "onPlayerQuit", root, function ( ) if ChatTable [ source ] then unBlockChat_ ( source, nil ); end; end ) unBlockChat_ = function ( player, value ) ChatTable [ player ] = value; end; Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 عناد نفس مشكلةة تيتي يطلع كلام يقول مايمديك تتكلم بس لو اتكلم يطلع الكلام !! Link to comment
3NAD Posted March 7, 2013 Share Posted March 7, 2013 شكلك مشغل مودات فيها مخارج نص مثثل التاج او الفري روم Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 اكييد السيرفر فيه فري روم + تاج ادمن Link to comment
iPrestege Posted March 7, 2013 Share Posted March 7, 2013 لازم تدمجة مع التاج عشان الايفنت والمخارج #, Link to comment
Rm-Dj Posted March 7, 2013 Author Share Posted March 7, 2013 انا ماني فاهم كيف اضيفه لـ التاج وكذا << تم لحس المخ 100 % 100 ذذ Link to comment
iPrestege Posted March 7, 2013 Share Posted March 7, 2013 اطرح تاجك #, ومآودي أدخل بـ الموضوع صاحب الكود يساعدك ذذ يكمل معروفة 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