[AutoIt] Diablo 3 Click To Move, Interaction, Actor Indexing. menu

Shout-Out

User Tag List

Page 3 of 6 FirstFirst 123456 LastLast
Results 31 to 45 of 85
  1. #31
    Choochoo545's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow all this information has helped me out a lot as well, thanks guy. I looked all through the 1.2.9 thread, and 1.3.0 thread and cannot find the magic hex values you both have in your code "0x00FF8864" and "0x00E40D94" as the Base address

    [AutoIt] Diablo 3 Click To Move, Interaction, Actor Indexing.
  2. #32
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Choochoo545 View Post
    Wow all this information has helped me out a lot as well, thanks guy. I looked all through the 1.2.9 thread, and 1.3.0 thread and cannot find the magic hex values you both have in your code "0x00FF8864" and "0x00E40D94" as the Base address
    Protip: look through this thread.

  3. #33
    Deject3d's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    since I used the information in this thread, i may as well share my code. still couldn't get interacting with guid's working... :\

    mainly it's an auto follower. it follows around players in public games while the game can be minimized. it's not intelligent and it needs to be babysat, but you can browse the web or whatever while other people level you up. got me from 55-60 with very minimal effort.

    the catch is that I do my game hacking in Java for no good reason...

    so it basically does the same things as the autoit script posted in the OP, but it's in Java and the source has some commented code with ideas on how to utilize these basic functions for doing useful things.

    maybe someone will find it useful.
    Attached Files Attached Files

  4. #34
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deject3d View Post
    since I used the information in this thread, i may as well share my code. still couldn't get interacting with guid's working... :\

    mainly it's an auto follower. it follows around players in public games while the game can be minimized. it's not intelligent and it needs to be babysat, but you can browse the web or whatever while other people level you up. got me from 55-60 with very minimal effort.

    the catch is that I do my game hacking in Java for no good reason...

    so it basically does the same things as the autoit script posted in the OP, but it's in Java and the source has some commented code with ideas on how to utilize these basic functions for doing useful things.

    maybe someone will find it useful.
    The reason why you propably can't get it to work (and i might want to highlight it so everyone sees it, so don't mind it ) is that it does not work if there are more players in your session.
    My offset would only work for a 1 player game.

    If you want to make it work for a multiplayer game aswell you have to modify the last 2 offsets, i was just too lazy to do it. Sorry for not being more clear about it.

  5. #35
    Deject3d's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnknOwned View Post
    The reason why you propably can't get it to work (and i might want to highlight it so everyone sees it, so don't mind it ) is that it does not work if there are more players in your session.
    My offset would only work for a 1 player game.

    If you want to make it work for a multiplayer game aswell you have to modify the last 2 offsets, i was just too lazy to do it. Sorry for not being more clear about it.
    good to know, but my GUID related tests were definitely performed while in a single-user session. (so if anyone else has a similar problem in non-copy and pasted code / code of a different language: you are not alone!)

  6. #36
    Belfigor's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Choochoo545 View Post
    Wow all this information has helped me out a lot as well, thanks guy. I looked all through the 1.2.9 thread, and 1.3.0 thread and cannot find the magic hex values you both have in your code "0x00FF8864" and "0x00E40D94" as the Base address
    I found it with CE Pointer Scanner

  7. #37
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Created a little minimap app using a AutoIT gl extension.
    It shows NPC's, Loot and whatnot.
    Download: http://www.filedropper.com/au3map



    Last edited by UnknOwned; 06-24-2012 at 11:45 AM.

  8. #38
    Belfigor's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great job!

  9. #39
    pollock974's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am curious why you have code to write memory if all it does is display a minimap? You should be able to accomplish this completely OOP with no writes. It looks like you have alot of interact code.
    Last edited by pollock974; 06-24-2012 at 02:48 PM.

  10. #40
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pollock974 View Post
    I am curious why you have code to write memory if all it does is display a minimap? You should be able to accomplish this completely OOP with no writes. It looks like you have alot of interact code, if that is the case you should let people know and not advertise as just a minimap.
    Most likely because he uses the same "base" as for the first "release". The fact that the interact code is still there won't make any difference if you're not using it... The only difference you can make is not to open the process with write access, but the current Warden implementation doesn't care anyways, and it probably doesn't care about you writing to such structures neither unless, of course, they would want to start to detect it.
    Last edited by DrakeFish; 06-24-2012 at 04:10 PM.

  11. #41
    pollock974's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Didnt think about the OP code, that makes sense.

  12. #42
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pollock974 View Post
    Didnt think about the OP code, that makes sense.
    lulz.

    The very reason why i post it in this thread is because its based on this code.
    If you actually took the time to find the entry point in the source (decompiling makes it quite a mess) you would see that it does not write to memory.

    Thanks for the clarification Drake.
    Last edited by UnknOwned; 06-24-2012 at 03:16 PM.

  13. #43
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deject3d View Post
    good to know, but my GUID related tests were definitely performed while in a single-user session. (so if anyone else has a similar problem in non-copy and pasted code / code of a different language: you are not alone!)
    hmm, never really had problems with it, but thanks for the headsup. Ill try to see what can cause this.

    But you had not at any time since you launched D3 had any other players in one of your games?
    And did you manually check the interaction fuction that the snowpower and GUID was the same as the one you used?

  14. #44
    rannox's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone kind enough to point me in the right direction of where how I would get the rest of the actor pointers in CE from 0x15A0BEC? Or at least tell me if this assumption is wrong... 0x15A0BEC is just an address, and the same as 015A0BEC ...

  15. #45
    pollock974's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, 15A0BEC is just an address that contains a pointer.

    * I should say THE pointer. It is pretty damn important.

Page 3 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. Interact problems with Click to move
    By natt_ in forum WoW Memory Editing
    Replies: 3
    Last Post: 09-28-2014, 02:12 PM
  2. [Release] [AutoIt] Diablo 3 Click To Move, Interaction, Actor Handling. (Version 2)
    By UnknOwned in forum Diablo 3 Memory Editing
    Replies: 301
    Last Post: 09-30-2012, 07:52 PM
  3. [Diablo 3] Click to move?
    By diablothree in forum Diablo 3 Memory Editing
    Replies: 3
    Last Post: 01-14-2012, 04:29 AM
  4. Click to move?
    By ashleyww in forum WoW Memory Editing
    Replies: 32
    Last Post: 07-18-2009, 08:48 PM
  5. Click to Move Problem
    By Rival-Fr in forum WoW Memory Editing
    Replies: 5
    Last Post: 07-03-2009, 09:27 AM
All times are GMT -5. The time now is 06:09 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