CSGOTriggerbot.CSGOScanner.SetViewAngles C# (CSharp) Method

SetViewAngles() static private method

static private SetViewAngles ( MemUtils memUtils ) : void
memUtils MemUtils
return void
        static void SetViewAngles(MemUtils memUtils)
        {
            scan = memUtils.PerformSignatureScan(new byte[] { 0x8B, 0x15, 0x00, 0x00, 0x00, 0x00, 0x8B, 0x4D, 0x08, 0x8B, 0x82, 0x00, 0x00, 0x00, 0x00, 0x89, 0x01, 0x8B, 0x82, 0x00, 0x00, 0x00, 0x00, 0x89, 0x41, 0x04 }, "xx????xxxxx????xxxx????xxx", engineDll);
            if (scan.Success)
            {
                int tmp = memUtils.Read<int>((IntPtr)(scan.Address.ToInt32() + 11));
                CSGOOffsets.ClientState.m_dwViewAngles = tmp;
            }
        }