Jump to content

طلب كود


AL-SAYED

Recommended Posts

بغيت كود اذا تضغط 601/ تطلع لي سوات فان

+

/m اذا اكتب حرف

يعطيني m4

وش سوات فان؟

بالنسبة لطلبك الثاني

server

  
addCommandHandler ( "m",  
function(plr) 
 giveWeapon ( plr, 31, 200 ) 
end) 
  

Edited by Guest
Link to comment
addCommandHandler ( '601', 
    function ( playerSource ) 
        warpPedIntoVehicle ( playerSource, createVehicle ( 601, getElementPosition ( playerSource ) ) ) 
    end 
) 

مصعب الكود الله يهديكـ على واحد مبتدأ . .

  
addCommandHandler ( "601", 
    function ( playerSource ) 
        local x, y, z = getElementPosition ( playerSource )  
        -- x,y,z إحضار إحداثيات اللاعب حطيناها في اختصار 
  
        local Car = createVehicle ( 601 , x, y, z ) 
        -- Car هنا صنع السيارة في موقع اللاعب حطيناها في اختصار 
        -- 601 هذا اي دي السيارة 
  
        warpPedIntoVehicle ( playerSource, Car ) -- وآخر شيء وضع اللاعب داخل السيارة 
  
        -- playerSource = اللاعب 
        -- Car = اختصار صنع السيارة 
  
    end -- إغلاق المهمة 
) 
  

Link to comment
addCommandHandler ( '601', 
    function ( playerSource ) 
        warpPedIntoVehicle ( playerSource, createVehicle ( 601, getElementPosition ( playerSource ) ) ) 
    end 
) 

مصعب الكود الله يهديكـ على واحد مبتدأ . .

  
addCommandHandler ( "601", 
    function ( playerSource ) 
        local x, y, z = getElementPosition ( playerSource )  
        -- x,y,z إحضار إحداثيات اللاعب حطيناها في اختصار 
  
        local Car = createVehicle ( 601 , x, y, z ) 
        -- Car هنا صنع السيارة في موقع اللاعب حطيناها في اختصار 
        -- 601 هذا اي دي السيارة 
  
        warpPedIntoVehicle ( playerSource, Car ) -- وآخر شيء وضع اللاعب داخل السيارة 
  
        -- playerSource = اللاعب 
        -- Car = اختصار صنع السيارة 
  
    end -- إغلاق المهمة 
) 
  

:oops:

ps: كم مرة أقلك كلمة " مبتدأ " تكتب مبتدئ

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