Looking for a Job

Status
This thread has been locked.

TheRealDan

Software Developer
Supreme
Feedback score
15
Posts
274
Reactions
126
Resources
0
Hey, I have some free time available at the moment so, if anyone needs a plugin made then add me on Skype or PM me and we can talk about what kind of plugin you need and what that will cost.

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

Shortninja

♥ Java Enthusiast ♥
Supreme
Feedback score
2
Posts
1,143
Reactions
734
Resources
0
Since you are a new user, I recommend doing a few plugins for vouches in order to get your reputation up (thus increasing your chance of being hired).
 

TheRealDan

Software Developer
Supreme
Feedback score
15
Posts
274
Reactions
126
Resources
0
Since you are a new user, I recommend doing a few plugins for vouches in order to get your reputation up (thus increasing your chance of being hired).

Alright, sounds good. Anyone want me to make them some small plugins for Vouches? :D
 

Adrenalize

Java Dev, novice w/ Spigot API
Premium
Feedback score
6
Posts
1,121
Reactions
261
Resources
0
Hey, I have some free time available at the moment so, if anyone needs a plugin made then add me on Skype or PM me and we can talk about what kind of plugin you need and what that will cost.

Skype: ImaTimelord7
Broo remember me[DOUBLEPOST=1447738681,1447738565][/DOUBLEPOST]
Broo remember me
Lol I kind of remember you.. Anyways, for the vouch could you make it so when you right click a wooden sword bonded with a command, it shoots snowballs lol
 

TheRealDan

Software Developer
Supreme
Feedback score
15
Posts
274
Reactions
126
Resources
0
Broo remember me[DOUBLEPOST=1447738681,1447738565][/DOUBLEPOST]
Lol I kind of remember you.. Anyways, for the vouch could you make it so when you right click a wooden sword bonded with a command, it shoots snowballs lol
Not Sure what you mean by bonded with a command, please explain that, otherwise I don't mind making it at all.

Remember you.. Are you the guy running that StarWars server?
 

Adrenalize

Java Dev, novice w/ Spigot API
Premium
Feedback score
6
Posts
1,121
Reactions
261
Resources
0
Not Sure what you mean by bonded with a command, please explain that, otherwise I don't mind making it at all.

Remember you.. Are you the guy running that StarWars server?
Lol used to not anymore ;p

I don't need it just wanted to see your seriousness.
 

TheRealDan

Software Developer
Supreme
Feedback score
15
Posts
274
Reactions
126
Resources
0
Make me a plugin that stops users from using /pl
Sure, I would tell you that you can stop players from using /pl and /plugins with GroupManager and PEX however, since you said:
I'm just asking him to make an easy plugin for a vouch...
I will make you the plugin :p

EDIT: Do you want the Plugin.jar or is the code enough?
Code:
package me.imatimelord7.nopl;

import org.bukkit.ChatColor;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
import org.bukkit.plugin.java.JavaPlugin;

public class NoPL extends JavaPlugin implements Listener {

    public void onEnable() {
        getServer().getPluginManager().registerEvents(this, this);
    }

    @EventHandler
    public void PlayerCommandPreprocessEvent(PlayerCommandPreprocessEvent e) {
        if (e.getMessage().equals("/plugins") || e.getMessage().equals("/pl")) {
            e.setCancelled(true);
            e.getPlayer().sendMessage(ChatColor.RED+"I can't let you do that! :P");
        }
    }
}
 
Last edited:

TheRealDan

Software Developer
Supreme
Feedback score
15
Posts
274
Reactions
126
Resources
0
TheRealDan I recommend using "equalsIgnoreCase" instead of "equals" for things like this as a player can bypass it with "/PLUGINS".
Good point, I usually use toLowerCase but guess I rushed :p, thanks though.
 
Status
This thread has been locked.
Top