Hey guys, it's Ammar!
Well, you guys know what this is, I make plugins, you pay me for them! At the moment, I can only do Small / Medium category plugins (categories listed below) because of personal problems but if a sufficient timespan is given, I'm willing to work on a Large category plugin.
That's an example of something that takes me 2 minutes to make (it actually took 5 minutes because of all the text I had to type up
). If you want to see more of what I'm capable of, check out my YouTube channel (link in my signature).
NOTE: Currently not taking Large-sized plugins due to a large number of requests!
Well, you guys know what this is, I make plugins, you pay me for them! At the moment, I can only do Small / Medium category plugins (categories listed below) because of personal problems but if a sufficient timespan is given, I'm willing to work on a Large category plugin.
PHP:
package com.darkbyte.programs.portfolio;
import java.awt.Font;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class Main {
public static void main(String[] args) {
Window mainWindow = new Window(1280, 720, "Ammar's Portfolio", true, false, Window.EXIT_ON_CLOSE);
JTextArea textArea = new JTextArea();
textArea.setEditable(false);
textArea.setFont(new Font("Courier New", Font.PLAIN, 14));
textArea.setText("Well, I'm just another developer.\n"
+ "What can I offer you?\n"
+ "Well, I'm skilled in the Bukkit API.\n"
+ "And I can program GUI applications.\n\n"
+ "The programming languages I know:\n"
+ "*Java\n"
+ "*C++\n"
+ "*C#\n"
+ "*Python\n\n"
+ "Well, what else can I offer you?\n"
+ "5 Vouch Copies.\n"
+ "These are all small category plugins that are fairly simple\n"
+ "Because I can't give away the good stuff for free ;)\n\n"
+ "Categories:\n"
+ "Small:\n"
+ "*2 commands + 2 sub-commands per command\n"
+ "*2 events\n"
+ "*2 variables in the configuration\n"
+ "Cost: $1 - $5\n\n"
+ "Medium:\n"
+ "*5 commands + 5 sub-commands per command"
+ "*5 events\n"
+ "*5 variables in the configuration\n"
+ "Cost: $5 - $25\n\n"
+ "Large:\n"
+ "*10 commands + 10 sub-commands per command"
+ "*10 events\n"
+ "*Unlimited variables in the configuration\n"
+ "Cost: $25 - $100\n\n"
+ "Custom:\n"
+ "*Unlimited commands + 10 sub-commands per command\n"
+ "*Unlimited events\n"
+ "*Unlimited variables in the configuration\n"
+ "*Cost: $100+ (Depending on size and features)\n\n"
+ "Well, just compile this code and it'll run :)");
mainWindow.add(new JScrollPane(textArea));
mainWindow.setSize(520, 724);
}
}
class Window extends JFrame {
private static final long serialVersionUID = 1L;
public Window(int width, int height, String title, boolean resizable, boolean maximized, int closeOperation) {
super(title);
setSize(width, height);
setResizable(resizable);
if(maximized) setExtendedState(MAXIMIZED_BOTH);
setDefaultCloseOperation(closeOperation);
setVisible(true);
}
}
That's an example of something that takes me 2 minutes to make (it actually took 5 minutes because of all the text I had to type up
NOTE: Currently not taking Large-sized plugins due to a large number of requests!
Last edited:

