Inactive [TP] RealTeleporter - Simple, easy and well-working teleportation gate [1337-1561]

Discussion in 'Inactive/Unsupported Plugins' started by Baptiste Pillot, Mar 28, 2011.

  1. Offline

    tickleman

    RealTeleporter - Teleportation gates

    This is a very simple-to-use teleportation gates system, that permit to freely create and link teleportation gates.

    The main RealTeleporter Project page is now on bukkitdev.

    Please do not use the forum for bugs reporting, as I can't read all your posts !
    Use the bukkitdev tickets system instead.
    You can freely talk about the plugin here into the forum, but without the developpers :)

    Features
    • Create/delete/link/loop teleportation gates using commands like EpicGates or WarpGates
    • This plugin was made as EpicGates 0.3 and old unmaintained WarpGate plugins have some bugs that are not quickly removed
    • Teleporters are created on a single block. If you want dual-or-more-blocks téléporters to work, you will need to create several teleporters
    • Work with thousands teleporters without making your server lag
    Summary
     
    Valdifer, Baummann and sinkir like this.
  2. Offline

    _Robert

    At least default Permissions? Only OP can create/remove/link portals, all others can only use them. Please...
     
  3. Offline

    Valdifer

    Thx for plugin!! keep it up!
     
  4. Offline

    Cat121

    Sooo amazing !

    I'm juste waiting for the permissions, i don't want my players to create as many portals as they want.
     
  5. Offline

    PreFixLT

    please add permissions!!! :)
     
  6. Offline

    Clavus

    I've already made my own custom edit of this plugin to add permissions. You only have to add the permission to the plugin.yml and add "if (!player.hasPermission("permissionname")) { return true; }" near the start of the onCommand method in the plugin class, and it'll work with Bukkit permissions.

    I am having an annoying bug that when you're teleported to a place that isn't loaded in the server's memory, it doesn't load the chunk you're teleported to on the client (while all the chunks around it ARE loaded).

    EDIT: fixed it by adding this after the player.teleport(location) code:
    Code:
    Chunk ch = location.getChunk();
    player.getWorld().refreshChunk(ch.getX(), ch.getZ());
    It resends the chunk the player teleported to. Seems to work as intended.
     
  7. Offline

    IronWill1991

    I'm glad to see this plugin still works with 1.1. I'm been using it since like 1.6 beta. But I'm worried about bukkit working with Mojang and new API thing.
     
  8. Offline

    aidancbrady

    Will this be updated for 1.2.2?
    Thanks, it is like my best plugin :p
    -Aidan, owner of OreCraft
    www.OreCraft.org
     
  9. Offline

    IronWill1991

    I agree, I love this plugin and I don't to see this abandoned. My players love using the teleporter "pads" to get to far away places. I even built a "teleporter" building with multiple pads inside leading to many places.
     
  10. Offline

    aidancbrady

    I know! I made an entire portal system that went to different worlds of my server. I even made an entire "PortalBuilding" that had different RTEL portals that led to the nether, ender, and overworld!
     
  11. Offline

    BoorMachine

    Please update this plugin to 1.2.3, its Awesome!
     
    Vert77 and 14stephen14 like this.
  12. Offline

    Vert77

    I just came here to post that same thing! Great minds think alike!
     
  13. Offline

    Creeperman017

    Bukkit dev says that it shoulfd work for 1.2.3 but it doesnt (my server wont work without it)

    This is in my server log
    I have the 1.2.3 version
    Code:
    2012-03-12 14:05:08 [SEVERE] Could not load 'plugins/RealTeleporter.jar' in folder 'plugins'
    org.bukkit.plugin.UnknownDependencyException: RealPlugin
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:176)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:207)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:183)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:53)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:156)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:425)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:490)
    2012-03-12 14:05:08 [SEVERE] Could not load 'plugins/Jobs.jar' in folder 'plugins'
    org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: org/bukkit/event/block/BlockListener
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:148)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:287)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:211)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:207)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:183)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:53)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:156)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:425)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:490)
    Caused by: java.lang.NoClassDefFoundError: org/bukkit/event/block/BlockListener
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClass(Unknown Source)
        at java.security.SecureClassLoader.defineClass(Unknown Source)
        at java.net.URLClassLoader.defineClass(Unknown Source)
        at java.net.URLClassLoader.access$100(Unknown Source)
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:41)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:29)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at com.zford.jobs.Jobs.<init>(Jobs.java:75)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:144)
        ... 8 more
    Caused by: java.lang.ClassNotFoundException: org.bukkit.event.block.BlockListener
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:41)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:29)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 27 more
    Please Help me

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

    Lennartschaaf

    when is it going to be 1.2.3 ?
     
  15. Offline

    flash4T

    when is it going to be 1.2.4 ? :-/ .....
     
  16. Mines working fine on 1.2.5
     
  17. Offline

    zippolino

    Your plugin is awesome =).
    But is there an option that you can limit the amount of portals a player can create?


    That would be really nice, if you could implement that.
    Thx a lot =).
     
  18. Offline

    Lennartschaaf

    i really think this plugin is great only i cant use it for my server because i have 1.2.5 ,
    so can you think to update i would love that :)
    great job with this plugin !
     
  19. Use the latest dev build.... it works fine on my server
     
  20. Offline

    Lennartschaaf

    oke tnx
     
  21. Offline

    Livore

    Need Help too :'(
    Code:
    2012-04-17 15:44:42 [INFO] Starting minecraft server version 1.2.5
    2012-04-17 15:44:42 [INFO] Loading properties
    2012-04-17 15:44:42 [INFO] Starting Minecraft server on XX.XXX.XXX.XXX:25565
    2012-04-17 15:44:42 [INFO] This server is running CraftBukkit version git-Bukkit-1.2.5-R1.0-b2149jnks (MC: 1.2.5) (Implementing API version 1.2.5-R1.0)
    2012-04-17 15:44:42 [SEVERE] Could not load 'plugins/RealTeleporter.jar' in folder 'plugins'
    org.bukkit.plugin.UnknownDependencyException: RealPlugin
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:195)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:207)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:183)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:53)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:156)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:422)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:492)
    2012-04-17 15:44:42 [INFO] [Lockette] Loading Lockette v1.6
    2012-04-17 15:44:42 [INFO] [PlgSetspawn] Loading PlgSetspawn v5.0
    2012-04-17 15:44:42 [INFO] [AntiCreeper3] Loading AntiCreeper3 v3.4.0
    2012-04-17 15:44:42 [INFO] [RemoteToolkitPlugin] Loading RemoteToolkitPlugin v0.61
    2012-04-17 15:44:42 [INFO] Preparing level "world"
    2012-04-17 15:44:42 [INFO] Default game type: 0
    2012-04-17 15:44:42 [INFO] Preparing start region for level 0 (Seed: -6976932666393388315)
    2012-04-17 15:44:43 [INFO] Preparing start region for level 1 (Seed: -7789115456558122690)
    2012-04-17 15:44:43 [INFO] Preparing spawn area: 36%
    2012-04-17 15:44:44 [INFO] Preparing start region for level 2 (Seed: -7789115456558122690)
    2012-04-17 15:44:44 [INFO] [Lockette] Enabling Lockette v1.6
    2012-04-17 15:44:44 [INFO] [Lockette] Version 1.6 is being enabled!  Yay!  (Core version 1.3.2)
    2012-04-17 15:44:44 [INFO] [Lockette] Detected craftbukkit build [2149] ok.
    2012-04-17 15:44:44 [INFO] [Lockette] Custom lockable block list: [116, 84, 57]
    2012-04-17 15:44:44 [INFO] [Lockette] Using ops file for admin permissions.
    2012-04-17 15:44:44 [INFO] [Lockette] Ready to protect your containers.
    2012-04-17 15:44:44 [INFO] [PlgSetspawn] Enabling PlgSetspawn v5.0
    2012-04-17 15:44:44 [INFO] PlgSetspawn version 5.0 is enabled!
    2012-04-17 15:44:44 [INFO] [AntiCreeper3] Enabling AntiCreeper3 v3.4.0
    2012-04-17 15:44:44 [INFO] [AntiCreeper3] brought to you by Filbert66 (<=v.2.5 by Rothens)
    2012-04-17 15:44:44 [INFO] [AntiCreeper3] successfully set log level to INFO
    2012-04-17 15:44:44 [INFO] [RemoteToolkitPlugin] Enabling RemoteToolkitPlugin v0.61
    2012-04-17 15:44:44 [INFO] Memory max: 954466304 bytes
    2012-04-17 15:44:44 [INFO] Memory total: 323682304 bytes
    2012-04-17 15:44:44 [INFO] Remote Toolkit Plugin V0.61 enabled!
    2012-04-17 15:44:44 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2012-04-17 15:44:44 [INFO] Done (2.120s)! For help, type "help" or "?"
     
  22. Offline

    PureIntensity

    im having a problem with the plugin.
    i put the jar in my plugins folder but its not showing up in game.
    any idea of what could have caused this?
     
  23. Offline

    Jungle_Law

    Could you add support for Essentials Permissions?
     
  24. Offline

    damname101

    love this plugin but i am very frustrated by it. only ops can use the teleporters. when a member tries to use it....nothing happens. i added realteleporters.teleport to the member permissions and nothing. i checked the config file for realteleporters and it was set to bukkit. i changed it to permissionsex and it broke the plugin. i reinstalled rtel and that config file had NONE for permissions. again...only ops could use the teleporters...but not members and there is no errors given.

    i need this to work...cant open the server without it and the spawn is built around the teleporters! i cant tear up the spawn to add those big bulky ugly nether portal teleporters....just wont work...i need a fix!!
     

Share This Page