• Visit Rebornbuddy
  • [Plugin] Advanced ItemLog

    Discussion in 'Archives' started by flexus, Dec 18, 2013.

    1. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      Hey guys,
      wrote a new plugin, because a friend wanted to know what dropped, what gets looted and how long is the last drop ago(e.g. for currency flag checking).
      Very simple to use, just put it into the plugin folder and activate.
      Nothing to configure.

      Functions:
      -Counts Uniques, Rares and Currency dropped and looted(actually only tracks if it's blacklisted through Item Filter or not)
      -Tells you for each kind of Currency, for Rares and Uniques how long the last drop was ago
      -Has a window(open it with the config button)
      -actually you need to refresh the list of items, maybe I will update the plugin for realtime update

      Picture of what it looks like in the log:
      3.PNG 2.PNG 1.PNG

      Hope it's something you will need :)


      Changelog:
      1.0.3.1
      -added reset button
      -added order list by column click

      1.0.3.0
      -added window
      -removed version for beta

      1.0.2.1(both)
      -updated credits and fixed some code

      1.0.2.0-OnlyForBeta
      -updated it for the beta bot and won't work with the stable

      1.0.2.0
      -initial release
       

      Attached Files:

      Last edited: Jun 14, 2014
      cyberbot likes this.
    2. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      Update:
      -added a version for the beta builds
       
    3. randomstraw

      randomstraw Community Developer

      Joined:
      Jul 17, 2012
      Messages:
      1,611
      Likes Received:
      10
      Trophy Points:
      38
      cool thing!

      I'd be very happy if you implement a function that opens a little statistics window which shows "tables" of drops, or any statics, updating itself in realtime :)

      regards
       
    4. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      Great idea,
      I actually keep track of all items dropped(Rares and Uniques).
      So just have to push them into the window and do some statistics with them and tables with the lists.
       
    5. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      Updated after a long time again :)
       
      Last edited: Jun 10, 2014
    6. IeU

      IeU Member

      Joined:
      Jul 20, 2010
      Messages:
      830
      Likes Received:
      11
      Trophy Points:
      18
      Thank you Flexus, good work!
       
    7. 54sgdg4d6s

      54sgdg4d6s Member

      Joined:
      Jun 26, 2013
      Messages:
      193
      Likes Received:
      0
      Trophy Points:
      16
      it would be sad to see how much mirrors you lost. ;)
      tnx for work, ill test it!
       
      Last edited: Jun 10, 2014
    8. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      actually added gems too, should I add any more items?

      will update the plugin later
       
    9. IeU

      IeU Member

      Joined:
      Jul 20, 2010
      Messages:
      830
      Likes Received:
      11
      Trophy Points:
      18
      let us be able to sort it by time, i personally would like to have newer items at the top on the list.
       
    10. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      added it and will update the plugin later, actually the gems don't get listed.
      when i found the problem i will update the plugin
       
    11. Denzell

      Denzell New Member

      Joined:
      May 28, 2014
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Really good job with the plugin :)
       
    12. cyberbot

      cyberbot Member

      Joined:
      Mar 15, 2014
      Messages:
      220
      Likes Received:
      2
      Trophy Points:
      18
      Good job. Can you also put a reset button to reset the lists?
       
    13. flexus

      flexus Community Developer

      Joined:
      Jun 13, 2012
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      8
      Updated with reset button and order lists by column click
       
    14. cyberbot

      cyberbot Member

      Joined:
      Mar 15, 2014
      Messages:
      220
      Likes Received:
      2
      Trophy Points:
      18
      Thanks. This works really well. This could be an official plugin just like the Gem Leveler.
       
    15. svartbob

      svartbob New Member

      Joined:
      Oct 25, 2011
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      1
      Just getting Compiler Error! Dont know if im doing something wrong! I just Extracted the Folder from Rar inte Plugins so /exilebuddy/plugins/AdvancedItemLog/ What have i done wrong :D?
       
    16. cyberbot

      cyberbot Member

      Joined:
      Mar 15, 2014
      Messages:
      220
      Likes Received:
      2
      Trophy Points:
      18
      Both the game and the bot change very fast. The plugin was written more than 4 months ago and does no longer work with the current bot which has been rewritten.
       
    17. m0rf3

      m0rf3 Member

      Joined:
      Oct 23, 2012
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      6
      update?
       
    18. pushedx

      pushedx Moderator Moderator Buddy Core Dev

      Joined:
      Sep 24, 2013
      Messages:
      4,252
      Likes Received:
      290
      Trophy Points:
      83
      BasicGrindBot has an OnLoot event handler you can subscribe to in order to get notified of when the task is about to loot an item.

      In your plugin's Start function, you'd have something like: BasicGrindBot.OnLoot += BgbOnOnLoot;
      In your plugin's Stop function, you'd have something like: BasicGrindBot.OnLoot -= BgbOnOnLoot;
      Then BgbOnOnLoot is simply:
      Code:
      private void BgbOnOnLoot(object sender, BasicGrindBot.OnLootEventArgs onLootEventArgs)
      {
      // access onLootEventArgs for: Name, Type, ItemLevel, Rarity.
      }
      
       
    19. zhenk

      zhenk Member

      Joined:
      Jun 12, 2012
      Messages:
      101
      Likes Received:
      0
      Trophy Points:
      16
      An update would be awesome if anyone has the opportunity, it would be quite an improvement for EB.
       
    20. sfrattini

      sfrattini Member

      Joined:
      Oct 4, 2012
      Messages:
      220
      Likes Received:
      4
      Trophy Points:
      18
      +1
      Update pls
       
      spawnling likes this.

    Share This Page