Mr.English Posted July 25, 2015 Share Posted July 25, 2015 السلام عليكم ورحمة الله وبركاته ابي مود اذا احد سب يجيه بالشات تذكر قوله تعالى : مايلفظ من قول الا لديه رقيب عتيد + ماابيه يمسح شات لكن ابيه يمسح الكلمة واذا نشر كمان وانا حاولت اسويه لكن المشكلة فنشكات مابعرفها وشكرا جزيلأ Link to comment
Simple. Posted July 25, 2015 Share Posted July 25, 2015 onPlayerChat string.find cancelEvent outputChatBox سو جدول للكلمات الممنوعه Link to comment
Mr.English Posted July 25, 2015 Author Share Posted July 25, 2015 كفووو فكيت الازمة ذي الاكواد اللي احتاجها Link to comment
Mr.English Posted July 25, 2015 Author Share Posted July 25, 2015 طيب ممكن مثال لـ string.find Link to comment
Simple. Posted July 25, 2015 Share Posted July 25, 2015 خل اللوب يولي مادري شدخله شطحتخذ الكود من جانب سيرفر Words = { ["حيوان"] = true, -- << تقدر تضيف كلام زياده تسوي نفس الشيء } addEventHandler ( "onPlayerChat", root, function ( msg ) local word = msg if ( Words[word] ) then cancelEvent ( ) outputChatBox ( "* تم صكك ميوت لكلامكـ السيء", source, 255, 0, 0, true ) setPlayerMuted ( source, true ) setTimer ( function ( ) setPlayerMuted ( source, false ) outputChatBox ( "#00FF00* تم فك الميوت والرجاء عدم تكرار الكلام السيء", source , 255, 255, 255, true ) end, 30000, 10, true ) -- هنا حط وقت الميوت الي تبيه end end ) Link to comment
; Mr.T76eM # Posted July 25, 2015 Share Posted July 25, 2015 -- string.find مثال على notallowedWords= {"*","*" } addEventHandler("onPlayerChat", root, function ( msg ) for _,v in ipairs (notallowedWords) do if string.find(msg,v) -- [[ your code ]] end end end ) 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