Item Alerter - offsets needed. menu

User Tag List

Page 2 of 31 FirstFirst 123456 ... LastLast
Results 16 to 30 of 452
  1. #16
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SwedishPower View Post
    Yeah, it definately works now with 2.7.5 Python.

    Do you also need to shut down PoE to make some script tuning or can you just shut down the Python window without PoE crashing? It is a bit fishy that it does - not very clean so to speak...

    I am thinking about some changes here and there to suit my needs and will try to make it happen myself even though I made most of my bot stuff earlier in JSP and much of a newbie to Python.

    Here is my wish-list:

    + Colored output in the log window (perhaps from this https://pypi.python.org/pypi/colorama)
    + Detect drop assignment - ie running in Permanent Loot Assignment pick-up-groups and not interested in other people's loot
    + NotifyItems rarity filter - ie only notify white Occultist's Vestment, not very interested in blue ones
    + Filter out low currency - ie not interested in Armorer's Scrap
    + Different sounds for different drop types
    Good to hear its working now. I think there is no way around the crashing when you close the python process. I never figured one out.

    About your changes:

    First, i never ever wrote a single line in Python before i touched these sources :-) so my code might not be as pretty/elegant as it could/should be :-)

    - colored output - nice point, shouldn't be that hard to implement
    - detect drop assignment -> the pointer to the owner of the drop is somewhere at the start of the structure - you would need to figure out where to find the information about your character (never tried with 2 accounts logged in, would need to trial and error a bit)
    - Notify Item Rarity filter-> just change if rarity == 0 or rarity == 1: in the armour section to if rarity == 0: and it should work
    - Filter out low currency .-> you can filter them in the isCurrency block - just check for the item ids
    - Different sounds - easily doable for all of them, check in the initial code how it was done

    cheers

    Sarge

    Item Alerter - offsets needed.
  2. #17
    virity12's Avatar Private
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do I have to compile it from source or do you have a binary I can download?

  3. #18
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's Python, you dont need to compile anything. Just install Python and run it.

  4. #19
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    NEW OFFSETS ?

    All, again the BP offsets are broken - any kind soul to share the working ones ?

    If possible, we could use the new ones for the 1.0.0 release next week as well, i can offer to publish my latest version (which includes color coded drop warnings)

    Thx & cheers

    SwissTrade

  5. #20
    comodo's Avatar Corporal
    Reputation
    23
    Join Date
    Sep 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Make a github repo, or fork the original so people can contribute that way. I don't have poe installed yet, but if you upload the game exe somewhere I can easily download, I will take a look.

  6. #21
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a current version now?

  7. #22
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i'll upload my files to a github this evening for all to use and contribute..

    Would still need someone to be so kind and adjust the offsets for it to work.

  8. #23
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The fork is on GitHub now.

    Additional features to the initial release by SKU::

    - color coded output
    - can identify: quality, rarity, itemlevel, color of sockets, number of sockets and number of links, mods, value of mods (suffix and prefix), value of implicit mod.
    - can alert on: gems, maps, belts, rings&amulets, uniques, weapons, armor, all currency,
    - can log farm runs (configured to start and stop when you drop an Andvarius) and write run data into a logfile - data is prepared to be loaded into excel.



    It still needs a kind person to adjust the offsets, these will NOT work with the release version (1.0c) of the game.

    I will add new items and uniques as soon as we got the breakpoints activated.

    https://github.com/Sergej-PoE/POE_ItemAlerter

  9. #24
    blacklider's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    30
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone with brain can help with offsets will be awesome

  10. #25
    milkbananas's Avatar Member
    Reputation
    2
    Join Date
    Oct 2013
    Posts
    10
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I was looking to make my own loot alerter and found this thread.

    Here is the new BP values

    BP0 = 0x002561B9 + 0x00400000 #MOV EDI, EAX
    BP1 = 0x002561B1 + 0x00400000 #PUSH EAX
    BP2 = 0x002561FB + 0x00400000 #MOV EAX,DWORD PTR [ESI+54]


    It seems that the packet structure is now different, the script will return unk5 odd packet errors.

    Here is how I changed to get it working

    ItemAlertPOE.py
    Code:
    unk5 = buffer.nextDword()
    print >>self.logFile, str.format('unk5 = {0}', unk5)
    
    #if unk5 != 0:
    # print >>self.logFile, 'The following packet has an odd unk5 field:'
    # print >>self.logFile, self.dbg.hex_dump(map(lambda x: chr(x), packetData))
    # return
    
    unk5 = buffer.nextDword()
    print >>self.logFile, str.format('unk5 = {0}', unk5)
    
    #if unk5 != 0: buffer.nextDword()
    unk5 = buffer.nextDword()
    print >>self.logFile, str.format('unk5 = {0}', unk5)
    unk6 = buffer.nextByte()
    print >>self.logFile, str.format('unk6 = {0}', unk6)
    
    quantity = buffer.nextByte()
    print >>self.logFile, str.format('quantity = {0}', quantity)
    itemId = buffer.nextDword()
    print >>self.logFile, str.format('itemId = {0}', itemId)
    You can comment all the print if you want.

    Hope this helps
    Attached Thumbnails Attached Thumbnails Item Alerter - offsets needed.-aaa-png  

  11. #26
    Thelulz1's Avatar Member
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello when I click offsetfinder.exe I get this message "[!] Error : (get_recv_breakpoints) > Error: Pattern not found.
    "
    what is the problem?

  12. #27
    serlev's Avatar Member
    Reputation
    3
    Join Date
    Apr 2012
    Posts
    97
    Thanks G/R
    10/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Milkbananas.. Will you please say what will we do with your code page ? I replaced "ItemalertPOE.py with your codes.. but I think what I did was wrong; nothing happened..
    Will we replace some part of Itemalertpoe.py of Swisstrade ? If so, will u pls specify where to insert your codes?
    I am sure it is very obvious for the people who r familiar with scripts but we noobs need detail info

  13. #28
    qwf's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this work in groups?

    Tried Milkbananas edit and it wasn't printing anything.

  14. #29
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thelulz1 View Post
    hello when I click offsetfinder.exe I get this message "[!] Error : (get_recv_breakpoints) > Error: Pattern not found.
    "
    what is the problem?
    Offsetfinder doesnt work anymore. You need to use the hardcoded offsets. They changed with 1.0.0d again, so waiting for an adjustment, then i will update the github.

  15. #30
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by qwf View Post
    Does this work in groups?

    Tried Milkbananas edit and it wasn't printing anything.
    Thats because the offsets changed with 1.0.0d again. the alerter works fine in groups, BUT it logs all drops, so cant limit to your ones (at the moment, might look into that)

Page 2 of 31 FirstFirst 123456 ... LastLast

Similar Threads

  1. [Source] Basic Item Alerter
    By SKU in forum PoE Bots and Programs
    Replies: 67
    Last Post: 09-15-2013, 07:22 AM
  2. [Source] Basic Item Alerter
    By SKU in forum Path of Exile
    Replies: 24
    Last Post: 02-07-2013, 07:59 AM
  3. About Item's attributes (need help)
    By noctum in forum Diablo 3 Memory Editing
    Replies: 6
    Last Post: 05-22-2012, 06:16 PM
  4. Looking for Item name offset
    By wuangle in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 01-12-2011, 05:20 AM
  5. Offsets needed
    By 0_00_0 in forum WoW Memory Editing
    Replies: 0
    Last Post: 05-31-2009, 05:24 PM
All times are GMT -5. The time now is 08:34 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search