Jump to content

طلب فنكشات


Recommended Posts

الكود كلينت و الكلينت يشتغل عند كل اللاعبين

playSound 

متى يشتغل الكود شي راجع لك

إذا كنت مسوي تريقر من السيرفر إلى الكلينت سو تريقر لكل اللاعبين

Link to comment
الكود كلينت و الكلينت يشتغل عند كل اللاعبين
playSound 

متى يشتغل الكود شي راجع لك

إذا كنت مسوي تريقر من السيرفر إلى الكلينت سو تريقر لكل اللاعبين

+

triggerClientEvent( getRootElement(), "eventName", getRootElement() ) 
  

كذا يصير صح !

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

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

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...