[Sample] Easy Loot with GUID in backdrop mode - Interact func menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    Rival-Fr's Avatar Banned
    Reputation
    15
    Join Date
    Apr 2009
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Sample] Easy Loot with GUID in backdrop mode - Interact func

    Here are small Sample for loot easily.

    Is on vb.net

    REQUIS >> Go in the menu of wow, Key Bindings > Targetings Function > and press key K in interacte with target.

    Code:
    Public Class Lib_Func_Wow
    
        Public Shared Sub Interact(ByVal Object_Base_Adress As UInt64, ByVal Handle_Windows_WoW As IntPtr)
            SelectTarget(Object_Base_Adress) 'Write Guid in TargetGuid Player
            pressKey(Keys.K, Handle_Windows_WoW) ' Press key K
            Wait(1000) ' Wait 1 sec
            SelectTarget(0) ' Clean Target
        End Sub
    
    
        Public Shared Sub SelectTarget(ByVal TargetBase As Long)
            Dim Guid As UInt64 = ReadUInt64(TargetBase + Adresse.ObjectOffsets.Guid)
            WriteUInt64(Adresse.TargetGUID, Guid) 'Write Guid in TargetGuid Player
        End Sub
    
    
        <DllImport("kernel32", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)> _
    Private Shared Function GetTickCount() As Integer
        End Function
    
        Public Shared Sub Wait(ByVal Milsec As Integer)
            Dim num As Integer
            num = (GetTickCount() + Milsec)
            Do While (GetTickCount() < num)
                Application.DoEvents()
            Loop
        End Sub
    
        <DllImport("user32", EntryPoint:="PostMessageA", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)> _
           Private Shared Function PostMessage(ByVal hwnd As IntPtr, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Boolean
        End Function
    
    
        Public Shared Sub pressKey(ByVal Key As Keys, ByVal WindowHwnd As IntPtr)
            PostMessage(WindowHwnd, &H100, CInt(Key), IntPtr.Zero)
            PostMessage(WindowHwnd, &H101, CInt(Key), IntPtr.Zero)
        End Sub
    
    End Class
    use:



    Code:
    Interact(Object_Base_Adress, Handle_Windows_WoW)


    Example of use: > http://www.mmowned.com/forums/bots-p...w-3-1-3-a.html

    > http://www.mmowned.com/forums/progra...te-server.html

    Sorry for my bad english
    Last edited by Rival-Fr; 06-29-2009 at 11:42 AM.

    [Sample] Easy Loot with GUID in backdrop mode - Interact func
  2. #2
    voron23's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wow thank you, will test this!)))) very very nice, +rep

  3. #3
    Cursed's Avatar Contributor
    Reputation
    270
    Join Date
    Jun 2007
    Posts
    1,380
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What a tutorial... I followed all the steps.

  4. #4
    Rival-Fr's Avatar Banned
    Reputation
    15
    Join Date
    Apr 2009
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry, tuto is short because i speak badly english

  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)
    Viva la revolution!

  6. #6
    voron23's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you plan loot mob after kill, you may send Key("LastTargetKey") and Key("Interact-w-Target key") ^_^

  7. #7
    Rival-Fr's Avatar Banned
    Reputation
    15
    Join Date
    Apr 2009
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, but for loot bobber, herb's or mineral my sample work
    Last edited by Rival-Fr; 06-30-2009 at 06:29 AM.

  8. #8
    voron23's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rival-Fr View Post
    Yes, but for loot bobber, herb's or mineral my sample is working
    and if you are looting or skinning another mobObject
    i dont like the fact, that unit target dont fully set with one write GUID

  9. #9
    Rival-Fr's Avatar Banned
    Reputation
    15
    Join Date
    Apr 2009
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you voron

  10. #10
    pandyer's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Interact(Object_Base_Adress, Handle_Windows_WoW)?
    You can provide function prototype?

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pandyer View Post
    Interact(Object_Base_Adress, Handle_Windows_WoW)?
    You can provide function prototype?
    Please noone help this dipshit, he posted the same shit in a comment on a totally unrelated post on my blog.

    He obviously has no interest in learning he just wants copypasta.

  12. #12
    Rival-Fr's Avatar Banned
    Reputation
    15
    Join Date
    Apr 2009
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    This code is very simple, if you did not know find a base adress, you not use this sample.
    Last edited by Rival-Fr; 07-01-2009 at 07:19 AM.

  13. #13
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could also use InteractByGUID to do the same thing 0x6F1FC0 Have fun. Gotta love taking advantage of the game ALREADY HAVING THE CODE YOU NEED!

  14. #14
    pandyer's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i call this 0x6F1FC0
    then Occasional abnormal procedures

    I want to learn under
    Help me to see where the wrong
    This is my source:

    var pid = process.Id;
    var asm = new AsmClass();

    //mov ecx,dword ptr fs:[2c]
    asm.Mov_ecx_from_dword_ptr_fs_num(0x2c);
    //mov eax,dword ptr [135d9fc]
    asm.Mov_EAX_DWORD_Ptr(0x135d9fc);
    //mov edx,dword ptr[ecx+eax*4]
    asm.addnum("8B1481");
    //mov dword ptr [edx+10], var
    asm.addnum("C74210" +
    asm.IntTohex(dd, );
    asm.Push68((int)(monUid >> 32));
    asm.Push68((int)monUid);
    asm.Mov_EAX(0x006f1fc0);
    asm.Call_EAX();
    asm.Add_ESP(0x0;
    asm.addnum("33C0");
    asm.Ret();
    asm.RunAsm(pid);
    I find it for meself,However, I use it when the occasional error procedure
    .sorry,my English very poor, Expression is not clear

  15. #15
    pandyer's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I restore the fs:[2c] Register
    Because in the use of call time used

Page 1 of 2 12 LastLast

Similar Threads

  1. [Selling] we offer 9/9 challenge mode runs /// selfplay with guide /// europe&horde only 150!!
    By abstisellruns in forum World of Warcraft Buy Sell Trade
    Replies: 4
    Last Post: 09-03-2013, 09:54 AM
  2. [Guide] Easy massive money guide with JC\Ench
    By hpdark in forum World of Warcraft Guides
    Replies: 6
    Last Post: 12-27-2010, 07:54 PM
  3. [Guide] Easy money with mining
    By Sabens in forum World of Warcraft Guides
    Replies: 2
    Last Post: 06-21-2008, 11:23 PM
  4. Guide to Easy rep with your Faction's 5 main cities!
    By xkisses in forum World of Warcraft Guides
    Replies: 13
    Last Post: 02-19-2008, 11:44 AM
  5. Easy rogue leveling guide
    By XeroZ in forum World of Warcraft Guides
    Replies: 9
    Last Post: 07-31-2006, 01:28 PM
All times are GMT -5. The time now is 05:50 PM. 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