iPrestege Posted June 8, 2013 Share Posted June 8, 2013 'onPlayerChat' -- Event cancelEvent getPlayerTeam getTeamName outputChatBox Link to comment
AhmeD~9MoD Posted June 8, 2013 Share Posted June 8, 2013 يا برنس , احين سويت 4 او 5 مواضيع ورا بعض , اعتقد هذي مخالفة , سو كل طلباتك في موضوع وواحد , , Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 احس يتعبنا ع الفاضي , 99% ما راح يسويه,, Link to comment
iPrestege Posted June 8, 2013 Author Share Posted June 8, 2013 احس يتعبنا ع الفاضي , 99% ما راح يسويه,, لاتحط شيء بذمتك Link to comment
AhmeD~9MoD Posted June 8, 2013 Share Posted June 8, 2013 (edited) لم تتم التجربة addEventHandler("onPlayerChat", root, chatbox) function chatbox( text, type) local PlayerTeam = getPlayerTeam ( source ) if PlayerTeam then cancelEvent() outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) .. text) الإستبدال : TeamTag = التاق إلي تبيه Edited June 8, 2013 by Guest Link to comment
iPrestege Posted June 8, 2013 Author Share Posted June 8, 2013 (edited) لم تتم التجربة addEventHandler("onPlayerChat", root, chatbox) function chatbox( text, type) local PlayerTeam = getPlayerTeam ( source ) if PlayerTeam then cancelEvent() outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) .. text) الإستبدال : TeamTag = التاق إلي تبيه addEventHandler('onPlayerChat',root, function ( text,type ) local PlayerTeam = getPlayerTeam ( source ) if ( PlayerTeam and type == 0 ) then local r,g,b = getTeamColor ( PlayerTeam ) cancelEvent ( ) outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) end end ) Edited June 8, 2013 by Guest Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 ^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم, واتوقع الخطأ بيكون من اللون حق التيم r,g,b Link to comment
AhmeD~9MoD Posted June 8, 2013 Share Posted June 8, 2013 لم تتم التجربة addEventHandler("onPlayerChat", root, chatbox) function chatbox( text, type) local PlayerTeam = getPlayerTeam ( source ) if PlayerTeam then cancelEvent() outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) .. text) الإستبدال : TeamTag = التاق إلي تبيه addEventHandler('onPlayerChat',root, function ( text,type ) local PlayerTeam = getPlayerTeam ( source ) local r,g,b = getTeamColor ( PlayerTeam ) if ( PlayerTeam and type == 0 ) then cancelEvent ( ) outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) end end ) outputServerLog Server Side !!! هههههه مانتبهت له Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 لول ؟ متأكد؟ لازم تكون ضايف نفسك بالتيم, Link to comment
iPrestege Posted June 8, 2013 Author Share Posted June 8, 2013 ماضبط ؟ كيف debugscript 3 ومتأكد انك بتيم ؟ Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 ماضبط ؟ كيف debugscript 3 ومتأكد انك بتيم ؟ ^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,واتوقع الخطأ بيكون من اللون حق التيم r,g,b + البرنس خل الكود كذآ احسن , addEventHandler("onPlayerChat", root, function (text,type) Team = getPlayerTeam(source) if ( Team and type == 0) then cancelEvent() outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) end end ) Link to comment
iPrestege Posted June 8, 2013 Author Share Posted June 8, 2013 ماضبط ؟ كيف debugscript 3 ومتأكد انك بتيم ؟ ^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,واتوقع الخطأ بيكون من اللون حق التيم r,g,b + البرنس خل الكود كذآ احسن , addEventHandler("onPlayerChat", root, function (text,type) Team = getPlayerTeam(source) if ( Team and type == 0) then cancelEvent() outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) end end ) عارف عدلتة .. من قبل تقول المفروض بعد ما اتحقق اجيبة ذذ Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 للفائده , اذا تبيه لتيم محدد , addEventHandler("onPlayerChat", root, function (text,type) local Team = getPlayerTeam(source) if ( Team ) then if Team == getTeamFromName("TeamName") then if ( Team and type == 0) then cancelEvent() outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) end end end end ) بدل سطر 5 , TeamName = اسم التيم, Link to comment
K1NG Posted June 8, 2013 Share Posted June 8, 2013 ماضبط ؟ كيف debugscript 3 ومتأكد انك بتيم ؟ ^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,واتوقع الخطأ بيكون من اللون حق التيم r,g,b + البرنس خل الكود كذآ احسن , addEventHandler("onPlayerChat", root, function (text,type) Team = getPlayerTeam(source) if ( Team and type == 0) then cancelEvent() outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) end end ) هو يبي اسم التيم يجي بالشات -_-" ؟ وش إستفاد كذا ؟ -- Server Side # addEventHandler ( "onPlayerChat", root, function ( msg ) if ( getPlayerTeam ( source ) ) then cancelEvent ( ) local r, g, b = getTeamColor ( getPlayerTeam ( source ) ) outputChatBox ( "[ " .. getTeamName ( getPlayerTeam ( source ) ) .. " ] " .. getPlayerName ( source ) .. ": #FFFFFF" .. msg, root, r, g, b, true ) end end ) Link to comment
فاّرس Posted June 8, 2013 Share Posted June 8, 2013 ^ مو صعب يعدلها خصوصا ان برستيج عطآهـ, Link to comment
iMr.Dawix~# Posted June 8, 2013 Share Posted June 8, 2013 لم تتم التجربة addEventHandler("onPlayerChat", root, chatbox) function chatbox( text, type) local PlayerTeam = getPlayerTeam ( source ) if PlayerTeam then cancelEvent() outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) .. text) الإستبدال : TeamTag = التاق إلي تبيه addEventHandler('onPlayerChat',root, function ( text,type ) local PlayerTeam = getPlayerTeam ( source ) local r,g,b = getTeamColor ( PlayerTeam ) if ( PlayerTeam and type == 0 ) then cancelEvent ( ) outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) end end ) outputServerLog Server Side !!! هههههه مانتبهت له وليه يعني كودك مهو سيرفر؟ Link to comment
Quited Posted June 9, 2013 Share Posted June 9, 2013 نصيحة ي برنس لا تحاول تسوي موضوع ويعطونك اكواد وانت ماتعرف تبرمجها او تعطيه احد يبرمجه لك لات المنتدى ذا يعطيك الاكواد وانت تسويها ، مو يعطيك اكواد جاهزه )الا اذا كانت مطروحه بموضوع اخر( انا اقولكم ما اعرف ابرمج لغة lua , وطلباتي قليلة بالمنتدى واسف على الشطحه بالموضوع مدري ليه احس الرد ماله داعي ض1 Link to comment
|Mr|-Talal07-| Posted June 9, 2013 Share Posted June 9, 2013 نصيحة ي برنسلا تحاول تسوي موضوع ويعطونك اكواد وانت ماتعرف تبرمجها او تعطيه احد يبرمجه لك لات المنتدى ذا يعطيك الاكواد وانت تسويها ، مو يعطيك اكواد جاهزه )الا اذا كانت مطروحه بموضوع اخر( انا اقولكم ما اعرف ابرمج لغة lua , وطلباتي قليلة بالمنتدى واسف على الشطحه بالموضوع مدري ليه احس الرد ماله داعي ض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