Remove "Move to quickly" plugin

Discussion in 'Archived: Plugin Requests' started by NSPredator, Apr 24, 2014.

  1. Offline

    NSPredator

    Hello!
    I have recently came across a console message when a player jumps on one of my launch pads. The player does not jump in anyway, the player just stays at his current location during this a console message is displayed "WARN]: elloc72 moved too quickly! 0.0,0.0,0.0 .....", this message is displayed every time the user steps on the jump pad.

    I have done some research into resolving this issue and I am aware of a plugin called "". Unfortunately this plugin doesn't resolve the issue, in-fact it does nothing. I am looking for a plugin that will disable the error message when a player steps on the jump pad as well as a plugin that will allow the player to be launched into the air with no problems.

    Thanks!
    NSPredator
     
  2. Offline

    DrEinsteinium

    If your "jump pad" is from a mod, then we can't help you.
     
  3. Offline

    Garris0n

    Probably a plugin in which he configured the pads to be too powerful.

    @OP There are, er, "reasons" why it shouldn't be removed.
     
    timtower likes this.
  4. Offline

    qlimax5000

    If the pads a configurable then set them below 10 on all axis, MC doesn't like moving players faster than a 10 Vector
     
  5. Offline

    NSPredator

    Is there a way to set a vector above 10? If so how do I do this?
     
  6. Online

    timtower Administrator Administrator Moderator

    Mostly done by code. So probably a jumppad plugin
     
  7. Offline

    TylerLFC

    My guess is that you're using the plugin called NoCheatPlus and when the player steps onto launchpads it thinks that that player is hacking and is telling you they moved to quickly.
     
  8. Online

    timtower Administrator Administrator Moderator

    Nope, it is a vanilla / bukkit message
     
  9. Offline

    NSPredator

    So is there any possible way to disable this?
     
  10. Offline

    qlimax5000

    Maybe have a runnable set the player vector like 5 times quickly? Just setting it to like 2 5 times should do it
     
  11. Offline

    NSPredator

    How do I do this? Where do I edit vectors?
     
  12. Online

    timtower Administrator Administrator Moderator

    In the source code.
     
  13. Offline

    NSPredator

    Ah so the source code of the plugin? If so thanks!
    Code:java
    1. Location location = player.getLocation();
    2. float yaw = location.getYaw();
    3. float pitch = location.getPitch();
    4. setLastRun(event.getPlayer());
    5. player.setVelocity(new Vector(0, 0, 0));
    6. player.teleport(new Location(world, target.getX(), target.getY(), target.getZ(), yaw, pitch));
    7. player.setVelocity(new Vector(Float.parseFloat(sign.getLine(1)), Float.parseFloat(sign.getLine(2)), Float.parseFloat(sign.getLine(3))));


    I would this in the source code. Do I edit where is says (new Vector(0, 0, 0));? I am very new to coding plugins :)

    bump

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 7, 2016
  14. Online

    timtower Administrator Administrator Moderator

    NSPredator Please don't bump within 24 hours. And we are not allowed to modify plugins from other developers without their permission.
    The message itself is a warning for the admin, try to get in contact with the developer of your jumppad plugin and ask him to add this, or change your config so it won't show up at all
     
  15. Offline

    xxmarijnw

  16. Offline

    NSPredator

  17. Online

    timtower Administrator Administrator Moderator

    If you did: then why do you still want to get rid of the message?
     
  18. Offline

    NSPredator

    So I can set vectors over 10 :)
     
  19. Online

    timtower Administrator Administrator Moderator

    It is mostly a warning, not even sure if we can block it.
     
  20. Offline

    NSPredator

    Okay thanks for your help. I have put a request in for a new jump pad plugin.
    Thanks again!
    NSPredator
     
  21. Offline

    Garris0n

    In the source code of CraftBukkit.

    Again, according to those who know why it's there, you should not disable it.
     
    timtower likes this.

Share This Page