skyprocLogo.setLocation(getWidth() - skyprocLogo.getWidth() - 15, this.getHeight() - skyprocLogo.getHeight() - 30);
backgroundPanel.add(skyprocLogo);
// Label
pluginLabel = new LLabel("[ " + pluginName + " ]", LFonts.OptimusPrinceps(30), new Color(61, 143, 184));
pluginLabel.addShadow();
pluginLabel.centerIn(this, 20);
descriptionAnchor = pluginLabel;
backgroundPanel.add(pluginLabel);
//Creating Patch
patching = new LLabel("Creating patch.", LFonts.Typo3(15), new Color(210, 210, 210));
patching.addShadow();
patching.centerIn(this, this.getHeight() - patching.getHeight() - 80);
backgroundPanel.add(patching);
//ProgressBar
pbar.centerIn(this, patching.getY() + patching.getHeight() + 5);
pbar.setCentered(false);
pbar.setStatusOffset(-5);
LLabel status = new LLabel(". . .", new Font("SansSerif", Font.PLAIN, 11), new Color(160, 160, 160));
pbar.setStatusLabel(status);
status.setLocation(8, getHeight() - status.getHeight() - 36);
backgroundPanel.add(status);
backgroundPanel.add(pbar);
//Description
int descY = descriptionAnchor.getY() + descriptionAnchor.getHeight() + 20;