Object.Interact() VMT 34 menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Object.Interact() VMT 34

    Ever since the update. My interact function has no longer been working and i dont know where the problem is. here's the code im using atm.
    i formerley used shynd's example but that was so much gibberish id rather use bigtimt's processasm library no offense to u shynd

    Code:
    ProcessASM WowASM = new ProcessASM(Memory.GetProcessIdByProcessName("wow.exe"));
    
    //get the adress of the call for 34 (Interact)
    uint interact = Memory.ReadUInt(hProcess,
    (Memory.ReadUInt(hProcess, objects[i].OBJECT_FIELD_BASEADRESS) + (34 * 4)));
    
    WowASM.AddLine("mov EDX, [0x011C8248]");   //Start UpdateCurMgr
    WowASM.AddLine("mov EDX, [EDX+0x285C]");
    WowASM.AddLine("FS mov EAX, [0x2C]");
    WowASM.AddLine("mov EAX, [EAX]");
    WowASM.AddLine("add EAX, 8");
    WowASM.AddLine("mov [EAX], EDX"); // End UpdateCurMgr
    
    //Move the object to interact with into ecx
    WowASM.AddLine("mov ecx, " + "0x" + objects[i].OBJECT_FIELD_BASEADRESS.ToString("X"));
    
    //move the function call into eax and then calling it.
    WowASM.AddLine("mov eax, 0x" + interact.ToString("X") + "");
    WowASM.AddLine("call eax");
    
    //return so wow doesnt dies.
    WowASM.AddLine("retn");
    
    WowASM.Execute();
    If someone could point me in the right direction that would be great.

    Object.Interact() VMT 34
  2. #2
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rofl no, I understand, though I don't know why you'd use his old ProcessASM library when I believe even he has started using the new method I posted in his thread.

    That looks right to me, though I haven't even looked at WoW 3.0.2 in OLLY yet so I have no idea if anything has changed.

  3. #3
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shynd View Post
    Rofl no, I understand, though I don't know why you'd use his old ProcessASM library when I believe even he has started using the new method I posted in his thread.

    That looks right to me, though I haven't even looked at WoW 3.0.2 in OLLY yet so I have no idea if anything has changed.
    oh well i he sent me the source so ive poked around some with it and added it to my library i use for pathing/object enumeration etc.. but ill look at the new method u posted too for sure

  4. #4
    argh44z's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    93
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What are you trying to interact with? For what it's worth, I haven't been able to use VMT method 34 with Fishing Bobbers since patch, but I haven't looked into why yet. I'm injecting directly.

  5. #5
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by argh44z View Post
    What are you trying to interact with? For what it's worth, I haven't been able to use VMT method 34 with Fishing Bobbers since patch, but I haven't looked into why yet. I'm injecting directly.
    units gameobjects etc.. it's because it moved to 36.

  6. #6
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why would you put "VMT 34" in the title, I pointed out several days ago its moved.

    Don't make me get my baton out and beat some sense into you.

  7. #7
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The thread was made 5 days ago.

  8. #8
    argh44z's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    93
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah yes, I missed Cypher's post from a few days ago, and I saw this thread.

  9. #9
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post
    Why would you put "VMT 34" in the title, I pointed out several days ago its moved.

    Don't make me get my baton out and beat some sense into you.

    yea it was infact some days prior to that u told me it moved, that i made it

  10. #10
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My mistake, didn't expect such an "old" thread to be bumped needlessly for something I already addressed.

  11. #11
    korknob's Avatar Active Member
    Reputation
    29
    Join Date
    May 2008
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does VMT 36 work for you guys for looting mobs? Its crashing when I try it, not sure if its my implementation or if the function is in a diff spot for diff objects now. 36 works for fishing though.
    Then it comes to be that the soothing light at the end of your tunnel
    Was just a freight train coming your way

  12. #12
    shauno's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's working fine for everything for me, including looting

  13. #13
    r3deemer's Avatar Contributor
    Reputation
    89
    Join Date
    Mar 2008
    Posts
    328
    Thanks G/R
    7/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is an old thread, solved, please stop bumping it...


    --- Thanks Enfeebleness

  14. #14
    shauno's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by r3deemer View Post
    This is an old thread, solved, please stop bumping it...
    I was replying to the question asked only 12 hours ago
    Would you rather he created a whole new thread?

  15. #15
    r3deemer's Avatar Contributor
    Reputation
    89
    Join Date
    Mar 2008
    Posts
    328
    Thanks G/R
    7/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shauno View Post
    I was replying to the question asked only 12 hours ago
    Would you rather he created a whole new thread?
    Wasnt aimed at you. Was at that question that was posted 12 hours ago...


    --- Thanks Enfeebleness

Page 1 of 2 12 LastLast

Similar Threads

  1. Game object interact distance
    By ~Unknown~ in forum WoW Memory Editing
    Replies: 7
    Last Post: 03-17-2012, 04:37 PM
  2. [Question][C#][ASM] Object -> Interact (VMT 38)
    By -Ryuk- in forum WoW Memory Editing
    Replies: 5
    Last Post: 05-10-2010, 06:05 PM
  3. ASM BlackMagic, Object->Interact(); Calling Errors.
    By fusspawn in forum WoW Memory Editing
    Replies: 3
    Last Post: 02-25-2010, 04:17 PM
  4. Object->Interact() Does nothing?
    By xLeo123 in forum WoW Memory Editing
    Replies: 3
    Last Post: 01-10-2010, 07:11 AM
  5. Interacting with object
    By miceiken in forum WoW Memory Editing
    Replies: 29
    Last Post: 06-05-2009, 08:51 AM
All times are GMT -5. The time now is 12:28 AM. 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