[Wildstar] 6731 GameManager (32/64) menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    114
    Join Date
    Oct 2008
    Posts
    320
    Thanks G/R
    11/59
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)

    [Wildstar] 6731 GameManager (32/64) 17/06 updated

    GameManager: 17/06/2014

    "WildStar32" 870058
    "WildStar64" AAF6C8

    Anything else should be the same, but don't trust me to much, i'm still learning..

    Client still say 6731
    Last edited by alcor75; 06-17-2014 at 06:02 AM. Reason: offset update

    [Wildstar] 6731 GameManager (32/64)
  2. #2
    overture2112's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you mean a different revision?

  3. #3
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    114
    Join Date
    Oct 2008
    Posts
    320
    Thanks G/R
    11/59
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    Jesus! sorry, corrected title.
    Tnx for letting me know

  4. #4
    overture2112's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alcor75 View Post
    Anything else should be the same, but don't trust me to much, i'm still learning..
    I can at least confirm for all the actor offsets I'm using (target, name, position, etc).

    Out of curiosity, are there any tools for comparing two mostly similar versions of the same program to help look for differences?

    Originally Posted by alcor75
    Jesus! sorry, corrected title.
    Btw, you might want to add the architecture in the title too, since plenty of people are deving for both 32 and 64bit. Either way, thanks.

  5. #5
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    114
    Join Date
    Oct 2008
    Posts
    320
    Thanks G/R
    11/59
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by overture2112 View Post
    Btw, you might want to add the architecture in the title too, since plenty of people are deving for both 32 and 64bit. Either way, thanks.
    Digged the 64 bit Game manager and added to first post.

    Now a little question:
    I'm a noob coder trying to live in this game world since many years, i have some experience in many boting fields and i'm tryng to upgrade me to a c# coder with the few time i have in my hand, i read alot, but i find little to no documentation on some critical topic, but it might be my fault.

    I have this very primitive code that give me the intptr of the xyz player coordinate, but i really can't understand how to initialize GrayMagic to read the float coordinate from the memory to a variable that i can later use.

    Code:
    private void button3_Click(object sender, EventArgs e)
            {
                var proc = Process.GetProcessesByName("WildStar32").FirstOrDefault();
                IntPtr WsBase = proc.MainModule.BaseAddress;
                IntPtr GameManagerPtr = IntPtr.Add(WsBase, (int)GameManager.GameManager.s_currentManager);
                IntPtr Player = IntPtr.Add(GameManagerPtr, (int)GameManager.GameManager.LocalPlayer);
                IntPtr Playerx = IntPtr.Add(Player, 0xEC0);
                IntPtr Playery = IntPtr.Add(Player, 0xEC4);
                IntPtr Playerz = IntPtr.Add(Player, 0xEC8);     
    
            }
    I'm digging for info to try to find the correct way to use it since weeks, i don't like to ask to be babysit-ted but i feel really stuck, probably is something behind my poor knowledge but 1 example would point me to the right direction.. i hope.

  6. #6
    overture2112's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    mini tutorial

    Originally Posted by alcor75 View Post
    I'm digging for info to try to find the correct way to use it since weeks, i don't like to ask to be babysit-ted but i feel really stuck, probably is something behind my poor knowledge but 1 example would point me to the right direction.. i hope.
    No problem. I'll step you through an example to do external reads.

    First you want to create an ExternalProcessReader and give it the process you found.
    Code:
    GameProcess = Process.GetProcessesByName("WildStar32").FirstOrDefault();
    Memory = new GreyMagic.ExternalProcessReader(GameProcess);
    Then you can use the Read<T> function to read in any type with an obvious size and unboxing. Thus it works for primitives like int32, int64, float, etc like so:
    Code:
    var mgr = Memory.Read<IntPtr>( WsBase + Offsets.GameManager.Base )
    var player = Memory.Read<IntPtr>( mgr + Offsets.GameManager.LocalPlayer )
    var currentHP = Memory.Read<int32>( player + Offsets.Actor.CurrentHP )
    It also works for basic structures (again, anything the marshaller will unbox correctly).
    Code:
    [StructLayoutAttribute(LayoutKind.Sequential)]
    class Vector3 {
        public float x;
        public float y;
        public float z;
    }
    
    ...
    
    var playerPos = Memory.Read<Vector3>( player + Offsets.Actor.Position )
    Log.Debug( "Player Z is " + playerPos.z );
    NB: the Sequential attribute isn't strictly necessary since that's the default, but including it helps make it clear you care about how it (un)boxes and thus people will take care before adding fields and thus breaking things.

    That should get you started. Anything else tripping you up?
    Last edited by overture2112; 06-13-2014 at 05:24 PM.

  7. #7
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    114
    Join Date
    Oct 2008
    Posts
    320
    Thanks G/R
    11/59
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    Wow, this should break my actual barrier.. tnx you so much for it, this make it very clear and simple and i can start chain my logic now..
    I really appreciate the help, i'll ask as i get more problems.

  8. #8
    Midi12's Avatar Contributor
    Reputation
    90
    Join Date
    Sep 2012
    Posts
    182
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    namespace function
    	{
    		enum function
    		{
    			VacuumLoot = 0x2C4FD0,
    			HandleLuaEvent = 0x88F90,
    			ClickToMove = 0x3A13D0,
    		};
    	}

  9. #9
    Midi12's Avatar Contributor
    Reputation
    90
    Join Date
    Sep 2012
    Posts
    182
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Surely the same logic that for finding x68 offsets -> Open IDA, look at Game.Unit:* functions, profit !

  10. #10
    Midi12's Avatar Contributor
    Reputation
    90
    Join Date
    Sep 2012
    Posts
    182
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WiNiFiX View Post
    If it where that simple then people would not keep coding for x86 over x64 .
    Because stuff like ASM code injection might be different, I'm not enough into x64 reverse scene to give you the perfect answer.

  11. #11
    kyriaqos's Avatar Corporal
    Reputation
    3
    Join Date
    Nov 2013
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I believe I'm missing something blatantly obvious, but is there a *magic for 64 bit? All of my searches so far lead me back to 32 bit versions.

  12. #12
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    114
    Join Date
    Oct 2008
    Posts
    320
    Thanks G/R
    11/59
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    GreyMagic should be able to handle 64 bit, but don't ask me how!

  13. #13
    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)
    Just use IntPtr/DWORD_PTR for reading memory addrs. It'll be compatible with x86 and x64 by default.

  14. #14
    overture2112's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    Just use IntPtr/DWORD_PTR for reading memory addrs. It'll be compatible with x86 and x64 by default.
    You'll have to remove all the fasm related code as well, unless there's a 64bit version floating about?

  15. #15
    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 overture2112 View Post
    You'll have to remove all the fasm related code as well, unless there's a 64bit version floating about?
    There is no x64 compatible FASM. (At least, you can't build it in x64 mode, you can use x64 ASM from the 32 bit version)

Page 1 of 2 12 LastLast

Similar Threads

  1. [Wildstar] 1.0.8.6731 x86 Info Dump Thread
    By JuceMMOCrawler in forum Wildstar Memory Editing
    Replies: 12
    Last Post: 06-16-2014, 04:33 PM
  2. [Selling] Wildstar Beta
    By jackbri in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 4
    Last Post: 04-21-2013, 11:41 AM
  3. [Selling] Wildstar Beta
    By jackbri in forum General Trading Buy Sell Trade
    Replies: 8
    Last Post: 04-14-2013, 03:04 PM
  4. [Selling] Wts Wildstar beta invite
    By Prometheus2 in forum General MMO Buy Sell Trade
    Replies: 2
    Last Post: 04-14-2013, 12:50 PM
  5. [Selling] Wildstar Beta
    By jackbri in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 04-14-2013, 08:07 AM
All times are GMT -5. The time now is 08:29 PM. 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