CSGOTriggerbot.CSGOScanner.ClientState C# (CSharp) Method

ClientState() static private method

static private ClientState ( MemUtils memUtils ) : void
memUtils MemUtils
return void
        static void ClientState(MemUtils memUtils)
        {
            scan = memUtils.PerformSignatureScan(new byte[] { 0xC2, 0x00, 0x00, 0xCC, 0xCC, 0x8B, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x33, 0xC0, 0x83, 0xB9 }, "x??xxxx????xxxx", engineDll);
            if (scan.Success)
            {
                int tmp = memUtils.Read<int>((IntPtr)(scan.Address.ToInt32() + 7));
                CSGOOffsets.ClientState.Base = tmp - engineDllBase;
            }
        }