[ADMN] BoatRemover v1.0 - Remove all boats with a command [928]

Discussion in 'Inactive/Unsupported Plugins' started by Baummann, Jun 14, 2011.

  1. Offline

    Baummann

    BoatRemover - Remove all boats with a command
    Version: 1.0 CraftBukkit 928

    Requested by: creepycreeper

    Commands:
    /removeboats - Removes all boats in all worlds


    Permissions:
    boatremover.removeboats

    Download:
    Click here

    Instructions:
    Drag the .jar file into your plugins folder.

    Changelog:
    v1.0 - First release
     
  2. Offline

    ChrizC

  3. Offline

    Baummann

  4. Offline

    creepycreeper

    Thanks a ton! Wanna add a donate link here? :p a little cash wouldn't hurt, would it?
     
  5. Offline

    Baummann

    Maybe... ;)
     
  6. Offline

    creepycreeper

    Hope its comin up soon!

    Oh, and as a side note; it's working perfectly , thnx! no more lag

    for an epic plugin, it doesn't seem to be receiving much traffic. . . . . . what a shame

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  7. Offline

    Kane

    Suggestion maybe add a scheduler option to do inactive boats every whatever time specified. Also maybe add a counter of how many boats removed when you do use it.
     
  8. Offline

    sk8freak315

    I like this very much. I also like Kane's idea, please consider this.
    Thanks.
    Any chance of getting the source in the future?
     
  9. Offline

    creepycreeper

    Lol, I wouldn't know what to do with the source.
     
  10. Offline

    Baummann

    Hmm maybe I'll add @Kane 's idea. And that's how I removed the boats:

    Code:java
    1. for (World world : getServer().getWorlds()) {
    2. for (Entity e : world.getEntities()) {
    3. if (e instanceof Boat) {
    4. e.remove();
    5. }
    6. }
    7. }
     
    sk8freak315 likes this.
  11. Offline

    sk8freak315

    Thank you! Very much appreciated. :)
    Great but simple plugin.
     
  12. Offline

    Amrac

    Thanks :)

    I got a "grief boat"
    Before BoatRemover:
    [​IMG]
    After:
    [​IMG]

    :D
     
  13. Offline

    MoreBloodWine

    This doesnt seem to work for 1.0.1-R1 regardles of wether the commands issued through the server or game.

    Please help.

    Edit: Maybe this has something to do with it ?
    Code:
    BoatRemover: Booting...
    BoatRemover: Permissions system not detected! Shutting down...
    BoatRemover: Shutting down...
    BoatRemover: Done!
    BoatRemover: Done!
    
     

Share This Page