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
Skype: ImaTimelord7
Ok thanks for the adviceYou're ratings are too low, Vouch copies are more for people with high ratings and who are known not for new comers such as yourself
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).
Broo remember me[DOUBLEPOST=1447738681,1447738565][/DOUBLEPOST]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
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 lolBroo remember me
Not Sure what you mean by bonded with a command, please explain that, otherwise I don't mind making it at all.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
Lol used to not anymore ;pNot 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?
Just use hide and custom pluginsMake 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:Make me a plugin that stops users from using /pl
I will make you the pluginI'm just asking him to make an easy plugin for a vouch...
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");
}
}
}
Good point, I usually use toLowerCase but guess I rushedTheRealDan I recommend using "equalsIgnoreCase" instead of "equals" for things like this as a player can bypass it with "/PLUGINS".
