Jump to content

طلب كود


MJNON

Recommended Posts

^ اظن انه يبي يبحث مثلا واحد كاتب ابي سيارة سريع كذا ذذ

vehicle = {} 
  
addEventHandler('onPlayerChat',root,function(msg) 
    if string.find(msg,'ابي سيارة') then 
        if isElement(vehicle[source]) then destroyElement(vehicle[source]) end 
            vehicle[source] = createVehicle(455,unpack({getElementPosition(source)})) 
                warpPedIntoVehicle(source,vehicle[source]) 
        end 
    end 
) 
Link to comment

الطريقة غير مجربة **

سويت لك كود يسهل عملية طلبك

وهو ان وجد الكلمة راح ينفذ الإيفنت

Words = {  
    ["ابي سيارة"] = "onOrderVehicle"; 
    ["ابي سلاح"] = "onOrderWeapon"; 
   --[ "Word" ] = "Event"; 
}; 
  
addEventHandler ( "onPlayerChat", root, 
    function ( msg, type ) 
        if type == 0 then 
            for word, event in pairs ( Words ) do 
                if string.find ( msg, tostring(word) ) then 
                    triggerEvent ( tostring(event), source ) 
                end 
            end 
        end 
    end 
) 

و عادي تخلي الإيفنت بـ مود و جدول الكلمات مع كوده بـ مود منفرد

Vehicles = { }; 
addEvent ( "onOrderVehicle", true ) 
addEventHandler ( "onOrderVehicle", root, 
    function ( ) 
        local x, y, z = getElementPosition ( source ) 
        if Vehicles[source] then 
            if isElement ( Vehicles[source] ) then 
                destroyElement ( Vehicles[source] ) 
            end 
            Vehicles[source] = nil 
        end 
        Vehicles[source] = createVehicle ( math.random ( 400, 611 ), x, y+1, z+1 ) 
        setTimer ( warpPedIntoVehicle, 100, 1, source, Vehicles[source] ) 
    end 
) 
  
addEvent ( "onOrderWeapon", true ) 
addEventHandler ( "onOrderWeapon", root, 
    function ( ) 
        giveWeapon ( source, math.random ( 22, 38 ), 60, true ) 
    end 
) 

Link to comment
  • 3 weeks later...
الطريقة غير مجربة **

سويت لك كود يسهل عملية طلبك

وهو ان وجد الكلمة راح ينفذ الإيفنت

Words = {  
    ["ابي سيارة"] = "onOrderVehicle"; 
    ["ابي سلاح"] = "onOrderWeapon"; 
   --[ "Word" ] = "Event"; 
}; 
  
addEventHandler ( "onPlayerChat", root, 
    function ( msg, type ) 
        if type == 0 then 
            for word, event in pairs ( Words ) do 
                if string.find ( msg, tostring(word) ) then 
                    triggerEvent ( tostring(event), source ) 
                end 
            end 
        end 
    end 
) 

و عادي تخلي الإيفنت بـ مود و جدول الكلمات مع كوده بـ مود منفرد

Vehicles = { }; 
addEvent ( "onOrderVehicle", true ) 
addEventHandler ( "onOrderVehicle", root, 
    function ( ) 
        local x, y, z = getElementPosition ( source ) 
        if Vehicles[source] then 
            if isElement ( Vehicles[source] ) then 
                destroyElement ( Vehicles[source] ) 
            end 
            Vehicles[source] = nil 
        end 
        Vehicles[source] = createVehicle ( math.random ( 400, 611 ), x, y+1, z+1 ) 
        setTimer ( warpPedIntoVehicle, 100, 1, source, Vehicles[source] ) 
    end 
) 
  
addEvent ( "onOrderWeapon", true ) 
addEventHandler ( "onOrderWeapon", root, 
    function ( ) 
        giveWeapon ( source, math.random ( 22, 38 ), 60, true ) 
    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...