Jump to content

طلب مود


smokr

Recommended Posts

  
theMarker = createMarker ( x, y, z, "cylinder", 2, 255, 255, 0, 170 ) -------- مكان الماركر x,y,z 
  
door = createObject ( ID, x, y, z ) ----- ايدي الاوبجكت ID والباب الايدي حقه 971 / مكان الباب x,y,z 
  
addEventHandler( "onMarkerHit", theMarker,function(element) ----عند الوقوف على الماركر 
    if getElementType(element) == 'player' then 
        moveObject ( door, time, x, y, z ) ------ وقت المستغرق لتحرك الاوبجكت يعني كم تبيه ياخذ وقت لين يوصل فوق time / المكان اللي راح يطلع له الباب x,y,z 
        end 
end) 
  
addEventHandler( "onMarkerLeave", theMarker,function(element) -------- عند الابتعاد عن الماركر 
    if getElementType(element) == 'player' then 
        moveObject ( door, time, x, y, z ) -------- الوقت المستغرق لوصول البوابة لمكانها الاصلي time / المكان الذي سيرجع اليه الباب وانصح ان يكون نفس احداثيات مكانه الاصلي x,y,z 
       end 
 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...