I am selling custom small/medium sized plugins

Status
This thread has been locked.

SevenUP

Feedback score
0
Posts
4
Reactions
0
Resources
0
I have been coding bukkit plugins for around about 6 months give or take doing own personal projects which I feel like doing, I have a YouTube where I just started uploading videos, These videos are not the best as at least one of them as an error in it, but I was sure to see that mistake when rendering it, Also they were coded at about 1am.

My YouTube is SevenUP, but just type "Kryyy" in to the search bar to find it and it is the top one.
by the way I still have not got round to changing my banner yet.

I do not have a bukkit dev profile neither do I have a spigot profile because I do not make plugins for other people, but I am looking in to doing that.

Some rules:
I am not selling mini-games (but may be some exceptions),
They can not be massive plugins, e.g Essentials, WorldEdit, WorldGuard,
I will decide which plugins to chose so you may get denied,
You can claim the plugin as yours once you pay for it,
I do not do updates but I will do bug fixes.
Once you pay for the product you may distribute it for however much you would like.


Skype:
SixUPOfficial.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

SevenUP

Feedback score
0
Posts
4
Reactions
0
Resources
0
I watched your MOTD Plugin Speed Coding Video...
Don't use
Code:
String.replaceAll( CharSequence, CharSequence )
for simple string replacement, as that method is usually for regex/pattern replacement. Use
Code:
String.replace( CharSequence, CharSequence )
as that's specifically designed for raw String replacement.

Also, on your onEnable() and onDisable() methods, don't send a message to the Console with a message like "Plugin has been enabled", since it's basic Bukkit knowledge that Bukkit already does this...

I use the getServer().getConsoleSender.sendMessage();
instead of
getServer().getLogger.log();

because it has ChatColor also I just Like the different chat color than the default version :) even though in batch file you can type color 0a.
 

SevenUP

Feedback score
0
Posts
4
Reactions
0
Resources
0
He does both of those things because he learned from TheBcBroz's videos lol

Yeah I learnt this.getServer().getLogger().log();
from bcbroz but not the one that I currently use which is getServer().getConsoleSender().sendMessage();

Also I actually learnt alot from bcbroz and pogostick dev and also the bukkit forums but I barely ever need them anymore.
I mean nearly everyone who has coded a Bukkit plugin has watched at least one of there channels thats how I even learnt to code bukkit plugins. I mean now I just know how to do stuff if you know what I mean.
 

SevenUP

Feedback score
0
Posts
4
Reactions
0
Resources
0
lol, yeah, the type of people who think they know Java by coding Bukkit



I never asked why you use ConsoleCommandSender, my API uses it too. Do I actually have to include a TL;DR? I said don't use String.replaceAll(), use String.replace()

I did actually make a game in java once from a tutorial on YouTube but I don't find it as fun as coding bukkit plugins.[DOUBLEPOST=1472830099][/DOUBLEPOST]
Lol, I didn't use tutorials, I used the JavaDocs and looking at the source-code

Well then dont you deserve a cookie, you must be a real og.
 
Status
This thread has been locked.
Top