[Source] Basic Item Alerter menu

Shout-Out

User Tag List

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 68
  1. #31
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated for patch 0.10.0g.

    [Source] Basic Item Alerter
  2. #32
    Syncness's Avatar Legendary
    Reputation
    695
    Join Date
    Dec 2007
    Posts
    953
    Thanks G/R
    2/65
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "who" being the player, which should be in the item data when it drops since it has a name to it I'd assume.
    Double check you're trading with me in case of impostors

  3. #33
    kinouxe's Avatar Member
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello, can you tell me if there is a same code in laguage autoit.

    i've found some ptr and offset but, i'm blocked actually...

  4. #34
    Namepod's Avatar Private
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SKU, you said "Then it's a simple matter of sending out 0x0D packets".
    Have you figured out where to inject packets?
    I'm trying to send a chat packet, "04 00 01 41 00 00", for sending "A". But I can't find the right place to inject it...
    Any hints?

    I would like to say thanks for all the help you guys have provided so far, so thank you guys for helping a noob ^^

  5. #35
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Namepod View Post
    SKU, you said "Then it's a simple matter of sending out 0x0D packets".
    Have you figured out where to inject packets?
    I'm trying to send a chat packet, "04 00 01 41 00 00", for sending "A". But I can't find the right place to inject it...
    Any hints?

    I would like to say thanks for all the help you guys have provided so far, so thank you guys for helping a noob ^^
    I guess I was a bit too liberal calling it "simple". I haven't looked at actually injecting packets, but I'd assume it might be easier to start at a higher level. Walk the stack up and find out who invokes the whole "make a packet, encrypt, and send it" call. You may (or may not) find a "SendMovement(x, y)" function somewhere at the bottom of the call stack.

    So.. sorry, can't give you any hints on that - if I do find something (not saying that I'm looking for that at the moment though), I'll obviously share it.

  6. #36
    Syncness's Avatar Legendary
    Reputation
    695
    Join Date
    Dec 2007
    Posts
    953
    Thanks G/R
    2/65
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone could simply add the player name of loot to be displayed with the item, that would be great.
    Double check you're trading with me in case of impostors

  7. #37
    FattyXP's Avatar Member
    Reputation
    20
    Join Date
    Feb 2009
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    I guess I was a bit too liberal calling it "simple". I haven't looked at actually injecting packets, but I'd assume it might be easier to start at a higher level. Walk the stack up and find out who invokes the whole "make a packet, encrypt, and send it" call. You may (or may not) find a "SendMovement(x, y)" function somewhere at the bottom of the call stack.

    So.. sorry, can't give you any hints on that - if I do find something (not saying that I'm looking for that at the moment though), I'll obviously share it.
    You are in fact correct, at the way bottom is a movement call. They are detailed here at BH: Blizzhackers ? View topic - Some structures and static pointers
    Where they actually have the Player Struct and a few other nifty things we need for some things.

    He has named one SendMoveTo (after the "Move To" ability we can put on an action bar), although a more fitting name would be SendMovementInteraction or SendMovement, since the function apparently is also called for clicking items and doors and other objects. He has also found a function called ScreentoWorldCoord, which converts the current mouse cursor position coords into world coords. Also information about resolution, player max hp/mp, shield.

    now, for packet interception/ "injection" / and modification, wouldn't setting up a proxy like the old D2 RedVex work a lot easier than having to figure out where to inject the packets? (and in turn having that opening then either closed or scanned by GGG) not to mention keeping it updated through patches which are sure to change the way it works after they figure out what we are doing. and also making it less detectable, since we wouldn't have to modify any memory.

    That way not only could we build our own custom packets, but modify already existing ones. This way we could make a bot like the old Kukbot that doesn't even really need the client for interaction except for actually processing the packets. I mean I guess this would be a pretty large undertaking, since we would need to figure out all the various packets and their content. I don't think I need to mention the possibilities of packet modification *wink*

    Also on a side note, the speed hack in Cheat Engine 6.2 works, just don't set it above about 1.25 or you'll have a lot of sync issues. Also Quicksilver flask at that speed causes sync issues. Its probably super detectable though, so use at your own risk. I only tested it out for about 15-20 minutes last night and didn't get banned (yet) Also my character has I think like 30 or 29% movement speed buff, not sure about penalty and I'm sure that changes exactly how much you can handle without sync issues( like how it was in Diablo 2 with Faster Run/Walk).
    Last edited by FattyXP; 02-12-2013 at 04:48 PM.

  8. #38
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FattyXP View Post
    You are in fact correct, at the way bottom is a movement call. They are detailed here at BH: Blizzhackers ? View topic - Some structures and static pointers
    Where they actually have the Player Struct and a few other nifty things we need for some things.

    He has named one SendMoveTo (after the "Move To" ability we can put on an action bar), although a more fitting name would be SendMovementInteraction or SendMovement, since the function apparently is also called for clicking items and doors and other objects. He has also found a function called ScreentoWorldCoord, which converts the current mouse cursor position coords into world coords. Also information about resolution, player max hp/mp, shield.
    Yeah, I saw. Great job on the reversing.

    Originally Posted by FattyXP View Post
    now, for packet interception/ "injection" / and modification, wouldn't setting up a proxy like the old D2 RedVex work a lot easier than having to figure out where to inject the packets? (and in turn having that opening then either closed or scanned by GGG) not to mention keeping it updated through patches which are sure to change the way it works after they figure out what we are doing. and also making it less detectable, since we wouldn't have to modify any memory.

    That way not only could we build our own custom packets, but modify already existing ones. This way we could make a bot like the old Kukbot that doesn't even really need the client for interaction except for actually processing the packets. I mean I guess this would be a pretty large undertaking, since we would need to figure out all the various packets and their content. I don't think I need to mention the possibilities of packet modification *wink*
    Don't know what D2 RedVex is, but it seems like you're talking of a MITM-like system. The problem then is that you need to know how to encrypt and decrypt the packets. If you set up hooks in the client, you can circumvent that. But yeah, a headless bot would be really cool.

    Originally Posted by FattyXP View Post

    Also on a side note, the speed hack in Cheat Engine 6.2 works, just don't set it above about 1.25 or you'll have a lot of sync issues. Also Quicksilver flask at that speed causes sync issues. Its probably super detectable though, so use at your own risk. I only tested it out for about 15-20 minutes last night and didn't get banned (yet) Also my character has I think like 30 or 29% movement speed buff, not sure about penalty and I'm sure that changes exactly how much you can handle without sync issues( like how it was in Diablo 2 with Faster Run/Walk).
    Have you checked what kind of 0xF1 packets you were getting from the server while running with the speed hack? You could also just set the pathfinding speed (Metadata/Characters/Character.ot file) to something above 37, but I'm pretty damn sure that it's just client-side and will probably get you to desync at some point.

  9. #39
    justatest90's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would this cause WINAPI's CheckRemoteDebuggerPresent to return true?

  10. #40
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm pretty sure pydbg does not try to hide the debugger; so yes, it would return true.

  11. #41
    z77777's Avatar Member
    Reputation
    2
    Join Date
    Mar 2013
    Posts
    23
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this dead? It says updated for 1.0.0.g but it still shows 1.0.0b on the python window.

    Thanks for the script by the way. Looks beautiful.

  12. #42
    xDron4eGx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    12
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx man, nice soft !

  13. #43
    z77777's Avatar Member
    Reputation
    2
    Join Date
    Mar 2013
    Posts
    23
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump for a great program =d

  14. #44
    z77777's Avatar Member
    Reputation
    2
    Join Date
    Mar 2013
    Posts
    23
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Was a good few hours of use poe updates too fast

  15. #45
    FattyXP's Avatar Member
    Reputation
    20
    Join Date
    Feb 2009
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by z77777 View Post
    Was a good few hours of use poe updates too fast
    Yeah, we need to add sig scanning instead of static addresses.

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Item Alerter - offsets needed.
    By Swisstrade in forum PoE Bots and Programs
    Replies: 451
    Last Post: 02-08-2015, 08:10 PM
  2. [Fork] Basic Item Alerter
    By Theadd in forum PoE Bots and Programs
    Replies: 29
    Last Post: 11-12-2013, 07:02 PM
  3. [Source] Basic Item Alerter
    By SKU in forum Path of Exile
    Replies: 24
    Last Post: 02-07-2013, 07:59 AM
  4. [h4xx] basic item hacking
    By Zomg waffles in forum WoW EMU Exploits & Bugs
    Replies: 10
    Last Post: 03-19-2008, 09:25 AM
  5. basics items
    By alex2630 in forum World of Warcraft Guides
    Replies: 6
    Last Post: 12-08-2006, 01:00 PM
All times are GMT -5. The time now is 11:59 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search