[INACTIVE][ECON] BankAccount v.0.5.1 - Shared Bank Accounts [860]

Discussion in 'Inactive/Unsupported Plugins' started by TAT, Mar 4, 2011.

  1. Offline

    TAT

    [​IMG]BankAccount v0.5.1
    IRC @ irc.esper.net/#BankAccount
    Donate
    Credits:
    Team: TAT

    Download 0.5.1 (JAR, TAR.GZ, ZIP)
    Earlier versions: 0.2-0.5
    Source Code @ Github

    BankAccount enables the players to open shared bank accounts with each other.
    The players with access to an account can deposit, withdraw and transfer money.

    Searching for coders and testers
    If you are interested in code and/or test BankAccount, please send a PM to TAT.

    Error reporting and feature requests
    Please use our Redmine system for this: http://redmine.earthgame.dk
    Requirements (open)

    • iConomy, BOSEconomy or Essentials Economy
    • mysql-connector-java-bin (Found here) (NOTE: must be included to Java ext folder - instructions included in Readme)
    • sqlitejdbc-v056 (Found here) (NOTE: must be included to Java ext folder - instructions included in Readme)
    Features (open)

    • Open a shared bank account between each other
    • Deposit/withdraw money between economy account and shared bank account
    • Transfer money between shared bank accounts
    • Password protect shared bank accounts (Case-sensitive)
    • Amounts on accounts can gain interest over time
    • Use commands global or in bank areas
    • Loan system
    Todo (open)

    • NPC??? (Perhaps)
    Permissions Nodes (open)
    Commands (open)
    Admin commands
    • /account help [page]
    • /account open <accountname> [players]
    • /account info <accountname>
    • /account list
    • /account balance <accountname>
    • /account adduser <accountname> <player>
    • /account removeuser <accountname> <player>
    • /account password <accountname> [password]
    • /account deposit <accountname> <amount>
    • /account withdraw <accountname> <amount> [password]
    • /account transfer <from account> <to account> <amount> [password]
    • /account loan <amount>
    • /account pay <amount>
    • /account close <accountname> [password]
    • /account select
    • /account setarea <areaname>
    • /account removearea <areaname>
    Documentation @ GitHub
    Howto videos (open)
    Basic Setup (open)
    MySQL Setup (open)
    Area Setup (open)
    Features planned for next release (open)

    • Separate banks with separate accounts (like in reality) [option]
    Changelog (open)
    Version 0.5.1
    • Added permissionnode for list command (Included in basic permission)
    • Added possibility to disable interest and loan debug output
    • Accounts no longer case-sensitive
    • Code clean-up
    • Changed to use Register [GitHub Commit: 2071011cca5d89940f310dc39273be8bb7e517bc]
      • Now supports following economy plugins (iConomy preferred)
        • iConomy 4
        • iConomy 5
        • BOSEconomy
        • Essentials Economy
    • Updated to CraftBukkit #860
    • Removed response to multiple banks config
    • API changes
    Full changelog
     
    NEO and artimas22 like this.
  2. Offline

    GmK

    ^This. SO much! Luckily it uses a different command structure, so there are no conflicts. TAT, we cheer for you! :D
     
    MuttsNuts likes this.
  3. Offline

    Bharel

    Buying people who agree with us... Who's selling?
     
  4. Offline

    GmK

    @TAT

    I did find some bugs, I wonder why they are:

    1. When using areas and setting mutliple areas to true:


    Code:
    2011-05-07 16:31:47 [INFO] [BankAccount] Connected to MySQL
    2011-05-07 16:31:47 [WARNING] [BankAccount] Created table banks
    2011-05-07 16:31:47 [WARNING] [BankAccount] Failed to find and create table banks
    2011-05-07 16:31:47 [INFO] [BankAccount] Disabled multiple banks!
    2011-05-07 16:31:47 [WARNING] [BankAccount] java.sql.SQLException: Can not issue empty query.
    2011-05-07 16:31:47 [INFO] [BankAccount] Shuting down
    2011-05-07 16:31:47 [INFO] BankAccount is disabled!
    -> I cant set it to use multiple bank areas

    2. When setting loans to true:

    Code:
    2011-05-07 16:29:27 [WARNING] [BankAccount] Error #11-2: Unknown column 'remaining' in 'field list'
    2011-05-07 16:29:27 [INFO] [BankAccount] Loan start
    2011-05-07 16:29:27 [INFO] [BankAccount] Loan stop
    I cannot create loans, tells me 'Cant create loan' everytime.

    Any ideas? Havent tested if it works with SQLite, will do that now
     
  5. Offline

    Coolred303

    It would be nice if you can add this to iConomy 5.x. I dont really like the iConomy bank accounts and it doesnt even work for me. I like this plugins features more. Please update if possible. Thanks :D
     
    slowmonkey1227 and DaddyCool64 like this.
  6. Group manager IS permissions so you have a conflict, get rid of permissions.
     
  7. Offline

    NEO

    @TAT

    I just cant seem to win with this

    Code:
    2011-05-08 16:59:40 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'account' in plugin BankAccount v0.5
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
            at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:255)
            at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:677)
            at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:640)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:634)
            at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
            at net.minecraft.server.NetworkManager.a(NetworkManager.java:195)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:74)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:370)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:285)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    Caused by: java.lang.IllegalArgumentException: No enum constant dk.earthgame.TAT.BankAccount.System.CommandList.HELP
            at java.lang.Enum.valueOf(Unknown Source)
            at dk.earthgame.TAT.BankAccount.System.CommandList.valueOf(CommandList.java:1)
            at dk.earthgame.TAT.BankAccount.BankAccountCommandExecutor.onCommand(BankAccountCommandExecutor.java:45)
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
            ... 12 more
    BA 0.5 CB 740
     
  8. Offline

    GmK

    @TAT

    Any short status update you could give us? Thank you!
     
  9. Offline

    Sich

    yep, I want to stay on BankAccount...
    Please upgrade :(

    Sich
     
  10. Offline

    Rick Nix

    Can you put BOSEconomy support please?
     
  11. Offline

    DaddyCool64

  12. Offline

    GmK

    I somehow fear @TAT has deserted us :(
     
  13. Offline

    Sich

    yep :(

    Someone have tried the bank function on iconomy5 ?
    no choice if TAT don't update his plugin :(
     
  14. Just to inform you TAT is working a bit hard ATM so be patient ;)
     
  15. Offline

    TAT

    To follow up on this, I want to inform all what exactly is taking my time (Think you deserves it :) )
    • In the last weeks I have been working on some events for an anime/manga convention here in Denmark (I'm in the Eventteam)
    • Starting game development company up with some friends
    • Working on different websites
    • Studying at a college for game development
    Plus I don't have felt like wanting to work on BankAccount in some time. I felt stuck in the code and all people had problems with first MySQL and then permissions plugins.

    I actually hoped that the team would have taking a bit over on the coding parts, but disappointing they haven't.

    If there is any programmers that wants to give a hand, feel free to PM me :D
    I hope I can update to use Register in the nearest future and get BankAccount up to be one of the best bank account plugins again :D
     
  16. Talking of coders, where did phil go? i have aprt a site to finish and need his plugin :p
     
  17. Offline

    TAT

    I have no clue... As I understood @Codisimus should be the extra programmer for BankAccount, but haven't got anything from him and nearly never hears from him...
     
  18. Offline

    TrainYourBrain

    Hey guys,

    I've "made" the BankAccount plugin, iConomy 5.0 compatible :

    http://www.megaupload.com/?d=1GV5OK2O
    (jar + src in zip file)
    All credits go to TAT, I juste made it compatible iConomy 5.0.
     
    MuttsNuts, TAT, Bharel and 3 others like this.
  19. Offline

    fnkiller

    You sir, are my hero. I love you :3
     
  20. Offline

    DaddyCool64

    same error here

    Check your DB, field 'remaining' is missing.
    take a look at this: https://github.com/TATDK/BankAccount/blob/master/mysql.sql
    Update 0.4 -> 0.5 don't work
    I've made the changes by hand, now it works well except multiple bank areas.
     
  21. Offline

    Nitnelave

    could you add a fee to open an account? and maybe an initial balance? for example, if I want only users with already 200 coins to open an account, it would cost them 200, but then they would have 220 coins on the account at the beginning (20 opening bonus ^^). And could you do a interest applied only to players online? I don't want someone going on minecraft once every month to suddenly realise he's got LOADS of money (maybe it is already this way?)
     
  22. Offline

    Forecaster

    That's why I wanted the upper limit on the amount of money an account could hold. That way the players would have to manage their account.
     
  23. Offline

    Nitnelave

    Well, I would like players spending their entire life on the server to be rewarded, though. You could possibly end up with an incredible amount of money, but not by being absent for 6 months with an initial deposit of 20$...
     
  24. Offline

    DaddyCool64

    Found an error on my Server with the Interest.
    config:
    Code:
    Interest:
        Time: 60
        Amount: 0.1
    but Interest is runnig about every 8 hours

    Bukkit build - 766
    BankAccount - 0.5
    iConomy - 5.01
     
  25. Offline

    Zytil23

    if i change anything in the config file at all i get this error it varies slightly depending on what i change, but its generally the same, this error completely stops bankaccount from functioning, and requires me to delete the : to make it function, in which case whatever i changed becomes null.

    mapping values are not allowed here
    in "<reader>", line 45, column 29:
    OP: false Permissions: true
    ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchValue(ScannerImpl.java:74
    5)
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.ja
    va:307)
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:18
    3)
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(Par
    serImpl.java:564)
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :228)
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
    at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:12
    2)
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)

    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseCons
    tructor.java:124)
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
    at org.bukkit.util.config.Configuration.load(Configuration.java:73)
    at org.bukkit.plugin.java.JavaPlugin.initialize(JavaPlugin.java:158)
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:140)
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.
    java:160)
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager
    .java:108)
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:85)
    at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:217)
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:204)
    at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:144)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:259)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)

    >
     
  26. Offline

    TAT

    Check for tabs (WIKI: Tab_key)
    If there is any tabs, replace them with 4 spaces
    If there isn't any tabs, please post your config @ pastebin.com and post a link to it here
     
  27. Offline

    Zytil23

  28. Offline

    TAT

    Move Permissions down to next line.

    So instead of this:
    Code:
    Permissions:
        OP: false    Permissions true
        GroupManager: false
        SuperAdmins: false
        DepositAll: true
    Use this:
    Code:
    Permissions:
        OP: false
        Permissions: true
        GroupManager: false
        SuperAdmins: false
        DepositAll: true
     
  29. Offline

    mitrandir

    is it possible to turn off log messages of interest and operations?
     
  30. Offline

    spoothie

    I have two things to report:
    Every time a command is written wrong, the server.log gets spammed by following messages:
    Code:
    org.bukkit.command.CommandException: Unhandled exception executing command 'account' in plugin BankAccount v0.5
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:97)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
        at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:701)
        at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:666)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:660)
        at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
        at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:377)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:292)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    Caused by: java.lang.IllegalArgumentException: No enum const class dk.earthgame.TAT.BankAccount.System.CommandList.SPOOTHIE
        at java.lang.Enum.valueOf(Unknown Source)
        at dk.earthgame.TAT.BankAccount.System.CommandList.valueOf(CommandList.java:1)
        at dk.earthgame.TAT.BankAccount.BankAccountCommandExecutor.onCommand(BankAccountCommandExecutor.java:45)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
        ... 12 more


    Could you try to fix this in the next version?
    Apart of that, every user can see others balance by typing /account balance <other's name>. So you can see the balance of all other players and of course many of the users don't want others to do that. If there isn't already a reason for this, maybe you could add that in the next version, too.
    Thanks in advance :) (And sry for my bad english (if it is bad ;) ))
     
  31. Offline

    artimas22

    Ok i love Bank Account first of all. but when i updated all of my plugins today including Group Manager, Iconomy, and of course Bank Account,and many more all of which did not give any errors. Bank account was the last thing i updated i saw when i updated Iconomy i would need to up date Bank Account to 0.5(compatibility with iconomt 1.5 (knowing it is unofficial release and that it may have bugs) so i decided to wait in case there was any other complications. sure enough there is, when i updated Bank Account i got the error below. seing this error i decided to remove bank account and see if i got the error again, needless to say I DID NOT get it again,so i know it is something to do with this particular plugin.​

    These are my specs​

    Craft Bukkit Version 751 (Iupdated this after getting the error hoping it would fix it)​
    Windows 7​
    64-bit​
    MySQL​

    This is the only error i get and removing bankaccount.jar gets rid of it and again groupmanger is up to date. If this is something i can fix myself any help would be much appreciated. however if this is a problem that you must deal with then i sincerely hope this helps.




    Code:
    Xms1024M -Xmx1024M -jar craftbukkit-0.0.1-SNAPSHOT.jar
    
    146 recipes
    
    16 achievements
    
    16:41:05 [INFO] Starting minecraft server version Beta 1.5_02
    
    16:41:05 [INFO] Loading properties
    
    16:41:05 [INFO] Starting Minecraft server on *:25565
    
    16:41:05 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-753-
    
    g34e310c-b803jnks (MC: 1.5_02)
    
    16:41:05 [INFO] Preparing level "cruel"
    
    16:41:05 [INFO] Preparing start region
    
    16:41:06 [INFO] DataSourcePool [DispNameChanger] autoCommit[false] transIsolatio
    
    n[SERIALIZABLE] min[2] max[20]
    
    16:41:06 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.Plugi
    
    nClassLoader]
    
    16:41:07 [INFO] Entities enhanced[0] subclassed[1]
    
    16:41:07 [INFO] [Permissions] (Phoenix) was Initialized.
    
    16:41:07 [INFO] AppleTree activated.
    
    16:41:07 [INFO] [Permissions] version [2.5.1] (Phoenix) loaded
    
    16:41:07 [INFO] [AutoAnnouncer] Permissions support enabled!
    
    16:41:07 [INFO] [AutoAnnouncer] Settings Loaded (2 announces).
    
    16:41:07 [INFO] [AutoAnnouncer] Scheduled every 30 minutes!
    
    16:41:07 [INFO] [AutoAnnouncer] v1.1-04.10 is enabled!
    
    16:41:07 [INFO] [AutoAnnouncer] Developed by: [Sharkiller]
    
    16:41:07 [INFO] BankAccount version 0.5 is enabled!
    
    16:41:07 [INFO] [BankAccount] Config file found!
    
    16:41:07 [INFO] [BankAccount] Properties Loaded
    
    16:41:07 [INFO] [BankAccount] Connected to MySQL
    
    16:41:07 [WARNING] [BankAccount] Created table banks
    
    16:41:07 [WARNING] [BankAccount] Failed to find and create table banks
    
    16:41:07 [INFO] [BankAccount] Disabled multiple banks!
    
    16:41:07 [WARNING] [BankAccount] java.sql.SQLException: Can not issue empty quer
    
    y.
    
    16:41:07 [INFO] [BankAccount] Shuting down
    
    16:41:07 [INFO] BankAccount is disabled!
    
    16:41:07 [INFO] CraftBookCommon 3.0-alpha2 enabled.
    
    16:41:07 [INFO] CraftBookCommon: Permissions plugin detected! Using Permissions
    
    plugin for permissions.
    
    16:41:07 [INFO] CraftBookCircuits 3.0-alpha2 enabled.
    
    16:41:07 [INFO] CraftBookCircuits: Permissions plugin detected! Using Permission
    
    s plugin for permissions.
    
    16:41:07 [INFO] CraftBookCircuits: Permissions plugin detected! Using Permission
    
    s plugin for permissions.
    
    16:41:07 [INFO] CraftBookMechanisms 3.0-alpha2 enabled.
    
    16:41:07 [INFO] CraftBookMechanisms: Permissions plugin detected! Using Permissi
    
    ons plugin for permissions.
    
    16:41:07 [INFO] 1 cauldron recipe(s) loaded
    
    16:41:07 [INFO] [DispNameChanger] Version 1.4.1 Permissions system detected!
    
    16:41:07 [INFO] [DispNameChanger] DispNameChanger v1.4.1 by captainawesome7 has
    
    been enabled!
    
    16:41:07 [INFO] godPowers version 2.0 is enabled!
    
    16:41:07 [SEVERE] Error occurred while enabling GroupManager v1.0(alpha-5) (Is i
    
    t up to date?): tried to access class org.anjocaido.groupmanager.GroupManager$1
    
    from class org.anjocaido.groupmanager.GroupManager
    
    java.lang.IllegalAccessError: tried to access class org.anjocaido.groupmanager.G
    
    roupManager$1 from class org.anjocaido.groupmanager.GroupManager
    
    at org.anjocaido.groupmanager.GroupManager.enableScheduler(GroupManager.
    
    java:106)
    
    at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:83
    
    )
    
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:125)
    
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    
    .java:750)
    
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    
    r.java:253)
    
    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:132)
    
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:110)
    
    at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:218)
    
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:205)
    
    at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:145)
    
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:265)
    
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    
    16:41:07 [INFO] [BankAccount] Established connection with GroupManager!
    
    16:41:07 [INFO] [HeroBounty] HeroBounty version 1.8.0 enabled.
    
    16:41:07 [INFO] [HeroBounty] Permissions 2.7.2 found.
    
    16:41:07 [INFO] [HeroChat] HeroChat version 4.10.0 enabled.
    
    16:41:07 [INFO] [HeroChat] Permissions 2.5.1 found.
    
    16:41:07 [INFO] [HeroicDeath] 1.7.3.148 enabled.
    
    16:41:10 [INFO] [iConomy] Logging is currently disabled.
    
    16:41:10 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    
    16:41:10 [INFO] [iConomy] Developed by: [Nijikokun]
    
    16:41:10 [INFO] [BankAccount] Running interest every 90 minutes by 0.1%
    
    16:41:10 [INFO] [BankAccount] Established connection with iConomy!
    
    16:41:10 [INFO] [HeroBounty] Payment method found (iConomy version: 5)
    
    16:41:10 [INFO] [iConomy] hooked into Permissions.
    
    16:41:10 [INFO] [iConomyDeath] version 0.6.1 is enabled!
    
    16:41:10 [INFO] [iConomyDeath] hooked into iConomy.
    
    16:41:10 [INFO] [iWatch] iWatch version 0.5 is enabled!
    
    16:41:10 [INFO] [iWatch] Settings Loaded!
    
    16:41:10 [INFO] [iZone : 6.2] Enabled!
    
    16:41:10 [INFO] [iZone : 6.2] Using permissions of Permissions.
    
    16:41:10 [INFO] [iZone : 6.2] Loaded 0 zones out of 0
    
    16:41:10 [INFO] [Jail] Loaded 0 jail zones.
    
    16:41:10 [INFO] [Jail] Loaded 0 prisoners.
    
    16:41:10 [INFO] [Jail] Loaded 0 prisoners.
    
    16:41:10 [INFO] Lampstone version 0.5 is enabled.
    
    16:41:10 [INFO] [LocalShops] Loaded with 0 shop(s)
    
    16:41:10 [INFO] [LocalShops] Version 3.1.0 is enabled: 68d744fd-714a-411f-bc43-d
    
    2fa5672ed20
    
    16:41:10 [INFO] [LocalShops] Starting NotificationThread with Timer of 300 secon
    
    ds
    
    16:41:10 [INFO] [LocalShops][Economy] BOSEconomy not found.
    
    16:41:10 [INFO] [LocalShops][Economy] Essentials Economy not found.
    
    16:41:10 [INFO] [LocalShops][Economy] iConomy 4 not found.
    
    16:41:10 [INFO] [LocalShops][Economy] iConomy 5 hooked.
    
    16:41:10 [INFO] [LocalShops][Economy] iConomy 5 found: Loaded
    
    16:41:10 [INFO] [LocalShops][Permission] Permissions (Phoenix) hooked.
    
    16:41:10 [INFO] [LocalShops][Permission] Permissions (Phoenix) found: Loaded
    
    16:41:10 [INFO] [LocalShops][Permission] Local Fallback Permissions found: Loade
    
    d
    
    16:41:10 [INFO] Lockette version 1.3.7 is being enabled! Yay! (Core version 1.
    
    0)
    
    16:41:10 [INFO] Lockette: Detected craftbukkit build [803] ok.
    
    16:41:10 [INFO] Lockette: Linked to GroupManager plugin version 1.0(alpha-5)
    
    16:41:10 [INFO] Lockette: Ready to protect your containers.
    
    16:41:10 [INFO] LoginMessage 0.6_5 enabled
    
    16:41:10 [INFO] [mcMMO] Permissions enabled.
    
    16:41:10 [INFO] mcMMO version 0.9.29 is enabled!
    
    16:41:10 [INFO] MobLimiter version 1.1 is enabled!
    
    16:41:10 [INFO] NoFire version 1.1 is enabled!
    
    16:41:10 [INFO] NSCommand 0.2 enabled.
    
    16:41:10 [INFO] Load OreDetector v0.1 maintained by _skyler_
    
    16:41:10 [INFO] PayDay version 0.1.5 is enabled!
    
    16:41:10 [INFO] PhatLoots 0.7.1 is enabled!
    
    16:41:10 [INFO] PhatLoots Successfully linked with Permissions!
    
    16:41:10 [INFO] PhatLoots Successfully linked with iConomy!
    
    16:41:10 [INFO] [Runecraft] Rune whitelist with 51 runes loaded.
    
    16:41:10 [INFO] [Runecraft] Loaded:
    
    16:41:10 [INFO] [Runecraft] - 0 waypoints, 0 teleporters
    
    16:41:10 [INFO] [Runecraft] - 0 position runes
    
    16:41:10 [INFO] [Runecraft] - 0 rune pads
    
    16:41:10 [INFO] [Runecraft] - 2 player data sets
    
    16:41:10 [INFO] [Runecraft] - 2 initiated players
    
    16:41:10 [INFO] [Runecraft] World 'cruel': id 0.
    
    16:41:10 [INFO] [Runecraft] Runecraft 2.5.2 initialized.
    
    16:41:10 [INFO] Runecraft plugin version 0.3 is enabled!
    
    16:41:10 [INFO] Snowballz v1.5.1 has been enabled with the following options:
    
    16:41:10 [INFO] Snow damage: 1
    
    16:41:10 [INFO] Snow range: 10
    
    16:41:10 [INFO] Snow douses fire: true
    
    16:41:10 [INFO] Snow makes ice: true
    
    16:41:10 [INFO] [SpawnControl] version [0.8.1] loaded
    
    16:41:10 [INFO] [Towny] Database: [Load] flatfile [Save] flatfile
    
    16:41:10 [INFO] [Towny] Using: iConomy
    
    16:41:10 [INFO] [Towny] Version: 0.67 - Mod Enabled
    
    16:41:10 [INFO] [VoidMage] Using permissions by TheYeti.
    
    16:41:10 [INFO] [VoidMage] spell Plummet loaded.
    
    16:41:10 [INFO] [VoidMage] spell Slay loaded.
    
    16:41:10 [INFO] [VoidMage] spell AntiCake loaded.
    
    16:41:10 [INFO] [VoidMage] spell AntiFire loaded.
    
    16:41:10 [INFO] [VoidMage] spell DrowZee loaded.
    
    16:41:10 [INFO] [VoidMage] spell ArrowVolley loaded.
    
    16:41:10 [INFO] [VoidMage] spell Arrowstorm loaded.
    
    16:41:10 [INFO] [VoidMage] spell Decmiate loaded.
    
    16:41:10 [INFO] [VoidMage] version 3.0.3 is enabled!
    
    16:41:10 [INFO] [VoxelPort] No Data to Load.
    
    16:41:10 [INFO] VoxelPort version 1.7 is enabled!
    
    16:41:10 [INFO] [VoxelSniper] Config loaded
    
    16:41:10 [INFO] VoxelSniper version 4.616 is enabled! Snipe away.
    
    16:41:10 [INFO] War> War v1.4.2 (Slim) is on.
    
    16:41:10 [INFO] WorldEdit 4.4 enabled.
    
    16:41:10 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin
    
    for permissions.
    
    16:41:10 [INFO] Done (0.514s)! For help, type "help" or "?"
    
    16:41:10 [INFO] War> Warzones ready.


    THIS IS WHAT I GET WITHOUT HAVING BANK ACCOUNT CAN ANYONE HELP ME OUT?!?!?!?!?​



    Code:
    [/INDENT]
    [INDENT=1][/INDENT]
    [INDENT=1]Xms1024M -Xmx1024M -jar craftbukkit-0.0.1-SNAPSHOT.jar[/INDENT]
    [INDENT=1]146 recipes[/INDENT]
    [INDENT=1]16 achievements[/INDENT]
    [INDENT=1]16:43:49 [INFO] Starting minecraft server version Beta 1.5_02[/INDENT]
    [INDENT=1]16:43:49 [INFO] Loading properties[/INDENT]
    [INDENT=1]16:43:49 [INFO] Starting Minecraft server on *:25565[/INDENT]
    [INDENT=1]16:43:49 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-753-[/INDENT]
    [INDENT=1]g34e310c-b803jnks (MC: 1.5_02)[/INDENT]
    [INDENT=1]16:43:49 [INFO] Preparing level "cruel"[/INDENT]
    [INDENT=1]16:43:49 [INFO] Preparing start region[/INDENT]
    [INDENT=1]16:43:50 [INFO] DataSourcePool [DispNameChanger] autoCommit[false] transIsolatio[/INDENT]
    [INDENT=1]n[SERIALIZABLE] min[2] max[20][/INDENT]
    [INDENT=1]16:43:50 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.Plugi[/INDENT]
    [INDENT=1]nClassLoader][/INDENT]
    [INDENT=1]16:43:51 [INFO] Entities enhanced[0] subclassed[1][/INDENT]
    [INDENT=1]16:43:51 [INFO] AppleTree activated.[/INDENT]
    [INDENT=1]16:43:51 [INFO] GroupManager - INFO - Scheduled Data Saving is set for every 10[/INDENT]
    [INDENT=1]minutes![/INDENT]
    [INDENT=1]16:43:51 [INFO] GroupManager version 1.0(alpha-5) is enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] Fake Permissions version 2.5.1 is enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] [AutoAnnouncer] Permissions support enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] [AutoAnnouncer] Settings Loaded (2 announces).[/INDENT]
    [INDENT=1]16:43:51 [INFO] [AutoAnnouncer] Scheduled every 30 minutes![/INDENT]
    [INDENT=1]16:43:51 [INFO] [AutoAnnouncer] v1.1-04.10 is enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] [AutoAnnouncer] Developed by: [Sharkiller][/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookCommon 3.0-alpha2 enabled.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookCommon: Permissions plugin detected! Using Permissions[/INDENT]
    [INDENT=1]plugin for permissions.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookCircuits 3.0-alpha2 enabled.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookCircuits: Permissions plugin detected! Using Permission[/INDENT]
    [INDENT=1]s plugin for permissions.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookCircuits: Permissions plugin detected! Using Permission[/INDENT]
    [INDENT=1]s plugin for permissions.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookMechanisms 3.0-alpha2 enabled.[/INDENT]
    [INDENT=1]16:43:51 [INFO] CraftBookMechanisms: Permissions plugin detected! Using Permissi[/INDENT]
    [INDENT=1]ons plugin for permissions.[/INDENT]
    [INDENT=1]16:43:51 [INFO] 1 cauldron recipe(s) loaded[/INDENT]
    [INDENT=1]16:43:51 [INFO] [DispNameChanger] Version 1.4.1 Permissions system detected![/INDENT]
    [INDENT=1]16:43:51 [INFO] [DispNameChanger] DispNameChanger v1.4.1 by captainawesome7 has[/INDENT]
    [INDENT=1]been enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] godPowers version 2.0 is enabled![/INDENT]
    [INDENT=1]16:43:51 [INFO] [HeroBounty] HeroBounty version 1.8.0 enabled.[/INDENT]
    [INDENT=1]16:43:51 [INFO] [HeroBounty] Permissions 2.0 found.[/INDENT]
    [INDENT=1]16:43:51 [INFO] [HeroChat] HeroChat version 4.10.0 enabled.[/INDENT]
    [INDENT=1]16:43:51 [INFO] [HeroChat] Permissions 2.5.1 found.[/INDENT]
    [INDENT=1]16:43:51 [INFO] [HeroicDeath] 1.7.3.148 enabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomy] Logging is currently disabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomy] v5.01 (Eruanna) loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomy] Developed by: [Nijikokun][/INDENT]
    [INDENT=1]16:43:52 [INFO] [HeroBounty] Payment method found (iConomy version: 5)[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomy] hooked into Permissions.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomyDeath] version 0.6.1 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] [iConomyDeath] hooked into iConomy.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iWatch] iWatch version 0.5 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] [iWatch] Settings Loaded![/INDENT]
    [INDENT=1]16:43:52 [INFO] [iZone : 6.2] Enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] [iZone : 6.2] Using permissions of Permissions.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [iZone : 6.2] Loaded 0 zones out of 0[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Jail] Loaded 0 jail zones.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Jail] Loaded 0 prisoners.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Jail] Loaded 0 prisoners.[/INDENT]
    [INDENT=1]16:43:52 [INFO] Lampstone version 0.5 is enabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops] Loaded with 0 shop(s)[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops] Version 3.1.0 is enabled: 68d744fd-714a-411f-bc43-d[/INDENT]
    [INDENT=1]2fa5672ed20[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops] Starting NotificationThread with Timer of 300 secon[/INDENT]
    [INDENT=1]ds[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Economy] BOSEconomy not found.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Economy] Essentials Economy not found.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Economy] iConomy 4 not found.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Economy] iConomy 5 hooked.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Economy] iConomy 5 found: Loaded[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Permission] Permissions (Phoenix) hooked.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Permission] Permissions (Phoenix) found: Loaded[/INDENT]
    [INDENT=1]16:43:52 [INFO] [LocalShops][Permission] Local Fallback Permissions found: Loade[/INDENT]
    [INDENT=1]d[/INDENT]
    [INDENT=1]16:43:52 [INFO] Lockette version 1.3.7 is being enabled! Yay! (Core version 1.[/INDENT]
    [INDENT=1]0)[/INDENT]
    [INDENT=1]16:43:52 [INFO] Lockette: Detected craftbukkit build [803] ok.[/INDENT]
    [INDENT=1]16:43:52 [INFO] Lockette: Linked to GroupManager plugin version 1.0(alpha-5)[/INDENT]
    [INDENT=1]16:43:52 [INFO] Lockette: Ready to protect your containers.[/INDENT]
    [INDENT=1]16:43:52 [INFO] LoginMessage 0.6_5 enabled[/INDENT]
    [INDENT=1]16:43:52 [INFO] [mcMMO] Permissions enabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] mcMMO version 0.9.29 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] MobLimiter version 1.1 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] NoFire version 1.1 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] NSCommand 0.2 enabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] Load OreDetector v0.1 maintained by _skyler_[/INDENT]
    [INDENT=1]16:43:52 [INFO] PayDay version 0.1.5 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] PhatLoots 0.7.1 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] PhatLoots Successfully linked with Permissions![/INDENT]
    [INDENT=1]16:43:52 [INFO] PhatLoots Successfully linked with iConomy![/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] Rune whitelist with 51 runes loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] Loaded:[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] - 0 waypoints, 0 teleporters[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] - 0 position runes[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] - 0 rune pads[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] - 2 player data sets[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] - 2 initiated players[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] World 'cruel': id 0.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Runecraft] Runecraft 2.5.2 initialized.[/INDENT]
    [INDENT=1]16:43:52 [INFO] Runecraft plugin version 0.3 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] Snowballz v1.5.1 has been enabled with the following options:[/INDENT]
    [INDENT=1]16:43:52 [INFO] Snow damage: 1[/INDENT]
    [INDENT=1]16:43:52 [INFO] Snow range: 10[/INDENT]
    [INDENT=1]16:43:52 [INFO] Snow douses fire: true[/INDENT]
    [INDENT=1]16:43:52 [INFO] Snow makes ice: true[/INDENT]
    [INDENT=1]16:43:52 [INFO] [SpawnControl] version [0.8.1] loaded[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Towny] Database: [Load] flatfile [Save] flatfile[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Towny] Using: iConomy[/INDENT]
    [INDENT=1]16:43:52 [INFO] [Towny] Version: 0.67 - Mod Enabled[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] Using permissions by TheYeti.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell Plummet loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell Slay loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell AntiCake loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell AntiFire loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell DrowZee loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell ArrowVolley loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell Arrowstorm loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] spell Decmiate loaded.[/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoidMage] version 3.0.3 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoxelPort] No Data to Load.[/INDENT]
    [INDENT=1]16:43:52 [INFO] VoxelPort version 1.7 is enabled![/INDENT]
    [INDENT=1]16:43:52 [INFO] [VoxelSniper] Config loaded[/INDENT]
    [INDENT=1]16:43:52 [INFO] VoxelSniper version 4.616 is enabled! Snipe away.[/INDENT]
    [INDENT=1]16:43:52 [INFO] War> War v1.4.2 (Slim) is on.[/INDENT]
    [INDENT=1]16:43:52 [INFO] WorldEdit 4.4 enabled.[/INDENT]
    [INDENT=1]16:43:52 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin[/INDENT]
    [INDENT=1]for permissions.[/INDENT]
    [INDENT=1]16:43:52 [INFO] Done (0.314s)! For help, type "help" or "?"[/INDENT]
    [INDENT=1]16:43:52 [INFO] War> Warzones ready.[/INDENT]
    [INDENT=1]>
    [/CODE][/INDENT]
     

Share This Page