[Source Code] Wow Radar Application menu

Shout-Out

User Tag List

Page 5 of 6 FirstFirst 123456 LastLast
Results 61 to 75 of 85
  1. #61
    homer91's Avatar Active Member CoreCoins Purchaser
    Reputation
    79
    Join Date
    Oct 2008
    Posts
    259
    Thanks G/R
    59/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AWESOME thanks for release! Iam learning C# now, and its handy Really thanks!
    Could you upload it again?

    [Source Code] Wow Radar Application
  2. #62
    snigelmannen's Avatar Member
    Reputation
    27
    Join Date
    Jul 2007
    Posts
    318
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by omfgman View Post
    Mirror: Download

    Contains Original posted version, and updated version for 3.1.1

    DLed this, source included. just fix the offsets
    " Spy sappin mah sentry! "

  3. #63
    h1pp0's Avatar Member
    Reputation
    3
    Join Date
    Jan 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks to OP for posting the source. I was looking into making a radar and this will come in real handy. Also thanks omfgman for reuping it

  4. #64
    Bugador's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Coll man,
    Pls implements minimize for tray

  5. #65
    gokussx4's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else having issues with memory readers and windows 7?

  6. #66
    hybridohio's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else having issues with memory readers and windows 7?
    you have to run as admin in order for them to work properly

  7. #67
    gokussx4's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am an administrator. The only way i have been able to get memory reads is by calling C# Process.EnableDebugMode() prior to reading.
    This project can't even get a handle on the memory though, from what I can see. Anyone else use this on 3.2.2 and 7?

  8. #68
    Majik01's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Link is dead, takes me to a page full of rubbish. Shame, looked good.

  9. #69
    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)
    Honestly, this isn't really good OOP concepts... But still useful. There's a valid DL link on the second page or so. Maybe you should look before you complain.

  10. #70
    Pimpace's Avatar Member
    Reputation
    -4
    Join Date
    Sep 2009
    Posts
    55
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gokussx4 View Post
    I am an administrator. The only way i have been able to get memory reads is by calling C# Process.EnableDebugMode() prior to reading.
    This project can't even get a handle on the memory though, from what I can see. Anyone else use this on 3.2.2 and 7?
    I had the same issue. I'm using Win7 64bit. So when tried to use ReadProcessMemory by kernel32.dll, I had "handle is invalid" exception.

  11. #71
    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)
    I'm using x64 Vista and it works fine. I'm admin with UAC turned off.

  12. #72
    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 lanman92 View Post
    I'm using x64 Vista and it works fine. I'm admin with UAC turned off.

    you don't have to do that;
    just include a manifest and request administrative privileges.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
      <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
        <security>
          <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
            <!-- UAC Manifest Options
                If you want to change the Windows User Account Control level replace the 
                requestedExecutionLevel node with one of the following.
    
            <requestedExecutionLevel  level="asInvoker" uiAccess="false" />
            <requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
            <requestedExecutionLevel  level="highestAvailable" uiAccess="false" />
    
                If you want to utilize File and Registry Virtualization for backward 
                compatibility then delete the requestedExecutionLevel node.
            -->
            <requestedExecutionLevel level="asInvoker" uiAccess="false" />
          </requestedPrivileges>
        </security>
      </trustInfo>
    </asmv1:assembly>
    Last edited by Nesox; 12-01-2009 at 02:10 AM.

  13. #73
    LittleVince's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    link doesnt work for me

  14. #74
    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)
    Thanks for the tip Nesox. Never really bothered to look into that.

  15. #75
    Haugli92's Avatar Member
    Reputation
    4
    Join Date
    Feb 2008
    Posts
    32
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It could work good to my private bot...

Page 5 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [Lbot] Bot source code for wow 3.0.9
    By naa in forum World of Warcraft Bots and Programs
    Replies: 181
    Last Post: 05-13-2010, 05:55 PM
  2. WoW Machinima Tool V2 Source Code [AutoIT]
    By UnknOwned in forum WoW Memory Editing
    Replies: 6
    Last Post: 08-20-2009, 08:59 AM
  3. [RELEASE] Core of Time WoW Emulator Source Code
    By CoolManBob in forum World of Warcraft Emulator Servers
    Replies: 21
    Last Post: 02-04-2008, 11:22 PM
  4. WoW! thing source code
    By Relz in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 05-15-2007, 03:55 PM
All times are GMT -5. The time now is 06:22 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