CSGOTriggerbot.CSGOScanner.PlayerBoneMatrix C# (CSharp) Method

PlayerBoneMatrix() static private method

static private PlayerBoneMatrix ( MemUtils memUtils ) : void
memUtils MemUtils
return void
        static void PlayerBoneMatrix(MemUtils memUtils)
        {
            scan = memUtils.PerformSignatureScan(
                new byte[] { 0x83, 0x3C, 0xB0, 0xFF, 0x75, 0x15, 0x8B, 0x87, 0x00, 0x00, 0x00, 0x00, 0x8B, 0xCF, 0x8B, 0x17, 0x03, 0x44, 0x24, 0x0C, 0x50 },
                "xxxxxxxx????xxxxxxxxx", clientDll);
            if (scan.Success)
            {
                int tmp = memUtils.Read<int>((IntPtr)(scan.Address.ToInt32() + 8));
                CSGOOffsets.NetVars.C_CSPlayer.m_hBoneMatrix = tmp;
            }
        }