Jump to content

تصحيح كودد


Recommended Posts

السسلام عليكم ورحمةة الله وبركاتهه

اخواني انا حاولت اسوي كود فيه احداثيات ماركر ولمن يدخل اللاعب الماركر ذاا يصير الوقت عند اللاعب نفسهه 4:0 مثلا وتشتغل عندهـ نغممةة اسلحةة

هذا الكود

  
function marker () 
      local theMarker = createMarker ( -2324.98828 + 2, 1838.19922 + 2, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
      local sound = playSound3D("i.wav",true) 
        setTime ( 4, 0 ) 
  
end 
addEventHandler("onClientMarkerHit", getRootElement(), marker) 
  

بس مو شغال

:(

Link to comment

جرب هذا

--Client

      
    function createMarker (thePlayer) 
          local x, y, z = getElementPosition ( thePlayer ) 
          local theMarker = createMarker ( x +2, y +2, z "cylinder", 1000, 255, 255, 0, 170 ) 
          local sound = playSound3D("i.wav",true) 
          setTime ( 4, 0 ) 
      
    end 
    addEventHandler("onClientMarkerHit", getLocalPlayer, createMarker) 

Edited by Guest
Link to comment
جرب هذا

--Client

      
    function createMarker () 
          local theMarker = createMarker ( -2324.98828 + 2, 1838.19922 + 2, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
          local sound = playSound3D("i.wav",true) 
          setTime ( 4, 0 ) 
      
    end 
    addEventHandler("onClientMarkerHit", getLocalPlayer, createMarker) 

خطأ.

Link to comment
جرب هذا

--Client

      
    function createMarker (thePlayer) 
          local x, y, z = getElementPosition ( thePlayer ) 
          local theMarker = createMarker ( x +2, y +2, z  "cylinder", 1000, 255, 255, 0, 170 ) 
          local sound = playSound3D("i.wav",true) 
          setTime ( 4, 0 ) 
      
    end 
    addEventHandler("onClientMarkerHit", getLocalPlayer, createMarker) 

سويتله edit

جربه

Link to comment
جرب هذا
  

--Client

      
    function createMarker (thePlayer) 
          local x, y, z = getElementPosition ( thePlayer ) 
          local theMarker = createMarker ([color=#FF0000] x +2, y +2, z[/color]  "cylinder", 1000, 255, 255, 0, 170 ) 
          local sound = playSound3D("i.wav",true) 
          setTime ( 4, 0 ) 
      
    end 
    addEventHandler("onClientMarkerHit", getLocalPlayer, createMarker) 

سويتله edit

جربه

كذا

  
    function createMarker (thePlayer) 
          local x, y, z = getElementPosition ( thePlayer ) 
          local theMarker = createMarker ( -2324.98828 +2, 1838.19922 +2, 11.14753  "cylinder", 1000, 255, 255, 0, 170 ) 
          local sound = playSound3D("i.wav",true) 
          setTime ( 4, 0 ) 
      
    end 
    addEventHandler("onClientMarkerHit", getLocalPlayer, createMarker) 

؟؟؟

Link to comment
  
createMarker ( -2326, 1839, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
playSound3D ( "i.wav", -2326, 1839, 11.14753, true ) 
       
addEventHandler ( "onClientMarkerHit", getResourceRootElement ( getThisResource ( ) ),  
    function ( ) 
        setTime ( 4, 0 ) 
    end 
) 
  

Link to comment
  
createMarker ( -2326, 1839, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
playSound3D ( "i.wav", -2326, 1839, 11.14753, true ) 
       
addEventHandler ( "onClientMarkerHit", getResourceRootElement ( getThisResource ( ) ),  
    function ( ) 
        setTime ( 4, 0 ) 
    end 
) 
  

يعني ذا الكود يخلي لمن الشخص يدخل الماركر يسمع الصوت طول ماهو في الماركر ؟؟ ولا احداثيات ... انا ابي لمن يدخل اللاعب يجيه الصوت ولمن يطلع يروح الصوت

ولمن يدخل يصير الوقت عنده 4:0

اتمنى اللي فادوني يفهموني =]

Link to comment
شل كود انشاء الماركر من الفنكشن

+

انت ماحطيت احداثيات حقت الصوت

الاعتماد على النفس خير وسيله للنجاح

انا فاهمك اخوي طلعت الماركر من الوظيفهه بس اخوي انا مابي الصوت عند احداثيات محدده ابي من يدخل الماركر ويمشي فيها وهو يسمع الصوت

ويصير الوقت عندهـ هو فقطط 4:0

يعني مو بس عند بدايه الماركر ولا عند احداثي محدد =]

Link to comment
createMarker ( -2326, 1839, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
  
    local sound = playSound("i.wav")  
    setSoundVolume(sound, 0.5) 
       
addEventHandler ( "onClientMarkerHit", getResourceRootElement ( getThisResource ( ) ),  
    function ( ) 
        setTime ( 4, 0 ) 
    end 
) 

???????؟؟؟؟؟

Link to comment
createMarker ( -2326, 1839, 11.14753, "cylinder", 1000, 255, 255, 0, 170 ) 
  
    local sound = playSound("i.wav")  
    setSoundVolume(sound, 0.5) 
       
addEventHandler ( "onClientMarkerHit", getResourceRootElement ( getThisResource ( ) ),  
    function ( ) 
        setTime ( 4, 0 ) 
    end 
) 

???????؟؟؟؟؟

Stop Sound ?

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