HeyImErik's Development Shop [Cheap]

Status
This thread has been locked.

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Hey, I'm Erik.

This is my Development Shop, where you can request any plugin for me to make.

About me
I'm 16 years old (I'm very mature if you were wondering, a few people thought I wasn't) and I live in Norway. I've been developing in Java for over 4 years, so I have a lot of experience, I've been developing with Bukkit/Spigot for around 3,5 years.

Price ranges
This depends what plugin it is, and also how many features you want with it.
The price will be discussed and we'll both agree to it.

Rough estimate:
- Basic plugins; a few commands, a small config, a few events, etc. Roughly $5+
- Medium plugins; more commands, bigger config, more events, etc. Roughly $10+
- Larger plugins; same as Medium plugin, hooking into Minecraft or other plugins, SQL webstats, extra awesome features etc. Roughly $25+
- Hub plugins; Loads of features, hub-minigames, SQL webstats, etc. Roughly $45+
- Minigame plugins; Loads of features, Stat trackers, Leaderboards, loads of events, SQL webstats, etc. Roughly $75+
- AntiCheat plugins; Depends what it blocks, roughly $5-$75 per blocked hack, comes with a Logging system, and an automated banning system (through SQL) if you want it.


Prices vary depending on the difficulty obviously, so if you want a very basic minigame, it can be less than the estimated price.

25% will be paid upfront, then the rest upon end. I will not send you the software before the money has been sent.

I have a test server where you can test everything you want to test before the final purchase. I will also test everything on there myself.

Transactions are made through PayPal.

Payment Agreement
  • You are not allowed to chargeback the payment, unless requested from me, and I agree to it (Will be discussed)
  • You don't get the software before the money has been sent, and completed.
  • I will refund the money sent upon starting a project if I cannot complete it.

My timezone is Central European Time, GMT+1. So I'm not available before until after school, around 3PM CET.

Contact me on Skype: skype.xerik, or PM me here on MC-Market if you're interested.

(Please have a Pastebin/text document of a detailed description of the plugin, and write down everything you can think of, so no mistakes are made.)

Screenshots:

Draw My Thing:
7beeaae3e4ed55fe96d5080ccfb2891a.png

0536525f27830938581665edf75a96a6.png

9ac3f8037f8460546169ae7cc94d7622.png
bfb922221ffdc4e9ad3070c3cc4d3ea4.png

My upcoming server (Anti Cheat):
b7c102e15120a85814de0170c283d671.png
d37688d1d5e4103a8c5ada86785b70fc.png

PulseHCF (Closed):
831bfcb70adf722e41e10e8257033fae.png

dcc2da7bbaaa00dcd34f01e67dd3bf19.png

18ca359adad1f3ba4fea8c94d38253bd.png
1227a1482532a1270889d895c3964980.png

Vouch! This is a great guy from spigot!
Vouch; ages ago he had some good resources on Spigot.
Vouch remade my old plugin. :)
Vouch!

Made me an extremely well coded plugin + source code within 1 day.
He is just amazing developer!
Vouch for this guy ! :D best guy
Vouch made me an awesome plugin!
Huge vouch for this user. Made/is still making multiple plugins for a very cheap price<3

More vouches can be found on my old Spigot private-development thread: http://heyimerik.net/shop/

4443ebc890d0916f2003061bf64d1091.png
 
Last edited:

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
MightyMurphy I've coded a Splegg plugin, which I deleted off my Spigot page, but I still have a DrawMyThing plugin on there, which has 13 5-star ratings. Which is for the most part my public plugins.

Other than the public ones, I've been developing for a few servers:
- GoldDustMC: I made a hub plugin, a 2vs2 plugin, and a few mini-plugins.
- PulsePvP: It closed a few weeks ago, but I made the entire server and I still have those plugins. I made a Hub plugin, a Core plugin, an HCF plugin, a Duels plugin (1vs1), and I was working on an Anti Cheat plugin for it, but I never got around to finishing it.

I've also done some single private development, where I made someone a Cowboys vs Indians minigame, also made a hub plugin for someone else.
 

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Croc It will go up as I get more vouches ;)
 

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Croc some random code from my DrawMyThing plugin:

Code:
public Inventory getColorInventory() {
        if (this.colorInventory == null) {
            this.settings.setOffset("inventory-guis.colors");
            int size = this.settings.getInteger("size");

            if (size % 9 != 0) size = 54;

            Inventory inv = this.dmt._server.createInventory(null, size, this.settings.getString("name"));

            int slot = 0;
            for (String string : this.settings.getStringList("items")) {
                int itemID = 0;
                int data = 0;
                int amount = 0;
                String name = "";

                int index = 0;
                for (String split : string.split(" ")) {
                    if (index == 0) {
                        if (split.contains(":")) {
                            itemID = NumberUtil.getInt(split.split(":")[0]);
                            data = NumberUtil.getInt(split.split(":")[1]);
                        } else {
                            itemID = NumberUtil.getInt(split);
                        }
                    } else if (index == 1) {
                        amount = NumberUtil.getInt(split);
                    } else {
                        if (split.contains(":")) {
                            String type = split.split(":")[0];
                            String value = split.split(":")[1];

                            if (type.equalsIgnoreCase("name") || type.equalsIgnoreCase("displayname")) {
                                name = this.dmt.colorize(value);
                            } else if (type.equalsIgnoreCase("slot")) {
                                slot = NumberUtil.getInt(value) - 1;
                            }
                        }
                    }
                    index += 1;
                }

                if (slot <= 0) slot = 0;
                if ((slot + 1) >= size) slot = size - 1;

                Item item = new Item(Material.getMaterial(itemID), amount, (short) 0, (byte) data, name.replaceAll("_", " "), new ArrayList<String>()).update();
                inv.setItem(slot, item.getBukkitStack());

                slot += 1;
            }

            this.colorInventory = inv;
        }

        this.settings.clearOffset();

        return this.colorInventory;
    }
 

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Croc doesn't really bother me if it's public, doesn't reveal anything of the plugin :p I can PM you some more, give me a minute.
 

Chearful

thomas.gg
Supreme
Feedback score
115
Posts
1,399
Reactions
2,236
Resources
0
Vouch; ages ago he had some good resources on Spigot.
 

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Snapchat as in images of it in-game?
 

ImErik

Developer
Premium
Feedback score
0
Posts
49
Reactions
17
Resources
0
Status
This thread has been locked.
Top