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

    homeworlder_

    4th
     
  3. Offline

    sykefu

    PEX support soon would be GREAT !
     
  4. Offline

    Nathan C

  5. Offline

    RedPoptarts

    I would love to see someone pick this plugin up and continue development. I don't use the time based features, but would love the economy based features.
     
  6. Offline

    Syd

    Like this?
     
    floit likes this.
  7. Offline

    Yudaz

    Code:
    2011-11-09 15:54:20 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
        at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
        at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
        at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
        at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
        at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:585)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:964)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:171)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:154)
        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.nijiko.coelho.iConomy.iConomy
        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:36)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:24)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 16 more
    ... comes up in the server log everytime I start it... Several times... What to do?
     
  8. Offline

    Syd

    sounds like missing register...
     
  9. Offline

    Deansk89

    Umm this may become a problem for me.
    So i have staff, Moderators, Admins, VIPS!!!!!!
    and, when they play for 2 hrs, the VIP's arnt VIP's anymore, they are my 2hr group (regulars)....
    Soo, how can i prevent them from being automatically ranked.
    Please help.
     
  10. Offline

    Syd

    @Deansk89
    checked if you have set
    Code:
    remove: true
    for a group?
     
  11. Offline

    SilentStray

    inactive?
     
  12. Offline

    Deansk89

    Ok Guys,

    So remove is true
    Im using group manager

    but i dont know how to prevent mods, and VIPs from being promoted.

    Can the dev add a node, thats actually allows them to be promoted?

    That would make it so much easier....

    I know he added oldgroup, but it seems that when my Default group is named Player, and
    my next groups 4hr is named Regular. Regular's old group is set to Player, but for some odd reason Vip's Mods, and me are getting promo'd to Regular.
     
  13. Offline

    Syd

  14. Offline

    Jobsti

    Yep, we need PermissionsEx support ;)
     
  15. Offline

    eHAce

    This plugin looks GREAT:D but there is one thing i absolutely hate, It not being compadable with BukkitPermissions. it would be perfect.
     
  16. Offline

    Hayden06

    I wish this guy would come back and update this. It's a lot better than the others out there.
     
  17. Offline

    Syd

    Maybe you should the "the others out there" why this one is better^^
     
  18. Offline

    Junrall

    This one does only one thing... ranks a person when the time is up. Very simple and easy to use.
    "The others out there" have to be configured to "act" like this one and are confusing to set up.
    Can anyone suggest a plugin that acts exactly the same as this one?
     
  19. Offline

    Syd

  20. Offline

    Colombiamasters

    Error....
    Code:
    174 recipes
    27 achievements
    19:53:28 [INFO] Starting minecraft server version 1.0.1
    19:53:28 [INFO] Loading properties
    19:53:28 [INFO] Starting Minecraft server on *:25565
    19:53:28 [INFO] This server is running Craftbukkit version git-Bukkit-1.0.1-R1-b
    1597jnks (MC: 1.0.1) (Implementing API version 1.0.1-R1)
    19:53:28 [INFO] [PermissionsEx] sql backend registered!
    19:53:28 [INFO] [PermissionsEx] file backend registered!
    19:53:28 [INFO] [PermissionsEx] PermissionEx plugin initialized.
    19:53:28 [INFO] [PermissionsEx] p2compat backend registered!
    19:53:28 [INFO] [PermissionsCompat] Compatibility Layer Initalized!
    19:53:28 [INFO] [PermissionsEx] Initializing file backend
    19:53:28 [INFO] SkylandsPlus 0.6: Enabled.
    19:53:28 [INFO] Preparing level "world"
    19:53:28 [INFO] Default game type: 0
    19:53:28 [INFO] Preparing start region for level 0 (Seed: -168174320944530066)
    19:53:29 [INFO] Preparing start region for level 1 (Seed: -168174320944530066)
    19:53:29 [INFO] Preparing spawn area: 20%
    19:53:30 [INFO] Preparing start region for level 2 (Seed: -168174320944530066)
    19:53:30 [INFO] Preparing spawn area: 52%
    19:53:31 [INFO] [PermissionsCompat] Compatibility layer enabled.
    19:53:31 [INFO] [AutoAnnouncer] Permissions support enabled!
    19:53:31 [INFO] [AutoAnnouncer] Settings Loaded (3 announces).
    19:53:31 [INFO] [AutoAnnouncer] Scheduled every 1 minutes!
    19:53:31 [INFO] [AutoAnnouncer] v1.3-06.25 is enabled!
    19:53:31 [INFO] [AutoAnnouncer] Developed by: [Sharkiller]
    19:53:31 [INFO] Bukkit version format changed. Version not checked.
    19:53:31 [INFO] git-Bukkit-1.0.1-R1-b1597jnks (MC: 1.0.1)
    19:53:31 [INFO] 1.0.1-R1
    19:53:31 [INFO] Loaded Essentials build 2.7.1 by: Zenexer, ementalo, Aelux, Bret
    tflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits
    19:53:31 [INFO] Essentials: Using Permissions 2 based permissions.
    19:53:31 [INFO] Loaded EssentialsSpawn build 2.7.1 by: essentials team
    19:53:31 [INFO] [HeroChat] HeroChat version 4.10.3 enabled.
    19:53:31 [INFO] [HeroChat] Permissions 2.7.7 found.
    19:53:31 [INFO] [iConomy - Celty] Enabled (11 ms)
    19:53:31 [INFO] [Essentials] Payment method found (iConomy version: 6)
    19:53:31 [INFO] [Multiverse-Core] - Version 2.1-b326 (API v7) Enabled - By Rigby
    , fernferret, lithium3141 and main--
    19:53:31 [INFO] [AllPay] - Version 3.0 - hooked into iConomy 6 for Multiverse-Co
    re v2.1-b326
    19:53:31 [INFO] [Multiverse-Core] 0 - World(s) loaded.
    19:53:31 [INFO] [Multiverse-Portals] - Version 2.1-b295 Enabled - By Rigby and f
    ernferret
    19:53:31 [INFO] [Multiverse-Portals]  0 - Portals(s) loaded
    19:53:31 [INFO] [PermissionsEx] Superperms support enabled.
    19:53:31 [INFO] [PermissionsEx] v1.17 enabled
    19:53:31 [INFO] Essentials: Using PermissionsEx based permissions.
    19:53:31 [INFO] [SRPEX] Found PermissionsEx v1.17 and is good to go
    19:53:31 [INFO] [SRPEX] SetRankPEX v1.3.4 is now enabled.
    19:53:31 [INFO] [Time Rank] Version 0.1.0b Enabled.
    19:53:31 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
            at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo
    4.java:57)
            at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.
    java:55)
            at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.jav
    a:95)
            at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeR
    ankServerListener.java:35)
            at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.j
    ava:590)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:339)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:975)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:280)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169
    )
            at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    Caused by: java.lang.ClassNotFoundException: com.nijiko.coelho.iConomy.iConomy
            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:36)
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:24)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            ... 16 more
    19:53:31 [INFO] WorldEdit 5.0 enabled.
    19:53:31 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissio
    ns.
    19:53:31 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissio
    ns.
    19:53:31 [INFO] [Multiverse-Portals]  Found WorldEdit. Using it for selections.
    19:53:31 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
            at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo
    4.java:57)
            at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.
    java:55)
            at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.jav
    a:95)
            at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeR
    ankServerListener.java:35)
            at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.j
    ava:590)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:339)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:975)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:280)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169
    )
            at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    19:53:31 [INFO] [Modifyworld] Modifyworld enabled!
    19:53:31 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
            at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo
    4.java:57)
            at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.
    java:55)
            at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.jav
    a:95)
            at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeR
    ankServerListener.java:35)
            at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.j
    ava:590)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:339)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:975)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:280)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169
    )
            at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    19:53:31 [INFO] Server permissions file permissions.yml is empty, ignoring it
    19:53:31 [INFO] Done (0.306s)! For help, type "help" or "?"
    19:54:31 [INFO] [AutoAnnouncer] Want to be Moderator?
              Build something big and cool!.
    
    Tell me whats wrong?
     
  21. Offline

    Junrall

    Thanks, but not exactly... ActivityPromotion promotes based on activity not amount cumulative game-play time... However, I have read that it can be forced to act like TimeRank by finagling the config settings.

    Well, I suppose I have three choices... live with whats out there, get off my lazy and learn Java, or whine about TimeRank not being updated.... I'm not a whiner, so..... :p
     
  22. Offline

    Hayden06

    because it's time and purchase rank together. I can make it so they have to be on for a certain amount of time before they are allowed to buy or rent a rank. It's unique to the others by far. I wish I was a java wizard, I'd do it myself along with plenty of other ideas I have for currently non existant plugins.
     
  23. Offline

    Syd

    You could ask the devs of the "others" if they could add the features you want. (What you have done now^^)
     
  24. In the data folder where all the players time are kept, what are those numbers? They seem to be lower than seconds and minutes. Is it miliseconds?
     
  25. Offline

    KTMRipper

    I'm having issues with the config.yml. When I set the remove to true (remove: true), it wont remove the person from the group when it promotes them. I'm using Permissions 3.x and need help asap. Thanks
     
  26. Offline

    DarklightPvP

    Could you add PermissionsEx support? I really like your plugin, but I can't use it on my server :/
     
  27. Offline

    Yudaz

    UPDATE FOR iConomy 6, that seems to be the problem to mostly everyone, :) ?
     
  28. Offline

    Myutlonghorns

    I would really love some PermissionEx support! :/
     
  29. Offline

    Junrall

    If you look at this guy's last login, you'll see that he is loooonnnng gone. (Sep 21, 2011)
    No use in asking for new stuff.
     
  30. Offline

    dustyn33

    Code:
    2012-01-14 13:15:13 [INFO] Starting minecraft server version 1.0.1
    2012-01-14 13:15:13 [INFO] Loading properties
    2012-01-14 13:15:13 [INFO] Starting Minecraft server on *:25565
    2012-01-14 13:15:13 [INFO] This server is running Craftbukkit version git-Bukkit-1.0.1-R1-b1597jnks (MC: 1.0.1) (Implementing API version 1.0.1-R1)
    2012-01-14 13:15:14 [INFO] [PermissionsEx] sql backend registered!
    2012-01-14 13:15:14 [INFO] [PermissionsEx] file backend registered!
    2012-01-14 13:15:14 [INFO] [PermissionsEx] PermissionEx plugin initialized.
    2012-01-14 13:15:14 [INFO] [PermissionsEx] p2compat backend registered!
    2012-01-14 13:15:14 [INFO] [PermissionsCompat] Compatibility Layer Initalized!
    2012-01-14 13:15:14 [INFO] MLog clients using java 1.4+ standard logging.
    2012-01-14 13:15:14 [INFO] [PermissionsEx] Initializing file backend
    2012-01-14 13:15:14 [INFO] Preparing level "world"
    2012-01-14 13:15:14 [INFO] Default game type: 0
    2012-01-14 13:15:14 [INFO] Preparing start region for level 0 (Seed: -425471048)
    2012-01-14 13:15:15 [INFO] Preparing start region for level 1 (Seed: -425471048)
    2012-01-14 13:15:15 [INFO] Preparing spawn area: 12%
    2012-01-14 13:15:16 [INFO] Preparing start region for level 2 (Seed: -425471048)
    2012-01-14 13:15:16 [INFO] Preparing spawn area: 44%
    2012-01-14 13:15:17 [INFO] [AutoMessage] version [1.5] loaded
    2012-01-14 13:15:17 [INFO] File not found: plugins\Essentials\jail.yml
    2012-01-14 13:15:17 [INFO] Loaded Essentials build 2.7.2 by: Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits
    2012-01-14 13:15:17 [INFO] Essentials: Using config based permissions. Enable superperms in config.
    2012-01-14 13:15:17 [INFO] Loaded EssentialsChat build 2.7.2 by: essentials team
    2012-01-14 13:15:17 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
    2012-01-14 13:15:17 [INFO] Loaded EssentialsProtect build 2.7.2 by: essentials team
    2012-01-14 13:15:17 [INFO] Loaded EssentialsSpawn build 2.7.2 by: essentials team
    2012-01-14 13:15:17 [INFO] <-----Fastgrow starting----->
    2012-01-14 13:15:17 [INFO] <-----Fastgrow enabled----->
    2012-01-14 13:15:17 [INFO] [iConomy - Celty] Enabled (15 ms)
    2012-01-14 13:15:17 [INFO] [Essentials] Payment method found (iConomy version: 6)
    2012-01-14 13:15:17 [INFO] [Lockette] Version 1.4.9 beta is being enabled!  Yay!  (Core version 1.3)
    2012-01-14 13:15:17 [INFO] [Lockette] Detected craftbukkit build [1597] ok.
    2012-01-14 13:15:18 [INFO] [Lockette] Using ops file for admin permissions.
    2012-01-14 13:15:18 [INFO] [Lockette] Ready to protect your containers.
    2012-01-14 13:15:18 [INFO] [NoCheat] version [2.24b] is enabled.
    2012-01-14 13:15:18 [INFO] [PermissionsEx] Superperms support enabled.
    2012-01-14 13:15:18 [INFO] [PermissionsEx] v1.18 enabled
    2012-01-14 13:15:18 [INFO] Essentials: Using PermissionsEx based permissions.
    2012-01-14 13:15:18 [INFO] [Lockette] Enabled link to plugin PermissionsEx for Groups, version 1.18
    2012-01-14 13:15:18 [INFO] [SRPEX] Found PermissionsEx v1.18 and is good to go
    2012-01-14 13:15:18 [INFO] [SRPEX] SetRankPEX v1.3.4 is now enabled.
    2012-01-14 13:15:18 [INFO] [Time Rank] Version 0.1.0b Enabled.
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    Caused by: java.lang.ClassNotFoundException: com.nijiko.coelho.iConomy.iConomy
    	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:36)
    	at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:24)
    	at java.lang.ClassLoader.loadClass(Unknown Source)
    	at java.lang.ClassLoader.loadClass(Unknown Source)
    	... 16 more
    2012-01-14 13:15:18 [INFO] TreeAssist 3.0 Enabled
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] WorldEdit 5.0 enabled.
    2012-01-14 13:15:18 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    2012-01-14 13:15:18 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world) Single session is enforced.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world) Lava fire is blocked.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world) Fire spread is UNRESTRICTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: Loaded configuration for world 'world"
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_nether) TNT ignition is PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_nether) Fire spread is UNRESTRICTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_the_end) Single session is enforced.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_the_end) TNT ignition is PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_the_end) Lighters are PERMITTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_the_end) Lava fire is blocked.
    2012-01-14 13:15:18 [INFO] WorldGuard: (world_the_end) Fire spread is UNRESTRICTED.
    2012-01-14 13:15:18 [INFO] WorldGuard: Loaded configuration for world 'world_the_end"
    2012-01-14 13:15:18 [INFO] WorldGuard: 9 regions loaded for 'world'
    2012-01-14 13:15:18 [INFO] WorldGuard: 0 regions loaded for 'world_nether'
    2012-01-14 13:15:18 [INFO] WorldGuard: 0 regions loaded for 'world_the_end'
    2012-01-14 13:15:18 [INFO] WorldGuard 5.4 enabled.
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] [ChatManager] ChatManager enabled!
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] [Modifyworld] Modifyworld enabled!
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] [PermissionsCompat] Compatibility layer enabled.
    2012-01-14 13:15:18 [INFO] [Lockette] Ignoring fake Permissions plugin version 2.7.7
    2012-01-14 13:15:18 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] [ChestShop] Permissions version 2.7.7 loaded.
    2012-01-14 13:15:18 [INFO] [ChestShop] Lockette version 1.4.9 beta loaded.
    2012-01-14 13:15:18 [INFO] [ChestShop] WorldGuard version 5.4 loaded.
    2012-01-14 13:15:18 [INFO] [ChestShop] version 3.33 initialized!
    2012-01-14 13:15:18 [INFO] [ChestShop] iConomy 6 loaded.
    2012-01-14 13:15:18 [SEVERE] Could not pass event PLUGIN_ENABLE to TimeRank
    java.lang.NoClassDefFoundError: com/nijiko/coelho/iConomy/iConomy
    	at com.nijikokun.timerank.register.payment.methods.iCo4.isCompatible(iCo4.java:57)
    	at com.nijikokun.timerank.register.payment.Methods.createMethod(Methods.java:55)
    	at com.nijikokun.timerank.register.payment.Methods.setMethod(Methods.java:95)
    	at com.oberonserver.timerank.TimeRankServerListener.onPluginEnable(TimeRankServerListener.java:35)
    	at org.bukkit.plugin.java.JavaPluginLoader$47.execute(JavaPluginLoader.java:590)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    	at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:975)
    	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    	at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2012-01-14 13:15:18 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2012-01-14 13:15:18 [INFO] Done (0.418s)! For help, type "help" or "?"
    
    thats my log... then when i take out timerank i get no errors... i use iconomy 5.
    here is my timerank setup
    Code:
    settings:
        debug: false
        hideUnavaible: false
        configVersion: 2
    ranks:
        MineC:
            group: MineC
            world: world
            oldgroup: MineD
            time: 5000
            buy:
                amount: 10000.0
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: Money
                minTime: -1
            description: Mine C
            remove: false
        MineB:
            group: MineB
            world: world
            oldgroup: MineC
            time: -1
            buy:
                amount: 25000.0
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: Money
                minTime: -1
            description: Mine B
            remove: false
        MineA:
            group: MineA
            world: world
            oldgroup: MineB
            time: -1
            buy:
                amount: 50000.0
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: Money
                minTime: -1
            description: Mine A
            remove: false
        Free:
            group: Free
            world: world
            oldgroup: MineA
            time: -1
            buy:
                amount: 100000
                broadcast: true
                msg: '&B<player.name> &Ehas been promoted to &B<rank.group>'
                cost: Money
                minTime: -1
            description: Free
            remove: false
    abilities:
        Superpick:
            world: world
            permission: timerank.ab.Superpick
            nodes:
            - worldedit.superpickaxe
            - worldedit.superpickaxe.area
            description: Enable Superpick
            categories:
            - pick
            - worldedit
            - mining
            buy:
                amount: -1
                broadcast: false
                msg: '&B<player.name> &Ehas bought superpick'
                cost: Money
                minTime: -1
            rent:
                time: -1
                amount: -1
                broadcast: false
                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: -1
                broadcast: true
                msg: '&B<player.name> &Ehas bought <ability.name>'
                cost: Money
                minTime: -1
            rent:
                time: -1
                amount: -1
                broadcast: false
                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
    
    any help please? thanks ill give u cookies through internet stuff that will make u kewler
     
  31. Offline

    Junrall

    Looking for something exactly like this one?
    Try this: ThumbsApply
     

Share This Page