[HELP] Diablo 3 Memory Write Questions menu

User Tag List

Results 1 to 5 of 5
  1. #1
    Noobipoopi's Avatar Private
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [HELP] Diablo 3 Memory Write Questions

    Hello, I am very new to coding i know some basic stuff in C++ and C#. And i am not really sure how to use this BlackMagic thing, when i am putting in a current gold memory address I don't get anything only a random number, that isn't my GOLD same wth EXP!! I have tried with World of Warcraft too with walking addresses ( WRITE FLOAT ) nothing happend, that's why i am making a thread! Because i really need help! AND I HAVE SEARCHED :///

    I AM VERY HAPPY, IF YOU ANSWER SOME OF MY QUESTIONS OR GIVE ME EXAMPLES

    Questions / I don't know how to:

    1: I need an example on WriteFloat( MemoryAddress ) (like walking, use town portal, use potion or something), can someone share my an code, that works. Please help me put it in my code?

    2: Memory Read like health, in town, level and name? ( example )

    3: Is there a better way to send packets / memory things or whatever it is called in C#. ( I don't care, if there is more risk on getting banned. )



    I really hope someone answer me and can help me put some example in my current code!.
    PS. SORRY FOR MY BAD ENGLISH!!!!

    I would like something like this ( MEMORY READ ):
    uint Name = (MEMORY_ADDRESS_HERE);
    uint Level = (MEMORY_ADDRESS_HERE);
    uint Class = (MEMORY_ADDRESS_HERE);
    uint Gold = (MEMORY_ADDRESS_HERE);
    uint InTown = (MEMORY_ADDRESS_HERE);

    Console.WriteLine("Your character's name is: " + Name);
    Console.WriteLine("Your character's level is: " + Level);
    Console.WriteLine("Your character's class is: " + Class);
    Console.WriteLine("Your character's gold is: " + Gold);

    if ReadFloat(InTown);
    // go to waypoint something like that or go to shop
    else
    continue something

    I would like something like this ( MEMORY WRITE ):
    uint TeleportTown = (MEMORY_ADDRESS_HERE);
    uint WalkExample = (MEMORY_ADDRESS_HERE);

    WriteFloat(TeleportTown);
    WriteFloat(WalkExample);

    My code:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using Magic;
    
    namespace D3Noob
    {
        class Program
        {
            static void Main(string[] args)
            {
    
                BlackMagic wow = new BlackMagic();
                if (wow.OpenProcessAndThread(SProcess.GetProcessFromProcessName("Diablo III")))
                {
                    Console.WriteLine("Succes!");
    
                    // I need a write.float and memory read example here! :)
                    
                }
                else
                {
                    Console.WriteLine("Not found!!!");
                }
    
                Console.ReadLine();
    
            }
        }
    }
    Last edited by Noobipoopi; 03-17-2013 at 09:39 AM. Reason: More info again and fails

    [HELP] Diablo 3 Memory Write Questions
  2. #2
    enigma32's Avatar Legendary
    Reputation
    912
    Join Date
    Jan 2013
    Posts
    551
    Thanks G/R
    4/738
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Go read the section rules, and do a proper search..

    1) Pretty sure a framework for that can be found on this forum.
    2) Same here, should be found by searching.
    3) If you do not care about banning then most efficient way to do things is with injection. Again, searching should probably give you a framework that works.

  3. #3
    Noobipoopi's Avatar Private
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    REMOVED BY MYSELF!!!! :dsad Fail
    Last edited by Noobipoopi; 03-17-2013 at 09:42 AM. Reason: Wtf happend here

  4. #4
    Noobipoopi's Avatar Private
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by enigma32 View Post
    Go read the section rules, and do a proper search..

    1) Pretty sure a framework for that can be found on this forum.
    2) Same here, should be found by searching.
    3) If you do not care about banning then most efficient way to do things is with injection. Again, searching should probably give you a framework that works.
    Can you help me? I could only find a framework made in c++ and use mouseclicks???
    And is C++ best for injection I just want to make a bot, that works and is fast??

  5. #5
    enigma32's Avatar Legendary
    Reputation
    912
    Join Date
    Jan 2013
    Posts
    551
    Thanks G/R
    4/738
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C++ would probably be best for injection yes. It's not something I've ever done, but I understand the principle. By injecting your own dll into the diablo process, you get access to the same memory space and can start calling any function you want. This is a detectable method. This will also be very complicated for you, as you only have basic knowledge of C++ as you state.

    There are several AutoIT frameworks for bots that are based on reading memory, pixels and taking control of the user input (mouse/keyboard). This is basically undetectable. If you're a beginner, then AutoIT is a good scripting language to use. That is also why there are so many bots based on it.

    You can also buy a bot I would assume, and that would be fastest method of getting started. The problem is, you don't know what you're REALLY buying.

    Anyways, I don't condone botting, so glhf getting banned ^^

Similar Threads

  1. Diablo III Memory Address Pointers (Health) Question
    By barryhutthole in forum Diablo 3 Memory Editing
    Replies: 4
    Last Post: 10-31-2012, 03:25 AM
  2. [HELP] Mailing without memory writes
    By weber7655 in forum WoW Memory Editing
    Replies: 5
    Last Post: 10-14-2009, 10:22 AM
  3. [HELP] Memory offsets, questions about static and dynamic
    By Shutzler in forum WoW Memory Editing
    Replies: 7
    Last Post: 09-14-2009, 11:24 AM
  4. Need help reading Memory, Writing too memory
    By Neer in forum Programming
    Replies: 0
    Last Post: 08-17-2009, 12:11 PM
  5. [Help!] Taliis problems (Will write a guide if my questions are answered!)
    By jeremy7271 in forum WoW ME Questions and Requests
    Replies: 7
    Last Post: 07-14-2009, 08:53 AM
All times are GMT -5. The time now is 07:31 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