Jump to content

طلب


Recommended Posts

السلام عليكم شباب

انا اريد اسوي لما اكتب رابط ب ميمو واضغط موافق

يفتح القرأن او الموسيقى الي في الرابط لجميع اللاعبين واريده لسيريالات معينه

Link to comment
23 hours ago, Ahmed Ly said:

addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
playSound(""..s..".mp3")
end
end
)

 

خدم لاكن توا لكل الموجودين ولا اني بس نبيه لكل الموجودين ب السيرفر

Link to comment
3 minutes ago, mahmod3 said:

خدم لاكن توا لكل الموجودين ولا اني بس نبيه لكل الموجودين ب السيرفر

ليك انت بس

كود هدا يشغل  أغاني لكل الاعبين

-- Client
addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
 if s ~= "" then 
triggerServerEvent("play",localPlayer,s)
end 
 end
end
)


-- Server
addEvent("play",true)
addEventHandler("play",root,
function (s)
m = s
triggerClientEvent("play2",root,m)
end
)

-- Client
addEvent("play2",true)
addEventHandler("play2",root,
function (m)
playSound(""..m..".mp3")
end
)

 

Link to comment
-- Client
addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
 if s ~= "" then 
triggerServerEvent("play",localPlayer,s)
end 
 end
end
)


-- Server
addEvent("play",true)
addEventHandler("play",root,
function (s)
m = s
triggerClientEvent("play2",root,m)
end
)

-- Client
addEvent("play2",true)
addEventHandler("play2",root,
function (m)
if isElement(m) then stopSound(m) end 
sound = playSound(""..m..".mp3")
end 
)

 

Edited by Ahmed Ly
remove sound
Link to comment
23 hours ago, Ahmed Ly said:

-- Client
addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
 if s ~= "" then 
triggerServerEvent("play",localPlayer,s)
end 
 end
end
)


-- Server
addEvent("play",true)
addEventHandler("play",root,
function (s)
m = s
triggerClientEvent("play2",root,m)
end
)

-- Client
addEvent("play2",true)
addEventHandler("play2",root,
function (m)
if isElement(m) then stopSound(m) end 
sound = playSound(""..m..".mp3")
end 
)

 

به ولما نبي نسكر الاغنية على اللاعبين كلهم وخلاص معاش بنفتح اغنيه ؟

Link to comment
23 hours ago, Ahmed Ly said:

stopSound

 

غير اسمع كودك الاول مخدمش راه قاعده

خلاص طلعت هكي 

addEvent("play2",true)
addEventHandler("play2",root,
function (m)
if isElement(sound) then stopSound(sound) end
 sound = playSound(""..m..".mp3")


end
)

 

  • Like 1
Link to comment

اذا تبيه لكل الموجودين بطريقه سهله

بس ما جربتها

addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
      for k,v in ipairs(getElementsByType('player'))do
        if v then
playSound(""..s..".mp3")
          end
        end
end
end
)

 

Link to comment
Just now, Master_MTA said:

اذا تبيه لكل الموجودين بطريقه سهله

بس ما جربتها


addEventHandler("onClientGUIClick",root,
function ()
if source == btn then
 s = guiGetText(edit)
      for k,v in ipairs(getElementsByType('player'))do
        if v then
playSound(""..s..".mp3")
          end
        end
end
end
)

 

 

لا اخوي , انت بكذا تكرر تشغيل الصوت علي عدد اللاعبين الموجودين بالسيرفر ومع ذلك محد بيسمع الصوت غيرك

:santa:

  • Like 1
Link to comment
19 hours ago, !#NssoR_) said:

 

لا اخوي , انت بكذا تكرر تشغيل الصوت علي عدد اللاعبين الموجودين بالسيرفر ومع ذلك محد بيسمع الصوت غيرك

:santa:

اها انا فقط ما جربتها يعطيك العافيه على التنبيه +_+

  • Like 1
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...