Ammar's Plugin Development Thread!

Status
This thread has been locked.

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0
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.

21jc3o4.png


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 :p). 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!
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0
Vouch copy? I would like an anti cheat
That would be a large sized plugin since it would have to check for a tonne of events.
 

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0

Derive

Miragon Owner | Developer
Premium
Feedback score
1
Posts
186
Reactions
55
Resources
0
Vouch, made the plugin PistonFix for me and works well.
 

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0
please add me on skype (hatwey)
I'll add you when I'm back from school :)[DOUBLEPOST=1444650159,1444650129][/DOUBLEPOST]
Talked to him earlier, he seems like a very professional and kind person. He is making a plugin for me as a side project as it is quite large, I will post periodic updates here.
Thank you for the kind words :D
 

chucK_

chucK
Supreme
Feedback score
0
Posts
1,440
Reactions
823
Resources
0
You should consider (as a vouch copy) making a plugin where when a piston or sticky piston is attempting to move a block (defined in the config) it cancels the event. This is to stop duping. You could make it a public resource and benefit more people through a vouch copy instead of me just asking you for one.
 
Status
This thread has been locked.
Top