Jump to content

Meter todos los vehiculos en una lista?!


Soren

Recommended Posts

Ya dejen de joda.

Solo tengo un problema mas

function visible() 
    guiSetVisible (ventana, true) 
    else 
    guiSetVisible (ventana, false) 
addCommandHandler ("v", visible) 

Client.lua46: 'end' expected(to close function at line 44) near else

Link to comment
function visible ( )         
        if ( guiGetVisible ( ventana ) == true ) then --Si la Ventana es Visible 
                guiSetVisible ( ventana, false ) --Se oculta 
        else --Si no 
                guiSetVisible ( ventana, true ) --Aparece 
        end --1 por el if-then-else 
end --Otro por las funciones 
addCommandHandler ("v", visible) 

Link to comment
  • Recently Browsing   0 members

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