Wanted: Java Programmer to make creative Server Plugins

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Lary_cheese

Feedback score
0
Posts
9
Reactions
0
Resources
0
I edited the entire post, and am now asking only for programming if it's free. Most of you who responded were asking for outrageous prices. I have a guy, I'm just considering finding him some help so he doesn't have to handle it all on his own. (You won't have to work with him, we'll just divvy up the plugins I need).
 

SgtBud

Feedback score
0
Posts
46
Reactions
10
Resources
0
Developing takes a lot of time and hard work, good quality code is expensive, if you find a free dev, chances are they won't be experienced and be very limited in their skill.
If a lot of people gave you an expensive quote, try not to make your description sound like it is expensive.
Or...
Development just costs that much.

Just a thought.
I'm mainly free and I take offence to that xD
 

SgtBud

Feedback score
0
Posts
46
Reactions
10
Resources
0
Yeah, you prove my point, got an example of code? a class or something?
Well, I don't mind my ChatManager source being public (I know this is an easy plugin lelel)
Just decompile this: https://www.spigotmc.org/resources/chat-manager.4558/
Or check out a freeforall plugin I made @ InfamousPvP.us
And here's the /stats command for that ^
Code:
package me.SgtBud.FFA.Commands;

import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;

import me.SgtBud.FFA.Config.PlayerDataManager;

public class Stats implements CommandExecutor {
 
    public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
     
        if(cmd.getName().equalsIgnoreCase("stats")) {
            Player p = (Player) sender;
            PlayerDataManager manager1 = new PlayerDataManager(p.getUniqueId());
            if(!(sender instanceof Player)) {
                sender.sendMessage("This command can only be used in game, sorry.");
                } else {
                    if((args.length > 1) || (args.length < 1)) {
                        p.sendMessage("§5InfamousFFA §7|| §dYour Stats");
                        p.sendMessage("§5Kills §7||§d " + manager1.getKills());
                        p.sendMessage("§5Deaths §7||§d " + manager1.getDeaths() );
                    } else {
                       Player t = Bukkit.getServer().getPlayer(args[0]);
                       if (t == null)
                       {
                         sender.sendMessage(ChatColor.RED + "No one has that username, sorry.");
                         return true;
                       }else{
                          PlayerDataManager manager2 = new PlayerDataManager(t.getUniqueId());
                            p.sendMessage("§5InfamousFFA §7|| " + t.getName() + "'s Stats" );
                            p.sendMessage("§5Kills §7|| §d" + manager2.getKills());
                            p.sendMessage("§5Deaths §7|| §d" + manager2.getDeaths() );
                       }
                    }
                } 
        }
     
     
     
        return true;
    }

}
Again, I know my examples are easy, but I'm not making my prized possessions public. They're for the server that they were made for only xD

EDIT | Also, just remember, you're 18 and started coding when you were 13.
I'm 13 now, so I still have 5 years until I would be at your level if I worked at the pace you did :p (I checked out your plugin shop, jeez you're expensive)
 
Status
This thread has been locked.
Top