Results 1 to 13 of 13
  1. #1
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy

    ViewMatrix Signature Problem

    I found the signature for ViewMatrix but it is not working correctly
    Sig:
    Code:
    0xF3, 0x0F, 0x6F, 0x05, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x85
    How Sig Is Used:
    Code:
    	DWORD ViewMatrixArray = MManager.FindPatternArr(Client.dwBase, Client.dwSize, "xxxx????xx", 10, 0xF3, 0x0F, 0x6F, 0x05, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x85);
    	m_dwViewMatrix = MManager.Read<DWORD>(ViewMatrixArray + 4) - Client.dwBase;
    This is what it looks like when I use it

    I know its something wrong with my sig because if I remember correctly, zat's dumper dumps 3 viewmatrix offsets and only viewmatrix1 works correctly not the other 2.

    Any help with the correct sig would be appreciated.
    Thanks in advance!


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  2. #2
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Still unsolved... Bump!


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  3. #3
    l1m3w1r3's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    77
    My Mood
    Tired
    Quote Originally Posted by ImWhacky View Post
    Still unsolved... Bump!
    try this
    ViewMatrix ( - client.dll if you want to get the offset ): 0x4A91464
    1. E8 ? ? ? ? 8D 95 E0 ) - 1A ] + 90
    2. E8 ?? ?? ?? ?? 8D 95 E0 ) - 1A ] + 90
    3. 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0 ) - 1A ] + 90
    4. \xE8\x00\x00\x00\x00\x8D\x95\xE0 ) - 1A ] + 90 : x????xxx

    credits to @WasserEsser
    the offset is outdated
    Quote Originally Posted by Tag Shai View Post
    C&P is life

  4. #4
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by l1m3w1r3 View Post
    try this
    ViewMatrix ( - client.dll if you want to get the offset ): 0x4A91464
    1. E8 ? ? ? ? 8D 95 E0 ) - 1A ] + 90
    2. E8 ?? ?? ?? ?? 8D 95 E0 ) - 1A ] + 90
    3. 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0 ) - 1A ] + 90
    4. \xE8\x00\x00\x00\x00\x8D\x95\xE0 ) - 1A ] + 90 : x????xxx

    credits to @WasserEsser
    the offset is outdated
    Tested it and i think its an outdated sig, thanks anyways tho


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  5. #5
    WasserEsser's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    735
    Reputation
    174
    Thanks
    677
    My Mood
    Busy
    Quote Originally Posted by ImWhacky View Post
    Tested it and i think its an outdated sig, thanks anyways tho
    It's not outdated, it works fine.

  6. #6
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by WasserEsser View Post
    It's not outdated, it works fine.
    I tried it and its giving me " 0x7764ffff "
    this is how its being used (i think i did the - 1a + 90 thing wrong)
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 26 ) + 90;
    DWORD m_dwViewMatrix = MManager.Read<DWORD>(ViewMatrixArray + 1) - Client.dwBase;


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  7. #7
    WasserEsser's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    735
    Reputation
    174
    Thanks
    677
    My Mood
    Busy
    Quote Originally Posted by ImWhacky View Post
    I tried it and its giving me " 0x7764ffff "
    this is how its being used (i think i did the - 1a + 90 thing wrong)
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 26 ) + 90;
    DWORD m_dwViewMatrix = MManager.Read<DWORD>(ViewMatrixArray + 1) - Client.dwBase;
    DWORD VMatrix = Read( FindPattern( Pattern ) - 0x1A ) - 0x90;

  8. #8
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by WasserEsser View Post
    DWORD VMatrix = Read( FindPattern( Pattern ) - 0x1A ) - 0x90;
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 0x1A ) + 0x90;
    DWORD m_dwViewMatrix = MManager.Read<DWORD>(ViewMatrixArray + 1) - Client.dwBase;
    But it's returning "0xaf5ab9ff" now...

    I think I'm just stupid lmao...


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  9. #9
    WasserEsser's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    735
    Reputation
    174
    Thanks
    677
    My Mood
    Busy
    Quote Originally Posted by ImWhacky View Post
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 0x1A ) + 0x90;
    DWORD m_dwViewMatrix = MManager.Read<DWORD>(ViewMatrixArray + 1) - Client.dwBase;
    But it's returning "0xaf5ab9ff" now...

    I think I'm just stupid lmao...
    Read it carefully, you're still doing it wrong. I did make a mistake though, instead of subtracting, add 0x90.

    DWORD VMatrix = Read( FindPattern( Pattern ) - 0x1A ) + 0x90;

    FindPattern the pattern. Subtract 0x1A. Read it. Add 0x90. Don't read again. Voila. There is your ViewMatrix. If you want to get the offset, subtract the client base now.
    Last edited by WasserEsser; 09-10-2016 at 10:34 AM.

  10. #10
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by WasserEsser View Post
    Read it carefully, you're still doing it wrong. I did make a mistake though, instead of subtracting, add 0x90.

    DWORD VMatrix = Read( FindPattern( Pattern ) - 0x1A ) + 0x90;

    FindPattern the pattern. Subtract 0x1A. Read it. Add 0x90. Don't read again. Voila. There is your ViewMatrix. If you want to get the offset, subtract the client base now.
    So something like this?
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 0x1A );
    DWORD m_dwViewMatrix = MManager.Read<DWORD>((ViewMatrixArray + 1) + 0x90) - Client.dwBase;


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  11. #11
    WasserEsser's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    735
    Reputation
    174
    Thanks
    677
    My Mood
    Busy
    Quote Originally Posted by ImWhacky View Post
    So something like this?
    Code:
    DWORD ViewMatrixArray = (MManager.FindPatternArr(Client.dwBase, Client.dwSize, "x????xxx", 8, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x8D, 0x95, 0xE0) - 0x1A );
    DWORD m_dwViewMatrix = MManager.Read<DWORD>((ViewMatrixArray + 1) + 0x90) - Client.dwBase;
    ViewMatrixArray + 1



    Subtract 0x1A. Read it. Add 0x90. Don't read again.
    MManager.Read<DWORD>(bla + 0x90)

    Last edited by WasserEsser; 09-11-2016 at 04:01 AM.

  12. #12
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by WasserEsser View Post
    ViewMatrixArray + 1





    MManager.Read<DWORD>(bla + 0x90)

    Jesus is dumb, I straight up looked at that for like 5 minutes without realizing how stupid I am... thanks, now got it working
    Code:
     m_dwViewMatrix: 0x4a49a44
    if you dont mind me asking, why does it have to be so complicated for viewmatrix? its only 2 lines for all of my other offsets?
    example:
    Code:
        DWORD ClientStateArray = MManager.FindPatternArr(Engine.dwBase, Engine.dwSize, "x????xxxx????xxxx", 18, 0xA1, 0x00, 0x00, 0x00, 0x00, 0xF3, 0x0F, 0x11, 0x80, 0x00, 0x00, 0x00, 0x00, 0xD9, 0x46, 0x04, 0xD9, 0x05);
        ClientState = MManager.Read<DWORD>(ClientStateArray + 1) - Engine.dwBase;
    is it because viewmatrix has 3 offsets?

    Quote Originally Posted by ImWhacky View Post
    Jesus is dumb, I straight up looked at that for like 5 minutes without realizing how stupid I am... thanks, now got it working
    Code:
     m_dwViewMatrix: 0x4a49a44
    if you dont mind me asking, why does it have to be so complicated for viewmatrix? its only 2 lines for all of my other offsets?
    example:
    Code:
        DWORD ClientStateArray = MManager.FindPatternArr(Engine.dwBase, Engine.dwSize, "x????xxxx????xxxx", 18, 0xA1, 0x00, 0x00, 0x00, 0x00, 0xF3, 0x0F, 0x11, 0x80, 0x00, 0x00, 0x00, 0x00, 0xD9, 0x46, 0x04, 0xD9, 0x05);
        ClientState = MManager.Read<DWORD>(ClientStateArray + 1) - Engine.dwBase;
    is it because viewmatrix has 3 offsets?
    i just realized i said "jesus is dumb" i meant jesus im dumb... lol
    Last edited by Hunter; 09-26-2016 at 11:56 AM.


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  13. #13
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Been over a week since last update/bump after answers, assuming solved.

    /Closed.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

Similar Threads

  1. Signature problem
    By ihbloody in forum Help & Requests
    Replies: 4
    Last Post: 07-21-2013, 06:53 PM
  2. Signature problem
    By ihbloody in forum Homework & Learning Section
    Replies: 3
    Last Post: 01-23-2011, 05:09 AM
  3. signature problem
    By Deceber in forum Suggestions, Requests & General Help
    Replies: 6
    Last Post: 02-02-2010, 07:25 AM
  4. Signature Image Problems
    By cyanmage in forum Art & Graphic Design
    Replies: 9
    Last Post: 08-18-2009, 11:12 AM
  5. Signature Problem + Avatar
    By [Guardian] in forum Suggestions, Requests & General Help
    Replies: 1
    Last Post: 07-02-2009, 06:35 PM