[INACTIVE] [FUN] ThunderPort 1.2 - Teleport with a bang [818]

Discussion in 'Inactive/Unsupported Plugins' started by Dreadreaver, May 11, 2011.

  1. Offline

    Dreadreaver

    Attention: Development stopped. I never needed this for my server anyway and as nobody cared to support the development anymore I don't see why I should keep this updated.

    Features:
    • Should work with any teleport you perform
    • Safe to use with plugins like Elevators or MagicCarpet
    • Creates lightning bolts on player teleport at the teleport location
    • No commands
    • Lightning bolts created by this plugin are harmless
    • Permissions
    Permissions:
    • thunderport.teleport
      • allows a player to ThunderPort
    Changelog 1.2:
    • Changed the permissionnode from "ThunderPort.teleport" to "thunderport.teleport"
    • Reworked some code
    • Increased the minimum distance from 5 to 20
    Older Changelog (open)
    Changelog 1.1.1:
    • Slightly improved performance
    • Fixed a bug concerning the min. distance, now properly working with 5 blocks
    • Reworked code
    • Fixed some possible compatibility issues
    Changelog 1.1:
    • ThunderPort activates only on teleports with at least 5 blocks distance
    • ThunderPort activates only on teleports within the same world
    Changelog 1.0:
    • Initial release
     
    spence2142 likes this.
  2. Offline

    AOD_Batman

    Just a little FYI, the strikeLightningEffect will still create PoweredCreepers and PigZombies on the client side. It's less likely with your plugin because it seems to only do the lightning effect on the teleport To location instead of both the To and From location. For example if a pig were to be near where someone has set their /home location and did '/home' they will be met by a few harmless pigman which would require them to reconnect to get rid of them. The PigZombies are harmless, but the creepers on the other hand are well... still creepers. [creeper] I tried to find a way to prevent this, but it seems to be specifically client side.

    (I found this out while recreating this plugin for my server. Call me crazy, but I like to see the source code before I install anything. :p)
     
  3. Offline

    Dreadreaver

    Oh in my testings Creepers werent poweredup when hit by a strikeLightningEffect - hm gotta add some more code then to prevent this, thanks for the info ;)

    as for the source: im gonna add all my sources to github soon again, I was just too busy to maintain them
     
  4. Offline

    AOD_Batman

    They look to be powered up, but they aren't. It's the same as the PigZombies. A simple reconnect will show that the creeper is still just a normal dangerous creeper. :p Also if you implement the onPigZap and onCreeperPower they won't be called because on the server side the creeper wasn't powered and/or the pig wasn't zapped; these are client side bugs.

    Cool. I just wish the client side wasn't so buggy. :( @notch: FIX THIS! [cake]
     
  5. Offline

    Dreadreaver

    ah alright so my testing was correct then. its the same with fire caused by lightningeffect, its just client side
    and no: lightningEffect isnt at fault here, ive been canceling all events myself before lightningeffect was added and even then there was the client side fire animation ;)
     
  6. Offline

    Elvis

    so im taking this doesnt work with craftbukkit 733
     
  7. Offline

    SoulPandemonium

    It would be awesome if you can edit the number of lightning summoned.
     
  8. Offline

    Dreadreaver

    unfortunatly not as the hook I'm using is implemented in 761 and above only
    I could write an extra version for 708+ but I dont see why if you guys can just update to 761+ ;)
    Hm ... for me its enough like this
     
  9. Offline

    Elvis

    no idea how to update any advice :p
     
  10. Offline

    Yggy

    Stop server.

    At the top of the screen, where it says "Get CraftBukkit". Click that. Then save/overwrite the latest build from that page over your current CraftBukkit file.

    Restart server.

    As a side-note: WorldGuard could not get a pass from here for Lightning_Strike.

    Code:
    2011-05-12 08:51:51 [SEVERE] Could not pass event LIGHTNING_STRIKE to WorldGuard
    java.lang.NoSuchMethodError: org.bukkit.event.weather.LightningStrikeEvent.getLightning()Lorg/bukkit/entity/Entity;
        at com.sk89q.worldguard.bukkit.WorldGuardWeatherListener.onLightningStrike(WorldGuardWeatherListener.java:114)
        at org.bukkit.plugin.java.JavaPluginLoader$68.execute(JavaPluginLoader.java:647)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.WorldServer.a(WorldServer.java:113)
        at org.bukkit.craftbukkit.CraftWorld.strikeLightningEffect(CraftWorld.java:376)
        at com.dreadreaver.bukkit.thunderport.ThunderPortPlayerListener.onPlayerTeleport(ThunderPortPlayerListener.java:22)
        at org.bukkit.plugin.java.JavaPluginLoader$8.execute(JavaPluginLoader.java:274)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.teleport(NetServerHandler.java:359)
        at org.bukkit.craftbukkit.entity.CraftPlayer.teleport(CraftPlayer.java:224)
        at com.sk89q.worldedit.bukkit.BukkitPlayer.setPosition(BukkitPlayer.java:95)
        at com.sk89q.worldedit.LocalPlayer.setPosition(LocalPlayer.java:523)
        at com.sk89q.worldedit.LocalPlayer.findFreePosition(LocalPlayer.java:84)
        at com.sk89q.worldedit.WorldEdit.handleArmSwing(WorldEdit.java:857)
        at com.sk89q.worldedit.bukkit.WorldEditPlayerListener.onPlayerAnimation(WorldEditPlayerListener.java:54)
        at org.bukkit.plugin.java.JavaPluginLoader$14.execute(JavaPluginLoader.java:310)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:755)
        at net.minecraft.server.Packet18ArmAnimation.a(SourceFile:35)
        at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    
     
  11. Offline

    Dreadreaver

  12. Offline

    Yggy

    Yeah, it's still throwing up mad errors. Everything is updated. Let me give you a list of my plugins, just in case it's one of those...

    Show Spoiler

    2011-05-12 10:15:11 [INFO] Plugins: AngryWolves, AutoRegionGuard, CommandBook, creaturebox, FalseBookBlock, FalseBookCart, FalseBookChat, FalseBookCore, FalseBookExtra, FalseBookIC, FlowControl, Help, HomeSweetHome, iConomy, LWC, mcMMO, MinequeryPlus, MonsterHunt, MultiInv, MultiVerse, Pixl, npcx, OpenInv, OutputHandler, PerformanceTweaks, Permissions, PermissionsPlus, RegionalWeather, Runecraft, ThunderPort, ToolRepair, uQuest, VanishNoPickup, VirtualChest, WorldEdit, WorldGuard


    It happens whether I teleport with the /tp command, the /mvtp command, the compass or just logging in.
     
  13. Offline

    Elvis

  14. try cb 760 rb
    and sure that you have the permissions to use this ?



    and for me it works fine. nice plugin
     
  15. Offline

    Dreadreaver

    replace your craftbukkit.jar with this one
    CB761 !!!!!! CB760 WONT WORK AT ALL
     
  16. Offline

    Yggy

    Porting into a pig produces pig zombies. Porting into pig zombies creates more pig zombies. Porting into a creeper produces a powered creeper, however when they blow they are normal. Porting around produces lightning and a fire that does not spread nor truly burn, it just exists for about 10 seconds.

    Show Spoiler

    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   If this file is for your default world (the one in server.properties) then you must
    #   leave copies blank.
    #  Example: copies: Derp    -  This will clone the permissions of the world Derp
    #
    # Make sure to rename this file to the name of the world that is in sever.properties under
    # level-name.  So if it is level-name: world  then this should be world.yml and in the
    # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
    #
    # NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
    # doing this is to use Notepad++ and replace the tab with 4 spaces.
    plugin:
        permissions:
            system: default
            copies:
    
    ##
    # AntiBuild is included with this.  To disable a group from being able to build then
    # set the build: flag to false (build: false).  If you want a group to be able to build
    # then set it to true.
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'foo.bar'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'foo.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    #   If you give a group this permissions, do not have the group inherit any permissions
    #   from other groups.  Any users assigned to this group should NOT be given any additional
    #   permissions either.
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-foo.bar'
    ##
    #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
    #   such as iChat or HeroChat in order for these to do anything.
    groups:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'arg.user'
                - 'BedRespawn.set'
                - 'BedRespawn.respawn'
                - 'commandbook.who'
                - 'commandbook.whois'
                - 'commandbook.motd'
                - 'commandbook.rules'
                - 'commandbook.msg'
                - 'commandbook.say.*'
                - 'commandbook.kit.list'
                - 'commandbook.clear'
                - 'iConomy.access'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'iConomy.rank'
                - 'lwc.protect'
                - 'essentials.help'
                - 'essentials.warp.*'
                - 'essentials.mail.*'
                - 'essentials.helpop'
                - 'essentials.me'
                - 'essentials.afk'
                - 'essentials.suicide'
                - 'essentials.rules'
                - 'essentials.motd'
                - 'essentials.list'
                - 'essentials.tpa'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.tpahere'
                - 'falsebook.anyic'
                - 'falsebook.blocks.*'
                - 'general.basic'
                - 'general.clear'
                - 'homesweethome.home'
                - 'homesweethome.home.bed'
                - 'mcmmo.motd'
                - 'mcmmo.regeneration'
                - 'mcmmo.commands.ability'
                - 'mcmmo.commands.party'
                - 'mcmmo.commands.whois'
                - 'mcmmo.chat.partychat'
                - 'mcmmo.ability.*'
                - 'mcmmo.item.chimaerawing'
                - 'mcmmo.skills.*'
                - 'monsterhunt.usercmd.*'
                - 'monsterhunt.rewardeverytime'
                - 'multiverse.list'
                - 'multiverse.portal.list'
        Builder:
            default: false
            info:
            inheritance:
                - Default
            permissions:
                - 'arg.claim'
                - 'essentials.warp.*'
                - 'essentials.setwarp'
                - 'essentials.back.ondeath'
                - 'essentials.top'
                - 'essentials.jump'
                - 'essentials.signs.protection.create'
                - 'essentials.signs.protection.use'
                - 'essentials.signs.disposal.*'
                - 'essentials.signs.mail.*'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Builder
            permissions:
                - 'commandbook.clear.other'
                - 'commandbook.slap.*'
                - 'commandbook.rocket.*'
                - 'commandbook.barrage.*'
                - 'commandbook.spawn'
                - 'commandbook.locations.*'
                - 'commandbook.teleport.*'
                - 'commandbook.whereami.*'
                - 'commandbook.kick'
                - 'essentials.essentials'
                - 'essentials.gc'
                - 'essentials.plugin'
                - 'essentials.spawnmob'
                - 'essentials.clearinventory.*'
                - 'essentials.broadcast'
                - 'essentials.antioch'
                - 'essentials.burn'
                - 'essentials.ext'
                - 'essentials.kill'
                - 'essentials.ban'
                - 'essentials.banip'
                - 'essentials.mute'
                - 'essentials.kick'
                - 'essentials.unban'
                - 'essentials.unbanip'
                - 'essentials.togglejail'
                - 'essentials.jails'
                - 'essentials.invsee'
                - 'essentials.item'
                - 'essentials.god'
                - 'essentials.heal'
                - 'essentials.powertool'
                - 'essentials.spawn'
                - 'general.admin'
                - 'general.teleport.*'
                - 'general.spawn'
                - 'general.give.*'
                - 'general.take.*'
                - 'general.clear.*'
                - 'general.heal'
                - 'general.hurt'
                - 'general.mobspawn'
                - 'general.weather'
                - 'iConomy.admin.account.*'
                - 'iConomy.admin.stats'
                - 'iConomy.bank.*'
                - 'lwc.mod'
                - 'monsterhunt.admincmd.*'
                - '-monsterhunt.rewardeverytime'
                - 'worldedit.navigation.*'
                - 'worldedit.snapshots.*'
                - 'worldedit.tool.info'
                - 'worldedit.extinguish'
                - 'worldedit.drain'
                - 'worldedit.butcher'
                - 'worldedit.reload'
        Admins:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
    
    ##
    # Users denote which users are included in which group.
    # TheNo1Yeti is in the Admin group
    # Herpina is a member of the Moderator group but also has access
    # to the herp.derp permissions
    # Derpina is a member of the admin group but does not have access
    # to the derp.derp permission node
    # Users can also have a prefix and suffix as seen with Herpina
    ##
    users:
        Yggy:
            group: Admins
            permissions:
        SignofJustice:
            group: Admins
            permissions:
    


    That's the permissions file for the worlds, give or take a permission or two for the other ones.

    Show Spoiler
    Code:
    #
    # WorldGuard's configuration file.
    #
    # This is the a per-world configuration file. It only affects one
    # corresponding world.
    #
    # About editing this file:
    # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
    #   you use an editor like Notepad++ (recommended for Windows users), you
    #   must configure it to "replace tabs with spaces." In Notepad++, this can
    #   be changed in Settings > Preferences > Language Menu.
    # - Don't get rid of the indents. They are indented so some entries are
    #   in categories (like "enforce-single-session" is in the "protection"
    #   category.
    # - If you want to check the format of this file before putting it
    #   into WorldGuard, paste it into http://yaml-online-parser.appspot.com/
    #   and see if it gives "ERROR:".
    # - Lines starting with # are comments and so they are ignored.
    #
    
    summary-on-start: on
    pumpkin-scuba: on
    
    protection:
        item-durability: on
        remove-infinite-stacks: off
    
    simulation:
        sponge:
            enable: on
            redstone: off
            radius: 3
    
    physics:
        no-physics-gravel: off
        no-physics-sand: off
        allow-portal-anywhere: off
        disable-water-damage-blocks: []
    
    ignition:
        block-tnt: on
        block-lighter: off
    
    fire:
        disable-all-fire-spread: on
        disable-fire-spread-blocks: []
        disable-lava-fire-spread: on
        lava-spread-blocks: []
    
    weather:
        disable-lightning-strike-fire: on
        prevent-lightning-strike-blocks: []
        # The following don't work yet
        disable-weather: on
        disable-thunderstorm: off
        disable-pig-zombification: on
        always-raining: off
        always-thundering: off
        disable-powered-creepers: off
    
    mobs:
        block-creeper-explosions: off
        block-creeper-block-damage: off
        block-creature-spawn: []
        anti-wolf-dumbness: false
    
    spawn:
        login-protection: 3
        spawn-protection: 0
        kick-on-death: off
        exact-respawn: on
        teleport-to-home-on-death: off
    
    player-damage:
        disable-fall-damage: off
        disable-lava-damage: off
        disable-fire-damage: off
        disable-lightning-damage: off
        disable-drowning-damage: off
        disable-suffocation-damage: off
        disable-contact-damage: off
        teleport-on-suffocation: off
        disable-void-damage: off
        teleport-on-void-falling: off
    
    regions:
        enable: on
        wand: 287
        max-claim-volume: 30000
        claim-only-inside-existing-regions: off
        max-region-count-per-player: 7
        high-frequency-flags: off
    
    iconomy:
        enable: on
        buy-on-claim: on
        # Price per block for buying on claim
        buy-on-claim-price: 2
    
    chest-protection:
        enable: off
    
    crops:
        disable-creature-trampling: off
        disable-player-trampling: off
    
    blacklist:
        use-as-whitelist: off
        logging:
            console:
                enable: on
            database:
                enable: off
                dsn: jdbc:mysql://localhost:3306/minecraft
                user: root
                password: pass
                table: blacklist_events
            file:
                enable: on
                path: worldguard/logs/%w-%Y-%m-%d.log
                open-files: 10
    


    That's the WorldGuard config for the same world.

    Show Spoiler
    Code:
    worlds:
        TheWorld:
            animals: true
            pvp: true
            alias: Real World
            blockBlacklist: ''
            worldBlacklist: ''
            spawn: -6:64:94:0.0:0.0
            mobs: false
            price: 0.0
            environment: NORMAL
            editWhitelist: ''
            playerBlacklist: ''
            playerWhitelist: ''
            editBlacklist: ''
        Archaeologists Island:
            animals: true
            pvp: true
            alias: Arch Isle
            blockBlacklist: ''
            worldBlacklist: ''
            spawn: 0:67:0:15.450001:13.950011
            mobs: true
            price: 0.0
            environment: NORMAL
            editWhitelist: ''
            playerBlacklist: ''
            playerWhitelist: ''
            editBlacklist: ''
        SurvivalIslandV3:
            animals: true
            pvp: true
            alias: Survival 3
            blockBlacklist: ''
            worldBlacklist: ''
            spawn: -10:65:57:0.0:0.0
            mobs: true
            price: 0.0
            environment: NORMAL
            editWhitelist: ''
            playerBlacklist: ''
            playerWhitelist: ''
            editBlacklist: ''
        WorldInTheAir:
            animals: true
            pvp: true
            alias: Air World
            blockBlacklist: ''
            worldBlacklist: ''
            spawn: 0:64:-32:0.0:0.0
            mobs: true
            price: 0.0
            environment: NORMAL
            editWhitelist: ''
            playerBlacklist: ''
            playerWhitelist: ''
            editBlacklist: ''
        Creation:
            animals: true
            pvp: false
            alias: ''
            blockBlacklist: ''
            worldBlacklist: ''
            spawn: -186:26:-136:88.499115:-2.6999333
            mobs: false
            price: 0.0
            environment: NORMAL
            editWhitelist: ''
            playerBlacklist: ''
            playerWhitelist: ''
            editBlacklist: ''
    


    That's the MultiVerse worlds file. The world, Creation, is the focus of all three configs.
     
  17. Offline

    Dreadreaver

    Read the thread dude ... its a clientside phenomenom. This wont create ANY aftereffect of a lightningbolt at all - its just your client who THINKS this as its hardcoded into the client that there should be fire/pigzombie/supercreeper on lightning
     
  18. Offline

    Yggy

    Show Spoiler
    Code:
    2011-05-12 15:20:54 [INFO] Starting minecraft server version Beta 1.5_02
    2011-05-12 15:20:54 [INFO] Loading properties
    2011-05-12 15:20:54 [INFO] Starting Minecraft server on *:25565
    2011-05-12 15:20:54 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-729-g5ee3f0f-b766jnks (MC: 1.5_02)
    2011-05-12 15:20:55 [INFO] Preparing level "Creation"
    2011-05-12 15:20:55 [INFO] Preparing start region
    2011-05-12 15:20:56 [INFO] LWC    Loading shared objects
    2011-05-12 15:20:56 [INFO] LWC    Native library: plugins/LWC/lib/native/Windows/amd64/sqlitejdbc.dll
    2011-05-12 15:20:56 [INFO] Starting MinequeryPlus server on *:25566
    2011-05-12 15:20:56 [INFO] [Permissions] (Phoenix) was Initialized.
    2011-05-12 15:20:56 [INFO] [MultiVerse] Permissions Found
    2011-05-12 15:20:57 [INFO] [MultiVerse] - Version 1.6.3 Enabled
    2011-05-12 15:20:57 [INFO] [MultiVerse] Found iConomy, enabling payments.
    2011-05-12 15:20:57 [INFO] [MultiVerse] Loading World & Settings - 'TheWorld' - NORMAL
    2011-05-12 15:20:57 [INFO] [MultiVerse] Loading World & Settings - 'Archaeologists Island' - NORMAL
    2011-05-12 15:20:58 [INFO] [MultiVerse] Loading World & Settings - 'SurvivalIslandV3' - NORMAL
    2011-05-12 15:20:59 [INFO] [MultiVerse] Loading World & Settings - 'WorldInTheAir' - NORMAL
    2011-05-12 15:20:59 [INFO] [MultiVerse] Loading World & Settings - 'Creation' - NORMAL
    2011-05-12 15:20:59 [INFO] [MultiVerse] 5 - World(s) loaded.
    2011-05-12 15:20:59 [INFO] [MultiVerse] Loading Portals
    2011-05-12 15:20:59 [INFO] [MultiVerse] 10 - Portal(s) loaded.
    2011-05-12 15:20:59 [INFO] [AngryWolves] Bukkit Wolf API enabled
    2011-05-12 15:20:59 [INFO] [AngryWolves] version 0.6 is enabled
    2011-05-12 15:20:59 [INFO] ARG has detected Permissions
    2011-05-12 15:20:59 [INFO] [ARG] Checking/loading files...
    2011-05-12 15:20:59 [INFO] [ARG] Loaded 0 items from Regions.txt
    2011-05-12 15:20:59 [INFO] [ARG] Loaded 3 items from LastOnline.txt
    2011-05-12 15:20:59 [INFO] [ARG] Loaded 0 items from FriendsList.txt
    2011-05-12 15:20:59 [INFO] [ARG] Scheduling tasks...
    2011-05-12 15:20:59 [INFO] AutoRegionGuard version 0.3 is enabled!
    2011-05-12 15:20:59 [INFO] CommandBook 1.5.1 enabled.
    2011-05-12 15:20:59 [INFO] CommandBook: 0 banned name(s) loaded.
    2011-05-12 15:20:59 [WARNING] CommandBook: Unknown kit item 'null'
    2011-05-12 15:20:59 [INFO] CommandBook: 5 kit(s) loaded.
    2011-05-12 15:20:59 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-05-12 15:20:59 [INFO] creaturebox version 0.7.3 is enabled!
    2011-05-12 15:20:59 [INFO] FalseBookBlock v0.84alpha by GeMo enabled
    2011-05-12 15:20:59 [INFO] [FalseBook Block] 2 Cauldrons successfully loaded.
    2011-05-12 15:20:59 [INFO] FalseBookCart v0.84alpha by GeMo enabled
    2011-05-12 15:20:59 [INFO] FalseBookChat v0.84alpha by GeMo enabled
    2011-05-12 15:20:59 [INFO] [FalseBook Core] FalseBookCore v0.84alpha by GeMo enabled!
    2011-05-12 15:20:59 [INFO] FalseBookExtra v0.84alpha by GeMo enabled
    2011-05-12 15:20:59 [INFO] FalseBookIC v0.84alpha by GeMo enabled
    2011-05-12 15:20:59 [INFO] FlowControl version 1.0 loaded.
    2011-05-12 15:20:59 [INFO] plugins\Help\ExtraHelp\bettershop.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\commandbook.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\commandhelper.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\iconomy.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\iconomy_bankaccount.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\lockette.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\lwc.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\minecartmania.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\multiverse.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\weclip.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\wegen.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\wehistory.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\wenav.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\wesel.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\wetool.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\weutil.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\worldedit.yml
    2011-05-12 15:21:00 [INFO] plugins\Help\ExtraHelp\worldguard.yml
    2011-05-12 15:21:00 [INFO] [HELP] 218 extra help entries loaded
    2011-05-12 15:21:00 [INFO] [HELP] Permissions enabled using: Permissions v2.7.2
    2011-05-12 15:21:00 [INFO] [HELP] Help 0.2.4.1 enabled
    2011-05-12 15:21:00 [INFO] HomeSweetHome: Version 0.8.3 loaded!
    2011-05-12 15:21:00 [INFO] [iConomy] Logging is currently disabled.
    2011-05-12 15:21:00 [INFO] [iConomy] v5.0 (Eruanna) loaded.
    2011-05-12 15:21:00 [INFO] [iConomy] Developed by: [Nijikokun]
    2011-05-12 15:21:00 [INFO] [MultiVerse] Found iConomy, enabling payments.
    2011-05-12 15:21:00 [INFO] HomeSweetHome: Hooked into iConomy!
    2011-05-12 15:21:01 [INFO] LWC    Loaded 116 locale strings (0 overrides)
    2011-05-12 15:21:01 [INFO] LWC    Using Nijikokun's permissions plugin for permissions
    2011-05-12 15:21:01 [INFO] [Permissions] version [2.7.2] (Phoenix)  loaded
    2011-05-12 15:21:01 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-05-12 15:21:01 [INFO] [MultiVerse] Found Permissions, enabling commands.
    2011-05-12 15:21:01 [INFO] HomeSweetHome: Hooked into Permissions!
    2011-05-12 15:21:01 [INFO] [iConomy] hooked into Permissions.
    2011-05-12 15:21:01 [INFO] LWC    Loading MySQL
    2011-05-12 15:21:01 [INFO] MySQL    Using: Mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
    2011-05-12 15:21:01 [INFO] LWC    At version: v2.31
    2011-05-12 15:21:01 [INFO] [mcMMO] Permissions enabled.
    2011-05-12 15:21:01 [INFO] mcMMO version 1.0.07 is enabled!
    2011-05-12 15:21:01 [INFO] [MonsterHunt 1.0.2] Loaded 6 High scores.
    2011-05-12 15:21:01 [INFO] [MonsterHunt] MonsterHunt Loaded!
    2011-05-12 15:21:01 [INFO] [MultiInv] Shared worlds loaded succesfully
    2011-05-12 15:21:01 [INFO] [MultiInv] version 1.5.2 is enabled!
    2011-05-12 15:21:01 [INFO] [Pixl] 1.5 Beta1 Loaded
    2011-05-12 15:21:01 [INFO] [Pixl] Hooking into Permissions
    2011-05-12 15:21:01 [INFO] [Pixl] Advanced /help support enabled
    2011-05-12 15:21:01 [INFO] npcx : load settings (0.0.1) begun
    2011-05-12 15:21:01 [INFO] jdbc:mysql://localhost:3306/minecraft?autoReconnect=true
    2011-05-12 15:21:01 [INFO] npcx : initialising database connection
    2011-05-12 15:21:01 [INFO] npcx : loadsettings() ended
    2011-05-12 15:21:01 [INFO] npcx : registering monitored events
    2011-05-12 15:21:01 [INFO] npcx : Checking for DB Updates from DBVersion:1.10
    2011-05-12 15:21:01 [INFO] npcx : loading player factions
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 player factions.
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 research.
    2011-05-12 15:21:01 [INFO] npcx : loading zones
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 zones with 0 zone_members.
    2011-05-12 15:21:01 [INFO] npcx : loading Merchants
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 Merchant with (0) entries.
    2011-05-12 15:21:01 [INFO] npcx : loading factions
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 factions.
    2011-05-12 15:21:01 [INFO] npcx : loading faction entries
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 faction entries.
    2011-05-12 15:21:01 [INFO] npcx : loading pathgroups
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 pathgroup.
    2011-05-12 15:21:01 [INFO] npcx : loading loottables
    2011-05-12 15:21:01 [INFO] npcx : Loaded 0 loottables.
    2011-05-12 15:21:02 [INFO] npcx : loading spawngroups
    2011-05-12 15:21:02 [INFO] npcx : Loaded 0 spawngroups.
    2011-05-12 15:21:02 [INFO] npcx : loading players
    2011-05-12 15:21:02 [INFO] npcx : Loaded 5 players.
    2011-05-12 15:21:02 [INFO] npcx: Matching players
    2011-05-12 15:21:02 [INFO] npcx version 0.0.1 enabled.
    2011-05-12 15:21:02 [INFO] [npcx] hooked into iConomy.
    2011-05-12 15:21:02 [INFO] [OpenInv] version 1.1.1 is enabled!
    2011-05-12 15:21:02 [INFO] [OutputHandler] Adding listener to Minecraft's logger
    2011-05-12 15:21:02 [INFO] [OutputHandler] Plugin enabled! (version 1.0)
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Version 0.06 enabled.
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Set auto save interval to 36000 in world "Creation"
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Set auto save interval to 36000 in world "TheWorld"
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Set auto save interval to 36000 in world "Archaeologists Island"
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Set auto save interval to 36000 in world "SurvivalIslandV3"
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Set auto save interval to 36000 in world "WorldInTheAir"
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Chunk Life Time: 300000ms
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Chunk Prune Time: 5000ms
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Monster Limit set to 2500
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Allow Monsters True
    2011-05-12 15:21:02 [INFO] [Performance Tweaks] Allow Animals True
    2011-05-12 15:21:02 [INFO] [P2] Group Default does not have a rank defined.
    2011-05-12 15:21:02 [INFO] [P2] Group Builder does not have a rank defined.
    2011-05-12 15:21:02 [INFO] [P2] Group Moderator does not have a rank defined.
    2011-05-12 15:21:02 [INFO] [P2] Group Admins does not have a rank defined.
    2011-05-12 15:21:02 [INFO] [P2] Some groups do not have a rank defined, some commands are disabled.
    2011-05-12 15:21:02 [INFO] [P2] No Groups Defined.
    2011-05-12 15:21:02 [INFO] [P2] version 2.1 has been enabled.
    2011-05-12 15:21:02 [INFO] RegionalWeather v0.4.5 enabled.
    2011-05-12 15:21:02 [INFO] [Runecraft] Rune blacklist with 0 runes loaded.
    2011-05-12 15:21:02 [INFO] [Runecraft] World 'Creation': id 0
    2011-05-12 15:21:02 [INFO] [Runecraft] Runecraft 2.5.2 initialized.
    2011-05-12 15:21:02 [INFO] [Runecraft] World 'TheWorld': id 1
    2011-05-12 15:21:02 [INFO] [Runecraft] World 'Archaeologists Island': id 2
    2011-05-12 15:21:02 [INFO] [Runecraft] World 'SurvivalIslandV3': id 3
    2011-05-12 15:21:02 [INFO] [Runecraft] World 'WorldInTheAir': id 4
    2011-05-12 15:21:02 [INFO] Runecraft plugin version 0.3 is enabled!
    2011-05-12 15:21:02 [INFO] ThunderPort 1.0 enabled
    2011-05-12 15:21:02 [INFO] [ToolRepair] iConomy linked to ToolRepair.
    2011-05-12 15:21:02 [INFO] [ToolRepair] Version 1.2 loaded.
    2011-05-12 15:21:02 [INFO] [ToolRepair] ToolRepair Sign Cost: 5000
    2011-05-12 15:21:02 [INFO] [ToolRepair] Developed by: [vanZeben]
    2011-05-12 15:21:02 [INFO] [uQuest] Loaded with Flatfile!
    2011-05-12 15:21:02 [INFO] [uQuest] v1.5 enabled! With 53 quests loaded!
    2011-05-12 15:21:02 [INFO] [VanishNoPickup] 1.7 enabled.
    2011-05-12 15:21:02 [INFO] [VirtualChest] (version 3.6.1)
    2011-05-12 15:21:02 [INFO] [VirtualChest] Chests loaded !
    2011-05-12 15:21:02 [INFO] [VirtualChest] Successfully linked with Permissions.
    2011-05-12 15:21:02 [INFO] [VirtualChest] Successfully linked with iConomy.
    2011-05-12 15:21:02 [INFO] [VirtualChest] Successfully linked with mcMMO.
    2011-05-12 15:21:02 [INFO] WorldEdit 4.5 enabled.
    2011-05-12 15:21:02 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-05-12 15:21:02 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Creation) Single session is enforced.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Creation) TNT ignition is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Creation) Lighters are PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Creation) Lava fire is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Creation) All fire spread is disabled.
    2011-05-12 15:21:02 [INFO] WorldGuard: Loaded configuration for world 'Creation"
    2011-05-12 15:21:02 [INFO] WorldGuard: (TheWorld) Single session is enforced.
    2011-05-12 15:21:02 [INFO] WorldGuard: (TheWorld) TNT ignition is PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (TheWorld) Lighters are PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (TheWorld) Lava fire is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (TheWorld) Fire spread is UNRESTRICTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: Loaded configuration for world 'TheWorld"
    2011-05-12 15:21:02 [INFO] WorldGuard: (Archaeologists Island) Single session is enforced.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Archaeologists Island) TNT ignition is PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Archaeologists Island) Lighters are PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Archaeologists Island) Lava fire is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (Archaeologists Island) Fire spread is UNRESTRICTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: Loaded configuration for world 'Archaeologists Island"
    2011-05-12 15:21:02 [INFO] WorldGuard: (SurvivalIslandV3) Single session is enforced.
    2011-05-12 15:21:02 [INFO] WorldGuard: (SurvivalIslandV3) TNT ignition is PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (SurvivalIslandV3) Lighters are PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (SurvivalIslandV3) Lava fire is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (SurvivalIslandV3) Fire spread is UNRESTRICTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: Loaded configuration for world 'SurvivalIslandV3"
    2011-05-12 15:21:02 [INFO] WorldGuard: (WorldInTheAir) Single session is enforced.
    2011-05-12 15:21:02 [INFO] WorldGuard: (WorldInTheAir) TNT ignition is PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (WorldInTheAir) Lighters are PERMITTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: (WorldInTheAir) Lava fire is blocked.
    2011-05-12 15:21:02 [INFO] WorldGuard: (WorldInTheAir) Fire spread is UNRESTRICTED.
    2011-05-12 15:21:02 [INFO] WorldGuard: Loaded configuration for world 'WorldInTheAir"
    2011-05-12 15:21:02 [INFO] WorldGuard: 5 regions loaded for 'Creation'
    2011-05-12 15:21:02 [INFO] WorldGuard: 0 regions loaded for 'TheWorld'
    2011-05-12 15:21:03 [INFO] WorldGuard: 1 regions loaded for 'Archaeologists Island'
    2011-05-12 15:21:03 [INFO] WorldGuard: 1 regions loaded for 'SurvivalIslandV3'
    2011-05-12 15:21:03 [INFO] WorldGuard: 1 regions loaded for 'WorldInTheAir'
    2011-05-12 15:21:03 [INFO] WorldGuard 270-wiz enabled.
    2011-05-12 15:21:03 [INFO] Done (0.801s)! For help, type "help" or "?"
    2011-05-12 15:21:03 [INFO] [FalseBook Block] 0 Areas loaded.
    2011-05-12 15:21:03 [INFO] [FalseBook Block] 0 Bridges successfully loaded.
    2011-05-12 15:21:03 [INFO] [FalseBook Block] 0 Doors successfully loaded.
    2011-05-12 15:21:03 [INFO] [FalseBook Block] Gates successfully loaded.
    2011-05-12 15:21:03 [INFO] [FalseBook IC] plugins/FalseBook/Transmitter.db not found.
    2011-05-12 15:21:03 [INFO] [FalseBook IC] plugins/FalseBook/Receiver.db not found.
    2011-05-12 15:21:03 [INFO] [FalseBook IC] plugins/FalseBook/SensorList.db not found.
    2011-05-12 15:21:07 [INFO] [uQuest] Successfully linked with iConomy.
    2011-05-12 15:21:07 [INFO] [uQuest] Successfully linked with Permissions.
    2011-05-12 15:21:32 [INFO] Yggy [/127.0.0.1:56232] logged in with entity id 398
    2011-05-12 15:21:32 [INFO] Loaded world: WorldInTheAir
    2011-05-12 15:21:33 [INFO] CommandBook: No intro.mid; not playing intro song.
    2011-05-12 15:21:33 [SEVERE] Could not pass event LIGHTNING_STRIKE to WorldGuard
    java.lang.NoSuchMethodError: org.bukkit.event.weather.LightningStrikeEvent.getLightning()Lorg/bukkit/entity/Entity;
        at com.sk89q.worldguard.bukkit.WorldGuardWeatherListener.onLightningStrike(WorldGuardWeatherListener.java:114)
        at org.bukkit.plugin.java.JavaPluginLoader$68.execute(JavaPluginLoader.java:647)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.WorldServer.a(WorldServer.java:113)
        at org.bukkit.craftbukkit.CraftWorld.strikeLightningEffect(CraftWorld.java:376)
        at com.dreadreaver.bukkit.thunderport.ThunderPortPlayerListener.onPlayerTeleport(ThunderPortPlayerListener.java:22)
        at org.bukkit.plugin.java.JavaPluginLoader$8.execute(JavaPluginLoader.java:274)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.teleport(NetServerHandler.java:359)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:348)
        at net.minecraft.server.NetLoginHandler.b(NetLoginHandler.java:96)
        at net.minecraft.server.NetLoginHandler.a(NetLoginHandler.java:33)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:87)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-12 15:21:33 [SEVERE] Could not pass event LIGHTNING_STRIKE to WorldGuard
    java.lang.NoSuchMethodError: org.bukkit.event.weather.LightningStrikeEvent.getLightning()Lorg/bukkit/entity/Entity;
        at com.sk89q.worldguard.bukkit.WorldGuardWeatherListener.onLightningStrike(WorldGuardWeatherListener.java:114)
        at org.bukkit.plugin.java.JavaPluginLoader$68.execute(JavaPluginLoader.java:647)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.WorldServer.a(WorldServer.java:113)
        at org.bukkit.craftbukkit.CraftWorld.strikeLightningEffect(CraftWorld.java:376)
        at com.dreadreaver.bukkit.thunderport.ThunderPortPlayerListener.onPlayerTeleport(ThunderPortPlayerListener.java:22)
        at org.bukkit.plugin.java.JavaPluginLoader$8.execute(JavaPluginLoader.java:274)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.teleport(NetServerHandler.java:359)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:348)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:318)
        at net.minecraft.server.Packet10Flying.a(SourceFile:126)
        at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-12 15:21:38 [SEVERE] Could not pass event LIGHTNING_STRIKE to WorldGuard
    java.lang.NoSuchMethodError: org.bukkit.event.weather.LightningStrikeEvent.getLightning()Lorg/bukkit/entity/Entity;
        at com.sk89q.worldguard.bukkit.WorldGuardWeatherListener.onLightningStrike(WorldGuardWeatherListener.java:114)
        at org.bukkit.plugin.java.JavaPluginLoader$68.execute(JavaPluginLoader.java:647)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.WorldServer.a(WorldServer.java:113)
        at org.bukkit.craftbukkit.CraftWorld.strikeLightningEffect(CraftWorld.java:376)
        at com.dreadreaver.bukkit.thunderport.ThunderPortPlayerListener.onPlayerTeleport(ThunderPortPlayerListener.java:22)
        at org.bukkit.plugin.java.JavaPluginLoader$8.execute(JavaPluginLoader.java:274)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.teleport(NetServerHandler.java:359)
        at org.bukkit.craftbukkit.entity.CraftPlayer.teleport(CraftPlayer.java:224)
        at com.sk89q.worldedit.bukkit.BukkitPlayer.setPosition(BukkitPlayer.java:95)
        at com.sk89q.worldedit.LocalPlayer.setPosition(LocalPlayer.java:523)
        at com.sk89q.worldedit.LocalPlayer.findFreePosition(LocalPlayer.java:84)
        at com.sk89q.worldedit.WorldEdit.handleArmSwing(WorldEdit.java:857)
        at com.sk89q.worldedit.bukkit.WorldEditPlayerListener.onPlayerAnimation(WorldEditPlayerListener.java:54)
        at org.bukkit.plugin.java.JavaPluginLoader$14.execute(JavaPluginLoader.java:310)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:289)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:755)
        at net.minecraft.server.Packet18ArmAnimation.a(SourceFile:35)
        at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-12 15:21:41 [INFO] Yggy lost connection: disconnect.quitting
    2011-05-12 15:21:41 [INFO] Connection reset
    
    


    That's as of this posting.

    I understand about the client-side phenom all too well. Believe me when I tell you that I've done extensive study on it.

    Seems that it is not your plugin, though. It's just noticeable because you use lightning. The problem seems to lie in WorldGuard or WorldEdit. Not sure which one, yet.

    Ok, at least I've pinpointed the error now.
     
  19. Offline

    Dreadreaver

    I just released ThunderPort 1.1 - to be honest the first version was bugfree but it wasnt really what I wanted it to be. Now with 1.1 I added two extra checks which make this plugin just what it should be - check out the changelog:
    • ThunderPort activates only on teleports with at least 5 blocks distance
    • ThunderPort activates only on teleports within the same world

    @Yggy
    Im using WorldEdit and WorldGuard myself with my plugins without any problems whatsoever ... strange
     
  20. Great stuff. Can you, please, make the minimum distance configurable? We use the compass from word edit a lot and it's getting ridiculous sometimes :)
     
  21. Offline

    Dreadreaver

    I'll add it to ThunderPort 1.2 - but honestly: Right now that is the only change from 1.1 to 1.2
    When or if I ever release ThunderPort 1.2 - that I dont know. This plugin was created at a donors request so I'll only roll out a new version if a donor asks for some changes. Of course anybody could be a donor ;)
     
  22. Offline

    angus22397

    Taking?
    I think you mean "so I gather this doesnt work with craftbukkit 733".
    (this isn't a necropost ;))
     
  23. whats your prob works fine
     
  24. Offline

    Dreadreaver

    strikeLightningEffeckt was added with 761 - this shouldnt work with 760 and below
    who cares? if you want to correct somebody write a pm
     
  25. Offline

    angus22397

    LawL, good idea.

    Edit: BTW great job on this plugin, but can you make this plugin or thunder spawn (cant remember which one) not have fire when the lightning strikes (even though the fire doesn't do anything) if you can, I think with the native harmless thunder thing you mentioned on thunder spawn.
     
  26. Offline

    Codex Arcanum

    It would be nice if you could toggle lightning-ports, so that if you want to do some TPing to the top of your admin tower, you don't let the whole world know, but when you are laying down the law to griefers, you still look impressive :).
     
  27. Offline

    Dreadreaver

    impossible, the fire is clientside
    check out my post about 1.2 - I'll hande this the same way
     
  28. Offline

    angus22397

    LawL,
    So its clientside like the pig zombies?
    Btw the pig zombies can push you and stuff even though they aren't there which i found LawL worthy.
     
  29. oh my misstake want to say try rb 766 sorry
     
  30. Offline

    Dreadreaver

    yes its the same
    no problem ;)
     

Share This Page