topY += 24;
subInputRodSettingLabel = new BeefGuiLabel(this, "While On", leftX, topY);
subInputRodSettingOffLabel = new BeefGuiLabel(this, "While Off", leftX + xSize/2, topY);
subOutputValue = new GuiTextField(this.fontRendererObj, leftX, topY, 60, 12);
subOutputValue.setCanLoseFocus(true);
subOutputValue.setMaxStringLength(7);
subOutputValue.setText("0");
subOutputValue.setEnabled(true);
subOutputValueLabel = new BeefGuiLabel(this, "C", leftX + 62, topY + 2);
topY += subInputRodSettingLabel.getHeight() + 2;
subInputRodSetting = new GuiTextField(this.fontRendererObj, leftX, topY, 32, 12);
subInputRodSetting.setCanLoseFocus(true);
subInputRodSetting.setMaxStringLength(3);
subInputRodSetting.setText("0");
subInputRodSetting.setEnabled(true);
subInputRodSettingPctLabel = new BeefGuiLabel(this, "%", leftX + 34, topY + 2);
subInputRodSettingOff = new GuiTextField(this.fontRendererObj, leftX + xSize/2, topY, 32, 12);
subInputRodSettingOff.setCanLoseFocus(true);
subInputRodSettingOff.setMaxStringLength(3);
subInputRodSettingOff.setText("0");
subInputRodSettingOff.setEnabled(true);
subInputRodSettingOffPctLabel = new BeefGuiLabel(this, "%", leftX + xSize/2 + 34, topY + 2);