1
CONSOLE: blah blah blah
Hey! Everything is actually fine with my server, but i installed a kitpvp plugin, when it runs the command /effect <player> speed 120 5(example) or any command runned by CONSOLE then it says in chat to ALL OP: CONSOLE: Given INVISIBILITY (ID 14) * 0 to MarreNator for 9999 seconds And it really pisses me off! when 10 players change their kits all the time it spams the chat(only for OP)
is it any plugin which just take it away from chat??? (i have tried /ignore @console/console/@, none of them works) so a plugin which remove any message from chat???
please help me
- MarreNator(Owner On MarreSteik)
is it any plugin which just take it away from chat??? (i have tried /ignore @console/console/@, none of them works) so a plugin which remove any message from chat???
please help me
- MarreNator(Owner On MarreSteik)
5
and the kit is picked when clicken on a sign, the "kit" executes a set of command i can set,i set it to potion effects. then players get effect when chosing the specific kit. but, when given the effect it says in chat for OP(the ones with perms to see it) can see CONSOLE: given effect blah blah to blah blah, i want to remove this!
I use the plugin BattleKits
any help please?
I use the plugin BattleKits
any help please?
sorry
installed*
installed*
When you said that you made the plugin, I assume you literally did it.
As it sounds, you're probably using the Bukkit.dispatchCommand() method. Instead, you should try to use:
It will add a speed potion for 60 seconds with the multiplier of 5 to the defined player.
As it sounds, you're probably using the Bukkit.dispatchCommand() method. Instead, you should try to use:
int seconds = 60;
int multiplier = 5;
PotionEffectType effect = PotionEffectType.SPEED;
player.addPotionEffect(new PotionEffect(effect, seconds * 20, multiplier), true);It will add a speed potion for 60 seconds with the multiplier of 5 to the defined player.
I'd guess the same. dispatchCommand "Dispatches a command on the server, and executes it if found." Whereas all you really want to do is provide the effect.
HELLO?!??! PLEASE HELP!!!
