zyaad141 Posted October 9, 2014 Share Posted October 9, 2014 سلام عليكم ابي فنكشات الي يسوي Playsound للكل Link to comment
TAPL Posted October 9, 2014 Share Posted October 9, 2014 الكود كلينت و الكلينت يشتغل عند كل اللاعبين playSound متى يشتغل الكود شي راجع لك إذا كنت مسوي تريقر من السيرفر إلى الكلينت سو تريقر لكل اللاعبين Link to comment
nxFairlywell Posted October 9, 2014 Share Posted October 9, 2014 الكود كلينت و الكلينت يشتغل عند كل اللاعبين playSound متى يشتغل الكود شي راجع لك إذا كنت مسوي تريقر من السيرفر إلى الكلينت سو تريقر لكل اللاعبين + triggerClientEvent( getRootElement(), "eventName", getRootElement() ) كذا يصير صح ! Link to comment
zyaad141 Posted October 10, 2014 Author Share Posted October 10, 2014 طيب انا بسويه اذا ضغط زر وش بيسوي بالسيرفر Link to comment
TAPL Posted October 10, 2014 Share Posted October 10, 2014 سو تريقر من الكلينت إلى السيرفر ثم تريقر من السيرفر إلى الكلينت لكل اللاعبين Link to comment
zyaad141 Posted October 10, 2014 Author Share Posted October 10, 2014 addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateWindow(425, 297, 421, 298, "", false) guiWindowSetSizable(wnd, false) btn = guiCreateButton(118, 55, 185, 145, "TexT", false, wnd) guiSetProperty(btn, "NormalTextColour", "FFAAAAAA") end ) addEventHandler('onClientGUIClick', root, function ( ) if source == btn then sound = playSound3D("..") attachElements(sound,player) triggerServereEvent("send",sound) end) Client^-- addEvent ( "send", true ) addEventHandler ( "send" , function (sound) triggerClientEvent( getRootElement(), "eventName", getRootElement() ) --حق جنرال end) server^ والله انلحس مخي Link to comment
</Mr.Tn6eL> Posted October 10, 2014 Share Posted October 10, 2014 Client addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateWindow(425, 297, 421, 298, "", false) guiWindowSetSizable(wnd, false) btn = guiCreateButton(118, 55, 185, 145, "TexT", false, wnd) guiSetProperty(btn, "NormalTextColour", "FFAAAAAA") end ) addEventHandler('onClientGUIClick', root, function ( ) if source == btn then triggerServerEvent("send",localPlayer) end end) addEvent ("eventName", true ) addEventHandler ("eventName" , function ( ) sound = playSound3D("1.mp3", x, y, z, true) -- الاحداثيات attachElements(sound,localPlayer) end) Server addEvent ( "send", true ) addEventHandler ( "send" , function ( ) triggerClientEvent( getRootElement(), "eventName", getRootElement() ) --حق جنرال end) 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