Jump to content

Diferentes Gui's para diferentes Teams


Soren

Recommended Posts

Algo asi mira:

  
team1 = createTeam... 
team2 = createTeam... 
ventana1 = guiCreateWindow... 
ventana2 = guiCreateWindow... 
addCommandHandler("abrir", 
function (playerSource) 
local team = getPlayerTeam(playerSource) 
if team then 
    if team == team1 then 
      guiSetVisible(ventana1 ,true) 
      showCursor(true) 
    elseif team == team2 then 
       guiSetVisible(ventana2 ,true) 
       showCursor(true) 
    end 
end 
end 
) 
  
  

Link to comment
  • Recently Browsing   0 members

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