Schnitzeldroid Posted February 24, 2018 Share Posted February 24, 2018 مرحبا جميعاً أما بعد. قبل عددة أيام كنت ألعب في لعبة سامب ودخلت سيرفر رولي بلاي أي بلعربي خادم لعب أدوار فكان لعب جميل ورأئع وهاذا سيرفر يدعى " LS-RP ". فأعجبني طريقة لعبهم ألى أخرة فقد رأيت شات الخاص بهم الذي يوجد على شاشة بلأعلى. بلجانب الأيسر فكان مختلف جداً MTA هذة صورة توضح كلامي: فيوجد سيرفر روسي في ”أم تي أي" مطبق هذا شيء ولبعض الأخر من الخوادم. لذلك سؤالي كيف أقوم بوضع شات مشابة لهاذا شيء؟ - معلومة فقط هاذا شات دأئماً مايكون مناسب في خوادم لعب الأدوار (رولي بلاي) وشكرا. Link to comment
Schnitzeldroid Posted March 1, 2018 Author Share Posted March 1, 2018 هل هناك أي رد وشكرا. Link to comment
MR.StoRm Posted March 2, 2018 Share Posted March 2, 2018 13 hours ago, Schnitzeldroid said: هل هناك أي رد وشكرا. أعتقد انك تتكلم اللغة الانجليزية , صحيح؟ Link to comment
Schnitzeldroid Posted March 11, 2018 Author Share Posted March 11, 2018 نعم أتحدث لغة الانجليزية @MR.StoRm Link to comment
Guest Posted March 15, 2018 Share Posted March 15, 2018 أنت تستخدم مترجم قوقل أليس كذلك ؟ على ما يبدو،أنك دخلت خادم ممتاز وتريد تغيير الشات،إذهب الى "إعدادات"ومن ثم "الواجهة"و تستطيع أيضاً أن تغيير الشات بنفسك، أو يوجد نسخات من الشات الذي قدمتها "أم تي أيه"لـ شات مختلف ورائع ! Link to comment
#Major . Posted March 16, 2018 Share Posted March 16, 2018 On 3/15/2018 at 20:39, #!MnT7r,_.<3 said: أنت تستخدم مترجم قوقل أليس كذلك ؟ على ما يبدو،أنك دخلت خادم ممتاز وتريد تغيير الشات،إذهب الى "إعدادات"ومن ثم "الواجهة"و تستطيع أيضاً أن تغيير الشات بنفسك، أو يوجد نسخات من الشات الذي قدمتها "أم تي أيه"لـ شات مختلف ورائع ! هو يقصد شلون يخلي الشات حق سيرفر زي ذا <> Link to comment
Guest Posted March 17, 2018 Share Posted March 17, 2018 On ١٦/٣/٢٠١٨ at 20:22, *RayaN-Alharbi. said: هو يقصد شلون يخلي الشات حق سيرفر زي ذا <> يب , يقدر يغير شكل الخط ويسويهـ زي الي يبيه ^,^ Link to comment
SycroX Posted March 18, 2018 Share Posted March 18, 2018 9 hours ago, #!MnT7r,_.<3 said: يب , يقدر يغير شكل الخط ويسويهـ زي الي يبيه ^,^ يباه لكل اللاعبين لصاحب الموضوع هيك هتضطر تسوي شات كامل جديد و طبعا لازم تكون تعرف للجداول و الدي اكس Link to comment
Master_MTA Posted March 19, 2018 Share Posted March 19, 2018 (edited) On 3/2/2018 at 02:56, Schnitzeldroid said: هل هناك أي رد وشكرا. hey dude you just need to apply this function showChat()---with false as argument 2 and source player as argument 1 so it will be like that but in server side there is no definition for player so it should be in events like "onPlayerJoin" so you have tow options the firs one is use this function in server side with event "onPlayerJoin" like this addEventHandler('onPlayerJoin',root,function() showChat(source,false) end) or the second one is using it in client side without player argument and put it in any place in client file like this: showChat(false) this is the firs step to change the chat to another one after that you should create table in client side and using "onPlayerChat" event & trigger from server side to client side to insert text into the table which it is placed in the client side because it should be shown to all players so it will be something like this warning this is an example not the full script that you want it!! ------server side addEventHandler('onPlayerChat',root,function(msg,ty) if ty==0 then local name=getPlayerName(source) local fixedmsg=name.." : "..msg triggerClientEvent(root,'addmsg',root,fixedmsg) end cancelEvent() -- don't output it end ) ----------------client side local text={} local maxlines=10---the number of the massege that will be shown local dist=15--distance betwen 2 messages must be bigger that 4 local colorcode=true ---color coded addEvent('addmsg',true) addEventHandler('addmsg',root, function (tx) if #text>maxlines then table.remove(text,1) end table.insert(text,tx) end ) local sx, sy = guiGetScreenSize ( ) addEventHandler('onClientRender',root,function() if #text~=0 then for i=1,#text do dxDrawText ( text[i],0, i*dist, sx, dist-2, tocolor ( 255, 255, 255, 255 ), 1.2, "pricedown",false,false,true ,colorcode) end end end) Edited March 19, 2018 by Master_MTA 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