Inactive [ADMN/GEN/MECH] Time Rank v0.1.0b - Let players earn/buy/rent nodes/groups Economy support [1000]

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

  1. Offline

    xlilcasper

    Time Rank - Time/Economy based group advancement
    Version: v0.1.0b
    Download Latest version: Time Rank.zip (jar)
    Source: GitHub
    This plugin will allow you to promote people to different groups based upon how long they have been playing. It also lets player buy or rent ranks using money or blocks.
    Requires permissions 3.x or Group Manager
    Optional: iConomy 4, iConomy 5, Essentials Eco, BOSEconomy
    Features:
    • Change a persons group after they have played for a set amount of time
    • Allow players to buy groups using blocks
    • Allows players to buy ranks using money
    • Supports all 4 major economy plugins
    • Supports multiple groups
    • Can be removed from one group when added to another.
    • Works with permissions' globalUsers and globalGroups
    • Configurable messages upon promotion
    • Ability to rent ranks for a set number of minutes.
    Please feel free to post comments, bugs, or feature requests here and I will do my best to help or add the requested features in.


    Asking for help
    Please include the following in your post.
    server.log - With out the server log we can't really tell what error your getting, which plugin it might be from, where the error is in our plugin....

    Error message - Sometimes you might be getting more then one error. What error are you trying to fix? Also if the server log is missing or very long, this will help us locate it.

    Which permissions plugin your using. - We need to know if your using permissions or Group Manager. It might be an error specific to that plugin. Also both work very differently. The steps to fix one might be different then the steps to fix the other. Config files are different...

    Explain the problem - Simply posting it doesn't work doesn't help. We need what you were doing, what caused the error and other any information that could help.


    Config example
    Config (open)

    Code:
    settings:
    #Show debug messages. Will spam your console if turned on
        debug: false
    #Only show ranks/abilities people can gain when doing /listranks or /listabs
        hideUnavaible: false
    #config version. Do not change. Used internally to know when to auto-update the config file.
        configVersion: 2
    #All your ranks go here.
    ranks:
    #Rank name. This is what is used with /buyrank and such.
        Trusted:
    #This is the group the rank grants when it is earned/bought/rented
            group: Trusted
    #This is the world the group belongs to.
            world: world
    #This is the group that the person must be in before they can buy/rent/earn the rank. Can be removed to allow anyone access to it.
            oldgroup: Default
    #Amount of time, in minutes, before the rank is earned. This can be removed or set to -1 to disable it.
            time: 60
    #Description shown in /listranks
            description: Can build, use basic commands, has access to water.
    #If we should remove the oldGroup after adding the new group. Most of the time this should be true unless your using Permissions 3.x and want to have people in more then 1 group.
            remove: true
        Vet:
            group: Vet
            world: world
            oldgroup: Trusted
            time: 2520
    #Allow this rank to be bought with /buyrank.
            buy:
    #Amount of the resource to require when buying.
                amount: 25000.0
    #Broadcast to the whole server when this rank is bought.
                broadcast: true
    #What to broadcast. See messages below for variables that are allowed.
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
    #What this costs to buy. This can be any block ID (example 266 for gold ingots) or Money to use a supported Economy plugin.
                cost: Money
    #The minimum amount of play time required before they are able to buy this rank. -1 disables this.
                minTime: -1
            description: Has access to tnt and lava.
            remove: true
    #Rent would be set up the same way, See rent from the abilities section below for examples.
        Elite:
            group: Elite
            world: world
            oldgroup: Vet
            time: 5040
            buy:
                amount: 5.0
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: 266
                minTime: -1
            description: Has the ability to fly and to tp to other players.
            remove: true
    #These grant just permission nodes with out changing a persons group.
    abilities:
    #Ability name.
        Superpick:
           #World that this person will gain the permission for. Use * for all worlds
            world: world
    #The permission node the person must have before they can earn/buy/rent this ability. Can be set to whatever you want. Just make sure to give the person/group this node so they can get this ability. Can be removed to allow everyone to get it.
            permission: timerank.ab.Superpick
    #List of nodes this ability grants. These will be added when bought/rented/earned and removed when time runs out if it was rented.
            nodes:
            - worldedit.superpickaxe
            - worldedit.superpickaxe.area
            description: Enable Superpick
    #Categories the ability will show up in. This helps organize large sets of abilities. Later these may be used for permissions but right now it's just for /listabs <category>
            categories:
            - pick
            - worldedit
            - mining
    #See above for what these all mean. Set up exactly the same as ranks
            buy:
                amount: 250.0
                broadcast: true
                msg: '&B<player.name> &Ehas bought superpick'
                cost: Money
                minTime: -1
            rent:
                time: 5
                amount: 25.0
                broadcast: true
                msg: '&B<player.name> &Ehas bought superpick'
                cost: Money
                minTime: -1
                gainedMsg: '&B<player.name> &Ehas rented &B<ability.name>'
                lostMsg: '&B<player.name> &Ehas lost the &B<ability.name> ability'
            time: -1
        Jump:
            world: world
            permission: timerank.ab.Jump
            nodes:
            - worldedit.navigation.jumpto
            description: Enable Jump
            categories:
            - navigation
            - worldedit
            - movment
            buy:
                amount: 250.0
                broadcast: true
                msg: '&B<player.name> &Ehas bought <ability.name>'
                cost: Money
                minTime: -1
            rent:
                time: 5
                amount: 25.0
                broadcast: true
                msg: '&B<player.name> &Ehas bought <ability.name>'
                cost: Money
                minTime: -1
                gainedMsg: '&B<player.name> &Ehas rented &B<ability.name>'
                lostMsg: '&B<player.name> &Ehas lost the &B<ability.name> ability'
            time: -1
    


    Messages
    Messages (open)

    Messages must be enclosed in ' ' or you will get errors. They support both colors and variables. Colors are done by using &<color>, such as &3 or &a. If you want to use a & in your message, place two of them. Example. 'He is a gentlemen && a scholar' would print out 'He is a gentlemen & a scholar'

    Here is a list of variables. All variables should be enclosed in < > and lower case
    Player
    player.name = Players name who has been promoted
    player.world = Current world the player is in

    Rank
    Follows pretty much the config names.
    rank.name = Name of the rank
    rank.group = New group person is getting promoted to
    rank.oldgroup = Old group the person was in
    rank.world = The world that group and oldgroup are a part of.
    rank.time = Amount of time in minutes it took to get this promotion
    rank.cost = The cost, money, or block id they used for this promotion
    rank.amount = The amount of money, or blocks, they paid
    rank.remove = If they were removed from the old group

    Ones you'll likely never use but are there...
    rank.broadcast = If this was broadcast to the whole server
    rank.msg = The raw msg before it is processed.

    Abilities
    Same as rank with the following changes
    There is no group or oldgroup.




    Commands
    Commands (open)

    Code:
    /playtime <player>
    will show how long a player has been playing for. This keeps track of time logged in to the server and playing.
    Permission node: timerank.playtime
    
    Code:
    /listranks [filter/page] [page]
    List all the ranks loaded and there costs and other information. Filter and page is optional. Filter can be time, buy, or rent. Adding a filter will only list the ranks with the selected information. Page can be used to limit the output to 5 at a time.
    Permission node: timerank.listranks
    
    Code:
    /buyrank <name>
    Will allow you to buy the rank with that name if you have enough to pay for it.
    Permission node: timerank.buyrank
    
    Code:
    /rentrank <name>
    Will allow you to rent the rank with that name if you have enough to pay for it.
    Permission node: timerank.rentrank
    
    Code:
    /timerank
    Show version number and other information
    
    /timerank reload
    Reloads config file
    
    /timerank groups
    List a lot of information on the loaded groups
    
    Permission node: timerank.timerank
    


    Current Bugs
    • None
    Planned features
    • Add in support for Permissions 2.7.x - May not happen. Doesn't have an API for managing groups. May have to edit the config files directly which is a very ugly way of doing it.
    • Reformat the listrank output to make it look better.
    • Make oldGroups a list instead of a single value. Make this list an OR list so they have to be in anyone of these groups, remove any that they are in.
    • Add in a use: section to limit the abilities to a number of uses instead of just buy/rent.
    Features I'm thinking about
    • Add an option so you have to visit a set place to get your rank advancement such as an alter or temple.
    • Come up with a better name to describe this since it now does more then just time. Maybe call it Ranker.I'm open to suggestions.
    • PermissionsEx support
    Change Log
    Version 0.1.0b
    • Fixed serialize bug so we could save rented abilities across reboots.
    Version 0.1.0a
    • Fixed bug where only the first permission node was added.
    Version 0.1.0
    • Fixed null pointer error when rent was present but empty.
    • Added ability to earn/buy/rent abilities and permission nodes.
    Version 0.0.9
    • Fixed bug when loading play times and it coming back null.
    • Added in description field.
    • Added message to reload command to let you know it worked.
    • Added better error messages, trapped a few more errors.
    • Preserved ordering for rank list so that /listranks is printed in a logical order.
    • Fixed but where rented abilities would not turn off if the server was rebooted.
    • Config file changed. Should auto-update to the new format. You may want to back up your config file first before upgrading.
    Old change log (open)

    Version 0.0.8
    • Fixed reload option to reload config instead of needing a reboot.
    • Fixed not being able to buy ranks when using blocks.
    • Added minTime node to require a minimum time before being able to buy a rank
    • Added rentMinTime node to require a minimum time before being able to rent a rank.
    Version 0.0.7b
    • Fixed bug where people were removed from the group right after adding them to it.
    Version 0.0.7a
    • Fixed bad bug where it made a folder for each player in the permissions folder.
    Version 0.0.7
    • A lot of small bug fixes.
    • Added timer to handle rank up checks, checks every 10 seconds, instead of using player animation
    • Added ability to rent ranks and all the goodies that go with that
    • Made it easier to work with single permission nodes for when buying single nods gets added in
    • Added filters to /ranklist. Now it is /ranklist <time|buy|rent> to only show that group.
    • Added /timerank groups to list more (Admin) information about groups. Works with the same filters as /ranklist
    Version 0.0.6
    • Made OldGroup optional. Now if it is not specified it will always promote them if available.
    • Added BroadCast to ranks, allows turning server broadcasts off when a person is promoted. If off, will only msg the person who was promoted.
    • Added msg to ranks, configurable message for when a play gains a rank.
    Version 0.0.5d
    • Fixed a bug added in 0.0.5 that would only allow people to be promoted to first group listed in config.
    • Fixed /timerank reload causing errors.
    • Added in some more error handling.
    Version 0.0.5c
    • Really fixed this time. Made a typo that stopped permissions from loading.
    Version 0.0.5b
    • Fixed for latest permissions
    Version 0.0.5a
    • Fixed detecting Group Manager
    Version 0.0.5
    • Added auto detection of permissions plugin. Now ignores the permissions setting.
    • Added in support for globalUsers and globalGroups if no world is given.
    • Reformated /timerank to show settings.
    • Added /timerank reload
    Version 0.0.4
    • Added /timerank to show version and as a placeholder for other commands.
    • Added support for group manager.
    Version 0.0.3
    • Added /listranks to display all the ranks you can buy
    • Added support for iConomy 4, iConomy 5, EssentialsEco, and BOSEconomy
    Version 0.0.2
    • Added ability to buy ranks.
    • Made it save play times on world save in case server crashed or was stopped.
    • Added check a single players rank when they run animations. This way they get promoted sooner after they reach the right time
    • Added Settings node and settings.debug to the config file instead of setting debug in the source.
    • Changed name of plugin from Time Rank to TimeRank. Folder must be renamed.
    • Made it handle reloads with out losing player times.
    Version 0.0.1
    • First public release.
     
    ume88, Pim1234, Nurgo and 4 others like this.
  2. Offline

    Nurgo

    Have you any idea when it could be implemented? I need this feature for a new big server that I'm about to create.
    I would be happy to donate for this feature :)
     
  3. Offline

    nicquehen

    i hope for a pex integration soon ;o
     
  4. Offline

    Burns1

    How can i do multiwold support like how i can i buy a rank on one world and get it on both or set ranks for both worlds
    like world: world*
    in the config
     
  5. Offline

    gilby202

    can some one help me i don't know how to config it
     
  6. Offline

    rediem

    BukkitPermissions support please.
     
    1born2kill likes this.
  7. Offline

    kopcap23

    ledhead900 and 1born2kill like this.
  8. Offline

    1born2kill

  9. Offline

    sagethor

    Found a really irritating problem. When using items as currency, you need one more than the required item in order to purchase the ability.
     
  10. Offline

    Nick Hooper

    Mysql support for this would be really nice, i could connect multiple servers to the same database for an overall playtime report.
     
  11. Offline

    starving030

    How do I set this up so that it uses EssentialsEco?

    Code:
    ranks:
        level 2:
            group: level 2
            world: world
            oldgroup: level 1
            time: -1
            buy:
                amount: 5.0
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: money
                minTime: 2
            description: Enables basic teleporting, /item, /seen, and /me.
            remove: true
    It works fine promoting after a set time but i want it by money and minimum time played. Thanks

    Oh, the price and time are just for testing. they will change :)
     
  12. Offline

    saul100

    can you update? For PermissionsEX and bPermissions and for build 1060
     
    pandapipino likes this.
  13. Offline

    compwiz91

    Update for bukkit 1060 plzz =) i really like this plugin idea
     
  14. Offline

    Mathgeekboo

    It won't let me enter in any commands
    11:32:31 [INFO] Preparing start region for level 1 (Seed: 6395018611110896286)
    11:32:31 [INFO] Preparing spawn area: 4%
    11:32:31 [INFO] BukkitContrib 0.1.7 has been initialized
    11:32:31 [INFO] Loading ColoredSigns
    11:32:31 [INFO] CraftBukkitUpToDate version 2.6.1 is enabled!
    11:32:31 [INFO] [PermissionsCompat] Compatibility layer enabled.
    11:32:32 [INFO] Loaded Essentials build 2.5.7 by [Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits]
    11:32:32 [INFO] [Essentials] Payment method found (iConomy version: 5)
    11:32:32 [INFO] GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
    11:32:32 [INFO] GroupManager version 1.0(alpha-5) [Zombie-Version] is enabled!
    11:32:32 [INFO] [HeroSpawn] Permissions system detected!
    11:32:32 [INFO] [HeroSpawn] Version 0.2 Enabled
    11:32:32 [INFO] Found and will use plugin Permissions v2.7.7
    11:32:32 [INFO] HomeX enabled.
    11:32:32 [INFO] CButD: CraftBukkit is up to Date
    11:32:32 [INFO] [iConomy] Logging is currently disabled.
    11:32:32 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    11:32:32 [INFO] [iConomy] Developed by: [Nijikokun]
    11:32:32 [INFO] [iConomy] hooked into Permissions.
    11:32:32 [INFO] [Lottery] Payment method found (iConomy version: 5)
    11:32:32 [INFO] [PermissionsEx] Superperms support enabled.
    11:32:32 [INFO] [PermissionsEx] v1.13 enabled
    11:32:32 [INFO] PlgEssentials version 4.6 is enabled!
    11:32:32 [INFO] PlgSetspawn version 4.1 is enabled!
    11:32:32 [INFO] [SignShop] Hooked into Permissions
    11:32:32 [INFO] [SignShop] v1.2 enabled
    11:32:32 [INFO] [SignShop] hooked into iConomy.
    11:32:32 [INFO] Found and will use plugin Permissions v2.7.7
    11:32:32 [INFO] SignsPro Plugin has been enabled
    11:32:32 [INFO] SignsPro hooked into iConomy.
    11:32:32 [INFO] [SimpleGive] Version 1.2 Permissions system detected!
    11:32:32 [INFO] [SimpleGive] SimpleGive v1.2 by captainawesome7 has been enabled!
    11:32:32 [INFO] SimpleHelp V1.8.2 Enabled!
    11:32:33 [SEVERE] Error occurred while enabling SimpleHelp v1.8.2 (Is it up to date?): while scanning a simple key; could not found expected ':'
    11:32:33 [INFO] Spout 1.0.5.227 has been initialized
    11:32:33 [INFO] SpoutEssentials v3.4 is enabled!
    11:32:33 [INFO] SpoutEssentials: WorldGuard Module enabled
    11:32:33 [INFO] SpoutEssentials: BOSEeconomy module disabled
    11:32:33 [INFO] SpoutEssentials: MobDisguise module disabled
    11:32:33 [INFO] [SpoutEssentials] Initiating auto-update...
    11:32:33 [INFO] [SpoutEssentials] You already have the latest version of SpoutEssentials.
    11:32:33 [INFO] Found and will use plugin Permissions v2.7.7
    11:32:33 [INFO] [SpoutNinja] SpoutNinja has been enabled.
    11:32:33 [INFO] [SpoutNinja] Created by CainFoool
    11:32:33 [INFO] Stargate v.0.6.6 is enabled.
    11:32:33 [INFO] [Stargate] Loaded 1 gate layouts
    11:32:33 [INFO] [Stargate] {world} Loaded 4 stargates with 0 set as always-on
    11:32:33 [INFO] [Stargate] {world_nether} No stargates for world
    11:32:33 [INFO] [Stargate] Found Permissions (v2.7.7)
    11:32:33 [INFO] [Stargate] Found iConomy (v5.01)
    11:32:33 [INFO] [Time Rank] Version 0.1.0b Enabled.
    11:32:33 [INFO] [TimeRank] Payment method found (iConomy version: 5)
    11:32:33 [INFO] [TimeRank] Permissions 3.x found.
    11:32:33 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    11:32:33 [INFO] TorchArrow v0.6 - Plugin Enabled.
    11:32:33 [INFO] [VoxelSniper] Config loaded
    11:32:33 [INFO] VoxelSniper version 5.006 is enabled! Snipe away.
    11:32:33 [INFO] WorldEdit 4.6 enabled.
    11:32:33 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    11:32:34 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    11:32:34 [INFO] WorldGuard: (world) Single session is enforced.
    11:32:34 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    11:32:34 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    11:32:34 [INFO] WorldGuard: (world) Lava fire is blocked.
    11:32:34 [INFO] WorldGuard: (world) Fire spread is UNRESTRICTED.
    11:32:34 [INFO] WorldGuard: Loaded configuration for world 'world"
    11:32:34 [INFO] WorldGuard: (world_nether) Single session is enforced.
    11:32:34 [INFO] WorldGuard: (world_nether) TNT ignition is PERMITTED.
    11:32:34 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    11:32:34 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    11:32:34 [INFO] WorldGuard: (world_nether) Fire spread is UNRESTRICTED.
    11:32:34 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    11:32:34 [INFO] WorldGuard: 3 regions loaded for 'world'
    11:32:34 [INFO] WorldGuard: Unable to register missing event type SNOW_FORM
    11:32:34 [INFO] WorldGuard 5.2.2 enabled.
    11:32:34 [INFO] [ChatManager] ChatManager disabled. Check config.yml!
    11:32:34 [INFO] [ChatManager] ChatManager disabled!
    11:32:34 [INFO] [Modifyworld] Modifyworld disabled. Check config.yml!
    11:32:34 [INFO] [Modifyworld] Modifyworld disabled!
    11:32:34 [INFO] [iChat] Found Permissions (v2.7.7)
    11:32:34 [INFO] iChat (v2.3.3) enabled
    11:32:34 [INFO] LWC: Permissions API: NijiPermissions
    11:32:34 [INFO] LWC: Currency API: iConomyCurrency
    11:32:34 [INFO] LWC: Loading SQLite
    11:32:34 [INFO] LWC: Using: Native
    11:32:34 [INFO] [WStone] Stargate 0.6.6 found! Using.
    11:32:34 [INFO] [WStone] 0 Transmitters, 0 Receivers and 0 Repeaters resetted.
    11:32:34 [INFO] [WStone] DBG: 0.
    11:32:34 [INFO] [WStone] DBG: 0.
    11:32:34 [INFO] [WStone] v0.7 enabled.
    11:32:34 [INFO] Server permissions file permissions.yml is empty, ignoring it
    11:32:34 [INFO] Done (0.438s)! For help, type "help" or "?"
    11:32:41 [INFO] The automatic update-Check only work every 6 hours, the last check was 82 minutes ago.
    11:32:45 [INFO] Mathgeekboo [/192.168.1.5:54952] logged in with entity id 81 at ([world] 204.875, 68.0, -14.28125)
    11:32:46 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:46 [SEVERE] Could not pass event PLAYER_JOIN to SpoutEssentials
    11:32:46 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:46 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:47 [INFO] Reading data
    11:32:47 [INFO] [Spout] Successfully authenticated Mathgeekboo's Spoutcraft client. Running client version: 1.0.5.262
    11:32:47 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:53 [INFO] Connection reset
    11:32:53 [INFO] Mathgeekboo lost connection: disconnect.quitting
    11:32:55 [INFO] Mathgeekboo [/192.168.1.5:54959] logged in with entity id 689 at ([world] 204.875, 68.0, -14.28125)
    11:32:56 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:56 [SEVERE] Could not pass event PLAYER_JOIN to SpoutEssentials
    11:32:56 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:56 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:32:56 [INFO] Reading data
    11:32:56 [INFO] [Spout] Successfully authenticated Mathgeekboo's Spoutcraft client. Running client version: 1.0.5.262
    11:33:05 [SEVERE] Player: Mathgeekboo was not properly updated during login!
    11:33:05 [SEVERE] ===================================================
    11:33:05 [SEVERE] = ERROR REPORT START =
    11:33:05 [SEVERE] ===================================================
    11:33:05 [SEVERE] = TIME RANK ERROR =
    11:33:05 [SEVERE] = INCLUDE WHEN ASKING FOR HELP =
    11:33:05 [SEVERE] ===================================================
    11:33:05 [SEVERE] Version: 0.1.0b
    11:33:05 [SEVERE] Permissions: Permissions3
    11:33:05 [SEVERE] Ranks Loaded: 3
    11:33:05 [SEVERE] ===================ERROR INFO===================
    11:33:05 [SEVERE] Msg: Error running command.
    11:33:05 [SEVERE] CMD: listranks
    11:33:05 [SEVERE] Label: listranks
    11:33:05 [SEVERE] Arguments: 0
    11:33:05 [SEVERE] Args:
    11:33:05 [SEVERE] Trace: java.lang.NullPointerException
    at com.oberonserver.timerank.timerank.onCommand(timerank.java:452)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:352)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:737)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:701)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:694)
    at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:89)
    at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:454)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:363)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    11:33:05 [SEVERE] ===================================================
    11:33:05 [SEVERE] = ERROR REPORT ENDED =
    11:33:05 [SEVERE] ===================================================
    11:33:06 [SEVERE] Player: Mathgeekboo was not properly updated during login!




    I am using permissions ex and I don't know how to run multiple permission plugins.

    Please Help
    Thanks
     
  15. Offline

    wachnlurn

    are there any similar plugins to this out there for 1060 and new superperms?
     
  16. Offline

    Mathgeekboo

    Can you?

    I really need PermissionsEx support

    Thanks any way. I got mine working with permissions 3.x now so I'm fine.

    Also I am interested in programming/development, and I know pretty much nothing. Do you have a recommended first language or a good place to start?
    Thanks for the info.

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

    Do you need to be using global groups and global users for this to work?
    I have worldspecific permissions (3.1.6)
    and when I buyrank, im not changing into another group <obvious from the lack of prefix change>
     
  18. Offline

    pandapipino

    somebody save this plugin!
     
  19. Offline

    Pim1234

    hello, i came here from PermIconomy because of the bad support the dev gave me.

    i really like this plugin but there's one feature i would like to be added (from permiconomy);

    admin's approval. someone executes the /buyrank VIP and as soon as one of the admins logs in he/she will get a message that <playername> would like to become VIP. than the admin will check his/her paypal or whatever account to see wether the he/she received the money and after that he/she will be able to use euhm /approve <playername> <rank> or something

    EDIT: he was just short on time, not his fault, my apologies.
     
  20. Offline

    alfw

    PEX support?
     
  21. Offline

    wachnlurn

    Anyone know how to fix this or what is the cause? i know bpermissions is not supported but supposedly can bridge these old plugins. I also know the dev is gone so if anyone is good at java and could update this to for 1.8 that would be great :D

    Code:
    [SEVERE] Could not pass event PLAYER_JOIN to TimeRank
    java.lang.NullPointerException
            at com.oberonserver.timerank.timerank.PromotePlayer(timerank.java:1463)
            at com.oberonserver.timerank.timerank.CheckRanks(timerank.java:1563)
            at com.oberonserver.timerank.TimeRankPlayerListener.onPlayerJoin(TimeRankPlayerListener.java:30)
            at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:244)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:338)
            at net.minecraft.server.ServerConfigurationManager.c(ServerConfigurationManager.java:128)
            at net.minecraft.server.NetLoginHandler.b(NetLoginHandler.java:116)
            at net.minecraft.server.NetLoginHandler.a(NetLoginHandler.java:34)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:94)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:464)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:374)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
     
    ledhead900 likes this.
  22. Offline

    ledhead900

    I second the update!
     
  23. I would also like to see this plugin continued!
     
  24. Offline

    yaitsbilly

    Just waiting for an update for 1.8.1 .
     
  25. Offline

    Specops343

    I'll take a look at updating/adding pex support tomorrow.
     
  26. Offline

    xlilcasper

    I'll start work on this again. Sorry had some real life stuff come up that stopped me from working on it. I'll see if I can kick out an update first thing. Specops343, if you get PEX working feel free to send it up stream on the git hub.
     
  27. Offline

    Junrall

    Any news on this being updated to support PEX?
     
  28. Offline

    ledhead900

    Read the post above yours, ;)

    @xlilcasper
    @Specops343

    Thank for taking this up again. I appreciate it a lot.
     
  29. Offline

    xlilcasper

    Might take me a little longer then I thought, I can't even seem to find Permissions 3.x any more.
     
  30. Offline

    ledhead900

    3.x is here and locked now!

    You want to code for PEX and or just Bukkit's SuperPermissions or you can just update your 3.x code and also add superperms as that is an API from bukkit PEX just hooks into it and it works with any permissions system that uses that API.

    I was never a fan but its starting to look better each day now that some decent systems have started using it. Hope these links help.
     
  31. Offline

    semibreve42

    Looks like you were away for a while XD

    Everyone is moving over to PermissionsEX bPermissions or the built in SuperPerms.

    I'm looking forward to PermissionsEx support - Thanks for you time,

    semibreve42
     

Share This Page