[Question] Select a Target With Memory Reading menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Question] Select a Target With Memory Reading

    Hey there,

    I have a question about selecting a target. SelectTarget() works just with injection or am I wrong?

    With click to move I don't see an action typ to just select a target since ctm even with a guid it won't select, just move to it.

    At the moment I press an attack because on first attack it will auto select an mob. But if there are 2 or more mobs attacking me it selects one random.

    Is there a way to select a mob by his guid without injection?

    Greetings

    [Question] Select a Target With Memory Reading
  2. #2
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1422
    Join Date
    Apr 2006
    Posts
    3,946
    Thanks G/R
    285/573
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Press Tab, read the targets GUID. If it matches the one you want to target, great. If not, press Tab again. Rinse and repeat.

  3. #3
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Calling CGGameUI__Target is the best way to go.

    Any you can just rewrite current target GUID, or write it to LastTargetGUID and press Target Last Target hotkey.

    Anyway, CGGameUI__Target is the best

  4. #4
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1422
    Join Date
    Apr 2006
    Posts
    3,946
    Thanks G/R
    285/573
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JuJuBoSc View Post
    Calling CGGameUI__Target is the best way to go.

    Any you can just rewrite current target GUID, or write it to LastTargetGUID and press Target Last Target hotkey.

    Anyway, CGGameUI__Target is the best
    He said without injection =P

  5. #5
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Press Tab, read the targets GUID. If it matches the one you want to target, great. If not, press Tab again. Rinse and repeat.

    HAHHAHAHA how dumb can I be

    So simple but effective...I was going to inject just for selecttarget()...your way is like 2 seconds slower but Out of Process thanks.

    +rep

  6. #6
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1422
    Join Date
    Apr 2006
    Posts
    3,946
    Thanks G/R
    285/573
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    No problem. Just make sure you put a maximum amount of times attempting to press tab, or you may start going through an infinite loop, if for some reason the target you want to target is untargetable (i.e. dead)

  7. #7
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    No problem. Just make sure you put a maximum amount of times attempting to press tab, or you may start going through an infinite loop, if for some reason the target you want to target is untargetable (i.e. dead)

    Yes I save all attackers in an attackerlist. So I just do a foreach attackerlist.count loop through it.

  8. #8
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
            public static bool SelectTarget(ulong guid)
            {
                for(i=0;i<Objm.AttackerObjectList.Count;i++)
                {
                    PostMessages.SendKey(PostMessages.VK.VK_TAB);
                    System.Threading.Thread.Sleep(200);
                    if(Objm.Player.TargetGuid==guid)
                        return true;//Found our target
                }
                return false; //Target must be dead or vanished
            }
    Works for me.

    Thanks again

  9. #9
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Write your desired target's GUID to the lasttarget-Guidfield and press the Targetlasttarget-button.
    Hey, it compiles! Ship it!

  10. #10
    SinnerG's Avatar Member
    Reputation
    6
    Join Date
    Aug 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    He did say without injection, flo

    Now I have a question as well : is it possible for the wow server to change the target on the client, and if so : anyone know in what opcode it happens? (or is it just an UPDATE_VALUES ?)

  11. #11
    Seifer's Avatar Site Donator
    Reputation
    129
    Join Date
    Apr 2007
    Posts
    270
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another method would be WorldToScreen. Assuming you have a list of all GUIDs around you, and you have the GUID of the object you want to target, you can call Object.X, Object.Y and (optionally) Object.Z, put that through WorldToScreen, and have the mouse click at that location.

    I'm pretty confident Glider utilized this method in some form.

  12. #12
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by flo8464 View Post
    Write your desired target's GUID to the lasttarget-Guidfield and press the Targetlasttarget-button.
    Is the lasttarget Guidfield writeable or I have to inject my code like SinngerG says?

  13. #13
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fukmeimbroken View Post
    Is the lasttarget Guidfield writeable or I have to inject my code like SinngerG says?
    He considers memory writing as injection, which it surely isn't in this case.
    And as you are already actively modifying WoW by using CTM, go for it.
    Hey, it compiles! Ship it!

  14. #14
    fukmeimbroken's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh okay no writeprocessmemory I use. With injection I mean code injection. I'll try the lasttargetguid thing.

  15. #15
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fukmeimbroken View Post
    Oh okay no writeprocessmemory I use. With injection I mean code injection. I'll try the lasttargetguid thing.
    you are writing the ctm stuff, aren't you?

Page 1 of 2 12 LastLast

Similar Threads

  1. Beginning with memory reading ?
    By kantaki in forum Programming
    Replies: 3
    Last Post: 11-17-2011, 10:35 PM
  2. need startup help with memory reading (C++, ReadProcessMemory)
    By sixpounder in forum WoW Memory Editing
    Replies: 13
    Last Post: 03-13-2011, 09:43 AM
  3. [Example] Check if spell is available with memory reading
    By orby_tale in forum WoW Memory Editing
    Replies: 1
    Last Post: 11-14-2010, 05:14 PM
  4. [C#/CE help] Need help with memory reading
    By dididii in forum Programming
    Replies: 0
    Last Post: 10-07-2010, 12:26 PM
  5. [Autoit] Problem with Memory reading for looting *resolved*
    By spudstar99 in forum WoW Memory Editing
    Replies: 4
    Last Post: 05-15-2009, 10:26 PM
All times are GMT -5. The time now is 07:32 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