Jump to content

x[ وين المشكلة ]x : playSound


Recommended Posts

سلام عليكم

ابي اسوي لو شخص كتب باف 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

حقللك انا فين المشكلة
 

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 by Ahmed_Negm
Link to comment

أنا أصلا مدري انت ليه مسوي ملف سيرفر

حطهم كلهم بكلنت, وبعدين انت مسوي تريقر لكلنت عشان يرجع يسوي تريقر للسيرفر

طيب سوي التريقر من السيرفر على طول بإستخدام الفنكشن

triggerEvent

Link to comment
3 minutes ago, N3xT said:

أنا أصلا مدري انت ليه مسوي ملف سيرفر

حطهم كلهم بكلنت, وبعدين انت مسوي تريقر لكلنت عشان يرجع يسوي تريقر للسيرفر

طيب سوي التريقر من السيرفر على طول بإستخدام الفنكشن

triggerEvent

عشان ابي اسوي لو الشخص معه داتا معينة ما يظهر له الصوت بس

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...