Inactive [TP] Stargate v0.6.10 - The Bukkit port. A portal plugin [1317]

Discussion in 'Inactive/Unsupported Plugins' started by Drakia, Feb 10, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    Drakia

    Stargate - The Bukkit Port. A portal plugin.
    Version: 0.6.10
    CraftBukkit: 1317
    Addons: Stargate-DHD

    Plugin Dependencies:
    Permissions 2.x/3.x (Optional)
    Register (Optional, will allow any Economy plugin to be used)

    PLEASE READ IF YOU NEED SUPPORT:
    I require a few things to offer support to you. First, I need you to enable debug mode (set debug to true in the Stargate config.yml file). Second, I need you to post your server.log file to http://pastebin.com and post a link to that in the topic. Then I need you to paste both your Stargate config.yml, and your Permissions config to http://pastebin.com and link to those as well. Without this information I will be unable to help you, so do yourself a favor and post the required information!

    This plugin supports Permissions 2.x/3.x as well as SuperPerms via the PermissionsBukkit plugin or another SuperPerms manager.
    This plugin supports Register -- This will allow use of any economy plugin that Register supports

    =============
    Description
    =============
    This is a port of the Stargate plugin from hMod - Originally by Dinnerbone/Sturmeh.
    Create gates that allow for instant-teleportation between large distances. Gates can be always-open, or triggered, they can be hidden, or accessible to everybody, they can share a network, or they can be split into clusters.

    Download: http://thedgtl.net/bukkit/Stargate.jar
    Source: http://github.com/TheDgtl/Stargate-Bukkit/

    =============
    Language Packs
    =============
    http://thedgtl.net/bukkit/sg/de.txt -- German (Thanks EduardBaer)
    http://thedgtl.net/bukkit/sg/nl.txt -- Dutch (Thanks Grovert11)
    http://thedgtl.net/bukkit/sg/ru.txt -- Russian (Thanks ckr@jk)
    http://thedgtl.net/bukkit/sg/fr.txt -- French (Thanks Dauphin14)

    =============
    Known Issues
    =============
    None

    =============
    User Videos
    =============
    http://www.youtube.com/uggames#p/u/4/_Xzbmp7UlXw - Tutorial video by @BIG_PIP_IN - A few notes:
    1) The 'F' option is actually to create a 'F'ree gate. A fixed gate is when you specify a destination on the second line.
    2) The button is automagically created for you, so there's no need to actually place a button, but no harm in it either

    =============
    Permissions
    =============
    I now fully implemented SuperPerms support, which meant an overhaul of the Permissions nodes. I also removed the network/world filter options as they are completely handled by Permissions now with no need for an option. The new permissions nodes means you may need to redo your permissions setup.
    A child node (indented) will be given if a player has the parent node (So a player with stargate.use will have access to all stargate.world.* nodes essentially, though it's not implemented like this you can think of it like this).

    If you want to have more control over who can use what network, first set the stargate.use permission to false (This is REQUIRED, as it defaults to true, and is a full override). When using the network/world nodes, you will need to set up BOTH nodes, leaving out either stargate.network or stargate.world will result in 'Permission Denied' errors.
    Once you have disabled stargate.use, you can either give individual stargate.network.{name} nodes, or give them stargate.network and set specific stargate.network.{name} nodes to false to deny access to those specific networks.
    Worlds work in the same way, though with stargate.world.{name}. (Make sure to set up both stargate.network AND stargate.world nodes to avoid Permission Denied errors).
    Create and destroy permissions work along the same lines, stargate.create/stargate.destroy will override all other options, if you want more fine-tuned control first set those permissions to false, then give stargate.create.network/stargate.create.gate and use the subnodes to remove specific networks/gates.

    If you are not using stargate.use, stargate.create or stargate.destroy then you MUST define EVERYTHING yourself for that specific set of nodes

    Code:
    stargate.use -- Allow use of all gates linking to any world in any network (Override ALL network/world permissions. Set to false to use network/world specific permissions)
      stargate.world -- Allow use of gates linking to any world (For Permissions 2.x/3.x please use stargate.world.*)
        stargate.world.{world} -- Allow use of gates with a destination in {world}. Set to false to disallow use.
      stargate.network -- Allow use of gates on all networks (For Permissions 2.x/3.x please use stargate.network.*)
        stargate.network.{network} -- Allow use of all gates in {network}. Set to false to disallow use.
    
    stargate.option -- Allow use of all options
      stargate.option.hidden -- Allow use of 'H'idden
      stargate.option.alwayson -- Allow use of 'A'lways-On
      stargate.option.private -- Allow use of 'P'rivate
      stargate.option.free -- Allow use of 'F'ree
      stargate.option.backwards -- Allow use of 'B'ackwards
      stargate.option.show -- Allow use of 'S'how
      
    stargate.create -- Allow creating gates on any network (Override all create permissions)
      stargate.create.personal -- Allow creating gates on network {playername}
      stargate.create.network -- Allow creating gates on any network (For Permissions 2.x/3.x please use stargate.create.network.*)
        stargate.create.network.{networkname} -- Allow creating gates on network {networkname}. Set to false to disallow creation on {networkname}
      stargate.create.gate -- Allow creation of any gate layout (For Permissions 2.x/3.x please use stargate.create.gate.*)
        stargate.create.gate.{gatefile} -- Allow creation of only {gatefile} gates
    
    stargate.destroy -- Allow destruction gates on any network (Orderride all destroy permissions)
      stargate.destroy.personal -- Allow destruction of gates owned by user only
      stargate.destroy.network -- Allow destruction of gates on any network (For Permissions 2.x/3.x please use stargate.destroy.network.*)
        stargate.destroy.network.{networkname} -- Allow destruction of gates on network {networkname}. Set to false to disallow destruction of {networkname}
    
    stargate.free -- Allow free use/creation/destruction of gates
      stargate.free.use -- Allow free use of Stargates
      stargate.free.create -- Allow free creation of Stargates
      stargate.free.destroy -- Allow free destruction of Stargates
      
    stargate.admin -- Allow all admin features (Hidden/Private only so far)
      stargate.admin.private -- Allow use of Private gates not owned by user
      stargate.admin.hidden -- Allow access to Hidden gates not ownerd by user
    Please read this if you are using PermissionsEx
    PermissionsEx loads nodes in a very screwed up manner. You need to put any wildcards AFTER their negations. So if you want to allow access to all networks except 'Bah' you would do it as such:
    Code:
            - -stargate.network.Bah
            - stargate.network.*
    This is a PermissionsEx issue, and there is nothing I can do to make it easier to use negations.

    =============
    Default Permissions
    =============
    stargate.use -- Everyone
    stargate.create -- Op
    stargate.destroy -- Op
    stargate.option -- Op
    stargate.free -- Op
    stargate.admin -- Op

    =============
    Instructions
    =============
    Building a gate:
    Code:
        OO
       O  O - These are Obsidian blocks. You need 10.
       O  O - Place a sign on either of these two blocks of Obsidian.
       O  O
        OO
    Sign Layout:
    - Line 1: Gate Name (Max 11 characters)
    - Line 2: Destination Name [Optional] (Max 11 characters, used for fixed-gates only)
    - Line 3: Network name [Optional] (Max 11 characters)
    - Line 4: Options [Optional] ('A' for always-on fixed gate, 'H' for hidden networked gate, 'P' for a private gate, 'F' for a free gate, 'B' is a backwards gate (You will come out the back), 'S' is for showing always-on gates in their destination list)

    Options:
    The options are the single letter, not the word. So to make a private hidden gate, your 4th line would be 'PH'.

    Picture:
    Show Spoiler
    [​IMG]


    Using a gate:
    - Right click the sign to choose a destination.
    - Right click the button to open up a portal.
    - Step through.

    Fixed gates:
    - Fixed gates go to only one set destination.
    - Fixed gates can be linked to other fixed gates, or normal gates. A normal gate cannot open a portal to an always-open fixed gate however.
    - To create a fixed gate, specify a destination on the second line of the stargate sign.
    - Set the 4th line of the stargate sign to "A" to enable an always-open fixed gate.

    Gate networks:
    - Gates are all part of a network, by default this is "central".
    - You can specify (and create) your own network on the third line of the sign when making a new gate.
    - Gates on one network will not see gates on the second network, and vice versa.
    - Gates on different worlds, but in the same network, will see eachother.

    Hidden Gates:
    - Hidden gates are like normal gates, but only show on the destination list of other gates under certain conditions.
    - A hidden gate is only visible to the creator of the gate, or somebody with the stargate.hidden permission.
    - Set the 4th line of the stargate sign to 'H' to make it a hidden gate.

    iConomy Support:
    The latest version of Stargate has support for iConomy. Gate creation, destruction and use can all have different costs associated with them.
    There is a default cost defined in the Stargate config.yml, and you can define per-gate layout costs in the custom .gate files you create.
    To define a certain cost to a gate just add these lines to your .gate file:
    usecost=5
    destroycost=5
    createcost=5
    toowner=true

    ==============
    Custom Gate Layout
    ==============
    You can create as many gate formats as you want, the gate layouts are stored in plugins/Stargate/gates/
    The .gate file must be laid out a specific way, the first lines will be config information, and after a blank line you will lay out the gate format. Here is the default nether.gate file:
    Code:
    portal-open=90
    portal-closed=0
    X=49
    -=49
    
     XX 
    X..X
    -..-
    X*.X
     XX 
    
    portal-open/closed are used to define the material in the gate when it is open or closed.
    "X" and "-" are used to define block "types" for the layout (Any single-character can be used, such as "#").
    In the gate format, you can see we use "X" to show where obsidian must be, "-" where the controls (Button/sign) are.
    You will also notice a "*" in the gate layout, this is the "exit point" of the gate, the block at which the player will teleport in front of.
    As of v0.5.5 you can use block data in .gate files in the format:
    X=35:15
    Which would make the block only work if it's black wool. If no data is supplied any type of that block (Any color wool) will work.

    ==============
    Configuration
    ==============
    default-gate-network - The default gate network
    portal-folder - The folder your portal databases are saved in
    gate-folder - The folder containing your .gate files
    destroyexplosion - Whether to destroy a stargate with explosions, or stop an explosion if it contains a gates controls.
    useiconomy - Whether or not to use iConomy
    createcost - The cost to create a stargate
    destroycost - The cost to destroy a stargate (Can be negative for a "refund"
    usecost - The cost to use a stargate
    chargefreedestination - Enable to allow free travel from any gate to a free gate
    freegatesgreen - Enable to make gates that won't cost the player money show up as green
    toowner - Whether the money from gate-use goes to the owner or nobody
    maxgates - If non-zero will define the maximum amount of gates allowed in a network.
    lang - The language to use (Included languages: en, de)

    debug - Whether to show massive debug output
    permdebug - Whether to show massive permission debug output

    =======================
    Message Customization
    =======================
    As of 0.6.5 it is possible to customize all of the messages Stargate displays, including the [Stargate] prefix. You can find the strings in plugins/Stargate/lang/en.txt.
    If a string is removed, or left blank, it will not be shown when the user does the action associated with it.
    There are three special cases when it comes to messages, these are:
    ecoDeduct=Spent %cost%
    ecoRefund=Redunded %cost%
    ecoObtain=Obtained %cost$ from Stargate %portal%

    As you can see, these three strings have variables in them. These variables are fairly self-explanatory.
    The full list of strings is as follows:
    prefix=[Stargate]
    teleportMsg=Teleported
    destroyMsg=Gate Destroyed
    invalidMsg=Invalid Destination
    blockMsg=Destination Blocked
    denyMsg=Access Denied
    destEmpty=Destination List Empty

    ecoDeduct=Deducted %cost%
    ecoRefund=Redunded %cost%
    ecoObtain=Obtained %cost$ from Stargate %portal%
    ecoInFunds=Insufficient Funds

    createMsg=Gate Created
    createNetDeny=You do not have access to that network
    createPersonal=Creating gate on personal network
    createNameLength=Name too short or too long.
    createExists=A gate by that name already exists
    createFull=This network is full
    createWorldDeny=You do not have access to that world
    createConflict=Gate conflicts with existing gate

    =============
    F.A.Q.
    =============
    Q) Why aren't gates destroyed when I remove the obsidian with a tool like the superpickaxe?
    A) Because when you use a plugin tool such as that, it SETS the block to air, it doesn't destroy it in the same way as hitting it does. Therefor no block destroy hooks are called.

    Q) How do I make a custom .gate file?
    A) Take a look at plugins/Stargate/gates/nethergate.gate, it has all of the information you'll need. You will need to work on a COPY of nethergate.gate however, as nethergate.gate is overwritten on plugin startup.

    Q) Does this plugin work with {X}?
    A) I really don't know, I don't know how {X} is implemented, or whether they will conflict. I'm also about as interested in looking into it as you are apparently ;)

    Q) What is a "Hidden Gate"?
    A) A hidden gate is a gate on a network that is only shown on other gates destination lists if the player looking at them is its creator, or somebody with the stargate.hidden permission. A hidden gate can still be dialed out from by anybody unless it's set to Private.

    Q) What is a "Private Gate"?
    A) A private gate is a gate that can only be dialed out from by its creator, or somebody with the stargate.private permission. If it's not hidden then anybody can still dial into this gate.

    Q) What does "destroyexplosion" do?
    A) If "destroyexplosion" is false, and an explosion even touched a portal control (Sign or button) the entire explosion is cancelled. If it is true, then the gate will be destroyed as if somebody had removed the sign/button. There is currently no way I can stop just the sign/button from being destroyed, which is why the entire explosion must be stopped.

    Q) What does "stargate.create.personal" allow players to do?
    A) If a player has stargate.create.personal, they can create Stargates that have the network name set as their username, or a substring thereof (The maximum length of a network is 11 characters, so I had to substr the name). This allows a specific group to be able to create their own personal Stargate network. This network will not interfere with any other Stargate networks as everything is stored separately in memory.

    Q) Why is PlayerB getting "Access Denied" when trying to go through a gate PlayerA opened?
    A) Only one user can use a stargate at a time, if PlayerA sets the sign, nobody else can hit the button. If PlayerA sets the sign/hits the button, nobody else can walk through the gate. Always-Open Fixed Gates are an exception, as they have no "Active User".

    Q) What does this error mean "[WARNING] [Stargate] Missing destination point in .gate file nethergate.gate"?
    A) This error means there is no destination point in your .gate file, please read the section on custom gate layouts.

    Q) Why can't I use "/sg reload"?
    A) This command is only usable from the console, and will stay that way.

    Q) Can you add command X?
    A) No, the only command this plugin will ever have is /sg reload, and that's a console-only command.

    Q) Why do I get kicked with the message "You moved too quickly!(Hacking?)" when I use a gate?
    A) Stargate is not compatible with iZone.

    Q) I gave my users 'stargate.world' and 'stargate.network' but they can't use gates, why not?
    A) If you are using Permissions 2.x/3.x please use 'stargate.world.*' and 'stargate.network.*' respectively. This is a difference in how Permissions and SuperPerms are implemented.

    Q) My permissions aren't working properly, help!
    A) Turn on both debug and permdebug, you will get a LOT of output when using gates. First of all, try to determine the issue yourself based on this output. If all else fails, and only if all else fails, post your log and ask for me to resolve the issue for you.

    Q) The Russian lang pack isn't showing ingame, why not?
    A) You need to have a client mod to get russian characters in-game, same with any non-ANSI characters. Please Google for this as I don't know how to install them.

    Q) How do I enable debug mode?
    A) Add the following to your config.yml:
    debug: true
    permdebug: true

    =============
    Changes
    =============
    [Version 0.6.10]
    - Added Register support as opposed to iConomy
    [Version 0.6.9]
    - Added UTF-8 support (With or without BOM)
    [Version 0.6.8]
    - Fixed unmanned carts losing velocity through gates
    - /sg reload now properly switches languages
    [Version 0.6.7]
    - Added lang option
    - Removed language debug output
    - Added German language (lang=de) -- Thanks EduardBaer
    [Version 0.6.6]
    - Added %cost% and %portal% to all eco* messages
    - Fixed an issue when creating a gate on a network you don't have access to
    - I can't spell
    [Version 0.6.5]
    - Moved printed message config to a seperate file
    - Added permdebug option
    - Hopefully fix path issues some people were having
    - Fixed iConomy creation cost
    - Added 'S'how option for Always-On gates
    - Added 'stargate.create.gate' permissions
    [Version 0.6.4]
    - Fixed iConomy handling
    [Version 0.6.3]
    - Fixed (Not Connected) showing on inter-world gate loading
    - Added the ability to negate Network/World permissions (Use, Create and Destroy)
    - Fixed Lockette compatibility
    - More stringent verification checks
    [Version 0.6.2]
    - Fixed an issue with private gates
    - Added default permissions
    [Version 0.6.1]
    - Stop destruction of open gates on startup
    [Version 0.6.0]
    - Completely re-wrote Permission handling (REREAD/REDO YOUR PERMISSIONS!!!!!!!!)
    - Added custom Stargate events (See Stargate-DHD code for use)
    - Fixed portal event cancellation
    - Umm... Lots of other small things.
    - I really hope I didn't screw anything up ^.^
    [Version 0.5.5]
    - Added 'B'ackwards option
    - Fixed opening of gates with a fixed gate as a destination
    - Added block metadata support to gates
    [Version 0.5.1]
    - Take into account world/network restrictions for Vehicles
    - Properly teleport empty vehicles between worlds
    - Properly teleport StoreageMinecarts between worlds
    - Take into account vehicle type when teleporting
    [Version 0.5.0]
    - Updated the teleport method
    - Remove always-open gates from lists
    - Hopefully stop Stargate and Nether interference
    Previous Changes (open)

    [Version 0.4.9]
    - Left-click to scroll signs up
    - Show "(Not Connected)" on fixed-gates with a non-existant destination
    - Added "maxgates" option
    - Removed debug message
    - Started work on disabling damage for lava gates, too much work to finish with the current implementation of EntityDamageByBlock
    [Version 0.4.8]
    - Added chargefreedestination option
    - Added freegatesgreen option
    [Version 0.4.7]
    - Added debug option
    - Fixed gates will now show in the list of gates they link to.
    - iConomy no longer touched if not enabled in config
    [Version 0.4.6]
    - Fixed a bug in iConomy handling.
    [Version 0.4.5]
    - Owner of gate now isn't charged for use if target is owner
    - Updated for iConomy 5.x
    - Fixed random iConomy bugs
    [Version 0.4.4]
    - Added a check for stargate.network.*/stargate.world.* on gate creation
    - Check for stargate.world.*/stargate.network.* on gate entrance
    - Warp player outside of gate on access denied
    [Version 0.4.3]
    - Made some errors more user-friendly
    - Properly take into account portal-closed material
    [Version 0.4.2]
    - Gates can't be created on existing gate blocks
    [Version 0.4.1]
    - Sign option permissions
    - Per-gate iconomy target
    - /sg reload command
    - Other misc fixes
    [Version 0.4.0]
    - Carts with no player can now go through gates.
    - You can set gates to send their cost to their owner.
    - Cleaned up the iConomy code a bit, messages should only be shown on actual deduction now.
    - Created separate 'stargate.free.{use/create/destroy}' permissions.
    [Version 0.3.5]
    - Added 'stargate.world.*' permissions
    - Added 'stargate.network.*' permissions
    - Added 'networkfilter' config option
    - Added 'worldfilter' config option
    [Version 0.3.4]
    - Added 'stargate.free' permission
    - Added iConomy cost into .gate files
    [Version 0.3.3]
    - Moved sign updating into a scheduled task, this fixes the sign bugs.
    [Version 0.3.2]
    - Updated to latest RB
    - Implemented proper vehicle handling
    - Added iConomy to vehicle handling
    - Changed how blox hash is generated, fixes multi-world
    [Version 0.3.1]
    - Changed version numbering.
    - Changed how plugins are hooked into.
    [Version 0.30]
    - Fixed a bug in iConomy checking.
    [Version 0.29]
    - Added iConomy support. iConomy 4.4 or 4.5
    [Version 0.28]
    - Fixed an issue with removing stargates during load
    [Version 0.27]
    - Fixed portal count on load
    [Version 0.26]
    - Added stargate.create.personal for personal stargate networks
    - Fixed a bug with destroying stargates by removing sign/button
    [Version 0.25]
    - Fixed a bug with worlds in subfolders
    - Fixed gates being destroyed with explosions
    - Added stargate.destroy.owner
    [Version 0.24]
    - Fixed a loading bug in which invalid gates caused file truncation - Thanks @ Jonbas
    [Version 0.23]
    - Added a check to make sure "nethergate.gate" exists, otherwise create it
    [Version 0.22]
    - Fixed multi-world stargates causing an NPE
    [Version 0.21]
    - Code cleanup
    - Added a few more errors when a gate can't be loaded
    - Hopefully fixed path issue on some Linux installs
    [Version 0.20]
    - Added more null checks, hopefully fix some errors with other plugins.
    [Version 0.19]
    - Set button facing on new gates, fixes weirdass button glitch
    - Beginning of very buggy multi-world support
    [Version 0.18]
    - Small permissions handling update.
    [Version 0.17]
    - No longer treat GM as a special case, just load it as Permissions 2.0 like the author intended
    [Version 0.16]
    - Fixed Permissions, will work with GroupManager, Permissions 2.0, or Permissions 2.1
    - Left-clicking to activate a stargate works again
    [Version 0.15]
    - Built against b53jnks -- As such nothing lower is supported at the moment.
    - Moved gate destruction code to onBlockBreak since onBlockDamage no longer handles breaking blocks.
    - Removed long constructor.
    [Version 0.14]
    - Fixed infinite loop in fixed gates.
    - Fixed gate destination will not open when dialed into.
    [Version 0.13]
    - Fixed gates no longer show in destination list.
    [Version 0.12]
    - Implemented fixed destination block using * in .gate file. This is the recommended method of doing an exit point for custom gates, as the automatic method doesn't work in a lot of cases.
    - Split networks up in memory, can now use same name in different networks. As a result, fixed gates must now specify a network.
    - Added the ability to have a private gate, which only you can activate. Use the 'P' option to create.
    - Fixed but not AlwaysOn gates now open the destination gate.
    - Fixed gates now show their network. Existing fixed gates are added to the default network (Sorry! It had to be done)
    [Version 0.11]
    - Oops, b0rked something in 0.10, fixed in 0.11
    [Version 0.10]
    - Hopefully fixed the "No position found" bug.
    - If dest > origin, any blocks past origin.size will drop you at dest[0]
    - Switched to scheduler instead of our own thread for closing gates and deactivating signs
    - No longer depend on Permissions, use it as an option. isOp() used as defaults.
    [Version 0.09]
    - Gates can now be any shape
    [Version 0.08]
    - Gates can now consist of any material.
    - You can left or right click the button to open a gate
    - Gates are now initialized on sign placement, not more right clicking!
    [Version 0.07]
    - Fixed where the default gate is saved to.
    [Version 0.06]
    - Forgot to make gates load from new location, oops
    [Version 0.05]
    - Moved Stargate files into the plugins/Stargate/ folder
    - Added migration code so old gates/portals are ported to new folder structure
    - Create default config.yml if it doesn't exist
    - Fixed removing a gate, it is now completely removed
    [Version 0.04]
    - Updated to multi-world Bukkit
    [Version 0.03]
    - Changed package to net.TheDgtl.*
    - Everything now uses Blox instead of Block objects
    - Started on vehicle code, but it's still buggy
     
  2. Offline

    Inscrutable

    Hmmm. The gate file looks identical to the default nethergate.gate format.
    I don't think the plugin can distinguish between gate types unless they are physically different in some way.
    Try using different blocks in the file to make the gate (eg replace 49 with 41), or in a slightly different shape.
    And save it with a new name. Best of luck on your journeys.
     
  3. Offline

    jazzb

    Hi Drakia

    1) this is log file with debug enabled, showing reason for destroying gate:
    22:43:25 [INFO] Stargate v.0.6.9 is enabled.
    22:43:25 [INFO] [Stargate] Loaded 1 gate layouts
    22:43:25 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
    22:43:25 [INFO] [Stargate::register] Network not in allPortalsNet, adding
    22:43:25 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    22:43:25 [INFO] [Stargate::Unregister] Unregistering gate Edgeville
    22:43:25 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@368bca43, network=central name=Edgeville, type=nethergate.gate]
    22:43:25 [INFO] [Stargate] {world} Loaded 37 stargates with 31 set as always-on
    22:43:25 [INFO] [Stargate] {world_nether} No stargates for world
    22:43:25 [INFO] [Stargate] Found Permissions (v3.1.6)

    If "sg reload" is called from terminal it promptly destroys a number of other gates for the same reason:
    2011-10-12 22:42:09 [INFO] Stargate v.0.6.9 is enabled.
    2011-10-12 22:42:09 [INFO] [Stargate] Loaded 1 gate layouts
    2011-10-12 22:42:09 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
    2011-10-12 22:42:09 [INFO] [Stargate::register] Network not in allPortalsNet, adding
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_14
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@32be5f0, network=central name=GateRoom_14, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_1
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@2576a288, network=central name=GateRoom_1, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_2
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@fa8a1ef, network=central name=GateRoom_2, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_3
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@81f59f1, network=central name=GateRoom_3, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_5
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@4249e161, network=central name=GateRoom_5, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_6
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@6bc947, network=central name=GateRoom_6, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_7
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@27abf66, network=central name=GateRoom_7, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate Sky_City
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@48abc2cf, network=central name=Sky_City, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate Sand_Castle
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@482c94f, network=central name=Sand_Castle, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate Naurtos_Dam
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@266e63d9, network=central name=Naurtos_Dam, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate Farnsworth
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@195d4f45, network=central name=Farnsworth, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate Lonely_Hut
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@3cff4805, network=central name=Lonely_Hut, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 8
    2011-10-12 22:42:09 [INFO] [Stargate::Unregister] Unregistering gate TEST_1
    2011-10-12 22:42:09 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@1bd15f8c, network=central name=TEST_1, type=nethergate.gate]
    2011-10-12 22:42:09 [INFO] [Stargate] {world} Loaded 17 stargates with 11 set as always-on
    2011-10-12 22:42:09 [INFO] [Stargate] {world_nether} No stargates for world
    2011-10-12 22:42:09 [INFO] [Stargate] Found Permissions (v3.1.6)

    and as portal open material is set to "9" in the nethergate.gate file I am puzzled about how we are seeing the material detected as "8". nb: originally I had 8 selected in gate definition and then nothing would work so I changed it to 9 and all seemed ok.

    If I reload backup copy of server and backup copy of world.db the errors are repeatable.

    BTW: When I restarted after changing from portal open material 8 to 9 I got this log file at start up when gates were tested against new material:
    2011-10-04 21:33:49 [INFO] [Stargate] Loaded 1 gate layouts
    2011-10-04 21:33:49 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
    2011-10-04 21:33:49 [INFO] [Stargate::register] Network not in allPortalsNet, adding
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_14
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@53e1ec99, network=central name=GateRoom_14, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_3
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@15745bd5, network=central name=GateRoom_3, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_13
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@a3907f4, network=central name=GateRoom_13, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_12
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@2639296a, network=central name=GateRoom_12, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_5
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@72ce01c0, network=central name=GateRoom_5, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_11
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@32d51f22, network=central name=GateRoom_11, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_9
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@45ef0b40, network=central name=GateRoom_9, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    2011-10-04 21:33:49 [INFO] [Stargate::Unregister] Unregistering gate GateRoom_2
    2011-10-04 21:33:49 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargate.SignPost@50cbba9e, network=central name=GateRoom_2, type=nethergate.gate]
    2011-10-04 21:33:49 [INFO] [Stargate] {world} Loaded 5 stargates with 0 set as always-on
    2011-10-04 21:33:49 [INFO] [Stargate] {world_nether} No stargates for world

    So this is basically the opposite of the problem that I am currently having.


    2) Also, any thoughts on chunk not rendering at destination when you teleport using the gate??


    thanks for the help :)


    cheers jazzb
     
  4. Offline

    Drakia

    @ShadowKitty Stargate is not the cause of the issue, it's just changing block types which is calling a function in that other plugin.
    @Mosh Mage Well, that's too bad... Maybe posting some of the information requested in the first post?
    @jazzb One problem with using water is that its block ID changes, still water is 9, flowing water is 8 or something like that. Why would the gate not work with ID 8?
     
  5. odd... at startup, this occurs::
    Code:
    [SEVERE] Error occurred while enabling Stargate v0.6.9 (Is it up to date?): com/iConomy/iConomy
    java.lang.NoClassDefFoundError: com/iConomy/iConomy
        at net.TheDgtl.Stargate.Stargate.onEnable(Stargate.java:125)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:941)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:174)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:157)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:297)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:284)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:348)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
    Caused by: java.lang.ClassNotFoundException: com.iConomy.iConomy
        at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:36)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:24)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
        ... 11 more
    I can provide more info if needed, but atm, that looks like an iconomy issue... but iconomy appears to be running just fine.
     
  6. Offline

    Drakia

    Stargate is not compatible with iConomy 6
     
  7. Offline

    ShadowKitty

    Well, I figured that, I can understand the basic meaning of the error.
    But you didn't answer my question. Should I be worried about it?
     
  8. *sigh*... oh well... guess stargate's out of the picture :(... is it planned on being updated (eventually? )
     
  9. Offline

    ShadowKitty

    When I saw that it's not compatible with iConomy 6, and saw that the source code is available, I got the idea to update it myself.
    But, slight problem with that. Although I do know programming, I haven't used Java in a long time. So even if I get around to updating it, it will be a while.
     
  10. Offline

    Drakia

    The plugin is not released under a license that allows forks or derivatives.
     
  11. but will this ever be moved up to iConomy 6?
     
  12. Offline

    Drakia

    When I have a Chance it will move to Register or whatever that multi system API is.
     
  13. Offline

    gabe04

    C:\Users\Gabe Sarch\Desktop\MCserver\Bukkit>"C:\Program Files\Java\jre6\bin\java
    .exe" -Xincgc -Xmx1G -jar craftbukkit-0.0.1-SNAPSHOT.jar
    161 recipes
    17 achievements
    21:59:01 [INFO] Starting minecraft server version Beta 1.8.1
    21:59:01 [INFO] Loading properties
    21:59:01 [INFO] Starting Minecraft server on *:25565
    21:59:01 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-1067
    -g6301507-b1185jnks (MC: 1.8.1)
    21:59:01 [INFO] [Permissions] (Phoenix) was Initialized.
    21:59:01 [INFO] LWC: Loading shared objects
    21:59:01 [INFO] LWC: Protection cache: 0/10000
    21:59:01 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/amd64/sqlite
    jdbc.dll
    21:59:02 [INFO] MLog clients using java 1.4+ standard logging.
    21:59:02 [INFO] Preparing level "world"
    21:59:02 [INFO] Default game type: 0
    21:59:02 [INFO] Preparing start region for level 0 (Seed: -5766255218421817052)
    21:59:03 [INFO] Preparing start region for level 1 (Seed: 8175632299207635854)
    21:59:03 [INFO] Preparing spawn area: 0%
    21:59:04 [INFO] [AutoSave] Loading config file
    21:59:04 [INFO] [AutoSave] Version 2.0.1 is enabled: 5adf433f-fe00-4712-9534-65c
    720ec51c6
    21:59:04 [INFO] [AutoSave][Permission] Custom Permissions "Local Permissions" fo
    und: Loaded
    21:59:04 [INFO] [AutoSave][Permission] PermissionsEx not found.
    21:59:04 [INFO] [AutoSave][Permission] Permissions (Phoenix) found: Waiting
    21:59:04 [INFO] [BananaChunk] version 4.6 is enabled!
    21:59:04 [INFO] [ClearDrops] Permissions detected, ClearDrops hooked into permis
    sions
    21:59:04 [INFO] [ClearDrops] - Version 1.0 has been enabled.
    21:59:04 [INFO] Elevators version 1.4.3 is enabled and linked to Permissions! 1
    elevator in worlds "world", "world_nether" loaded.
    21:59:04 [INFO] Loaded Essentials build 2.6.1 by: Zenexer, ementalo, Aelux, Bret
    tflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits
    21:59:04 [INFO] Essentials: Using config based permissions. Enable superperms in
    config.
    21:59:04 [INFO] Loaded EssentialsChat build 2.6.1 by: essentials team
    21:59:04 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? tr
    ue; trace: 10]
    21:59:05 [INFO] Loaded EssentialsProtect build 2.6.1 by: essentials team
    21:59:05 [INFO] Loaded EssentialsSpawn build 2.6.1 by: essentials team
    21:59:05 [INFO] Gamemode Changer 1.1: Enabled.
    21:59:05 [INFO] [MineBackup] ThisIsAreku present MINEBACKUP, v0.4.8.1
    21:59:05 [INFO] [MineBackup] Loading configuration...
    21:59:05 [INFO] [MineBackup] 4 worlds loaded.
    21:59:05 [INFO] [MineBackup] sucessfully loaded version 0.4.8.1
    21:59:05 [INFO] NoSpeedKick: Found and will use plugin Permissions v2.7.4
    21:59:05 [INFO] NoSpeedKick 0.2 enabled
    21:59:05 [INFO] [Permissions] version [2.7.4] (Phoenix) loaded
    21:59:05 [INFO] Essentials: Using Permissions 2 based permissions.
    21:59:05 [INFO] [AutoSave][Permission] Permissions (Phoenix) hooked.
    21:59:05 [INFO] Stargate v.0.6.9 is enabled.
    21:59:05 [INFO] [Stargate] Loaded 1 gate layouts
    21:59:05 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
    21:59:05 [INFO] [Stargate::register] Network not in allPortalsNet, adding
    21:59:05 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    21:59:05 [INFO] [Stargate::Unregister] Unregistering gate Spleef
    21:59:05 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@5f48fb3f, network=central name=Spleef, type=nethergate.gate]
    21:59:05 [INFO] [Stargate] {world} Loaded 0 stargates with 0 set as always-on
    21:59:05 [INFO] [Stargate] {world_nether} No stargates for world
    21:59:05 [INFO] [Stargate] Found Permissions (v2.7.4)
    21:59:05 [INFO] WorldEdit 4.6 enabled.
    21:59:05 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin
    for permissions.
    21:59:05 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugi
    n for permissions.
    21:59:05 [INFO] WorldGuard: (world) Single session is enforced.
    21:59:05 [INFO] WorldGuard: (world) TNT ignition is blocked.
    21:59:05 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    21:59:05 [INFO] WorldGuard: (world) Lava fire is blocked.
    21:59:05 [INFO] WorldGuard: (world) All fire spread is disabled.
    21:59:05 [INFO] WorldGuard: Loaded configuration for world 'world"
    21:59:05 [INFO] WorldGuard: (world_nether) Single session is enforced.
    21:59:05 [INFO] WorldGuard: (world_nether) TNT ignition is blocked.
    21:59:05 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    21:59:05 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    21:59:05 [INFO] WorldGuard: (world_nether) All fire spread is disabled.
    21:59:05 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    21:59:05 [INFO] WorldGuard: 33 regions loaded for 'world'
    21:59:05 [INFO] WorldGuard: Unable to register missing event type SNOW_FORM
    21:59:05 [INFO] WorldGuard 5.2.2 enabled.
    21:59:05 [INFO] Permissions is enable for sdBountyHunter.
    21:59:05 [INFO] [World Portal] Loading World Portals...
    21:59:05 [INFO] [World Portal] World Portals loaded
    21:59:05 [INFO] [World Portal] World Portal V0.1.1 Started
    21:59:05 [INFO] LWC: Loaded 137 locale strings (0 overrides)
    21:59:05 [INFO] LWC: Permissions API: NijiPermissions
    21:59:05 [INFO] LWC: Currency API: EssentialsCurrency
    21:59:05 [INFO] LWC: Loading SQLite
    21:59:05 [INFO] LWC: Using: Native
    21:59:06 [INFO] LWC: Precached 709 protections.
    21:59:06 [INFO] LWC: At version: 3.53 (b294)
    21:59:06 [INFO] [mcMMO] Permissions version 2.7.4 found, using Permissions.
    21:59:06 [INFO] Loading Config File...
    21:59:06 [INFO] [MineBackup] + 0 backup(s) deleted
    21:59:07 [INFO] [mcMMO] Permissions version 2.7.4 found, using Permissions.
    21:59:07 [INFO] mcMMO version 1.1.11 is enabled!
    21:59:07 [INFO] Server permissions file permissions.yml is empty, ignoring it
    21:59:07 [INFO] Done (0.561s)! For help, type "help" or "?"
    21:59:17 [INFO] [MineBackup] No players online, backup delayed
    >
     
  14. Offline

    Drakia

    @gabe04
    "21:59:05 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9"
    Material Type 9 is not supported as falling water changes to type 8, this causes a check to fail during startup which will wipe the gate. Use type 8.
    As for why only gates on the first world are loaded, you have no other worlds being loaded by a MultiWorld plugin (Multiverse for example) so of course Stargate doesn't see those worlds.
     
  15. Offline

    ShadowKitty

    Oh, I didn't think to check that. Now that I have though, I guess I need to find a new teleport plugin because of this.
    "Noncommercial — You may not use this work for commercial purposes."
    Unless I'm mistaken and donations to the server aren't counted under that.
    (I don't have the server public yet, I'm still collecting plugins that I think players would want and getting things setup)

    Edit: You're correct about the API, it is called Register. Here's the link for you: http://forums.bukkit.org/threads/re...all-payment-methods-economy-api-stable.16849/
     
  16. Offline

    Drakia

    My interpretation of that clause is you may not sell the plugin or use it on a P2P server.
     
  17. Offline

    jazzb

    Hi Drakia

    i tried setting portal open material to 8 as you suggested. No luck and kept having gates deleted on "sg reload" The only way to solve problem was to set material to 90 per your default (with we didn't want to do) and now seems stable.

    I am really puzzled as to why this is the case? just to confirm, whether the portal open material is set to 8 OR 9, when you restart/reload the gates are destroyed due to a material mismatch (per my last post)

    jazzb
     
  18. Offline

    gabe04

    Ok thanks, Ill try Multiverse
     
  19. iConomy 6 support would be nice ;)
     
  20. Offline

    Drakia

    So would some patience. I spend 90% of my day at or commuting to work, unless you want to pay me $30k a year to work on plugins, sit back and stop hassling me about it. The more people ask the longer I will wait to get it done.
     
  21. Offline

    gabe04

    I got multiverse and changed the water to 8 and it worked good but then this happened after a while:


    22:08:33 [INFO] Stargate v.0.6.9 is enabled.
    22:08:33 [INFO] [Stargate] Loaded 1 gate layouts
    22:08:33 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
    22:08:33 [INFO] [Stargate::register] Network not in allPortalsNet, adding
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate Town
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@347e5c86, network=central name=Town, type=nethergate.gate]
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate Spleef
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@4ad71d25, network=central name=Spleef, type=nethergate.gate]
    22:08:33 [INFO] [Stargate] {world} Loaded 0 stargates with 0 set as always-on
    22:08:33 [INFO] [Stargate] {world_nether} No stargates for world
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate Survival
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@65ec4ad4, network=central name=Survival, type=nethergate.gate]
    22:08:33 [INFO] [Stargate] {survive} Loaded 0 stargates with 0 set as always-on
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate Free_Build
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@7c24d892, network=central name=Free_Build, type=nethergate.gate]
    22:08:33 [INFO] [Stargate] {build} Loaded 0 stargates with 0 set as always-on
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate Rollercoast
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@570698ea, network=central name=Rollercoast, type=nethergate.gate]
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate PixelArt
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@72215748, network=central name=PixelArt, type=nethergate.gate]
    22:08:33 [INFO] [Stargate::Gate::Matches] Entrance/Exit Material Mismatch: 9
    22:08:33 [INFO] [Stargate::Unregister] Unregistering gate PlacesGo4
    22:08:33 [INFO] [Stargate] Destroying stargate at Portal [id=net.TheDgtl.Stargat
    e.SignPost@6ae97281, network=central name=PlacesGo4, type=nethergate.gate]
    22:08:33 [INFO] [Stargate] {PlacesToGo} Loaded 0 stargates with 0 set as always-
    on
    22:08:34 [INFO] [Stargate] Found Permissions (v2.7.4)
     
  22. Offline

    Costan Balgobin

    I Love You

    i think i might have missed something cause i want my players to have stargate.network.nether but it eeeps on denying them :(

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 18, 2016
  23. Offline

    cubeShaun

    Every /sg command tells me: [Stargate] Permissions Denied
    But I'm Op and I have all the permissions (I'm working with PermissionsBukkit)
    What can I do?
     
  24. Offline

    Drakia

    [Version 0.6.10]
    - Added Register support as opposed to iConomy

    Read the FAQ, it's there for a reason, specifically to answer frequently asked questions:
    As stated in the first post, if you're doing network-specific permissions you must also define their specific permissions for the world (stargate.world, or stargate.world.{name})
     
    Inscrutable likes this.
  25. Offline

    Costan Balgobin

    I just tried that but still noone can go through
     
  26. Offline

    Drakia

    I can not offer you support if you refuse to read the first post.
     
  27. Offline

    Inscrutable

    Hiya Drakia. I just tried the new Stargate 0.6.10 on my server (MC1.8.1, CB1339, PEx 1.15)
    {it generally does work with PEx, despite its eccentricities :) }
    I have had absolutely no success getting SG to charge for use, using iConomy 5.01 and then the newer iConomy 6.07b
    Stargates do not charge for use in either regime on a freshly started server. (The same config and perms set allows iConomy 5.01 fees for SG use in 0.6.9, so that can't be the problem...) IConomy was definitely working, somehow SG is not picking up on Register and/or iConomy. :(
    No errors on console, and it all works - just for free.
    [EDIT changed CB1139 to 1339 oops :D]
     
  28. Offline

    Drakia

    No server log no help.
     
  29. Offline

    Costan Balgobin

    If you want to have more control over who can use what network, first set the stargate.use permission to false (This is REQUIRED, as it defaults to true, and is a full override). When using the network/world nodes, you will need to set up BOTH nodes, leaving out either stargate.network or stargate.world will result in 'Permission Denied' errors.
    Once you have disabled stargate.use, you can either give individual stargate.network.{name} nodes, or give them stargate.network and set specific stargate.network.{name} nodes to false to deny access to those specific networks.
    Worlds work in the same way, though with stargate.world.{name}. (Make sure to set up both stargate.network AND stargate.world nodes to avoid Permission Denied errors).

    This is what im following by but this isnt working. Im new to servers so im kinda dumb with alot of this D:
     
  30. Offline

    Drakia

    Read the first post, there is a list of information I require before I can offer ANY assistance. This includes enabling debug and permdebug, and posting your server log.
     
  31. Offline

    Inscrutable

    [BIG Edit] Hmmm. I feel daft. :oops: I had to install the REGISTER plugin. Sorry fer yer trouble.
    (For some reason, I thought it was part of the iConomy API...)
    Everything works. Nothing to see here but us chickens. :D
     
Thread Status:
Not open for further replies.

Share This Page