Jump to content

اكوااد


RoMaNd!

Recommended Posts

  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي فلوس') then 
                givePlayerMoney( 100000 )  
        outputChatBox("[Admin]==> تم اعطائك فلوس بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سلاب') then 
                killPed (source) 
        outputChatBox("[Admin]==> تم اعطائك سلآب بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سيارة') then 
                 local x,y,z = getElementPosition ( source ) 
                 local enksar = createVehicle( 411,x, y, z) 
                 warpPedIntoVehicle ( source, enksar ) 
        outputChatBox("[Admin]==> تم اعطائك سيارة بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  

اتمنى افدتك : )

بروب : )

Link to comment
  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي فلوس') then 
                givePlayerMoney( 100000 )  
        outputChatBox("[Admin]==> تم اعطائك فلوس بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سلاب') then 
                killPed (source) 
        outputChatBox("[Admin]==> تم اعطائك سلآب بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سيارة') then 
                 local x,y,z = getElementPosition ( source ) 
                 local enksar = createVehicle( 411,x, y, z) 
                 warpPedIntoVehicle ( source, enksar ) 
        outputChatBox("[Admin]==> تم اعطائك سيارة بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  

اتمنى افدتك : )

بروب : )

لازم جدول للسياره

Link to comment
  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي فلوس') then 
                givePlayerMoney( 100000 )  
        outputChatBox("[Admin]==> تم اعطائك فلوس بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سلاب') then 
                killPed (source) 
        outputChatBox("[Admin]==> تم اعطائك سلآب بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  
  
        addEventHandler('onPlayerChat',root, 
        function(msg) 
                if string.find(msg,'ابي سيارة') then 
                 local x,y,z = getElementPosition ( source ) 
                 local enksar = createVehicle( 411,x, y, z) 
                 warpPedIntoVehicle ( source, enksar ) 
        outputChatBox("[Admin]==> تم اعطائك سيارة بنجاح",source,255,0,0,true); 
                end 
            end  
) 
  

اتمنى افدتك : )

بروب : )

كذا يصير : )

            addEventHandler('onPlayerChat',root, 
            function(msg) 
                    if string.find(msg,'ابي فلوس') then 
                    givePlayerMoney( 100000 ) 
            outputChatBox("[Admin]==> تم اعطائك فلوس بنجاح",source,255,0,0,true); 
                    end 
                end 
    ) 
      
            addEventHandler('onPlayerChat',root, 
            function(msg) 
                    if string.find(msg,'ابي سلاب') then 
                    killPed (source) 
            outputChatBox("[Admin]==> تم اعطائك سلآب بنجاح",source,255,0,0,true); 
                    end 
                end 
    ) 
      
      
            vh = {} 
  
            addEventHandler('onPlayerChat',root, 
            function(msg) 
                    if string.find(msg,'ابي سيارة') then 
                     local x,y,z = getElementPosition ( source ) 
                     vh[source] = createVehicle( 411,x, y, z) 
                     warpPedIntoVehicle ( source, vh[source] ) 
            outputChatBox("[Admin]==> تم اعطائك سيارة بنجاح",source,255,0,0,true); 
                    end 
                end 
    ) 
Link to comment
local enksar = { } 
  
addEventHandler( "onPlayerChat", root, function ( msg ) 
   if ( msg and msg == "ابي فلوس" ) then 
            givePlayerMoney( source, 100000 ) 
    elseif ( msg and msg == "ابي سلاب" ) then 
            killPed ( source ) 
    elseif ( msg and msg == "ابي سيارة" ) then 
      if( isElement ( enksar[ source ] ) ) then destoryEelement( enksar[ source ] ) end 
         local x, y, z = getElementPosition ( source ) 
         local enksar[ source ] = createVehicle( 411, x, y, z) 
         warpPedIntoVehicle ( source, enksar[ source ] ) 
     end 
end ) 
  
addEventHandler( "onVehicleExplode", root, function(  ) 
        setTimer( destroyElement, 2000, 1, source ) 
end ) 
  
addEventHandler( "onPlayerQuit", root, function( ) 
  if( isElement ( enksar[ source ] ) ) then 
           destroyElement( enksar[ source ] ) 
       end 
end ) 
  

جرب كذآ يآحلو : )

Link to comment
local enksar = { } 
  
addEventHandler( "onPlayerChat", root, function ( msg ) 
   if ( msg and msg == "ابي فلوس" ) then 
            givePlayerMoney( source, 100000 ) 
    elseif ( msg and msg == "ابي سلاب" ) then 
            killPed ( source ) 
    elseif ( msg and msg == "ابي سيارة" ) then 
      if( isElement ( enksar[ source ] ) ) then destoryEelement( enksar[ source ] ) end 
         local x, y, z = getElementPosition ( source ) 
         local enksar[ source ] = createVehicle( 411, x, y, z) 
         warpPedIntoVehicle ( source, enksar[ source ] ) 
     end 
end ) 
  
addEventHandler( "onVehicleExplode", root, function(  ) 
        setTimer( destroyElement, 2000, 1, source ) 
end ) 
  
addEventHandler( "onPlayerQuit", root, function( ) 
  if( isElement ( enksar[ source ] ) ) then 
           destroyElement( enksar[ source ] ) 
       end 
end ) 
  

جرب كذآ يآحلو : )

غلط ..

local enksar = { } 
  
addEventHandler( "onPlayerChat", root, function ( msg ) 
   if ( msg and msg == "ابي فلوس" ) then 
            givePlayerMoney( source, 100000 ) 
    elseif ( msg and msg == "ابي سلاب" ) then 
            killPed ( source ) 
    elseif ( msg and msg == "ابي سيارة" ) then 
      if( isElement ( enksar[ source ] ) ) then destroyElement( enksar[ source ] ) end 
         local x, y, z = getElementPosition ( source ) 
         local enksar[ source ] = createVehicle( 411, x, y, z) 
         warpPedIntoVehicle ( source, enksar[ source ] ) 
     end 
end ) 
  
addEventHandler( "onVehicleExplode", root, function(  ) 
        setTimer( destroyElement, 2000, 1, source ) 
end ) 
  
addEventHandler( "onPlayerQuit", root, function( ) 
  if( isElement ( enksar[ source ] ) ) then 
           destroyElement( enksar[ source ] ) 
       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...