csmit195

bedrockView

Sep 29th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.40 KB | None | 0 0
  1. {
  2.   Children={
  3.         {
  4.           X=0,
  5.           Y=2,
  6.           Name="headerTitle",
  7.           Align="Center",
  8.           Width="100%",
  9.           Type="Label",
  10.           Text='Dragon Spawner',
  11.           TextColour='magenta'
  12.         },
  13.         {
  14.           X="10%",
  15.           Y=3,
  16.           Width="80%",
  17.           Name="headerTitle_seperator",
  18.           Type="Separator",
  19.           Colour='white'
  20.         },
  21.         {
  22.           X=1,
  23.           Y=5,
  24.           Width="40%, -2",
  25.           Name="dragonCount_label",
  26.           Type="Label",
  27.           Align="Right",
  28.           Text='How many?',
  29.           TextColour='white'
  30.         },
  31.         {
  32.           X="41%",
  33.           Y=5,
  34.           Name="dragonCount",
  35.           Maximum=1000,
  36.           Height=1,
  37.           Width=8,
  38.           Type="NumberBox"
  39.         },
  40.         {
  41.           X=1,
  42.           Y=7,
  43.           Width="40%, -2",
  44.           Align="Right",
  45.           Name="dragonDelay_label",
  46.           Type="Label",
  47.           Text='Delay (s)',
  48.           TextColour='white'
  49.         },
  50.         {
  51.           X="41%",
  52.           Y=7,
  53.           Name="dragonDelay",
  54.           Maximum=86400,
  55.           Value=1,
  56.           Height=1,
  57.           Width=8,
  58.           Type="NumberBox"
  59.         },
  60.         {
  61.           X="41%, 9",
  62.           Y=7,
  63.           Name="dragonDelay_add1m",
  64.           Text="1m",
  65.           Height=1,
  66.           Width=2,
  67.           BackgroundColour="green",
  68.           Type="Button"
  69.         },
  70.         {
  71.           X="41%, 12",
  72.           Y=7,
  73.           Name="dragonDelay_add1h",
  74.           BackgroundColour="green",
  75.           Text="1h",
  76.           Height=1,
  77.           Width=2,
  78.           Type="Button"
  79.         },
  80.         {
  81.           X="41%, 15",
  82.           Y=7,
  83.           Name="dragonDelay_subtract1m",
  84.           BackgroundColour="red",
  85.           Text="1m",
  86.           Height=1,
  87.           Width=2,
  88.           Type="Button"
  89.         },
  90.         {
  91.           X="41%, 18",
  92.           Y=7,
  93.           Name="dragonDelay_subtract1h",
  94.           BackgroundColour="red",
  95.           Text="1h",
  96.           Height=1,
  97.           Width=2,
  98.           Type="Button"
  99.         },
  100.         {
  101.           X="20%",
  102.           Y=9,
  103.           Name="Submit",
  104.           Width="60%",
  105.           Height="3",
  106.           BackgroundColour="green",
  107.           Text="Start",
  108.           Type="Button"
  109.         },
  110.   },
  111.   BackgroundColour='black',
  112.   TextColour='white'
  113. }
Advertisement
Add Comment
Please, Sign In to add comment