Mr.Mostafa Posted June 1, 2018 Share Posted June 1, 2018 سلام عليكم ابي اسوي لو شخص كتب باف 8 aa1 true يشتغل صوت - لكن لو الشخص دا عنده داتا الصوت ما يشتغل - وعشان يحط الداتا ترو يكتب باف 8 كلمة لكن المشكلة لما اكتب الكلمة واجرب اشغل الصوت - الصوت يشتغل عادي فا وش المشكلة هنا بالكود ! سيرفر : addCommandHandler ( "aa1" , function () triggerClientEvent(root,'soundmsg2',root) end) addEvent("checkmsg",true) addEventHandler("checkmsg",root, function () local data = getElementData( source, 'oooo222' ) if ( data == 'true' ) then return end triggerClientEvent(root,'soundmsg22',root) end ) addCommandHandler ( "aa" , function () setElementData( source, 'oooo222', 'true' ) outputChatBox("لقد تم الغاء الصوت", root,math.random(0,255),math.random(0,255),math.random(0,255), true) end ) كلنت : addEvent('soundmsg2',true) addEventHandler('soundmsg2',root,function() triggerServerEvent('checkmsg', localPlayer) end) addEvent('soundmsg22',true) addEventHandler('soundmsg22',root,function() playSound("chat.mp3",false) end) Link to comment
Ahmed_Negm Posted June 1, 2018 Share Posted June 1, 2018 (edited) حقللك انا فين المشكلة addCommandHandler ( "aa" , function () setElementData( source, 'oooo222', 'true' ) -- هنا تعريف الاعب خطأ outputChatBox("لقد تم الغاء الصوت", root,math.random(0,255),math.random(0,255),math.random(0,255), true) end ) -- تصحيح addCommandHandler ( "aa" , function (plr) setElementData( plr, 'oooo222', 'true' ) outputChatBox("لقد تم الغاء الصوت", plr,math.random(0,255),math.random(0,255),math.random(0,255), true) -- وهنا شلنا روت وحطينا تعريف الاعب علشان الرسالة تترسل للاعب فقط مب كل الاعبين end ) Edited June 1, 2018 by Ahmed_Negm Link to comment
N3xT Posted June 2, 2018 Share Posted June 2, 2018 أنا أصلا مدري انت ليه مسوي ملف سيرفر حطهم كلهم بكلنت, وبعدين انت مسوي تريقر لكلنت عشان يرجع يسوي تريقر للسيرفر طيب سوي التريقر من السيرفر على طول بإستخدام الفنكشن triggerEvent Link to comment
Mr.Mostafa Posted June 2, 2018 Author Share Posted June 2, 2018 3 minutes ago, N3xT said: أنا أصلا مدري انت ليه مسوي ملف سيرفر حطهم كلهم بكلنت, وبعدين انت مسوي تريقر لكلنت عشان يرجع يسوي تريقر للسيرفر طيب سوي التريقر من السيرفر على طول بإستخدام الفنكشن triggerEvent عشان ابي اسوي لو الشخص معه داتا معينة ما يظهر له الصوت بس 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