CSGOTriggerbot.CSGOScanner.EntityOff C# (CSharp) Method

EntityOff() static private method

static private EntityOff ( MemUtils memUtils ) : void
memUtils MemUtils
return void
        static void EntityOff(MemUtils memUtils)
        {
            scan = memUtils.PerformSignatureScan(new byte[] { 0x05, 0x00, 0x00, 0x00, 0x00, 0xC1, 0xe9, 0x00, 0x39, 0x48, 0x04 }, "x????xx?xxx", clientDll);
            if (scan.Success)
            {
                int tmp = memUtils.Read<int>((IntPtr)(scan.Address.ToInt32() + 1));
                byte tmp2 = memUtils.Read<byte>((IntPtr)(scan.Address.ToInt32() + 7));
                CSGOOffsets.Misc.EntityList = tmp + tmp2 - clientDllBase;
            }
        }