Jump to content

Teams en gridlist


Plate

Recommended Posts

Posted

Hola alguien me podria decir como poner los teams en una gridlist porfavor

Visita Full GameZ DayZ Mod

Server IP: mtasa://158.69.125.144:29015

Posted
local teams = getElementsByType("team") 
for id, team in ipairs(getElementsByType("team")) do 
            local row = guiGridListAddRow ( teamsList ) 
            guiGridListSetItemText ( teamsList, row, 1, getTeamName ( team ), false, false ) 
            guiGridListSetItemColor ( teamsList, row, 1, getTeamColor ( team ) ) 
    end 

no me anda ):

Visita Full GameZ DayZ Mod

Server IP: mtasa://158.69.125.144:29015

Posted

Postea todo el codigo.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
        teamList = guiCreateGridList(518,47,265,259,false,apanel) 
        column = guiGridListAddColumn(teamList,"Teams",0.2) 
for id, team in ipairs(getElementsByType("team")) do 
            local row = guiGridListAddRow ( teamsList ) 
            guiGridListSetItemText ( teamsList, row, column, getTeamName ( team ), false, false ) 
            guiGridListSetItemColor ( teamsList, row, column, getTeamColor ( team ) ) 
    end 

Visita Full GameZ DayZ Mod

Server IP: mtasa://158.69.125.144:29015

Posted
teamList = guiCreateGridList(518,47,265,259,false,apanel) 
column = guiGridListAddColumn(teamList,"Teams",0.2) 
for id, team in ipairs(getElementsByType("team")) do 
    local row = guiGridListAddRow ( teamList ) 
    guiGridListSetItemText ( teamList, row, column, getTeamName ( team ), false, false ) 
    guiGridListSetItemColor ( teamList, row, column, getTeamColor ( team ) ) 
end 

Habias puesto: "teamsList" no "teamList" en add row y set item text/color.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted (edited)

Gracias solid

Pero cuando creo un team no aparece en la lista

Edited by Guest

Visita Full GameZ DayZ Mod

Server IP: mtasa://158.69.125.144:29015

  • Recently Browsing   0 members

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