Pro1KiLLeR Posted July 26, 2016 Share Posted July 26, 2016 السلام عليكم كيف الحال ؟ شباب سويت مود حين يدخل شخص للسيرفر واسم اللاعيب اقل من 4 احرف ياطرد من السيرفر والسبب رجاء غير اسمك اقل من 4 احرف انا ضيفت المود لجروب الادمن و لم يشتغل اا شخص يدخل اسمة اقل من 4 احرف يدخل ولا يصير لة شي ! هذا الكـــود msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " function Yousef ( ) -- we store the player's name local joinedPlayerName = getPlayerName ( source ) local Len = string.len(joinedPlayerName); if ( Len =< 4 ) then kickPlayer( source, tostring(msg) ); end end addEventHandler ( "onPlayerJoin", getRootElement(), Yousef ) Link to comment
TAPL Posted July 26, 2016 Share Posted July 26, 2016 msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " addEventHandler("onPlayerConnect", root, function(pName) if (string.len(pName) =< 4) then cancelEvent(true, msg) end end) ما يحتاج قروب ادمن Link to comment
Ahmed Ly Posted July 26, 2016 Share Posted July 26, 2016 السلام عليكم كيف الحال ؟ شباب سويت مود حين يدخل شخص للسيرفر واسم اللاعيب اقل من 4 احرف ياطرد من السيرفر والسبب رجاء غير اسمك اقل من 4 احرف انا ضيفت المود لجروب الادمن و لم يشتغل اا شخص يدخل اسمة اقل من 4 احرف يدخل ولا يصير لة شي ! هذا الكـــود msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " function Yousef ( ) -- we store the player's name local joinedPlayerName = getPlayerName ( source ) local Len = string.len(joinedPlayerName); if ( Len =< 4 ) then kickPlayer( source, tostring(msg) ); end end addEventHandler ( "onPlayerJoin", getRootElement(), Yousef ) msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " function join ( ) local joinedPlayerName = getPlayerName (source) if ( string.len(joinedPlayerName) <= 4 ) then kickPlayer(source,msg) end end addEventHandler ( "onPlayerJoin",root,join) او جرب هدا msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " addEventHandler("onPlayerConnect", root, function(Name) if string.len(Name) <=4 then cancelEvent(true, msg) end end) Link to comment
!#NssoR_) Posted July 26, 2016 Share Posted July 26, 2016 msg = "رجاء غير اسمك يحب ان يكون اسمك اكبر من 4 احرف " addEventHandler("onPlayerConnect", root, function(pName) if (string.len(pName) =< 4) then cancelEvent(true, msg) end end) ما يحتاج قروب ادمن عندك خطأ بسطر 5 المفروض تخليها زي كذا <= 4 Link to comment
Pro1KiLLeR Posted July 26, 2016 Author Share Posted July 26, 2016 شباب من اسوي الملف اربطة بملف meta يكون نوع الملف server او client ? Link to comment
Ahmed Ly Posted July 26, 2016 Share Posted July 26, 2016 شباب من اسوي الملف اربطة بملف meta يكون نوع الملف server او client ? server 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