[INACTIVE][ECON] DynamicMarket v.0.4.8.1 - Versatile Shop Plugin [440-480+?]

Discussion in 'Inactive/Unsupported Plugins' started by HaloInverse, Feb 2, 2011.

  1. Offline

    HaloInverse

    DynamicMarket - Dynamic Global Shop Plugin

    Version: 0.4.8
    Built against: Bukkit 0.0.1 build #412
    Works with: CraftBukkit 0.0.1 builds #440-480 or thereabouts.

    Requires:
    • Permissions 2.5
      • Very recommended, but now optional! See "DynamicMarket.settings" below.
    • iConomy 4.1
    • Either of:
      • SQLite (easiest to set up, reccomended)
      • MySQL (more troublesome, more powerful)
    Buy items, sell items, admins set prices, et cetera. However, there's a lot going on under the hood...

    READ THIS BEFORE PROCEEDING.
    Seriously. (open)

    This plugin has a great deal of flexibility, but the price of more flexibility is more command options to control that flexibility. Computers just aren't very psychic.

    While in-game help exists for commands, the output from /shop help (<topic>) is intended to be a quick reference, not exhaustive documentation. Full instructions simply won't fit on the MineCraft client's tiny text display.

    You should read and understand the following sections before installing this plugin and setting up your shop. If not, you should at least read and understand the following sections while you are setting up your shop items.


    The big feature: Dynamic pricing. Items can be set to increase in price as they are purchased from the shop, and decrease in price as they are sold back, simulating open market conditions. The initial prices of items are just considered a starting point - user transactions will eventually adjust an item's price to a near-ideal level, based on actual value vs. rarity.

    However, as of 0.4.5, the configuration fields are now flexible enough to allow a range of behaviours, from fixed pricing with no stock limits, to fully-dynamic pricing with finite stock levels.

    This is by no means "complete" in the sense of "finished adding features", but it is complete enough to be functional and usable.

    Current Features (open)

    New & Current Features:
    • Buying and selling of items:
      • Item prices can be set to dynamically adjust according to supply and demand. This is highly adjustable, including the rate of price increase/decrease per transaction, optional hard overstock/understock limits, price ceilings/floors, etc. Leaving all the extra features turned off makes an item's price fixed and always-in-stock, like a basic "flat rate" shop.
      • Subtypes of items are fully supported.
      • List of items in the shop is broken into pages, accessible by number.
        • Partial-name searching! "/shop list wood" shows everything with "wood" in the name.
      • Item names for buy/sell/info also use partial substring matches.
      • A dynamically-priced item might cost more for 10 items than the cost of 1 item multiplied by 10, due to stock depletion. So, the "/shop <id>" command now takes an optional ":<count>" parameter, so you can get a quote for the actual buy/sell price of larger numbers of items.
    • Administration:
      • Shop items are edited via a "tag" system, so you don't have to re-enter every field for each small change. Plus there's a few utility tags which do other things to an item's record...
      • Item names are now editable, and will persist (independent of items.db) until the item's record is deleted.
        • This also makes items.db a convenience instead of a necessity, since items can be added by ID and then immediately renamed.
      • A "Default" item exists in the shop, which cannot be bought or sold, but serves as the base data for any new items you add to the shop. Any tags not supplied when you add an item will be copied from whatever you put into "Default".
      • Basic sanity-checking on input data has been added. Also, adjusting an item's bundle-size will rescale its price automatically.
      • Items can be set to be purchasable but not sellable, or vice versa. (Set either price to -1 to disable that transaction type for that item.)
        • Tags like "canbuy:n" and "nosell" can now be used.
      • An extended in-game help system. "/shop help" lists available commands and help topics. "/shop help <topic>" gives help on a shop command or other shop-related topic listed in the main help.
      • The list of commands displayed is filtered by the user's current permission level.
      • Shortcuts for all commands (except for database reset).
      • All commands except for "/shop buy" and "/shop sell" can be accessed through the Bukkit console. No need to log in to add or update items!
      • Access to the entire shop is now restrictable by permission.
      • Highly informative error messages, to help reveal why your database exploded. (Which really shouldn't happen, but you never know...)
      • The shop DB can now be exported to a .csv file, edited in your favorite spreadsheet, and re-imported back into the database, making large-scale changes easier.
      • NEW: The revenue/cost of transactions can now be transferred to another account. With the basic plugin, this can be an admin's iConomy account, or a dummy "GovernmentBank" account. (Don't use that name, or some bright spark will register that username and exploit you.) With a wrapper plugin, this can be set to link a shop's funds directly to an owning player's iConomy balance.
      • NEW: Transaction logging to a comma-delimited file, ready to import into a spreadsheet for nefarious financial analysis!

    Market Mechanics (open)

    Quick Market Mechanics Description:
    • Instead of a "buy price" and a "sell price", items now have a "base price" and a "sales tax". The "buy price" is based on the base price (adjusted by stock, if set to do so), and the "sell price" is based on (<buy price> - <sales tax%>). So if the sales tax is set to 25, then an item's selling price will be 75% of its purchase price. (The sales tax is entered as a number from 0 to 100, representing 0% to 100% tax.)
      • Using the old "/shop add <id> <buyprice> <sellprice>" format still works - the plugin just calculates the base price and sales tax, so that the buying and selling prices come out right.
    • Shop items have a "stock level", which is not necessarily a literal count of items in stock. By default, the stock level is considered an offset from baseline, rather than an absolute count.
      • Items with stock near zero are considered to be in "average" supply, and will be priced at their base price.
      • Items with a positive stock are considered "in surplus", and will be priced below their base price.
      • Items with a negative stock are considered "understocked", and will be priced above their base price.
      • This interpretation of stock levels can be made to behave like literal counted stock, by setting an item's StockFloor to zero, which prohibits negative stock.
    • Items have a "volatility", which indicates how quickly the price changes based on changes in stock level. It represents the percent increase in an item's price per item purchased, multiplied by 10000. V=1 (the lowest level) means that 100 items would have to be purchased to raise the price by 1%. V=10000 (the highest level) means that 1 item purchased would raise the price by 100% (doubling the price). (More examples in tags.txt)
      • There is also "inverse volatility", which represents the number of items needed to be bought in order to double the buying price (or halve it, if selling). This is more convenient for some people's mindsets, and is converted into volatility when entered.
    • The "sell price" is actually calculated from the buy price at the current stock level + 1, rather than the current stock level. This is to prevent gaining endless money by buying an item (driving the price up) then immediately selling it back (dropping the price) - if <sales tax> = 0, then buying-then-selling like this produces zero net gain/loss (as it should).
    • The tag presets "fixed", "float", "finite", and "flat" allow you to quickly set up common options. If used with the "Default" item before adding items to your shop, this will allow you to set the overall behaviour of the shop easily. See Tag Reference for further details.

    Commands (open)

    Commands:

    <Angle Brackets> denote parameters.
    (Round Brackets) denote optional sections.
    The brackets themselves are not part of the command; they are just used to describe syntax. Brackets should not be typed.
    If executing shop commands through the Bukkit console, leave off the initial slash.

    /shop - Shows the main help page. Lists commands and shortcuts.
    /shop help - Ditto.
    /shop help <topic> - Shows help on the given command or subject.
    /shop help tag <tagName> - Shows help on the given item tag.
    /shop <id>( :<count>) - Shows current buy/sell information on the given item.
    <id> can be an item name or a type number with an optional subtype:
    <id> = <itemName> | <itemID> | <itemID>,<subtypeID> | Default
    If <count> is used, shows the total price for the given number of items/bundles.
    /shop list (<partname>) (<pageNum>) - Lists a page of items in the shop. Default page = 1.
    If <partname> is used, lists only items with <partname> as part of their name.
    /shop buy <id>( :<quantity>) - Purchases an item. Default quantity is 1 bundle.
    /shop sell <id>( :<quantity>) - Sells an item. Default quantity is 1 bundle.
    /shop add <id>( :<bundleSize>) (<buyPrice> (<sellPrice>)) <tagList> - Adds an item to the shop list.
    <buyPrice> and <sellPrice> are accepted for convenience, and are internally converted to BasePrice and SalesTax.
    Unused tags will have their data copied from the Default item.
    Transactions will be in multiples of <bundleSize>. Default quantity is 1 item per bundle (unless overriden with the Default record)
    /shop info <id> - Shows much more detailed information about an item in the shop, such as stock level, volatility, etc.
    /shop update <id>( :<bundleSize>) (<buyPrice> (<sellPrice>)) <tagList> - Edits an item's shop data record.
    Data is first copied from the old record, then tags are applied in order of entry.
    NEW! <id> can be "all", applying changes to all items in the shop list.
    /shop remove <id>- Removes an item from the shop list.
    /shop reload - Reboots the plugin, reloading the configuration file and items.db.
    /shop reset - Deletes and recreates the shop database from scratch. Asks for an extra confirmation before doing so.
    /shop exportdb - Exports the shop database to a .csv file. The name and location are configured in SimpleMarket.settings. (Default: Plugins/DynamicMarket/shopDB.csv)
    /shop importdb - Imports a .csv file into the shop database. Same file location as used by the exportdb command. Note that the previous contents of the database are NOT cleared out before importing, so you may want to do a "/shop reset" before importing. The file's format MUST match the format of the exported file (except for quote marks, which are stripped out on import).

    Tag Reference
    Tag Usage Examples
    Permissions (open)

    Permissions:

    'dynamicmarket.access' : Grants basic access to the root /shop command.
    'dynamicmarket.buy' : Grants purchase rights.
    'dynamicmarket.sell' : Grants selling rights.
    'dynamicmarket.items.add' : Grants the ability to add new items to the shop.
    'dynamicmarket.items.update' : Grants the ability to edit items in the shop.
    'dynamicmarket.items.remove' : Grants the ability to remove items from the shop.
    'dynamicmarket.admin' : Grants the ability to delete-and-rebuild the shop database, and to reboot the plugin.

    Installation/Setup (open)

    Installation/Setup:
    • If you haven't already done so, install Permissions and iConomy, and ensure they work.
    • Copy DynamicMarket.jar into your Plugins/ folder.
    • NEW: Copy items.db into Plugins/DynamicMarket/ (or whichever directory you specify in DynamicMarket.settings) (DynamicMarket will work with other plugins' items.db files, but not all plugins will handle the extra subtype data in the items.db linked below.)
    • NEW: Copy either the SQLite connector or the MySQL connector into your main MineServer/Bukkit folder.
      • Or, if you have a MySQL server running, edit DynamicMarket.settings to specify the MySQL server, login, and password.
    • Edit plugins/Permissions/config.yml, and give everybody the appropriate permissions.
      • Most users would get 'dynamicmarket.access', 'dynamicmarket.buy', and 'dynamicmarket.sell', unless you want to restrict such commands to registered/VIP users.
      • Mods would probably get 'dynamicmarket.items.*'
      • Admins should get 'dynamicmarket.admin', if they don't already have '*'.
    • (Re)Start your MineCraft server. Errors may be thrown to the console, but the file Plugins/DynamicMarket/DynamicMarket.settings should be created.
    • Edit DynamicMarket.settings. Particularly, the setting "database-type".
      • "database-type=sqlite" : Use the SQLite connector. This is the simpler option. No further database access configuration should be needed.
      • "database-type=mysql" : Use the MySQL connector. You will need to set the options "mysql-user", "mysql-pass", and "mysql-db", as well as having a working MySQL server installation set up already.
    • NEW: Log in to MineCraft as someone with 'simpleMarket.admin' permission, or use the Bukkit console. Use "/shop reload" to load the edited config file.
    • Use /shop add to fill the market with tasty blocks at scandalous prices.
      • You WILL want to use "/shop update default" to set up some sensible default values for the items you will be adding, so you don't have to do so much typing for every item. (Or at least inspect the Default entry, to be sure you agree with it.)
      • If you want to make all of the items in the shop use dynamic pricing, set up the parameters in the Default item FIRST, so you don't have to go back and modify 100+ items to support variable pricing.

    DynamicMarket.settings Reference

    Downloads:
    • DynamicMarket 0.4.8.1 (.jar) (.7z) (iConomy 4.1, Permissions 2.5)
    • DynamicMarket 0.4.8 (.jar) (.7z) (iConomy 3.0, Permissions 2.1)
    • DynamicMarket 0.4.6.1 (.jar) (.7z) (iConomy 2.1 / Cookies+iConomy Wrapper)
    • DynamicMarket Source on GitHub
    • items.db <-- Contains subtypes. Put this in /Plugins/DynamicMarket/.
    • SQLite Connector (reccomended) Put this in your MineCraft server/Bukkit root.
    • MySQL Installation Guide (not so easy, probably not recommended for SQL server beginners)
    • Sample shopDB.csv Many (but not all) items, set up for floating-stock+floating-prices. Edit it if you like, then put this in your Plugins/DynamicMarket folder and use /shop importdb to load the items into your shop.
    DynamicMarket Wrapper Plugins:
    • DMWrapper: Restricts shop access to specific regions. Outdated.
    Want to integrate DynamicMarket's shop functions into your own plugin? Read this!
    To Do List(s) (open)


    To Do for v.0.5:
    • Logging of transactions. Done.
      • Global messages to alert to price changes.
    • Item classes: Use Permissions to control access to certain types of items, i.e. make safe items (gravel, stone, iron) available to anyone, but limit traffic in dangerous items (TNT, lava buckets, monster spawners) to VIPs. (For example.)
    • Customizable interface/highlight colours. Done.
    • Clean up the d*** out-of-date comments in the code. (Working on it.)
    To Do before 1.0:
    • Optional auto-transactions triggered by price disparities in raw/processed materials.
    • Possible migration of the new help system to a separate plugin, unless the expanded features needed become available in MCDocs or Bukkit.
    • Migrate config file handler to Yaml.
    • Random fluctuations of stock levels (would make the market more lively on a low-population server)
    • Stock levels drift back to rolling averages (smoothes out short-term price spikes, allows for long-term price drifting)

    Recent Changes:

    0.4.8.1:
    • Migrated to Permissions 2.5, iConomy 4.1.
    0.4.8:
    • shopLabel moved from a table name suffix to a table field.
    • Using "all" as the item name now applies the given tags to all items with the current shopLabel.
    • Altering an item's bundleSize now changes its stock level, as well as its basePrice.
      • New stock level is rounded down, to stave off future item duplication issues.
    • Sanity-check behaviour changed to make database queries more efficient and fend off future exploits:
      • stockHighest/stockLowest set to stock if lower/higher than stock.
      • stockCeil/stockFloor is set to stockFloor if lower/higher than stock.
      • priceCeil is raised to priceFloor if priceCeil<priceFloor.
        • Previous behaviours: Swap if order wrong, range-crop stock if outside highest/lowest/floor/ceil.
    • Fixed bug: Adding items without specifying count did not import count from default record.
    0.4.7:
    • Upgraded to iConomy 3.0.
    0.4.6.1:
    • Rolled back iConomy calls to 2.x style, to be compatible with Cookies' iConomy wrapper.
    0.4.6:
    • Support for transaction funds to be backed by an iConomy account.
      • Account link parameters added to wrapper-call messages.
    • Wrapper calls streamlined.
    • Added basic transaction logging.
    0.4.5:
    • Volatility can now go as low as 0.
      • In this way, stock can still be counted without affecting price.
    • CSV import/export now uses +INF / -INF as shorthand for min/max values in applicable fields.
    • Message colours now customizable in DynamicMarket.settings.
    • Expanded help on tags/presets.
    • Changed "fixed" tag, splitting its function with "flat".
    • Added tag presets "flat" and "finite".
    • Updated tag "renorm" to accept an optional new stock level other than 0.
    Full Changelog

    Credits:
    • Nijikokun: SimpleShop v.1.1, on which this was based. (And for Permissions and iConomy, on which this relies.)
    • AtomicAcidBath: Assistance with tracking down a hard-to-see MySQL syntax error.
     
    SoapFlakes and Mahngiel like this.
  2. Offline

    HaloInverse

    See that note up at the top of the OP? The one that says, "Read this before proceeding"? And the section right below that, which prompts you to read everything else in the OP before proceeding?

    Anyways.

    There's been stock support since 0.4. It's now even mentioned in the OP, right there in the open, not even behind a spoiler tag. 0.4.5 introduced additional preset tags to make setting up a finite-stock shop (or any of several other models of shop) even easier.

    DynamicMarket is capable of operating in a number of different modes. ONE of them is as a finite-stock shop, with optional upper inventory caps, with or without dynamic price adjustment.

    Forgive my vitriol, but would you kindly RTFM before complaining about "missing" features?

    </rant>
     
    Azraeil and Fluff like this.
  3. Offline

    shadrxninga

    Code:
    [WARNING] Failed to handle packet: java.lang.NullPointerException
    java.lang.NullPointerException
    at com.gmail.haloinverse.DynamicMarket.iListen.hasPermission(iListen.java:45)
    at com.gmail.haloinverse.DynamicMarket.iListen.onCommand(iListen.java:788)
    at com.gmail.haloinverse.DynamicMarket.DynamicMarket.onCommand(DynamicMarket.java:94)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:17)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:77)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:171)
    at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:610)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:589)
    at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    at net.minecraft.server.NetworkManager.a(SourceFile:232)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:74)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:104)
    When ever you type /shop you get disconnected with an Internal Server Error
     
  4. Offline

    HaloInverse

    It's hard to be certain without knowing which builds of CraftBukkit/DynamicMarket you're running, but it looks like something's wrong with your Permissions installation, as that's the line (in build 0.4.5) where the call to Permissions gets made. Check your console messages to see if there was an error loading Permissions anywhere.
     
  5. Offline

    Azraeil

    Thanks! While I was RTFM'ing I scanned though it looking for any mention of stock but I suppose I missed the part about finite stock.

    You are officially my hero. My server is saved. :)
     
  6. Offline

    Nukeofwf

    oh heya just noticed that the 'latest build' link seems to be invalid, care to update it into a web address?
     
  7. Offline

    HaloInverse

    Derp. Fixed.
     
  8. Offline

    Stephen92

    please update this for the newest craftbukkit.
     
  9. Offline

    HaloInverse

    I'm gettin' to it, sheesh. I just got home from work to MC1.3 and massive updates, give me a minute. :)

    EDIT: Done. 0.4.6 is up, and supports the Minecraft 1.3-supporting-Craftbukkit-version update. Or so I believe. It's quarter to four in the morning, I was planning on putting more stuff in 0.4.6, and I just happened to leave off coding this afternoon in between huge guts-rearranging features, so I was good to compile... after updating other plugins as best as I could.

    I haven't tried this build with iConomy 2.2b, but I don't think that version works with the latest Craftbukkit any more, so you should probably update to iConomy 3.0 too. Oh, and Permissions 2.1, while you're at it.

    I haven't exhaustively tested this build, just enough to verify it's working before I wake up eight hours from now with little square bruises all over my face. :)

    EDIT AGAIN: Ah crap, transactions aren't being applied against the iConomy accounts. If someone wants to look at the DynamicMarket/iConomy3 source and tell me what the correct command to add/remove funds is, this'll be fixed much quicker. Otherwise, I'll find it myself, sometime in the next 12-24 hours.
     
  10. Offline

    Stephen92

    thank you didnt mean to rush u was just lettin u know just incase u did't I love ur plugin.
     
  11. Offline

    HaloInverse

    It's cool, it's cool...

    Found the problem. If the currently released version of iConomy 3.0 is built from the posted GitHub code, then it has an incorrect implementation of the flatfile account database. Specifically, it uses getDouble() to "set" the balance, instead of setDouble(). Working on a fix...

    It looks like it should work OK if iConomy 3.0 is set to SQLite or MySQL mode. Testing...

    EDIT: Nope, a little more severe than that. Fix posted below.
     
  12. Offline

    KingPin

    OS : linux
    MC : Beta 1.3
    CB : git-Bukkit-0.0.0-450-gd3c1ba4


     
  13. Offline

    HaloInverse

    ...which CB build would that be exactly? 450 doesn't seem to be up yet. During this post, CB#432 is building.
     
  14. Offline

    Stephen92

    im using 431 and this is not working I updated iconomy as well, i'm sticking with permissions 2.0 cause 2.1 didn't let me do some things after I updated everything.
     
  15. Offline

    KingPin

    thats tip from git itself local compiled with no changes to code.
     
  16. Offline

    HaloInverse

    Well, if you want to compile your own CraftBukkit versions directly from Git before they're released through Jenkins, more power to you, especially if your builds are successful and truly bug-free. However, I believe most plugin developers are only supporting the released builds (myself included), and they're only required to support the recommended builds (if that's even been made a formal requirement yet).

    That being said, 0.4.6 has been updated to CB#432. Link updated in the OP.

    ALSO: I've tracked down a type-conversion bug in iConomy3 which was causing iConomy to crash on balance check/update. Until someone formally "picks up Nijikokun's coat", I've prepared a small bugfix: iConomy 3.0 r1. It should be compatible with iConomy3-compatible plugins (which have updated to use iConomy.Bank calls instead of iConomy.Database calls).
     
    ShadowDrakken likes this.
  17. Offline

    ShadowDrakken

    Thanks for the update HaloInverse!
     
  18. Offline

    Plyz

    Iconomy update, still wont let me use /money pay name amount, says i dont have enuff money ?
     
  19. Offline

    HaloInverse

    Looks like Nijikokun wasn't finished converting the internal functions when he left off development... fixed.

    Bloody hell, if nobody takes over soon, I'm going to end up bugfixing and supporting iConomy... halp!
     
  20. Offline

    Plyz

    HaloInverse keep it up! Ure our hero xD
    --- merged: Feb 23, 2011 10:13 PM ---
    money still not working, here is how it went. Updated iconomy. Logged in and used /money pay name 1

    it said sent 1 money , balance -1 money , wth i had like ALOT of money. so it automatically set my balance in -1

    Also after then i used /money deposit myname 100.000, then it used -1 + 100.000 = Balance 99.999

    Then i tried to send 1 money again, and then it gave me error message like 1 time. ?
    --- merged: Feb 23, 2011 10:16 PM ---
    Also resetting pix randomly
     
  21. Offline

    ShadowDrakken

    Halo, I know you're not looking at keeping the iConomy project, but is there any way to update 3.0 to be backward compatible with 2.2b? Several other plugins are having trouble talking with 3.0r1 because of the changes.
     
  22. Offline

    imaxorz

    Do you think you will implement some kind of sign system so players can just click signs instead of using commands. This would help the shops look better.

    Thank you!
     
  23. Offline

    jwideman

    How about supporting Cookies instead?
     
    ShadowDrakken and Daveyo like this.
  24. Offline

    ShadowDrakken

    Cookies! just added an iConomy wrapper, helping test it now, but it's a nice transparent conversion so far :)
     
  25. Offline

    Daveyo

    +1
     
  26. Offline

    Stephen92

    im on cb version 432 and everytime no matter what I buy or sell it says internal error occured while attempting to perform this command.
     
  27. Offline

    DanDaMan

    Just wanted to say thanks for taking the time to get iConomy working for us.. Much Appreciated!!!
     
  28. Offline

    tsalaroth

    I want to echo the thanks for getting iConomy working with 432!
     
  29. Offline

    Stephen92

    am I missing something since my last post lol? Was there an update to fix the internal error thing?
     
  30. Offline

    HaloInverse

    Re: Cookies, etc:
    Actually, what I'd like to see is a generic economy interface. Whatever other features an economy plugin (iConomy, Cookies, codeRed, etc.) may have, at their core, they all need three two basic functions:
    • Fetch a player's current balance -> return that balance (or null if failure).
    • Adjust a player's balance by (+/-x) units -> return True if it succeeded, False if it failed.
    • (Optional) Return the economy plugin's name and version.
    That's your pancake right there. Everything else is whipped cream and strawberries.

    So if there was a generic interface (let's call it GenericEcon) which described (as abstract classes) at least those two functions, then any economy plugin which implemented GenericEcon in its base class would be compatible at a basic level with any shop (or economy-using plugin) which knew how to call GenericEcon. If your shop plugin recognized the economy plugin name and version, then it could use some extra features. But at the very least, basic economic transactions would be supported.

    That way, plugins don't have to be tied to a particular economy plugin, and we could all just get along. :)

    Are you still using Permissions 2.0, as you said earlier? That's probably at least part of your problem. DynamicMarket 0.4.6 will probably not work without Permissions 2.1.

    It'll take me a bit, because (1) it's not my code, so I'm not familiar with it, and (2) it looks like development halted halfway through restructuring the internals, so I'm figuring out not just what the code is, but what it's trying to be. Some of the method calls and user commands are using a completely different storage method than the old calls. And the new calls support fractional currency. FRACTIONAL currency, I say! Dollars and cents!

    But it should be possible to rewrite the old deprecated calls so that they're at least compatible with the new system.

    Unless someone else takes over iConomy right quick, looks like I'll be doing it...
    --- merged: Feb 24, 2011 7:54 AM ---
    Okay, the new version's up. Rewriting DynamicMarket to be compatible with the iConomy wrapper for Cookies turned out to be much faster than bugfixing fully updating iConomy 3.x. It works, go use it.

    Now that the panic is over, I can get back to actual development. :)
     
  31. Offline

    Nathan C

    I have permissions 2.0 and it is working great with your latest release and the latest CraftBukkit.
     

Share This Page