(Tutorial) Starting WoW-Memory Reading/Writing menu

User Tag List

Page 4 of 14 FirstFirst 12345678 ... LastLast
Results 46 to 60 of 199
  1. #46
    Floppixx's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Danne206 View Post
    Doesn't ANYONE read before posting? Look at my latest replies to this thread, compile as x86 and update offsets and you'll be fine!
    Where can I compile it as x86 ?

    (Tutorial) Starting WoW-Memory Reading/Writing
  2. #47
    adaephon's Avatar Active Member
    Reputation
    76
    Join Date
    May 2009
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm pretty sure it's supported in most countries...

  3. #48
    ctac18's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    byte[] playername = wow.ReadBytes(0xBB4428, 24); //reads player name
    string playernam=Encoding.UTF8.GetString(playername);
    label1.Text="Player name : "+playernam;
    byte[] bPlayerRealm = wow.ReadBytes(0x00BB42AE, 4;
    label2.Text = "Realm : "+Encoding.UTF8.GetString(bPlayerRealm);
    Last edited by ctac18; 04-01-2010 at 09:20 AM.

  4. #49
    Bonfire666's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone explain how to get the updated offsets from the dump post? I'm still trying to get one of them working, and I only see a wall of text :S

  5. #50
    Danne206's Avatar Contributor
    Reputation
    183
    Join Date
    Jan 2008
    Posts
    717
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bonfire666 View Post
    can someone explain how to get the updated offsets from the dump post? I'm still trying to get one of them working, and I only see a wall of text :S
    CTRL + F and search for the offset you need.
    i.e
    ClickToMove
    etc
    Dahnniel [DOT] s [AT] gmail [DOT] com

  6. #51
    TuFF's Avatar Contributor
    Reputation
    120
    Join Date
    Aug 2007
    Posts
    352
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fixed other problem I was having,

    Only now i'm clueless on how to find updated PlayerBase (Help Please)

    Also total noob question here but how do you find hex codes like 0xBB4428 (The updated ones for like "Player Name" I couldn't find them in the 3.3.3a Dump)
    Last edited by TuFF; 04-04-2010 at 01:16 AM.

  7. #52
    antoralgola's Avatar Private
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the tutorial: it allowed me (c# and memory readying total noob) to start understanding a bit the concept behind. But now I start to get hungry, so what I would like to do next is:
    1) Show also Target Info (how to retrieve target Baseline?)
    2) Have data dynamic (how to retrieve always fresh data?)
    3) Show the data into a WinForm (I know it’s so basic, but I don’t know how to “nest” the code for this)

    Maybe an idea for the Step 2 of the Tutorial !
    Last edited by antoralgola; 04-05-2010 at 11:02 AM.

  8. #53
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by antoralgola View Post
    Thanks for the tutorial: it allowed me (c# and memory readying total noob) to start understanding a bit the concept behind. But now I start to get hungry, so what I would like to do next is:
    1) Show also Target Info (how to retrieve target Baseline?)
    2) Have data dynamic (how to retrieve always fresh data?)
    3) Show the data into a WinForm (I know it’s so basic, but I don’t know how to “nest” the code for this)

    Maybe an idea for the Step 2 of the Tutorial !
    All 3 of these come with a basic understanding of the language you're using.

    If you can't figure out how to accomplish them, you shouldn't really be in this section yet, should you?

  9. #54
    Xaqion's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Howdy.
    I have a problem when i compile this code

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using Magic;
    
    namespace Zudox
    {
        public partial class Form1 : Form
        {
            BlackMagic wow = new BlackMagic(); //Create new function to open wow process
    
    
            public Form1()
            {
                InitializeComponent();
                
                wow.OpenProcessAndThread(SProcess.GetProcessFromWindowTitle("World of Warcraft")); //This Opens "World of Warcraft" window
                
                //Read players name and displays it.
                byte[] playername = wow.ReadBytes(0xBB4428, 24); //reads player name
                string playernam = Encoding.UTF8.GetString(playername);
                p_name.Text = "Player name : " + playernam;
            }
    
        }
    }
    I get a window thats says that i shold locate the BMMemory.cs file.
    Anyone know whats the problem is ?

  10. #55
    antoralgola's Avatar Private
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Apoc for the feedback. Clearly this section is for expert and I'm not but if you don't ask to people that knows more than you, you'll never learn. Moreover, I thought this thread ((Tutorial) Starting WoW-Memory Reading/Writing) was the right place to make even basic questions.
    I was just proposing to collect some more info to build “section two” of ((Tutorial) Starting WoW-Memory Reading/Writing), that would be great…

  11. #56
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by antoralgola View Post
    Thanks Apoc for the feedback. Clearly this section is for expert and I'm not but if you don't ask to people that knows more than you, you'll never learn. Moreover, I thought this thread ((Tutorial) Starting WoW-Memory Reading/Writing) was the right place to make even basic questions.
    I was just proposing to collect some more info to build “section two” of ((Tutorial) Starting WoW-Memory Reading/Writing), that would be great…
    As I said; this section isn't meant for you if you don't have a basic grasp of the language you're using.

    Plain and simple; if you understood the language (which it's clear, you don't), then you wouldn't have asked your questions. (All of which are within the first 5-6 chapters of any C# book. [Excluding WinForms type stuff, which is usually around chapter 9-10])

    Please read the section rules. This section is for ADVANCED things, not 'learn to program!' type discussions. We have another forum for that stuff.

    We require you to at least be at the 'intermediate' level in your language of choice, before coming to this section to start learning how to do the stuff we do.

    We're not here to give you copy/paste code so you can write your own bot. We're here to help the people who have put in the time to do their own research. (Or just to kick around findings)

  12. #57
    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)
    Originally Posted by Apoc View Post
    As I said; this section isn't meant for you if you don't have a basic grasp of the language you're using.

    Plain and simple; if you understood the language (which it's clear, you don't), then you wouldn't have asked your questions. (All of which are within the first 5-6 chapters of any C# book. [Excluding WinForms type stuff, which is usually around chapter 9-10])

    Please read the section rules. This section is for ADVANCED things, not 'learn to program!' type discussions. We have another forum for that stuff.

    We require you to at least be at the 'intermediate' level in your language of choice, before coming to this section to start learning how to do the stuff we do.

    We're not here to give you copy/paste code so you can write your own bot. We're here to help the people who have put in the time to do their own research. (Or just to kick around findings)
    Pull out this post and sticky it imo. Lol.

  13. #58
    antoralgola's Avatar Private
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I understand and respect this is an advanced section of the forum but such debate is simply pointless under a thread titled: “(Tutorial) Starting WoW-Memory Reading/Writing”.

    Let me recap:
    1. There’s a thread with a tutorial explaining even how to create a new project in C#... (which C# manual chapter is it?)
    2. Readers say it is a great tutorial and a useful post
    3. People ask basic questions consistently with the topic treated
    4. Your “contribution” is: “This section is for ADVANCED, isn't meant for you”

    …quite bizarre, isn’t?

    By the way I would like to reassure you: I understand and can make use of everything described in the tutorial (even updating the offset that seems to be impossible to many other people that replied to the thread). This clearly doesn’t change my beginner status, but it should at least give me the right to make questions.

  14. #59
    Xaqion's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Isnt there any one who know why my Visual C# express ask me to locate BMMemory.cs?

    I tried google this problem but i didnt finde anything.

  15. #60
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see your point. But know that the existance of this thread isn't inline with the rules for this section.

    The subject at hand should never be teached by means of a picture step-by-step guide. Especially not this one who also accounts for making a project in the VS IDE... You learn nothing. (see: the foo above me)

    We are still a subforum of a community where the vast majoirty of people can't tie their shoes or take a dump without picture guides, so it's to be expected that one might surface here.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

Page 4 of 14 FirstFirst 12345678 ... LastLast

Similar Threads

  1. WoW Memory reading/writing questions
    By mathix in forum WoW Memory Editing
    Replies: 3
    Last Post: 03-11-2013, 08:17 AM
  2. [Bot] WoW Memory Reading Help (Player Name)
    By zamba1587 in forum WoW Memory Editing
    Replies: 5
    Last Post: 08-05-2011, 01:27 AM
  3. [Request][Bounty] WoW memory reading example script c++
    By foxlin in forum WoW Bots Questions & Requests
    Replies: 4
    Last Post: 07-27-2011, 09:08 AM
  4. How do i know if a Bot is using memory reading / writing?
    By sturmtiger in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 01-06-2011, 06:31 AM
  5. In process memory reading/writing
    By unbekannt1 in forum WoW Memory Editing
    Replies: 7
    Last Post: 06-08-2010, 06:52 PM
All times are GMT -5. The time now is 08:01 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