Jump to content

[Ayuda]Autos para clanes


RekZ

Recommended Posts

quisiera saver como hacer un resource para los autos por clanes en ACL , tengo un amigo que lo hace con un scrip y xml pero logicamente no se como ... Si pudieran decirme como hacerlo o que usar... Gracias de antemano

Link to comment
addEventHandler ( "onResourceStart", resourceRoot, 
    function ( ) 
        vehicles = { } 
        for index = 1, 22 do 
            vehicles [ getElementByID ( "ALFA".. index ) ] = true 
        end 
    end 
) 
  
addEventHandler ( "onVehicleStartEnter", root, 
    function ( thePlayer, seat ) 
        if ( seat ~= 0 ) then 
            return 
        end 
        if ( vehicles [ source ] ) then 
            if ( getPlayerTeam ( thePlayer ) and getTeamName ( getPlayerTeam ( thePlayer ) ) ~= "ALFA" ) then 
                outputChatBox ( "Este vehiculo esta restringido a los miembros del clan ALFA", thePlayer, 255, 0, 0 ) 
                cancelEvent ( ) 
            end 
        end 
    end 
) 

Yo lo hago asi, pero para Teams

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...