mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
30 lines
557 B
Lua
30 lines
557 B
Lua
Size = {x = 100, y = 20}
|
|
|
|
gui = {
|
|
{
|
|
pos = {x = 110, y = 310, z = 0},
|
|
size = Size,
|
|
guiType = GuiType.LISTBOX,
|
|
addPlayerGui = true,
|
|
listboxType = ListboxType.MAPS,
|
|
numMaxDisplay = 5
|
|
},
|
|
{
|
|
pos = {x = 110, y = 460, z = 0},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
buttonType = ButtonType.PLAY,
|
|
name = 'Play',
|
|
numDependencies = 4,
|
|
dependencies = {{id = 0}}
|
|
},
|
|
{
|
|
pos = {x = 110 + Size.x + 10, y = 460, z = 0},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
buttonType = ButtonType.BACK,
|
|
name = 'Back',
|
|
screen = 'mainMenu.lua'
|
|
}
|
|
}
|