MR.GRAND Posted January 17, 2016 Posted January 17, 2016 السلام عليكم كيف الحال ي عوال عندي سؤال بسيط أقدر اغير نوع الخط للفنكشن ذا ؟ textCreateTextItem ولو ماقدر وش الطريقة الثانية لآظهار نص في الشاشة لكل الاعبين من لوحة ^ My new GCSS Script : Go حصريا : مود الدردشة بين السيرفرات : الذهاب LUA progress = -100% Join us : Multi Theft Auto Arab I'm not the best but, i'm different Skype : kamel1234128 Someone in this world needs to remember my love .
Abdul KariM Posted January 18, 2016 Posted January 18, 2016 عليكم السلام ماتقدر تغير خط ذا الفنكشن واضحه من ارقمنتات الفنكشن عندك في طريقة انك تسوي ترايقر للسيرفر وبعدها ترايقر للكلينت على حسب الي انت مستخدمه ليبل او دي اكس تكست او بالداتا setElementData getElementData [ Skype : kreee89 - Discord : Abdul_KariM#1326 / طلبات البرمجة ] https://www.paypal.me/AbdulKariMx / اذا حاب تدعمني
</Mr.Tn6eL> Posted January 18, 2016 Posted January 18, 2016 ماتقدر skype : 011101000110111000110110011001010110110000110000001110010011000000111001
MR.GRAND Posted January 18, 2016 Author Posted January 18, 2016 عليكم السلام ماتقدر تغير خط ذا الفنكشن واضحه من ارقمنتات الفنكشن عندك في طريقة انك تسوي ترايقر للسيرفر وبعدها ترايقر للكلينت على حسب الي انت مستخدمه ليبل او دي اكس تكست او بالداتا setElementData getElementData ممكن كل الخطوات لآظهار النص لجميع الاعبين بالكلنت ؟ لان حاولت وسويت ليبل وتريقر من السيرفر سايد والتريقر يسوي لوب لكل الاعبين ويرسل تريقر للكلنت حتى يطلع النص للكل بس ماضبط ؟ يطلع النص بس لي انا ^ My new GCSS Script : Go حصريا : مود الدردشة بين السيرفرات : الذهاب LUA progress = -100% Join us : Multi Theft Auto Arab I'm not the best but, i'm different Skype : kamel1234128 Someone in this world needs to remember my love .
MR.GRAND Posted January 18, 2016 Author Posted January 18, 2016 اطرح اكوادك Client # ROOT = getRootElement() local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow((screenW - 506) / 2, (screenH - 157) / 2, 506, 157, "# Send Text to all #", false) guiWindowSetSizable(wnd, false) guiSetVisible(wnd, false) message_edit = guiCreateEdit(10, 28, 486, 26, "", false, wnd) Send = guiCreateButton(20, 83, 160, 29, "Send", false, wnd) Cancel = guiCreateButton(326, 83, 160, 29, "Cancel #", false, wnd) function open() if (guiGetVisible(wnd) == false) then guiSetVisible(wnd, true) showCursor(true) else guiSetVisible(wnd, false) showCursor(false) end end bindKey("F5", "down", open) addEventHandler('onClientGUIClick', root, function() if (source == Cancel) then guiSetVisible(wnd, false) showCursor(false) elseif (source == Send) then getTXT = guiGetText(message_edit) triggerServerEvent('Draw`',localPlayer, getTXT) end end ) addEvent('showTXT', true) addEventHandler('showTXT', root, function() local Text = guiCreateLabel(189, 533, 943, 71, getElementData( source, "text#"), false) guiSetFont(Text, "default-bold-small") guiLabelSetColor(Text, 254, 254, 254) guiLabelSetHorizontalAlign(Text, "center", false) guiLabelSetVerticalAlign(Text, "center") setTimer( function() guiSetVisible(Text, false) end, 5000, 1) end ) Server # addEvent('Draw`', true) addEventHandler('Draw`', root, function(getTXT) for _, thePlayer in ipairs ( getElementsByType ( "player" ) ) do setElementData( source, "text#", tostring(getTXT) ) triggerClientEvent('showTXT', thePlayer) end end ) My new GCSS Script : Go حصريا : مود الدردشة بين السيرفرات : الذهاب LUA progress = -100% Join us : Multi Theft Auto Arab I'm not the best but, i'm different Skype : kamel1234128 Someone in this world needs to remember my love .
MR.GRAND Posted January 18, 2016 Author Posted January 18, 2016 خلاص شكرا لكم شباب حليت المشكلة وسويته يظهر للكل Thenk you everyone My new GCSS Script : Go حصريا : مود الدردشة بين السيرفرات : الذهاب LUA progress = -100% Join us : Multi Theft Auto Arab I'm not the best but, i'm different Skype : kamel1234128 Someone in this world needs to remember my love .
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